/** style-entry.css **/


/*==========================================
 mainImg
===========================================*/
#mainImg{}

/**********
 mainImg_pc
**********/
#mainImg_pc{
	height: calc(82vh - 110px);
	background: url("../entry/img/mainImg_entry.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
	#mainImg_pc{
		background: none;
		height: auto;
		width: 100%;
	}
}

#mainImgInner{
	position: relative;
	font-weight: bold;
	text-align: left;
	width: 90%;
	height: 100%;
	margin: 0 auto;
}

#mainImgInner p{
	display: block;
	position: absolute;
	top: 30%;
	left: 0;
}

#mainImgInner p span{
	font-size:3em;
	display: block;
}

@media screen and (max-width: 768px) {
	#mainImgInner{
		position: static;
		display: none;
	}
}

/**********
 mainImg_mb
**********/
#mainImg_mb{
	display:none;
}

@media screen and (max-width: 768px) {
	#mainImg_mb{
		display: block;
	}
	#mainImg_mb img{
		width: 100%;
		height: 180px;
		object-fit: cover;
	}
	#mainImg_mb p{
		font-size: 1.2em;
	}

}


/*==========================================
 midashi
===========================================*/
/*********
 midashi
**********/
#midashi{
	margin-top: 60px;
}

#midashi h2{
	width: 30%;
}

#midashi div{
	width: 56%;
	text-align: left;
}

#midashi div #midashi_imgtxt{
	display: none;
}


@media screen and (max-width: 768px) {
	#midashi h2{
		width: 100%;
	}

	#midashi div{
		width: 100%;
	}
	#midashi div #midashi_imgtxt{
		display: block;
		font-size: 1.2em;
		margin-bottom: 20px;
		font-weight: bold;
	}
}



/*==========================================
 description
===========================================*/
#description{
	margin: 60px 0 100px;
	padding: 60px 0;
	background: #fff8e1;
}


.search_item {
	cursor: pointer;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 70px;
}

.search_item a{
	display: inline-block;
	padding: 10px 25px;
	border: 1px solid #f15a24;
	border-radius: 20px;
	text-decoration: none;
	text-align: center;
	margin-left: 10px;
	margin-bottom: 15px;
	font-size: 2rem;
	background-color: #fff;
	color: #000;
    transition: all 0.2s 0s ease;
}


.search_item a.active {
	background: #f15a24;
	color: #fff;
}


/*==========================================
 job
===========================================*/

.job{
	background: #fff;
	border-radius: 20px;
	margin-bottom: 85px;
}

section .job:last-of-type{
	margin-bottom: 20px;
}

.job > div{
	padding: 40px;
}

.job h4{
	font-size: 1.8em;
	background: #f15a24;
	padding: 17px 0 15px;
	text-align: center;
	border-radius: 20px 20px 0 0;
	color: #fff;
}

.job h4 span{
	border-bottom: 1px solid #f15a24;
}

.job h5{
	text-align: center;
	font-size: 1.3em;
}

@media screen and (max-width: 768px) {
	.job > div{
		padding: 20px;
	}
	.job h4{
		font-size: 1.4em;
	}

	
}

/** pageLinkBtn **/
.job a.pageLinkBtn{
	width: 50%;
	display: block;
	margin: 30px auto 10px;
	background: #ffce00;
}

.job a.pageLinkBtn p{
	font-size: 1.2em;
	font-weight: bold;
	color: #000;
}

.job .pageLinkBtn:hover p,
.job .pageLinkBtn:active p{
	color:#fff;
}

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

	.job a.pageLinkBtn{
		width: 80%;
	}
	.job a.pageLinkBtn p{
		font-size: 1.2em;
		font-weight: bold;
	}

}


/**********
 jobInner
**********/
.jobInner{
	padding-top: 30px;
}

.jobInner h6{
	color: #555;
	border-bottom: solid 2px #f15a24;
	padding: 10px 0 8px;
	margin-bottom: 25px;
	font-size: 1.2em;
}
.jobInner h6:first-letter {
	color: #f15a24;
}



.jobInner table{
	box-sizing: border-box;
	border-collapse:collapse;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}
.jobInner table th,
.jobInner table td{
	border: 1px solid #999;
	text-align: left;
}

.jobInner table th > p,
.jobInner table td > p,
.jobInner table td > ul,
.jobInner table td > div{
	padding: 15px 20px;
}

.jobInner table th{
	background: #efefef;
	width: 22%;
}



@media screen and (max-width: 768px) {
    .jobInner table th,
    .jobInner table td{
		display: block;
		width: 100%;
    }
	
	.jobInner table th{
		border-bottom: none;
	}
	.jobInner table tr td{
		border-bottom: none;
	}
	.jobInner table tr:last-of-type td{
		border-bottom: 1px solid #999;
	}
	
	.jobInner table th > p,
	.jobInner table td > p,
	.jobInner table td > ul,
	.jobInner table td > div{
		padding: 10px 15px;
	}
}


