@charset "utf8";


/*----------------------------------------------------
	* corporate.html *
	* 人材派遣のメリットと仕組み *
----------------------------------------------------*/

/* 下層ページ見出し */
/*
.page-corporate .heading {
    background-image: url(../images/heading-bg-corporate.png);
    background-size: cover;
	background-position: center;
}
.page-corporate .heading .heading-title {
    height: 230px;
}

@media screen and (max-width: 680px) {
	.page-corporate .heading .heading-title {
		height: 100px;
	}
	
}
*/

#corporate {}
#corporate .text {
    font-size: 15px;
    line-height: 1.7em;
}

#corporate .container {
    margin: 60px auto;
}
#corporate .container:last-of-type {
    margin: 60px auto 0;
}

@media screen and (max-width: 680px) {
	#corporate .text {
		font-size: 14px;
		line-height: 1.6em;
	}
	
	#corporate .container {
		margin: 30px auto;
	}
	#corporate .container:last-of-type {
		margin: 30px auto 0;
	}
}


#corporate .outline-list {}
#corporate .outline-list li {
	font-size: 18px;
    line-height: 1.6em;
    width: 48%;
	height: 80px;
    padding: 10px;
	margin-bottom: 30px;
	background: #eafeeb;
}
#corporate .outline-list li::before {
	content: "";
	display: inline-block;
	width: 42px;
	height: 42px;
	background-image: url(../images/corporate-check.png);
    background-size: contain;
	background-repeat: no-repeat;
	margin-right: 15px;
}
@media screen and (max-width: 680px) {
	
	#corporate .outline-list li {
		width: 100%;
		height: auto;
		font-size: 16px;
	}
	#corporate .outline-list li {
		margin-bottom: 20px;
	}
	#corporate .outline-list li::before {
		width: 30px;
		min-width: 30px;
		height: 30px;
		margin-right: 10px;
	}
	
}



/* 人材派遣のメリット */
.merit-overview {}
.merit-overview .text-box {
    width: 50%;
}
.merit-overview .img-box {
    width: 50%;
    padding-left: 50px;
}
.merit-overview:nth-child(odd) .img-box {
    padding-left: 0;
    padding-right: 50px;
}
.merit-overview .img-box figure {
    width: 510px;
}
.merit-overview .img-box figure img {
    width: 510px;
    height: 300px;
    object-fit: contain;
}

.merit-overview ul { margin-top: 50px; }
.merit-overview ul li {
    list-style:  none;
    margin:  0 0 5px;
    padding: 0; 
}
.merit-overview ul li::before {
    content:  "";
    width:  10px;
    height:  10px;
    display:  inline-block;
    background-color: #f28b00;
    border-radius:  50%;
	margin-right: 10px;
}

@media only screen and (min-width: 681px) and (max-width: 1280px) {
	.merit-overview .text-box {
		width: 60%;
	}
	.merit-overview .img-box {
		width: 40%;
		padding-left: 20px;
	}
	.merit-overview:nth-child(odd) .img-box {
		padding-left: 0;
		padding-right: 20px;
	}
	.merit-overview .img-box figure { width: 100%; }
	.merit-overview .img-box figure img {
		width: 100%;
		height: auto;
	}
	
}

@media screen and (max-width: 680px) {
	.merit-overview .text-box,
	.merit-overview .img-box {
		width: 100%;
	}
	.merit-overview .img-box,
	.merit-overview:nth-child(odd) .img-box {
		padding: 0;
	}
	.merit-overview .img-box figure {
		width: 100%;
	}
	.merit-overview .img-box.sp-flex > figure {
		width: 48%;
	}
	.merit-overview .img-box figure img {
		width: 100%;
		height: auto;
	}
	
	.merit-overview ul { margin-top: 20px; }
	
}



/* 人材派遣のご利用の流れ */
.flow-list {
    align-items: stretch;
}
.flow-list li {
    width: 22%;
    max-width: 230px;
	padding-bottom: 20px;
	border-radius: 18px;
	position: relative;
}
.flow-list li::after {
	content: "";
    width: 20px;
    height: 20px;
    border: 0px;
    border-top: solid 8px #f28b00;
    border-right: solid 8px #f28b00;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: -38px;
}
.flow-list li:last-child::after {
	content: none;
}
.flow-list li > .inner { }
.flow-list li .flow-step {
    padding: 10px;
    height: 50px;
    border-radius: 18px 18px 0 0;
}
.flow-list li figure {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
}
.flow-list li p {
    padding: 0 20px;
}

@media screen and (max-width: 680px)  {
	.flow-list li {
		width: 100%;
		max-width: inherit;
		margin-bottom: 50px;
	}
	.flow-list li::after {
		content: "";
		width: 20px;
		height: 20px;
		border: 0px;
		border-top: solid 8px #f28b00;
		border-right: solid 8px #f28b00;
		-ms-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		position: absolute;
		top: inherit;
		right: inherit;
		bottom: -30px;
		left: 45%;
	}

}



