@charset "utf-8";


.recruitChildMv--joblist {
	background-image: url(../img/recruit/joblist/joblist_mv.jpg);
}

.recruitJobFaq .recruit_inner{
	max-width:1080px;
}

/* =========================================================
  募集要項・FAQ
========================================================= */

.recruitJobFaq {
	padding: 130px 0 440px;
}

.recruit_inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
}

.recruitChildMv.recruitChildMv--joblist::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(29 60 169 / 35%);
	z-index: 1;
}
/* タブ
--------------------------------------------------------- */

.recruitTabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	max-width: 900px;
	margin: 0 auto 80px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.recruitTabs__btn {
	position: relative;
	min-height: 120px;
	border: 0;
	background: #fff;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .05em;
	cursor: pointer;
	transition: background .3s ease, color .3s ease;
	color: #1F3170;
}

.recruitTabs__btn::after {
	content: "";
	position: absolute;
	right: 48px;
	top: 50%;
	width: 15px;
	height: 10px;
	background: url(../img/recruit/joblist/ico_arrow_down.svg) no-repeat center / contain;
	transform: translateY(-50%);
}

.recruitTabs__btn:first-child{
	border-right:1px solid #E7F1F8;
}

.recruitTabs__btn.is-active {
	background: #fff;
	color: #2750DF;
}

/* タブ中身
--------------------------------------------------------- */

.recruitTabPanel {
	display: none;
}

.recruitTabPanel.is-active {
	display: block;
}


/* 募集要項
--------------------------------------------------------- */


.jobSection{
	max-width:1000px;
	margin:0 auto 80px auto;
}

.jobSection {
/* 	margin-bottom: 80px; */
}

.jobCard {
	background: #fff;
	border-radius: 4px;
	padding: 30px 20px;
}

.jobList {
	max-width: 900px;
    margin: 0 auto;
}

.jobList__row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 36px;
	padding: 35px 20px 35px 35px;
	border-bottom: 1px solid rgb(31 49 112 / 40%);
}

.jobList__row:last-child {
	border-bottom:none;
}

.jobList__row dt {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.87;
}

.jobList__row dd {
	margin: 0;
	font-size: 16px;
	line-height: 1.87;
}

.jobList__row dd p {
	margin: 0 0 8px;
}

.jobList__row dd p:last-child {
	margin-bottom: 0;
}

.jobList__row dd ul {
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
}

.jobList__row dd li {
	position: relative;
	padding-left: 1em;
}

.jobList__row dd li::before {
	content: "▼";
	position: absolute;
	left: 0;
	top: 0;
	font-size: .85em;
}

/* ENTRY
--------------------------------------------------------- */

.entrySection {
	position: relative;
	margin: 0 0 130px;
	text-align: center;
}

.entrySection__ttl {
	margin: 0 0 8px;
	color: #2750DF;
	font-family: "Poppins", sans-serif;
	font-size: 65px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.entrySection__lead {
	margin: 0 0 45px;
	font-weight: 500;
	letter-spacing: .1em;
}

.entryBnrList {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	max-width: 1040px;
	margin: 0 auto;
}

.entryBnr {
	display: block;
	background: #fff;
	border-radius: 6px;
	transition: opacity .3s ease, transform .3s ease;
	overflow: hidden;
}

.entryBnr:hover {
	opacity: .8;
}

.entryBnr[target="_blank"]{
	background:none;
	padding:0;
}

.entryBnr img {
	display: block;
	width: 100%;
	height: auto;
}

.entryBnrList__item p {
	margin: 8px 0 0;
	font-weight: 500;
	letter-spacing: .1em;
}

/* FAQ
--------------------------------------------------------- */

.faqSection {
	margin-top: 0;
	padding-left:20px;
}

.faqList {
	display: grid;
	gap: 12px;
}

.faqItem {
	position: relative;
	background: #fff;
	border-radius: 14px;
}

.faqItem__q {
	position: relative;
	width: 100%;
	min-height: 135px;
	padding: 20px 140px 20px 100px;
	border: 0;
	background: transparent;
	font: inherit;
	text-align: left;
	cursor: pointer;
	color: #1F3170;
}

.faqItem__icon {
	position: absolute;
	left: -20px;
	top: 30px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #ED1C24;
	color: #fff;
	display: grid;
	place-items: center;
	font-family: "Poppins", sans-serif;
	font-size: 50px;
	font-weight: 600;
	line-height: 1;
}

.faqItem__question {
	display: block;
	font-size:16px;
	font-weight: 600;
	letter-spacing: .05em;
	line-height: 1.87;
}

.faqItem__toggle {
	position: absolute;
	right: 55px;
	top: 50%;
	width: 36px;
	height: 24px;
	transform: translateY(-50%);
}

.faqItem__toggle::before,
.faqItem__toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: #ED1C24;
	transform: translate(-50%, -50%);
}

.faqItem__toggle::before {
	width: 36px;
	height: 4px;
}

.faqItem__toggle::after {
	width: 4px;
	height: 36px;
	transition: opacity .3s ease;
}

.faqItem.is-open .faqItem__toggle::after {
	opacity: 0;
}

.faqItem__a {
	display: none;
	padding: 0 140px 50px 30px;
}

.faqItem__aInner {
	position: relative;
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 34px;
}

.faqItem__aIcon {
	font-family: "Poppins", sans-serif;
	font-size: 50px;
	font-weight: 600;
	line-height: 1;
}

.faqItem__a p {
	margin: 0;
	padding-top:12px;
	line-height: 1.87;
}

/* スマホ
--------------------------------------------------------- */

@media screen and (max-width: 767px) {
	.recruitJobFaq {
		padding: 60px 0 100px;
	}

	.recruit_inner {
		padding: 0 18px;
	}

	.recruitTabs {
		margin-bottom: 40px;
	}

	.recruitTabs__btn {
		min-height: 62px;
		font-size: 16px;
	}

	.recruitTabs__btn::after {
		right: 20px;
		width: 13px;
		height: 8px;
	}

	.jobSection {
		margin-bottom: 60px;
	}

	.jobCard {
		padding: 24px 20px;
	}

	.jobList__row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 22px 0;
	}

	.jobList__row dt,
	.jobList__row dd {
		font-size: 13px;
	}

	.entrySection {
		margin-bottom: 70px;
	}

	.entrySection__ttl {
		font-size: 34px;
	}

	.entrySection__lead {
		font-size: 12px;
		line-height: 1.8;
	}

	.entryBnrList {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.faqSection{
		padding-left:16px;
	}

	.faqItem__q {
		min-height: 76px;
		padding: 0 54px 0 48px;
	}

	.faqItem__icon {
		left: -16px;
		top: 20px;
		width: 42px;
		height: 42px;
		font-size: 25px;
	}

	.faqItem__question {
		font-size: 13px;
	}

	.faqItem__toggle {
		right: 22px;
		width: 20px;
		height: 20px;
	}

	.faqItem__toggle::before {
		width: 20px;
		height: 2px;
	}

	.faqItem__toggle::after {
		width: 2px;
		height: 20px;
	}

	.faqItem__a {
		padding: 0 28px 28px 16px;
	}

	.faqItem__aInner {
		grid-template-columns: 32px 1fr;
		gap: 12px;
	}

	.faqItem__aIcon {
		font-size: 28px;
	}

	.faqItem__a p {
		font-size: 13px;
		line-height: 1.9;
	}
}