@charset "UTF-8";

.recruit__text {
	margin-bottom: 6rem;
	font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
	.recruit__text {
		margin-bottom: 3rem;
		font-size: 1.4rem;
	}
}

/* =========================================
accordion
========================================= */

.accordion {
	position: relative;
	width: 100%;
}

/* =========================================
accordion item
========================================= */

.accordion-item {
	margin-bottom: 3rem;
	border: 1px solid #002750;
	border-radius: 3rem;
	overflow: hidden;
	background: #FFF;
}

@media screen and (max-width: 1024px) {
	.accordion-item {
		margin-bottom: 2.4rem;
		border-radius: 2.4rem;
	}
}

@media screen and (max-width: 767.98px) {
	.accordion-item {
		margin-bottom: 2rem;
		border-radius: 1.8rem;
	}
}

.accordion-item:last-of-type {
	margin-bottom: 0;
}


/* =========================================
accordion title
========================================= */

.accordion-title {
	position: relative;
	margin: 0;
	padding: 2.2rem 7rem 2.2rem 2.8rem;
	background: #002750;
	color: #FFF;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
}

@media screen and (max-width: 1024px) {
	.accordion-title {
		padding: 2rem 6rem 2rem 2.4rem;
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 767.98px) {
	.accordion-title {
		padding: 1.5rem 3rem 1.5rem 1rem;
		font-size: 1.4rem;
	}
}

.accordion-title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2.8rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .9rem .7rem 0 .7rem;
	border-color: #FFF transparent transparent transparent;
	transform: translateY(-50%);
	transition: transform .3s ease;
}

@media screen and (max-width: 1024px) {
	.accordion-title::after {
		right: 2rem;
	}
}

@media screen and (max-width: 767.98px) {
	.accordion-title::after {
		right: 1rem;
		border-width: .7rem .55rem 0 .55rem;
	}
}

.accordion-title.open::after,
.accordion-title.is-open::after {
	transform: translateY(-50%) rotate(180deg);
}


/* =========================================
accordion content
========================================= */

.accordion-content {
	display: none;
	padding: 0;
	background: #FFF;
}

.accordion-content.is-open {
	display: block;
}

/* =========================================
table box
========================================= */

.tblbox {
	padding: 0 3rem 3rem;
}

@media screen and (max-width: 1024px) {
	.tblbox {
		padding: 0 2rem 2rem;
	}
}

@media screen and (max-width: 767.98px) {
	.tblbox {
		padding: 0 1rem 2rem;
	}
}


/* =========================================
table
========================================= */

.tblbox table {
	width: 100%;
	border-collapse: collapse;
}

.tblbox tr {
	border-bottom: 1px solid #DDDDDD;
}

.tblbox tr:last-child {
	border-bottom: none;
}

.tblbox th,
.tblbox td {
	padding: 3rem 0;
	vertical-align: top;
}

@media screen and (max-width: 1024px) {
	.tblbox th,
	.tblbox td {
		padding: 2.6rem 0;
	}
}

@media screen and (max-width: 767.98px) {
	.tblbox th,
	.tblbox td {
		display: block;
		width: 100%;
		padding: 0;
	}
}

.tblbox th {
	width: 18rem;
	font-weight: 700;
	text-align: left;
}

@media screen and (max-width: 1024px) {
	.tblbox th {
		width: 15rem;
	}
}

@media screen and (max-width: 767.98px) {
	.tblbox th {
		width: 100%;
		padding-top: 2rem;
		margin-bottom: 1rem;
	}
}

.tblbox td {
	width: calc(100% - 18rem);
	padding-left: 4rem;
}

@media screen and (max-width: 1024px) {
	.tblbox td {
		width: calc(100% - 15rem);
		padding-left: 3rem;
	}
}

@media screen and (max-width: 767.98px) {
	.tblbox td {
		width: 100%;
		padding-left: 0;
		padding-bottom: 2rem;
	}
}