@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; */

/******** main ********/

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

/******** content article section 内********/
.brand-logo-list{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand-logo-martin{
	width: 40%;
}
.brand-logo-others{
	width: 55%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.brand-logo{
	width: 50%;
}
span.head-sub{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: #00b6ff;
}
.brand-logo-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.brand-logo{
	box-sizing: border-box;
	width: 50%;
	padding: 3%;
}
@media screen and (min-width:480px){
	.brand-logo{
		width: 25%;
		padding: 3%;
	}
}
@media screen and (min-width:768px){
	.brand-logo-martin{
		width: 30%;
	}
	.brand-logo-others{
		width: 65%;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.brand-logo{
		width: 30%;
	}
	span.head-sub{
		font-size: 16px;
	}
}

/******** schedule ********/
.schedule-box{
	box-sizing: border-box;
	border: solid 1px #efefef;
	box-shadow: #ddd 0px 0px 10px;
	border-radius: 5px;
	padding: 0 auto 1rem auto;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
}
.schedule-box h2{
	color: #fff;
}
.schedule-box-head-01, .schedule-box-head-02{
	box-sizing: border-box;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 24px;
}
.schedule-box-head-01{
	background: #59cc59;
}
.schedule-box-head-02{
	background: #cc597d;
}
.schedule-box p{
	text-align: center;
	font-weight: 400;
}
span.schedule-date{
	font-size: 18px;
	font-weight: 700;
}
.schedule-deadline{
	color: #f00;
}
a.btn-lBlue{
	background: #00b6ff;
	color: #fff;
	border: solid 1px #00b6ff;
	width: 75%;
	margin: 0 auto 12px auto;
}
p.attention{
	display: block;
	margin: 18px;
	text-align: left;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.3;
	border-bottom: none;
}
@media screen and (min-width:768px){
	.schedule{
		display: flex;
		justify-content: space-between;
	}
	.schedule-box{
		width: 48%;
	}
}

/******** 採用情報テーブル ********/
.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;
	}
}

