@charset "utf-8";
/* CSS Document */
html{
  height: -webkit-fill-available;
}
body{
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color:#02022d;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	position: relative;
}
li{
	list-style-type: none;
}
a{
	text-decoration: none;
	display: inline-block;
}
.pc{
	display: block;
}
.sp,img.sp{
	display:none;
}
img.pc{
	display: inline-block;
}
.effect-fade{
	opacity:0;
	transform : translate(0, 45px);
	transition : all 1s;
}
.effect-fade.effect-scroll{
	opacity:1;
	transform:translate(0, 0);
}
.stop.effect-fade{
	transform : translate(0, 0);
	transition : all 1s;
}
.stop.effect-fade.effect-scroll{
	opacity:1;
	transform:translate(0, 0);
}
.left.effect-fade{
	transform : translate(-45px, 0);
	transition : all 1s;
}
.left.effect-fade.effect-scroll{
	opacity:1;
	transform:translate(0, 0);
}
.hero{
	width:100%;
	height:100vh;
}
.logo{
	position: fixed;
	top:48px;
	left:24px;
	z-index: 100;
}
header nav{
	width:170px;
	vertical-align: bottom;
	z-index: 100;
}
header nav ul{
	padding:0 25px 25px;
	position: absolute;
	bottom:0;
}
.left_nav{
	z-index: 100;
}
header nav li:not(:last-child){
	margin:0 0 20px;
}
header nav li a{
	font-size:13px;
	padding:2px 0;
	color:#b3b3b3;
}
header nav li a:hover,
header nav li a.on{
	color:#02022d;
	border-bottom:1px solid #02022d;
}
.hero_img{
	height:100vh;
	margin-left:170px;
	width:calc( 100% - 170px);
	background:url("../img/main_bg.png") center / cover no-repeat;
	position: relative;
	z-index: -1;
}
.hero_img h1{
	color: #fff;
    font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
    line-height: 1.8;
    font-size: 39px;
    position: absolute;
    top: 50%;
    margin-top: -133px;
    left: 50%;
    margin-left: 154px;
    letter-spacing: 0.15em;
    font-weight: normal;
	animation-delay: 1s;
}
.hero_img>img{
	width: 604px;
    position: absolute;
    top: 50%;
    margin-top: 14px;
    left: 50%;
    margin-left: 81px;
	mix-blend-mode: overlay;
	animation-delay: 1.3s;
}
.hero_img .scroll{
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: 164px;
    padding-bottom: 100px;
	z-index: 2;
	animation-delay: 1.5s;
}
.hero_img .scroll img{
	position: absolute;
    top: -75px;
	left: 7px
}
.hero_img .scroll:before,
.hero_img .scroll:after {
    content: "";
    display: block;
    width: 1px;
    height: 175px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero_img .scroll:before {
    background-color: rgba(255, 255, 255, 0.25); 
}
.hero_img .scroll:after {
    background-color: white;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-animation: lineInOut 1750ms cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -moz-animation: lineInOut 1750ms cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -ms-animation: lineInOut 1750ms cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -o-animation: lineInOut 1750ms cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: lineInOut 1750ms cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.hero_img .scroll:hover{
	opacity: 0.5;
	transition: 0.5s;
}

@-webkit-keyframes lineInOut {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top; }
  45% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top; }
  55% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom; }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom; } }

@keyframes lineInOut {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top; }
  45% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top; }
  55% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom; }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom; }
}
.links{
	float: right;
    margin-top: -60px;
}
.links a:hover{
	opacity: 0.8;
	transition:0.5s;
}
.links.fixed{
	position: fixed;
	top: 60px;
	right:0;
	z-index: 50;
}
.hero>img{
    display:none;
}
@media screen and (max-width:1300px){
	.hero_img h1 {
		font-size: 2.5vw;
		margin-top: -8vw;
		margin-left: 9vw;
	}
	.recruit_001>div {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	.recruit_001 h2 {
		width: 100%;
		margin: 0 0 3vw;
	}
	.recruit_001>div>div {
		max-width: 100%;
		width: 100%;
	}
	.hero_img>img {
		width: 39vw;
		margin-top: 1vw;
		margin-left: 5vw;
	}
}
@media screen and (max-width:600px){
	.sp{
		display: block;
	}
	.pc,img.pc{
		display:none;
	}
	img.sp{
		display: inline-block;
	}
	.hero_img {
		height: 100vh;
		margin-left: 0;
		width: 100%;
		background: url(../img/sp_hero_bg.png) center / cover no-repeat;
	}
	.hero_img h1 {
		line-height: 2;
		font-size: 5.4vw;
		top: 48vh;
		margin-top: 0;
		left: 38vw;
		margin-left: 0;
	}
	.hero_img>img {
		width: 81vw;
		top: 67vh;
		margin-top: 0;
		left: 16vw;
		margin-left: 0;
		animation-duration: 1s;
		animation-delay: 2.6s;
	}
	#sp_head{
		width:100%;
		position: relative;
	}
	#sp_head.fixed{
		position:fixed;
		top:0;
		height:14vw;
		z-index: 100;
	}
	.head_logo{
		width:44%;
	}

	.head_logo a img{
		width: 14vw;
		padding: 2vw;
	}
	.head_logo h1{
		color:#000;
		position:absolute;
		top:7vw;
		left: 15vw;
	}
	#sp_head .drawer-btn{
		position:absolute;
		top:0;
		right:0;
		width:14vw;
		height:14.1vw;
		z-index: 100;
		background-color:#02022d;
	}
	#sp_head .btn{
		position: relative;
		width: 6vw;
		height: 2px;
		margin: 6.5vw 4vw 0;
		background-color:#fff;
		display:inline-block;
		transition:0.5s;
	}
	#sp_head .btn::before,#sp_head .btn::after{
		width:6vw;
		height:2px;
		position:absolute;
		background-color:#fff;
		content:"";
		display:inline-block;
	}
	#sp_head .btn::before{
		bottom:2vw;
	}
	#sp_head .btn::after{		
		bottom:-2vw;
	}
	#sp_head .btn.open{
		transition:0.5s;
		background-color:transparent;
	}
	#sp_head .btn.open::before,#sp_head .btn.open::after{
		background-color:#fff;
		bottom:0;
	}
	#sp_head .btn.open::before{
		transition:0.5s;
		transform:rotate(45deg);
	}
	#sp_head .btn.open::after{
		transition:0.5s;
		transform:rotate(-45deg);
	}
	#sp_head>ul{
		width: 28vw;
		position: absolute;
		top: 0;
		right: 14vw;
		z-index: 100;
		transition:0.5s;
	}
	#sp_head>ul>li{
		float: left;
		width:14vw;
		background-color:#02022d;
	}
	#sp_head>ul>li img{
		width:100%;
		vertical-align: bottom;
	}
	.sp_g_nav{
		z-index: -100;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		height: 100%;
		background: #000;
		display:none;
		animation: fadeIn 0.5s ease 0s 1 normal;
	}
	.sp_g_nav.is_shown{
		display: block;
		opacity:1;
		transition:0.5s;
		z-index: 99;
		background-color:#000;
		top:0;
		width:100%;
		animation: fadeIn 0.5s ease 0s 1 normal;
	}
	.sp_g_nav ul{
		width: 100%;
		padding: 20vw 0 0;
	}
	.sp_g_nav ul li{
		text-align: center;
		border-bottom:1px solid #353557;
	}
	.sp_g_nav ul li a{
		color:#fff;
		padding:6vw 0;
		display: block;
	}
	.sp_g_nav ul li img{
		height:2.5vw;
	}
	.hero>img{
		display:block;
		animation-duration: 1s;
		animation-delay: 1.9s;
		opacity: 1;
		position: absolute;
		z-index: 2;
		top: 50%;
		width: 60vw;
		margin-top: -25vw;
		left: 20vw;
	}
	.hero_img h1{
		animation-duration: 1s;
		animation-delay: 2.6s;
	}
	.hero_img .scroll {
    	margin-left: 0;
		bottom: -20vw;
	}
	.w_logo{
		opacity: 0;
		transition: 0.5s;
		padding: 2vw;
	}
	.fixed .w_logo{
		opacity: 1;
		transition: 0.5s;
		width:100%;
	}
	.hero_img .scroll:before, .hero_img .scroll:after {
		height: 34vw;
	}
	.hero_img .scroll img {
		top: -7vw;
		left: 1.5vw;
	}
}


.recruit_001{
	margin-left:170px;
	width:calc(100% - 170px);
	padding: 93px 120px 0 50px;
    box-sizing: border-box;
}
.recruit_001>div{
	max-width: 1330px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
h2{
	font-size:15px;
	width:38%;
}
h2 span{
	font-size:54px;
	font-family: Century Gothic, sans-serif;
	display:block;
}
.recruit_001>div>div{
	max-width:1150px;
	width:62%;
}
.recruit_001>div p{
	font-size:17px;
	line-height:2.3;
}
.recruit_001 .name{
	margin:15px 0 58px;
}
.recruit_001 dl{
	display:table;
	background-color: #dee3e8;
	width:100%;
	box-sizing: border-box;
	padding:45px 60px;
	border-radius: 15px;
}
.recruit_001 dt{
	display: table-cell;
	vertical-align: middle;
	width:184px;
	height:174px;
	padding-top:10px;
	text-align: center;
	line-height: 1.5;
	background-color:#fff;
	border-radius: 50%;
	font-size:19px;
	color:#a2b0be;
}
.recruit_001 dd{
	display: table-cell;
	vertical-align: middle;
	padding-left: 30px;
	font-size:19px;
	position: relative;
}
.recruit_001 dd li:not(:last-child){
	margin-bottom:20px;
}
.recruit_001 dd li span{
	font-size: 12px;
	vertical-align: middle;
}
.recruit_001 dd:after{
	content:"";
	display:inline-block;
	width:84px;
	height:100px;
	background:url("../img/rec_001_01.svg") center / cover no-repeat;
	position: absolute;
	right: 0;
    bottom: -60px;
}
@media screen and (max-width:1300px){
	.recruit_001>div {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	.recruit_001 h2 {
		width: 100%;
		margin: 0 0 3vw;
	}
	.recruit_001>div>div {
		max-width: 100%;
		width: 100%;
	}

}
@media screen and (max-width:900px){
	.recruit_001 dl {
		display: block;
		width: 100%;
		padding: 12vw 10vw;
		border-radius: 4vw;
	}
	.recruit_001 dt {
		display: block;
		margin: 0 auto 9vw;
		padding-top: 64px;
		height: 117px;
	}
	.recruit_001 dd {
		display: block;
		position: relative;
		padding:0;
		font-weight: bolder;
	}
}
@media screen and (max-width:600px){
	.recruit_001 {
		margin: 0 auto;
		width: 84%;
		padding: 16vw 0 0;
	}
	.recruit_001.fixed{
		padding:33vw 0 0;
	}
	h2 {
		font-size: 3vw;
	}
	h2 span {
		font-size: 10.5vw;
	}
	.recruit_001>div p {
		font-size: 3.6vw;
	}
	.recruit_001 .name {
		margin: 6vw 0 12vw;
	}
	.recruit_001 dl {
		display: block;
		width: 100%;
		padding: 12vw 10vw;
		border-radius: 4vw;
	}
	.recruit_001 dt {
		display: block;
		width: 40vw;
		height: 25.5vw;
		padding-top: 14.5vw;
		line-height: 1.3;
		font-size: 4.5vw;
		font-weight: bolder;
		margin: 0 auto 9vw;
	}
	.recruit_001 dd {
		display: block;
		font-size: 3.4vw;
		position: relative;
		padding:0;
		font-weight: bolder;
	}
	.recruit_001 dd li:not(:last-child) {
		margin-bottom: 3.5vw;
	}
	.recruit_001 dd:after {
		width: 19vw;
		height: 22vw;
		bottom: auto;
		top: -28vw;
	}
}



.recruit_002{
	width:100%;
	padding: 170px 120px 130px 220px;
    box-sizing: border-box;
	position: relative;
}
.recruit_002>div{
	max-width: 1330px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.recruit_002>div>div{
	max-width:1150px;
	width:64%;
}
.recruit_002 h3{
	font-size:32px;
	line-height:1.5;
	margin: 0 0 40px;
}
.recruit_002>div p{
	font-size:17px;
	line-height:2.3;
	margin-bottom:80px;
}
.recruit_002 dt{
	font-size:19px;
	padding:15px 25px;
	box-sizing: border-box;
	background: #02022d;
	color:#fff;
	letter-spacing: 2px;
	font-weight: bolder;
	border-radius: 10px;
}
.recruit_002 dd strong{
	padding:60px 0;
	text-align: center;
	font-weight: bold;
	font-size:36px;
	display: block;
}
.recruit_002 dd ul{
	padding:50px 0 50px 85px;
}
.recruit_002 dd li {
	font-size:19px;
}
.recruit_002 dd p{
	padding:30px 24px 56px;
	margin:0;
}
.recruit_002 dd li:not(:last-child){
	margin-bottom:20px;
}
.recruit_002 dd li span{
	font-size: 12px;
	vertical-align: middle;
}
.recruit_002 a{
	padding: 0 0 0 25px;
	transform: translateX(0);
	transition:0.5s;
}
.recruit_002 a:hover{
	transform: translateX(25px);
	transition:0.5s;
}
.rec_002_01{
    position: absolute;
    top: 534px;
    left: 50%;
    margin-left: -750px;
    width: 572px;
}
.rec_002_02{
    position: absolute;
    top: 950px;
    left: 50%;
    margin-left: -578px;
    width: 400px;
}
@media screen and (max-width:1200px){
	.recruit_002 {
		padding: 15vw 5vw;
	}
	.recruit_002 dd ul {
		padding: 50px 0 50px 0px;
		line-height: 1.5;
	}
}
@media screen and (max-width:600px){
	.recruit_002 {
		width: 84%;
		padding: 24vw 0 35vw;
		margin: 0 auto;
	}
	.recruit_002>div {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	.recruit_002 h2{
		margin:0 0 50vw;
	}
	.rec_002_01 {
		position: absolute;
		top: 50vw;
		left: -8vw;
		margin-left: 0;
		width: 100vw;
	}
	.recruit_002 h2 {
   		margin: 0 0 92vw;
		width: 100%;
	}
	.recruit_002>div>div {
		width: 100%;
	}
	.recruit_002 h3 {
		font-size: 6vw;
		line-height: 1.8;
		margin: 0 0 8vw;
	}
	.recruit_002>div>div>p {
		font-size: 3.6vw;
		line-height: 2.3;
		margin-bottom: 80vw;
	}
	.rec_002_02 {
		position: absolute;
		top: 336vw;
		left: 0;
		margin-left: 0;
		width: 100%;
	}
	.recruit_002 dt {
		font-size: 3.6vw;
		padding: 3vw 4vw;
		letter-spacing: 2px;
		border-radius: 2vw;
	}
	.recruit_002 dd strong {
    	padding: 12vw 0;
		font-size: 7vw;
	}
	.recruit_002 dd ul {
		padding: 9vw 3vw;
	}
	.recruit_002 dd li {
		font-size: 4vw;
		text-indent: -1.2em;
		line-height: 1.5;
		margin-left: 1.2em;
	}
	.recruit_002 dd p {
		padding: 5vw 0;
		font-size: 3.6vw;
		margin: 0 0 5vw;
	}
	.recruit_002 a{
		padding:0 20vw;
	}
	.recruit_002 a img{
		width:38vw;
	}
	
}


.recruit_003{
	padding:153px 0;
	background:#dee3e8;
}
.recruit_003 h2{
	text-align:center;
	width:100%;
	margin: 0 0 104px;
}
.recruit_003>div{
	max-width:1282px;
	width:90%;
	margin: 0 auto;
}
.recruit_003 ol{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.recruit_003 ol li{
	width:31%;
	max-width:370px;
	background:#fff;
	padding:190px 40px 70px;
	box-sizing: border-box;
	position: relative;
	margin: 0 0 230px;
}
.recruit_003 ol li:not(:nth-child(3n)):before{
	content:"";
	width:67px;
	height:16px;
	background:url("../img/arrow_s.svg") center / cover no-repeat;
	display: inline-block;
	position: absolute;
	right:-67px;
	bottom:50%;
	margin-bottom:6px;
}
.recruit_003 ol li:nth-child(3n):not(:last-child):before{
	content: "";
    width: 750px;
    height: 194px;
    background: url(../img/arrow_l.svg) center / cover no-repeat;
    display: inline-block;
    position: absolute;
    right: 274px;
    bottom: -200px;
    margin-bottom: 6px;
}
.recruit_003 ol li span{
    vertical-align: middle;
    width: 190px;
    height: 115px;
    padding-top: 75px;
    text-align: center;
    line-height: 1.5;
    background-color: #02022d;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -95px;
	font-family: Century Gothic, sans-serif;
	font-weight: bold;
}
.recruit_003 ol li dt{
	font-size:26px;
	line-height: 1.4;
	text-align: center;
	font-weight: bold;
	padding-bottom:36px;
	border-bottom:1px solid #d4dae1;
	margin-bottom:30px;
}
.recruit_003 ol li dd{
	font-size:17px;
	line-height:1.8;
	padding:0 10px;
}
.recruit_003 ol li>img{
	position: absolute;
}
.recruit_003 ol li:first-child>img{
	width: 238px;
    bottom: -118px;
    left: 100px;
}
.recruit_003 ol li:nth-child(3)>img {
    position: absolute;
    width: 207px;
    left: -103px;
    top: 0;
}
.recruit_003 ol li:nth-child(6)>img {
	width: 244px;
    right: 19px;
	bottom: -108px;
}
.recruit_003 ol li:nth-child(8)>img {
	width: 235px;
    right: 19px;
	bottom: -93px;
}
.recruit_003 ol li:nth-child(9)>img {
	width: 145px;
    right: 47px;
    bottom: -37px;
}
.recruit_003 ol li:nth-child(n+7){
	margin-bottom:65px;
}
@media screen and (max-width:1200px){
	.recruit_003 ol li {
		width: 29%;
		background: #fff;
		padding: 17vw 2vw 8vw;
		margin: 0 0 26vw;
	}
	.recruit_003 ol li:not(:nth-child(3n)):before {
		width: 5vw;
		height: 1vw;
		right: -5vw;
	}
	.recruit_003 ol li:nth-child(3n):not(:last-child):before {
		width: 77vw;
    	height: 20vw;
		right: 3vw;
		bottom: -20vw;
		margin-bottom: 0vw;
	}
}
@media screen and (max-width:900px){
	.recruit_003 ol li {
		padding:22vw 2vw 8vw;
	}
	.recruit_003 ol li dt {
		font-size: 2vw;
	}
	.recruit_003 ol li:nth-child(3)>img {
		position: absolute;
		width: 207px;
		left: 0;
		top: 443px;
	}
}
@media screen and (max-width:600px){
	.recruit_003 {
		padding: 21vw 0 2vw;
	}
	.recruit_003>div{
		width:80%;
	}
	.recruit_003 ol li {
		width: 31%;
		padding: 44vw 10vw 17vw;
		margin: 11vw 0 48vw;
		height: 115vw;
	}
	.recruit_003 ol li span {
		vertical-align: middle;
		width: 44vw;
		height: 28vw;
		padding-top: 17vw;
		font-size: 7vw;
		top: -11vw;
		left: 50%;
		margin-left: -22vw;
	}
	.recruit_003 h2 {
		margin: 0 0 14vw;
	}
	.recruit_003 ol li dt {
		font-size: 5.4vw;
		padding-bottom: 8vw;
    	margin-bottom: 5vw;
	}
	.recruit_003 ol li:nth-child(3n):not(:last-child):before{
		display: none;
	}
	.recruit_003 ol li img.rec_003_01{
		position: absolute;
		width: 50vw;
		bottom: -24vw;
		right: 7vw;
	}
	.recruit_003 ol li img.rec_003_02{
		width: 48vw;
		bottom: -25vw;
		right: 5vw;
	}
	.recruit_003 ol li img.rec_003_03{
		width: 50vw;
		right: 5vw;
		bottom: -22vw;
	}
	.recruit_003 ol li img.rec_003_04{
		width: 49vw;
		right: 7vw;
		bottom: -18vw;
	}
	.recruit_003 ol li img.rec_003_05{
		width: 32vw;
		right: 11vw;
		bottom: -10vw;
	}
	.recruit_003 ol li dd {
		font-size: 3.6vw;
		padding: 0;
	}
	.slick-num{
		position: absolute;
		left: 30vw;
		bottom: 16vw;
		font-size: 7vw;
		font-weight: bold;
		font-family: Century Gothic, sans-serif;
		font-style: italic;
		letter-spacing: 0.5vw;
	}
	.recruit_003>div p{
		font-size: 3.6vw;
		line-height: 1.5;
		text-indent: -1em;
    	margin: 0 0 5vw 1em;
	}
}


.recruit_004{
	width:100%;
	padding: 170px 120px 140px 220px;
    box-sizing: border-box;
	position: relative;
}
.recruit_004>div{
	max-width: 1330px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.recruit_004>div>div{
	max-width:1150px;
	width:64%;
}
.recruit_004 p{
	font-size:17px;
	line-height:2.3;
	margin: 0 0 50px;
}
.recruit_004 a{
	transform: translateX(0);
	transition:0.5s;
}
.recruit_004 a:hover{
	transform: translateX(25px);
	transition:0.5s;
}
@media screen and (max-width:1300px){
	.recruit_004 {
    	width: 100%;
		padding: 15vw 5vw 15vw;
	}
	.recruit_004>div>div{
		width:60%;
	}
}
@media screen and (max-width:900px){
	.recruit_004>div{
		display:block;
	}
	.recruit_004 h2{
		width:100%;
		margin:0 0 50px; 
	}
	.recruit_004>div>div{
		width:100%;
	}
}
@media screen and (max-width:600px){
	.recruit_004 {
		width: 84%;
		padding: 28vw 0;
		margin: 0 auto;
	}
	.recruit_004>div{
		display:block;
	}
	.recruit_004>div>div{
		width:100%;
	}
	.recruit_004 p {
		font-size: 3.6vw;
		line-height: 2.3;
		margin: 0 0 10vw;
	}
	.recruit_004>div>div a{
		margin: 0 auto;
		padding: 0 20vw;
	}
	.recruit_004>div>div a img{
		width: 38vw;
	}
}



.recruit_005 .recruit_005_content{
	width:80%;
	max-width:1140px;
	margin: 0 auto;
	padding:160px 0 97px;
}
.recruit_005_main{
	height:585px;
	background:url("../img/rec_005_01.png") center / cover no-repeat;
	background-attachment: fixed;
}
.recruit_005 h2{
	font-size: 35px;
	width: 100%;
	text-align: center;
	margin:0 0 70px;
}
.recruit_005 dl{
	display: table;
	border-bottom:1px solid #b7c1cd;
	width:100%;
}
.recruit_005 dl:nth-child(2){
	border-top:1px solid #b7c1cd;
}
.recruit_005 dl dt{
	display: table-cell;
	width:20%;
	text-align: center;
	padding:70px 0;
	line-height: 2;
	font-size: 19px;
	font-weight: bold;
}
.recruit_005 dl dd{
	display: table-cell;
	width:80%;
	padding:70px 60px;
	vertical-align: middle;
	font-size: 19px;
	line-height: 2;
}
.recruit_005 dl dd span{
	font-size:15px;
}
.recruit_005_deadline{
	background-color: #dee3e8;
    width: 80%;
    box-sizing: border-box;
    padding: 105px 60px;
	max-width: 1140px;
	margin: 0 auto 160px;
	position: relative;
	font-size:35px;
	text-align: center;
	font-weight: bold;
}
.recruit_005_deadline img{
	position: absolute;
    right: 93px;
	bottom: -60px;
}
@media screen and (max-width:600px){
	.recruit_005_main{
		height:40vw;
		background:url("../img/sp_rec_005_01.png") center / cover no-repeat;
	}
	.recruit_005 .recruit_005_content {
		width: 84%;
		padding: 16vw 0 14vw;
	}
	.recruit_005 h2 {
		font-size: 7vw;
		letter-spacing: 2px;
		width: 100%;
		margin: 0 0 10vw;
	}
	.recruit_005 dl{
		display:block;
	}
	.recruit_005 dl dt {
		width: 100%;
		display: block;
		padding: 8vw 0 3vw;
		text-align: left;
		font-size: 4vw;
	}
	.recruit_005 dl dd {
		display: block;
		width: 100%;
		padding: 0 0 10vw;
		font-size: 3.6vw;
	}
	.recruit_005_deadline{
	    padding: 14vw 0;
		font-size: 5vw;
		margin: 0 auto 22vw;
		line-height: 2;
	    letter-spacing: 2px;
	}
	.recruit_005_deadline img {
		right: 5vw;
		bottom: -7vw;
		width: 16vw;
	}
}

.recruit_006{
	position: relative;
}
.recruit_006 h2{
    margin: 0 auto 240px;
	width: 100%;
	color:#fff;
	padding-left:224px;
	box-sizing: border-box;
}
.recruit_006 h2 span{
	letter-spacing: 4px;
	padding: 70px 0 10px;
}
.recruit_006 h2:before{
	content:"";
	background-color:#02022d;
	height:210px;
	display:inline-block;
	position: absolute;
	left:0;
	top:0;
	z-index: -1;
	min-width:680px;
}
.recruit_006 form{
	width:80%;
	margin: 0 auto 160px;
	max-width:750px;
	box-sizing: border-box;
}
.recruit_006 dl{
	width: 100%;
	margin: 0 0 44px;
}
.recruit_006 dl:nth-child(5){
	margin:0 0 17px;
}
.recruit_006 dt{
	margin: 0 0 10px;
}
.recruit_006 input[type="text"],
.recruit_006 select,
.recruit_006 textarea{
	width: 100%;
	padding:10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #b3b3b3;
	box-sizing: border-box;
}
.recruit_006 select{
	width: 300px;
}
.recruit_006 .contact_send input{
	width:300px;
	margin: 0 auto;
	background-color:#ccc;
	transition: 0.5s;
	padding:14px 0;
	text-align: center;
	font-size:18px;
	appearance: none;
	letter-spacing: 0.5em;
	color:#fff;
	border:none;
	display: block;
	font-weight: normal;
}
.recruit_006 .contact_send input:hover{
	background-color:#333;
	transition: 0.5s;
}
.recruit_006 dt span{
	color:#c1272d;
	margin-left:0.2em;
}
@media screen and (max-width:900px){
	.recruit_006 h2 {
		padding-left: 10vw;
	}
}
@media screen and (max-width:600px){
	.recruit_006 h2{
		padding-left:8vw;
    	margin: 0 auto 24vw;
	}
	.recruit_006 h2:before {
		height: 42vw;
		min-width: 100%;
	}
	.recruit_006 h2 span {
		padding: 13vw 0 2vw;
	}
	.recruit_006 .contact_send {
		width: 80%;
	}
	.recruit_006 .contact_send input{
		width:100%;
	}
	.recruit_006 dl {
		width: 100%;
		margin: 0 0 10vw;
	}
	.recruit_006 dt{
		font-size: 3.8vw;
	}
	.recruit_006 select {
		width: 50vw;
	}
	.recruit_006 form {
    	width: 84%;
		margin: 0 auto 36vw;
	}
}
footer{
	overflow: hidden;
}
footer>div{
	float:left;
	width:50%;
	padding:0 0 67px 60px;
}
footer>div>a{
	display:block;
	margin:0 0 5px;
}
footer>div p,
footer>div address{
	font-size:16px;
	line-height:2;
}
footer>div a{
	font-size:16px;
	color:#02022d;
}
.copyright{
	float: right;
	padding:87px 30px 0 0;
}
.copyright a{
	color:#02022d;
	font-size:10px;
}

@media screen and (max-width:600px){
	footer>div {
		float: none;
		width: 100%;
		padding: 0 0 11vw 8vw;
		font-size: 3.6vw;
		box-sizing: border-box;
	}
	footer>div>a{
		margin:0 0 3vw;
	}
	footer>div a{
		font-size:3.6vw;
	}
	.copyright {
		float: none;
		padding: 0 8vw 6vw;
	}
	footer>div p,
	footer>div address {
		font-size: 3.6vw;
		line-height: 2;
	}
}