@charset "UTF-8";


.imgBar {
	display: flex;
	overflow: hidden;
	padding: 80px 0 0;
}

@media screen and (max-width: 560px) {
	.imgBar {
		padding: 16px 0 0;
	}
}

.imgBar ul {
	display: flex;
}

.imgBar ul li {
	width: 33.333333vw;
}

.imgBar.scroll.type01 .inner {
	animation: scrollAnime01 28s linear infinite;
}

@keyframes scrollAnime01 {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(calc(-33.333333vw * 8));
	}
}


/* 
 #recruit #section01
========================================================= */

#recruit #section01 .text p {
	margin: 1.5em 0 0;
	line-height: 2.5;
}

/* 
 #recruit #section02
========================================================= */
#recruit #section02 {
	padding: 40px 0 0;
}

@media screen and (max-width: 560px) {
	#recruit #section02 {
		padding: 0;
	}
}

#recruit #section02 .circle {
	display: flex;
	justify-content: space-between;
	padding: 48px 0 0;
}

@media screen and (max-width: 560px) {
	#recruit #section02 .circle {
		display: block;
		justify-content: space-between;
		width: 100%;
		padding: 0;
	}
}

#recruit #section02 .circle li {
	position: relative;
	width: 33%;
	text-align: center;
}

@media screen and (max-width: 560px) {
	#recruit #section02 .circle li {
		width: 100%;
		padding: 20% 0;
	}
}

#recruit #section02 .circle li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 70%;
	padding: 70% 0 0;
	background-color: #fff;
	z-index: -1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

#recruit #section02 .circle li .headline {
	padding: 0 0 16px;
	font-size: 24px;
	font-weight: bold;
	color: #008681;
}

#recruit #section02 .circle li p {
	font-weight: bold;
	letter-spacing: 0.1em;
}


/* 
 #recruit #section03
========================================================= */
#recruit #section03 {
	padding: 160px 0 0;
}

@media screen and (max-width: 560px) {
	#recruit #section03 {
		padding: 64px 0 0;
	}
}

#recruit #section03 .kachikan li {
	font-size: 18px;
	font-weight: bold;
	line-height: 2.5em;
}

@media screen and (max-width: 560px) {
	#recruit #section03 .kachikan li {
		font-size: 16px;
	}
}

/* 
 #recruit #section04
========================================================= */
#recruit #section04 {
	padding: 120px 0 0;
}

@media screen and (max-width: 560px) {
	#recruit #section04 {
		padding: 80px 0 0;
	}
}

#recruit #section04 .headline {
	padding: 0 0 1em;
	color: #00A5A0;
	font-size: 30px;
	letter-spacing: 0.15em;
	text-align: center;
}

#recruit #section04 .text {
	padding: 0 40px;
}

@media screen and (max-width: 560px) {
	#recruit #section04 .text {
		padding: 0;
	}
}

#recruit #section04 .text p {
	padding: 0 0 24px;
	font-size: 18px;
	line-height: 2em;
}

@media screen and (max-width: 560px) {
	#recruit #section04 .text p {
		font-size: 16px;
	}
}

#recruit #section04 .text .recruit_contact_btn {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 560px) {
	#recruit #section04 .text .recruit_contact_btn {
		display: block;
		padding: 0 0 24px
	}
}

#recruit #section04 .text .recruit_contact_btn a {
	display: block;
}

@media screen and (max-width: 560px) {
	#recruit #section04 .text .recruit_contact_btn a {
		margin: 16px 0 0;
	}
}

/* 
 #recruit #section04
========================================================= */

#recruit .banner {
	padding: 80px 0 0;
	text-align: center;
}

@media screen and (max-width: 560px) {
	#recruit .banner {
		padding: 40px 16px 0;
	}
}

/* 
 #recruit .bgWrap
========================================================= */
#recruit .bgWrap01 {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: opacity 300ms;
	opacity: 0;
	background-position: center;
	background-repeat: no-repeat;
}

#recruit .bgWrap01.is-show {
	opacity: 1;
}

#recruit .bgWrap01.bgA {
	background-image: url("../img/recruit/recruit_bg_01.png");
	background-size: cover;
}

#recruit .bgWrap01.bgB {
	background-image: url("../img/recruit/recruit_bg_02.png");
	background-size: 100% auto;
}