@charset "UTF-8";
/* -------------------------------- *\
    共通
\* -------------------------------- */
h4 {
	margin: 0;
}
dl,dd {
	line-height: 1.8;
}
.mb5 {
	margin-bottom: 5px;
}

.recruit-section {
	margin-bottom: 60px;
}
.recruit-section__title {
	margin: 0 0 15px;
	font-size: 20px;
	font-weight: bold;
	color: #1e8e71;
}
.recruit-btn {
	max-width: 250px;
	margin: 80px auto;
}
.recruit-btn a {
	display: block;
	border: solid 1px #1e8e71;
	background-color: #1e8e71;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	padding: 10px;
	text-align: center;
	transition: all .3s ease;
}
.recruit-btn a:hover {
	background-color: #fff;
	color: #1e8e71;
	text-decoration: none;
}


/* -------------------------------- *\
    ブロックごと
\* -------------------------------- */
.recruit-message {
	margin: 30px 0 60px;
	font-size: 16px;
}
.recruit-message__title {
	margin: 0 0 20px;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	color: #1e8e71;
}
.recruit-message__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.recruit-message__text {
	flex-basis: 60%;
	max-width: 60%;
	padding: 0 15px;
}
.recruit-message__img {
	flex-basis: 40%;
	max-width: 40%;
	padding: 0 15px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.recruit-message__row {
		display: block;
		margin: 0;
	}
	.recruit-message__text, .recruit-message__img {
		max-width: 100%;
		padding: 0;
	}
}
.recruit-benefit__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px!important;
	list-style-type: none;
	background-color: #f0f6e6;
	padding: 15px;
}
.recruit-benefit__list li {
	flex-basis: 25%;
	max-width: 25%;
	padding: 0 5px;
	display: flex;
	align-items: flex-start; 
	gap: 8px;
}
.recruit-benefit__list li::before {
	flex-shrink: 0;
	margin-top: 0.5em;
	width: 10px;
	height: 10px;
	background-color: #1e8e71;
	border-radius: 50%;
	content: "";
}
@media screen and (max-width: 991px) {
	.recruit-benefit__list li {
		flex-basis: 33.333%;
		max-width: 33.333%;
	}
}
@media screen and (max-width: 767px) {
	.recruit-benefit__list li {
		flex-basis: 50%;
		max-width: 50%;
	}
}

.recruit-requirements__table {
	width: 100%;
	max-width: 100%;
}
.recruit-requirements__table thead th {
	text-align: center;
}
.recruit-requirements__table tbody {
	text-align: center;
}
.recruit-requirements__table th {
	background-color: #1e8e71;
	color: #fff;
}
.recruit-requirements__table th, .recruit-requirements__table td {
	border: 1px solid #ddd;
}
.recruit-requirements__table th, .recruit-requirements__table td {
	padding: 10px 5px;
}
.table-scroll-text {
	display: none;
}
@media screen and (max-width: 767px) {
	.recruit-requirements__table tr {
		display: table-row;
		width: auto;
	}
	.recruit-requirements__table th {
		display: table-cell;
		width: auto;
	}
	.recruit-requirements__table td {
		display: table-cell;
		width: auto;
	}
}
@media screen and (max-width: 600px) {
	.table-scroll {
		overflow-x: auto;
	}
	.recruit-requirements__table {
		min-width: 600px;
	}
	.table-scroll-text {
		display: block;
		margin-bottom: 5px;
		font-size: 13px;
	}
}

.recruit-faq__group {
	margin-bottom: 20px;
}
.recruit-faq__q {
	position: relative;
	padding: 10px 10px 10px 50px;
	background-color: #f0f6e6;
	font-size: 16px;
}
.recruit-faq__q::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 40px;
	background-color: #1e8e71;
	color: #fff;
	content: "Q";
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
}
.recruit-faq__a {
	position: relative;
	padding: 10px 10px 10px 50px!important;
	font-size: 15px;
}
.recruit-faq__a::before {
	position: absolute;
	top: 15px;
	left: 0;
	width: 40px;
	color: #1e8e71;
	font-weight: bold;
	content: "A";
	display: flex;
	justify-content: center;
	font-family: sans-serif;
}