@charset "UTF-8";
/* CSS Document */

/* アンカーリンク*/
#anchor_link_area{
	background: #fff;
}
#anchor_link_area .anchor_link_area_wrapper ul{
	color:#08459D;
	font-size:15px;
	font-weight:500;
	text-align: center;
}
#anchor_link_area .anchor_link_area_wrapper ul li{
	flex: 1;
	padding:26px 0;
	line-height: 1.6;
	border-bottom:1px dotted #08459D;
}
#anchor_link_area .anchor_link_area_wrapper ul li+ li{
	border-left:1px dotted #08459D;
	border-right:0;
}
#anchor_link_area .anchor_link_area_wrapper ul li a:hover{
	opacity: 0.7;
}
#anchor_link_area .anchor_link_area_wrapper ul span{
	font-family: 'Montserrat', sans-serif;
	font-size:11px;
	font-weight: 600;
}

@media screen and (max-width: 768px) {
	#anchor_link_area .anchor_link_area_wrapper ul{
		flex-direction: row;
		flex-wrap: wrap;
	}
	#anchor_link_area .anchor_link_area_wrapper ul li{
		flex: auto;
		width:50%;
		padding:16px 0;
	}
	#anchor_link_area .anchor_link_area_wrapper ul li:nth-child(odd){
		border-left:none;
	}
}


h2{
	font-size:50px;
	font-weight:600;
	font-family: 'Montserrat', sans-serif;
	color:#08459D;
	text-align: center;
}
h3{
	font-size:15px;
	font-weight:600;
	margin-bottom: 50px;
	color:#08459D;
	text-align: center;
}

@media screen and (max-width: 768px) {
	h2{
		font-size:8vw;
	}
}

/* インタビュー */
#interview{
	padding:150px 0;
	background: #F7F7F7;
	margin:0 auto;
	color:#121212;
	line-height: 1.8;
	font-size:15px;
}
#interview .interview_wrapper{
	max-width:1720px;
	margin:0 auto;
}
#interview .interview_right{
	background: linear-gradient(to right, #F7F7F7 0%, #F7F7F7 30%, #ffffff 30%, #ffffff 100%);
	padding:150px 100px;
	justify-content: center;
}
#interview1,#interview2,#interview3{
	margin-top:-150px;
	padding-top: 150px;
}
#interview .interview_right_imagebox,
#interview .interview_right_textbox,
#interview .interview_left_imagebox,
#interview .interview_left_textbox
{
	width:100%;
}
#interview .interview_right_textbox{
	max-width: 960px;
}

#interview .interview_right_imagebox{
	padding-right:40px;
}
#interview .interview_right_imagebox img{
	width: 100%;
	height:auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 0 5px 5px 0;
}
#interview .interview_left{
	background: linear-gradient(to right, #F7F7F7 0%, #F7F7F7 70%, #ffffff 70%, #ffffff 100%);
	padding:150px 100px;
	justify-content: center;
}
#interview .interview_left_textbox{
	max-width: 960px;
}
#interview .interview_left_imagebox{
	padding-left:40px;
}
#interview .interview_left_imagebox img{
	width: 100%;
	height:auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 5px 0 0 5px;
}
#interview h4{
	font-size: 24px;
	font-weight:600;
	color:#00459D;
}
#interview h5{
	font-size:18px;
	font-weight: 600;
	color:#00459D;
	margin:40px 0 20px;
}

@media screen and (max-width: 768px) {
	#interview{
		padding:60px 0px;
		font-size:14px;
	}
	#interview .interview_right{
		flex-direction: column;
		padding: 0 20px;
	}
	#interview .interview_left{
		flex-direction: column-reverse;
		padding: 0 20px;
		margin:60px 0;
	}
	#interview .interview_right_imagebox,
	#interview .interview_right_textbox,
	#interview .interview_left_imagebox,
	#interview .interview_left_textbox{
		width:100%;
		padding:0;
	}
	#interview .interview_right_imagebox img,
	#interview .interview_left_imagebox img
	{
		margin-bottom:40px;
	}
}


/* 募集概要エリア */
#outline{
	padding:150px 100px 80px 100px;
	background: #ffffff;
	margin:0 auto;
	color:#121212;
	line-height: 1.8;
	font-size:15px;
}
#outline .outline_wrapper{
	max-width: 1720px;
	margin: 0 auto;
}
/*tabの形状*/
#outline .tab{
	display: flex;
	flex-wrap: wrap;
}
#outline .tab li{
	flex:1;
}
#outline .tab li a{
	display: block;
	background:#F7F7F7;
	color:#00459D;
	font-weight:600;
	margin:0 2px;
	padding:20px 20px;
	text-align: center;
}
/*liにactiveクラスがついた時の形状*/
#outline .tab li.active a{
	background:#08459D;
	color:#fff;
	font-weight:600;
}
/*エリアの表示非表示と形状*/
#outline .area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 40px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/*areaにis-activeというクラスがついた時の形状*/
#outline .area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
#outline .area table{
	width:100%;
}
#outline .area tr th{
	width:20%;
	color:#08459D;
	font-size:15px;
	padding:30px;
	border-bottom:1px solid #707070;
	line-height: 1.5;
}
#outline .area tr td{
	color:#121212;
	font-size:15px;
	padding:30px;
	border-bottom:1px solid #707070;
	line-height: 1.5;
}
#outline .area ul{
	list-style: disc inside;
}

@media screen and (max-width: 768px) {
	#outline{
		padding:60px 20px;
	}
	#outline .area {
		padding:30px;
	}
	#outline .area tr th{
		display: block;
		width:100%;
		border-bottom:none;
		padding:20px 20px 10px 20px;
		font-size:14px;
	}
	#outline .area tr td{
		display: block;
		width:100%;
		padding:10px 20px 20px 20px;
		font-size:14px;
	}
}

/* エントリー */
#entry{
	background:#fff;
	padding: 0 100px 150px 100px;
}
#entry .entry_wrapper{
	max-width: 1720px;
	margin:0 auto;
}
#entry .entry_btn a{
	display: block;
	text-align: center;
	background: #00459D;
	color:#fff;
	font-size: 28px;
	font-weight: 500;
	padding:40px 100px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 80px;
}
#entry .entry_btn a:before{
	content: "";
	display: inline-block;
	background-image: url("img/arrow-r.svg");
	background-repeat: no-repeat;
	position: absolute;
	height:50px;
	width:50px;
	right:0;
	top:50%;
}
#entry .entry_btn a span{
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color:rgba(255,255,255,0.5);
	font-weight: 600;
}
#entry .operator_btn a{
	margin:0 auto;
	display: block;
	text-align: right;
	background-image: url("img/operator_btn.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color:#fff;
	font-size: 28px;
	font-weight: 500;
	padding:80px 60px;
	border-radius: 5px;
	position: relative;
	width:600px;
}
#entry .operator_btn a:before{
	content: "";
	display: inline-block;
	background-image: url("img/arrow-r.svg");
	background-repeat: no-repeat;
	position: absolute;
	height:50px;
	width:50px;
	right:0;
	top:48%;
}
#entry .operator_btn a:hover,
#entry .entry_btn a:hover{
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	#entry{
		padding:0 20px 60px 20px;
	}
	#entry .entry_btn a{
		font-size: 20px;
		padding:30px 30px;
		margin-bottom: 20px;
	}
	#entry .operator_btn a{
		font-size: 20px;
	font-weight: 500;
	padding:40px 60px;
	border-radius: 5px;
	position: relative;
	width:100%;
	}
}


@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}