@charset "utf-8";


/*------------------------------------------------------------
	
	
	system.css


------------------------------------------------------------*/


/*------------------------------------------------------------
 　カバー画像
------------------------------------------------------------*/

#cover-area .cover-vis {
	background-image: url('../img/job-description/img_cover.jpg');
}



/*------------------------------------------------------------
 　タブ切り替え
------------------------------------------------------------*/

#page-navi {
	text-align: center;
	margin-bottom: 50px;
}

@media only screen and (min-width: 813px) {
	
	#page-navi {
		margin-bottom: 60px;
	}

}

@media only screen and (max-width: 812px) {
	
	#page-navi li {
		display: inline-block;
		font-size: 4vw;
		font-weight: 500;
		line-height: 1;
			border-right: 1px solid #ccc;
			padding: 6px 10px;
	}
	
	#page-navi li:last-child {
		border-right: none;
	}

}



#page-navi li a:hover {
	text-decoration: none;
}

#page-navi li a.selected:after {
	display: block;
    content: '';
    background: #B89B81;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -10px;
    left: 0;
}



/*------------------------------------------------------------
 　募集要項
------------------------------------------------------------*/

h3 {
    font-size: 5.4vw;
	font-family: "heisei-mincho-std", serif;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

@media only screen and (min-width: 813px) {
	
	h3 {
		font-size: 3rem;
		margin-bottom: 25px;
	}
	
}

h3 span {
	display: inline-block;
	position: relative;
	z-index: 1;
}

h3 span:before {
	content: '';
	display: block;
	background-image: linear-gradient(91deg, rgba(244,191,122,0.60) 0%, rgba(255,232,189,0.60) 100%);
	width: 100%;
	height: 10px;
	position: absolute;
	bottom: 12px;
	z-index: -1;
}

/*イメージ画像*/
.summary-img {
	font-size: 0;
	text-align: center;
	margin-bottom: 20px;
}

.summary-img div {
	display: inline-block;
	width: 32%;
	margin-right: 2%;
}

.summary-img div:nth-child(3n) {
	margin-right: 0
}

@media only screen and (min-width: 813px) {
	
	.summary-img {
		margin-bottom: 35px;
	}

	
}

/*概要テーブル*/
.table-holder {
	border-bottom: 1px solid #ddd;
    padding-bottom: 60px;
    margin-bottom: 50px;
}

.table-holder:last-of-type {
	border: none;
	padding-bottom: 0;	
}

.table-holder table {
	margin-bottom: 30px;
}

@media only screen and (min-width: 813px) {
	
	.table-holder {
		padding-bottom: 90px;
		margin-bottom: 90px;
	}
	
	.table-holder:last-of-type {
	}
	
	.table-holder table {
		margin-bottom: 40px;
	}
	
}

.table-holder table th {
	width: 100px;
	text-align: center;
}

.table-holder table td {
	width: calc(100% - 100px);
}

@media only screen and (min-width: 813px) {
	
	.table-holder table th {
		width: 200px;
	}
	
	.table-holder table td {
		width: calc(100% - 200px);
	}
	
}


/*エントリーボタン*/
.table-holder a.button {
	width: 100%;
	margin: 0 auto;
}

.table-holder a.button:before {
	content: '';
	background: url(../img/common/icon-external.svg) center center / contain no-repeat;
	width: 17px;
	height: 14px;
	right: 0;
}

.table-holder a.button:hover:before {
	background-image: url(../img/common/icon-external-wht.svg);
}

@media only screen and (min-width: 813px) {
	
	.table-holder a.button {
		width: 360px;
	}
	
	.table-holder a.button:before {
		right: 10px;
	}

	
}





/*現在募集していません*/
.not-recruiting p {
	font-size: 2rem;
	font-weight: 500;
	font-family: "heisei-mincho-std", serif;
	text-align: center;
    padding: 10px 0 120px;
}