@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
/* font-family: 'Noto Sans JP', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
/* font-family: 'Noto Serif JP', serif; */

/******** container ********/
.container{
	border-bottom: solid 1px #efefef;
}

/******** intro ********/
.schedule-box{
	box-sizing: border-box;
	margin-bottom: 20px;
}
.schedule-box-head{
	box-sizing: border-box;
	padding: 5px auto;
	background: #59cc59;
	position: relative;
}
.schedule-box-head h2{
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	letter-spacing: 0.04rem;
}
.schedule-box-date p{
	font-weight: 400;
}
.schedule-date{
	font-size: 20px;
	font-weight: 700;
}
.schedule-deadline{
	color: #f00;
}
p.attention{
	display: block;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.3;
}
.intro-attention p{
	font-weight: 400;
}
@media screen and (min-width:768px){
	.schedule-box{
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin: 0 auto;
	}
	.schedule-box-head{
		color: #fff;
		text-align: center;
		position: relative;
		width: 20%;
	}
	.schedule-box-head h2{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		height: 30px;
	}
	.schedule-box-date{
		width: 70%;
	}
}

/******** 採用情報テーブル ********/
.recruit-table table{
	width: 100%;
	font-size: 12px;
	margin: 24px auto;
	border: solid 1px #ddd;
}
th{
	box-sizing: border-box;
	width: 6rem;
	padding: 1rem;
	background: #ddd;
}
td{
	box-sizing: border-box;
	padding: 0 1rem;
	border-bottom: solid 1px #ddd;
}
@media screen and (min-width:768px){
	.recruit-table table{
		font-size: 14px;
	}
	th{
		width: 7rem;
	}
}

