/* -----------------------------------------------
= more
----------------------------------------------- */
.section .more {
	display: block;
	position: relative;
	width: 98px;
	margin: 0 auto;
	padding-bottom: 5px;
	background: #fff;
	border: 1px solid #b1b1b1;
	font-family: var(--fontMin);
	font-size: calc(1.2rem / 1.6);
	text-align: center;
	letter-spacing: .2em;
}
.section .more::before {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../img/index/bg_more.svg) no-repeat 50% / cover;
}
@media print, screen and (width >= 768px) {/* PC */
.section .more {
	width: 158px;
	padding-bottom: 7px;
	font-size: calc(1.6rem / 1.6);
}
.section .more::before {
	right: -7px;
	bottom: -7px;
}
}/* @media */
/* -----------------------------------------------
= modal
----------------------------------------------- */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 20;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.modal.is-active {
	display: block;
	opacity: 1;
	pointer-events: auto;
}
.modal_overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.3);
}
.modal_content {
	position: relative;
	z-index: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
}
/* -----------------------------------------------
= interview
----------------------------------------------- */
.interview .modal_content {
	max-height: calc(100svh - 80px);
	margin: 20px;
	padding: 20px;
	background: #fff;
}
.interview .set {
	margin: -15px 0 0 -10px;
	font-family: var(--fontMin);
}
.interview .category {
	margin-bottom: 10px;
	font-size: calc(1rem / 1.6);
	line-height: 1.3;
}
.interview .category span {
	display: block;
	font-size: calc(1.1rem / 1.6);
}
.interview .num {
	position: relative;
	width: 24px;
	height: 24px;
	margin-left: 5px;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0;
}
.interview .num::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #808080;
	transform: rotate(-45deg);
}
.interview_title {
	margin-bottom: 20px ;
	line-height: 1.43;
	text-align: center;
}
.interview_title span:first-child {
	display: block;
	margin-bottom: 10px;
	font-family: var(--fontMin);
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .12em;
}
.interview_title span:last-child {
	display: block;
	font-family: var(--fontGo);
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .12em;
}
.interview picture {
	display: block;
}
.interview .department {
	margin: 20px 0 60px;
	font-size: calc(1.2rem / 1.6);
	text-align: center;
	letter-spacing: .12em;
}
.interview .department p + p {
	margin-top: 1em;
}
.interview_subtitle {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-family: var(--fontMin);
	font-size: calc(1.6rem / 1.6);
	line-height: 1.43;
	text-align: center;
	letter-spacing: .12em;
}
.interview_subtitle::after {
	content: "";
	position: absolute;
	left: calc(50% - 35px);
	bottom: 0;
	width: 70px;
	height: 6px;
	background: url(../img/common/bg_dot_line.svg) no-repeat 50% / auto 100%;
	transform: rotate(180deg);
	filter: var(--filterGray);
}
.interview .text {
	margin-bottom: 20px;
	font-size: calc(1.4rem / 1.6);
}
.interview .text + .interview_subtitle {
	margin-top: 40px;
}
.interview .img {
	display: flex;
	gap: 6px;
	margin-bottom: 20px;
}
.interview .img img {
	width: calc(50% - 3px);
}
.interview .img + .interview_subtitle {
	margin-top: 35px;
}
.interview .link {
	display: block;
	position: relative;
	margin-block: 20px;
	padding: 6px 40px 6px 20px;
	border: 1px solid #65a5e0;
	border-radius: 3em;
	font-size: calc(1.4rem / 1.6);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .06em;
}
.interview .link::after {
	content: "";
	position: absolute;
	top: calc(50% - 16px);
	right: -1px;
	width: 32px;
	height: 32px;
	background: url(../img/index/work_icon_link.svg) no-repeat 50%/ cover;
}
.interview_btn_close {
	margin-top: 25px;
	text-align: center;
}
.interview_btn_close button {
	font-family: var(--fontMin);
	font-size: calc(1.6rem / 1.6);
	letter-spacing: .12em;
	text-decoration: underline;
}
@media print, screen and (width >= 768px) {/* PC */
.interview .modal_content {
	max-width: 1000px;
	max-height: calc(100vh - 200px);
	margin: 50px auto;
	padding: 50px 100px;
}
.interview .set {
	margin: -35px 0 0 -80px;
}
.interview .category {
	margin-bottom: 20px;
	font-size: calc(1.6rem / 1.6);
	line-height: 1.5;
}
.interview .category span {
	font-size: calc(1.8rem / 1.6);
}
.interview .num {
	width: 48px;
	height: 48px;
	margin-left: 15px;
	font-size: 24px;
	line-height: 48px;
}
.interview_title {
	margin: -28px 0 35px;
	line-height: 2;
}
.interview_title span:first-child {
	margin-bottom: 10px;
	font-size: calc(2.8rem / 1.6);
}
.interview_title span:last-child {
	font-size: calc(1.6rem / 1.6);
}
.interview .department {
	margin: 50px 0 100px;
}
.interview .department p:first-child {
	font-size: calc(1.8rem / 1.6);
}
.interview .department p:last-child {
	font-size: calc(1.6rem / 1.6);
}
.interview_subtitle {
	margin-bottom: 35px;
	padding-bottom: 35px;
	font-size: calc(2.2rem / 1.6);
	line-height: 1.63;
}
.interview_subtitle::after {
	left: calc(50% - 70px);
	width: 140px;
	height: 12px;
}
.interview .text {
	max-width: 800px;
	margin: 0 auto 60px;
	font-size: calc(1.8rem / 1.6);
}
.interview .text + .interview_subtitle {
	margin-top: 90px;
}
.interview .img {
	max-width: 800px;
	margin: 0 auto 80px;
}
.interview .img_last {
	max-width: 800px;
	margin: 0 auto 40px;
}
.interview .link {
	display: inline-block;
	float: right;
	margin-block: 20px;
	padding-block: 4px;
	font-size: calc(1.6rem / 1.6);
}
.interview_btn_close {
	clear: right;
	margin-top: 50px;
}
.interview_btn_close button {
	font-size: calc(2rem / 1.6);
}
}/* @media */
