@charset "utf-8";


/* -----------------------------------------------------------
    more.js
-------------------------------------------------------------- */
.more_btn {
	position: relative;
	top: 0;
	left: 0;
	margin: 32px 0 0;
	padding: 15px;
	width: 180px;
	font-weight: 500;
	text-align: center;
	border-radius: 25px;
	border: solid 1px #333;
	overflow: hidden;
	cursor: pointer;
	transition: .3s;
}
.more_btn span::before {
	position: absolute;
	top: 17px;
	right: 15px;
	content: "+";
	color: var(--blue);
	font-size: 1.5rem;
	font-weight: 500;
}

.more_btn:hover {
	opacity: 0.7;
}

.more_btn02 {
	display: none;
	position: relative;
}

.more_btn-detail {
	display: none;
}

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

	.more_btn {
		margin: 20px auto 0;
	}
	/* .more_btn span {
		font-size: 1.4rem;
	} */
	.more_btn span::before {
		top: 17px;
		right: 10px;
	}

	.more_btn .f_con {
		margin: 0 0 0 10px;
		font-size: 1.2rem;
	}

	.sp_more_area02 {
		display: none;
		z-index: 2;
	}
	.more_btn02{
		box-shadow:0 3px 11px -2px rgba(0,0,0,0.1);
		background: #fff;
		color: #333;
		padding: 17px 20px;
		display: block;
		width: 100%;
		cursor: pointer;
		font-size: 2rem;
		font-weight: 700;
		font-family: var(--Montserrat);
	}
	.more_btn02::after {
		position: absolute;
		display: inline-block;
		content:"";
		width: 24px;
		height: 24px;
		background: url(../img/icon_plus.png) no-repeat 0 0;
		background-size: 24px 24px;
		top: 15px;
		right: 15px;
	}

	.more_btn02.open::after {
		background: url(../img/icon_minus.png) no-repeat 0 0;
		background-size: 24px 24px;
	}

	.more_btn02.black::after {
		background: url(../img/icon_plus.png) no-repeat 0 0;
		background-size: 24px 24px;
	}

	.more_btn02.black.open::after {
		background: url(../img/icon_minus.png) no-repeat 0 0;
		background-size: 24px 24px;
	}

	.recruit-nav {
		z-index:16;
		overflow-y: scroll;
		width:100%;
		height:100%;
		-webkit-overflow-scrolling: touch;
		padding: 0 0 20px;
		
		height: 480px;
	}

	.sp_more_area02 .list {
	}
	.sp_more_area02 .list li{
		border-bottom:1px solid #ddd;
	}
	.sp_more_area02 .list li:last-child{
		margin-bottom: 200px;
	}
	.sp_more_area02 .list li span{
		margin: 0 10px 0 0;
		color: #0662b0;
	}
	.sp_more_area02 .list li a{
		padding: 20px;
		display: block;
		color: #333;
	}
	
}