@charset "utf-8";
/* CSS Document */

section.summary {
	padding: 4vw 0px 13vw;
}

.recruit_list {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
	gap: 3rem;
}

.recruit_list li {
	background: #FFF;
}

.recruit_list li::after {
	content: '';
	background: url("../images/common/sankaku_right.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 24px;
	height: 24px;
	bottom: 20px;
	right: 20px;
	position: absolute;
}

.recruit_list li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 2rem;
}

.recruit_subject {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 5px 20px;
	margin: 20px 0px 30px;
}

.job_name {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	font-weight: bold;
}

.job_category {
	background: #B7002C;
	font-size: 1.2rem;
	padding: 2px 20px;
	color: #FFF;
	border-radius: 5px;
	width: auto !important;
}

.basic_table {
	background: #FFF;
	padding: 3rem;
	margin: 0px auto;
	border-radius: 20px;
	max-width: 990px;
	width: 100%;
}

section.recruit_contact {
	padding-top: 0px;
}

.recruit_contact_wrap {
	background: #FBF2F4;
	max-width: 990px;
	width: 90%;
	margin: 0px auto 10vw;
	padding: 3vw;
	display: grid;
	place-items: center;
}

.recruit_contact_ttl {
	font-size: clamp(1.6rem,3vw,3rem);
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
	margin-bottom: 1vw;
}

.recruit_tel_ttl {
	font-size: clamp(1.3rem,2vw,2rem);
	font-weight: 600;
	text-align: center;
}

.recruitr_tel_box .tel_num {
	margin: 5px 0px;
}

.recruit_entry_btn {
	background: #B7002C;
	max-width: 600px;
	width: 90%;
	margin: 20px auto;
	border-radius: 50px;
	color: #FFF;
	font-size: clamp(1.5rem,1.8vw,1.8rem);
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
}

.recruit_entry_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
}

.recruit_entry_btn a::before {
	content: '';
	background: url("../images/recruit/icon_recruit_02.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 22px;
	height: 25px;
	top: 2px;
	position: relative;
	margin-right: 10px;
}

.back_btn_wrap {
	width: 100%;
}

.back_btn {
	max-width: 500px;
	width: 80%;
	margin: 0px auto;
	background: #242A39;
	color: #FFF;
	font-size: clamp(1.3rem,1.6vw,1.6rem);
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
	border-radius: 50px;
}

.back_btn a {
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.back_btn a::after {
	content: '';
	background: url("../images/common/arrow_white_right.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 10px;
	height: 20px;
	right: 30px;
	position: absolute;
}



@media screen and (max-width: 600px) {
	.basic_table {
		padding: 2rem 1rem;
	}
}


@media screen and (max-width: 450px) {
	.recruit_subject > * {
		width: 100%;
		text-align: center;
	}
}


