@charset "UTF-8";

/*--------------------------------------------------------------------
index.html	(トップページ)
top.css
--------------------------------------------------------------------*/

/*------------#Title------------------------------------*/
#Title {
	position: relative;
	height: 600px;
	background: url("../../img/top_mv.jpg") no-repeat center bottom / cover;
/*	height: 0;
	padding-top: 50%;
	background: url("../../img/top_mv.jpg") no-repeat center top / cover;*/
}
#Title::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 50px;
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	bottom: 0;
	left: 0;
	z-index: 0;
}
#Title h2 { display: none; }

@media (max-width: 979px) {
	#Title {
		min-height: 70vh;
		padding-top: 0;
	}
}

/*------------InBox------------------------------------*/
main article {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding-bottom: 0;
	overflow: hidden;
	z-index: 0;
}
main article:after { display: none; }
main article section {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	overflow: hidden;
	z-index: 0;
}

/*------------topTxt------------------------------------*/
#topTxt {
	padding: 0 1em;
	text-align: center;
	line-height: 1.6;
	font-family: var(--mincho);
}
#topTxt h2 {
	margin-bottom: 20px;
	line-height: 1.2;
	font-size: 2.875em;
	color: var(--co-green);
}

/*------------content------------------------------------*/
#content {
	margin-top: 100px;
	font-family: var(--mincho);
}
#content h2 {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 0.15em;
	text-align: center;
	line-height: 1.2;
	font-size: 2.1875em;
}
#content h2::after {
	position: absolute;
	display: block;
	content: "";
	width: 150px;
	height: 3px;
	background-color: var(--co-gray30);
	bottom: 0;
	left: 50%;
	transform: var(--transformX);
	z-index: 0;
}
#content h3 {
	position: relative;
	margin: 0;
	padding: 0 0 70px;
	text-align: center;
	font-size: 3.125em;
	font-weight: bold;
	z-index: 2;
}
#content h3 span {
	display: block;
	font-size: 0.5em;
	font-weight: normal;
}
#content a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: var(--co-white);
	transition: .5s;
	z-index: 5;
}
#content a:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

/*------------works------------------------*/
#content #works {
	position: relative;
	height: 320px;
	background: url("../../img/business_p.jpg") no-repeat left top;
}
#content #works #workArrow {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 610px;
	height: 100%;
	padding: 0 0 20px 0;
	z-index: 0;
}
#content #works #workArrow::before,
#content #works #workArrow::after {
	position: absolute;
	display: block;
	content: "";
	height: 300px;
	left: 0;
	clip-path: polygon(90% 0, 100% 70%, 80% 100%, 0 100%, 0 0);
	z-index: -1;
	transition: .5s;
}
#content #works #workArrow::before {
	width: 100%;
	background-color: rgba(155,155,155,0.70);
	bottom: 0;
}
#content #works #workArrow::after {
	width: 90%;
	background-color: rgba(31,196,0,0.70);
	top: 0;
}
#content #works a:hover #workArrow::before {
	background-color: rgba(155,155,155,0.50);
}
#content #works a:hover #workArrow::after {
	background-color: rgba(31,196,0,0.50);
}
#content #works h3 {
	width: 90%;
	background: url("../../img/business_a.png") no-repeat center bottom;
}
#content #works h3 span {
	display: block;
	font-size: 0.5em;
	font-weight: normal;
}
#content #works a:hover { color: var(--co-black); }


/*------------recruit------------------------*/
#content #recruit {
	position: relative;
	height: 350px;
	margin-top: 60px;
	background: url("../../img/recruit_p.jpg") no-repeat left top;
}
#content #recruit::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(196,154,109,0.60);
}
#content #recruit a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
#content #recruit h3 { background: url("../../img/recruit_a.png") no-repeat center bottom; }
#content #recruit a:hover {
	color: var(--co-green);
}

@media (max-width: 979px) {
	#content {
		width: 94%;
		margin: 100px auto 0;
	}
	#content #works #workArrow { width: 100%; }
	#content #works #workArrow::before { width: 90%; }
	#content #works #workArrow::after { width: 80%; }
	#content #works h3 { width: 80%; }
}