@charset "UTF-8";

/* ▼▼▼ 募集要項
====================================================== */

.page_title h1::after{
	background-image: url(../img/application/title_app.png);
}

/* tab_area
---------------------------------------- */
.tab_area{
	display: flex;
	max-width: 1230px;
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	position: relative;
	padding: 0 15px 15px;
	margin: 0 auto 30px;
}
.tab_area::before{
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	bottom: 15px;
	box-shadow: 0 6px 6px rgba(34, 34, 34, .1);
	pointer-events: none;
}
.tab_area li{
	margin-right: 80px;
}
.tab_area li a{
	padding-bottom: 25px;
	position: relative;
}
.tab_area li.is_active a,
.tab_area li a:hover{
	color: #9CA3A7;
	opacity: 1;
}
.tab_area li a::before{
	content: "";
	width: 0;
	border-bottom: 6px solid #B8D200;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.tab_area li.is_active > a::before{
	width: 100%;
}
.tab_area li > a:hover::before{
	width: 100%;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

/* anchor_list
---------------------------------------- */
.anchor_list{
	border-bottom: 1px solid #E7E8E8;
	max-width: 1200px;
	width: calc(100% - 30px);
	display: flex;
	padding: 0;
	margin: 0 auto 50px;
}
.anchor_list li{
	position: relative;
	z-index: 1;
}
.anchor_list li a{
	padding: 15px 20px;
	font-weight: bold;
}
.anchor_list li a::before,
.anchor_list li a::after{
	content: "";
	position: absolute;
	left: 50%;
}
.anchor_list li a::before{
	background: #fff;
	width: 20px;
	height: 20px;
	transform: translateX(-50%);
	bottom: -10px;
}
.anchor_list li a::after{
	background: url(../img/arrow_grn_large.png) no-repeat center/100%;
	width: 12px;
	height: 11.5px;
	transform: translateX(-50%);
	bottom: -7px;
	z-index: 2;
}

section{
	padding: 50px 0;
}
section .read{
	margin: 0 0 65px;
}

section table{
	width: 100%;
}
section table th,
section table td{
	padding: 30px 20px;
	border-bottom: 1px solid #D5D8D9;
	vertical-align: top;
}
section table th{
	width: 195px;
}
section table .notes{
	font-size: 13px;
}
section table.mb{
	margin-bottom: 50px;
}

/* step_wrap
---------------------------------------- */
.step_wrap{

}
.step_wrap > li{
	padding: 25px 0 25px 109px;
	position: relative;
}
.step_wrap > li:not(:last-child):before{
	content: "";
	border-left: 8px solid #EFF1F2;
	position: absolute;
	height: 100%;
	bottom: -25px;
	left: 40.8px;
}
.step_wrap > li .num{
	display: block;
	margin: 0 0 5px;
	color: #fff;
	font-size: 30px;
	text-align: center;
	position: absolute;
	top: 20px;
	left: 30px;
	z-index: 0;
}
.step_wrap > li .num::after{
	content: "";
	background: #B8D200;
	width: 60px;
	height: 60px;
	border-radius: 6px;
	position: absolute;
	transform: translate(-50%,-50%)rotate(-45deg);
	top: 50%;
	left: 50%;
	z-index: -1;
}
.step_wrap > li .step_title{
	font-size: 24px;
	font-weight: bold;
	position: relative;
}
.step_wrap > li .step_title::before{
	content: "";
	border-top: 1px solid #222;
	width: 30px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: -40px;
}
.step_wrap .list{
	margin-top: 30px;
}
.step_wrap .list li{
	background: #F5F7F8;
	padding: 20px 20px 20px 45px;
	position: relative;
}
.step_wrap .list li::before,
.step_wrap .list li::after{
	content: "";
	position: absolute;
}
.step_wrap .list li:not(:last-child)::before{
	border-left: 1px dashed #000;
	height: 32px;
	left: 53px;
	bottom: -22px;
	z-index: 1;
}
.step_wrap .list li:not(:last-child):after{
	content: "";
	background: url(../img/arrow_bk.png) no-repeat center/contain;
	width: 20px;
	height: 13px;
	position: absolute;
	left: 44px;
	bottom: -30px;
	z-index: 1;
}
.step_wrap .list li:not(:last-child){
	margin-bottom: 20px;
}

/* その他職種
====================================================== */
.career_others .page_title h1::after{
	background-image: url(../img/application/title_other.png);
}
.career_others section table:not(:last-of-type){
	margin-bottom: 80px;
}

/* ▼▼▼ 768px
====================================================== */
@media screen and (max-width: 768px) {

	/* tab_area
	---------------------------------------- */
	.tab_area{
		justify-content: center;
		font-size: 14px;
		margin: 0 auto 10px;
	}
	.tab_area li{
		margin: 0 15px;
	}
	.tab_area li a{
		padding-bottom: 15px;
	}
	.tab_area li a::before,
	.tab_area li > p::before{
		border-width: 4px;
	}


	/* anchor_list
	---------------------------------------- */
	.anchor_list{
		border: none;
		justify-content: center;
		flex-wrap: wrap;
		width: 100vw;
		max-width: 375px;
		margin: 0 auto 25px;
		font-size: 12px;
		position: relative;
	}
	.anchor_list li{
		border-bottom: 1px solid #E7E8E8;
	}
	.anchor_list li:first-child:before,
	.anchor_list li::before,
	.anchor_list li:last-child::after{
		content: "";
		position: absolute;
		width: 100vw;
		border-bottom: 1px solid #E7E8E8;
		bottom: -1px;
	}
	.anchor_list li:first-child:before,
	.anchor_list li:nth-child(3n + 1)::before{
		right: 100%;
	}
	.anchor_list li:nth-child(3n)::before,
	.anchor_list li:last-child::after{
		left: 100%;
	}
	.anchor_list li a{
		padding: 15px 15px 5px;
	}
	.anchor_list li a::before{
		width: 15px;
		height: 15px;
		bottom: -5px;
	}
	.anchor_list li a::after{
		width: 9px;
    height: 6px;
		bottom: -4px;
		z-index: 2;
	}

	section{
		padding: 25px 0;
	}
	section .read{
		margin: 0 0 30px;
		padding: 0 15px;
	}

	section table,
	section tbody,
	section tr{
		display: block;
	}
	section table th,
	section table td{
		display: block;
		padding: 15px;
	}
	section table th{
		width: 100%;
		border: none;
		padding-bottom: 0;
		font-size: 16px;
	}
	section table td{
		padding-top: 10px;
	}
	section table .notes{
		font-size: 13px;
	}
	section table.mb{
		margin-bottom: 30px;
	}

	/* step_wrap
	---------------------------------------- */
	.step_wrap{

	}
	.step_wrap > li{
		padding: 16px 0 16px 65px;
		position: relative;
	}
	.step_wrap > li:not(:last-child):before{
		bottom: -15px;
		left: 20.5px;
	}
	.step_wrap > li .num{
		display: block;
		margin: 0 0 5px;
		font-size: 20px;
		top: 15px;
		left: 15px;
		z-index: 0;
	}
	.step_wrap > li .num::after{
		width: 40px;
		height: 40px;
		border-radius: 4px;
	}
	.step_wrap > li .step_title{
		font-size: 18px;
	}
	.step_wrap > li .step_title::before{
		width: 19px;
		left: -22px;
	}
	.step_wrap .txt{
		padding: 0 20px;
	}
	.step_wrap .list{
		margin-top: 30px;
	}
	.step_wrap .list li{
		padding: 15px 20px;
		font-size: 13px;
	}
	.step_wrap .list li:not(:last-child)::before{
		height: 24px;
		transform: translateX(-50%);
		left: 50%;
		bottom: -20px;
		z-index: 1;
	}
	.step_wrap .list li:not(:last-child):after{
		content: "";
		width: 15px;
    height: 11px;
		transform: translateX(-50%);
		left: 50%;
		bottom: -25px;
	}
	.step_wrap .list li:not(:last-child){
		margin-bottom: 15px;
	}


	/* その他職種
	====================================================== */
	.career_others section table:not(:last-of-type){
		margin-bottom: 40px;
	}
	/* .career_others .anchor_list:before{
		border: none;
	} */
}
