/* --------------------------------------------------------
*	interview detail
* -------------------------------------------------------*/
.l-bgfixed__contents {
	padding-bottom: 80px;
}
@media (min-width: 768px), print {
	.l-bgfixed__contents {
		padding-bottom: 100px;
	}
}

/* un-interview
-------------------------------------------------------*/
.un-interviewcts {
	padding-top: 80px;
	margin-top: 40px;
	border-top: 1px solid var(--color-border);
}
.un-interviewcts .un-interview:not(:first-child) {
	margin-top: 80px;
}
.un-interviewcts .un-interview__question {
	display: flex;
	align-items: center;
	gap: 0 16px;
	position: relative;
	padding: 14px 20px;
	margin-bottom: 40px;
	background: linear-gradient(90deg, #00D6A5 0%, #1CB2ED 100%);
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: var(--line-height-l);
}
.un-interviewcts .un-interview__question::before {
	content: attr(title);
	display: inline-block;
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 3rem;
	font-weight: 900;
}
.un-interviewcts .un-interview__answer {
	margin: 0;
}
.un-interviewcts .un-interview__answer__image {
	margin-bottom: 40px;
}
.un-interviewcts .un-interview__answer__image figure {
	border-radius: 6px;
	overflow: hidden;
}
.un-interviewcts .un-interview__answer__text {
	letter-spacing: 0.88px;
}
.un-interviewcts .un-interview__answer__text + .un-interviewcts .un-interview__answer__text {
	margin-top: 30px;
}
.un-interviewcts .un-interview__answer--clm {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}
@media (min-width: 768px), print {
	.un-interviewcts {
		padding-top: 100px;
		margin-top: 80px;
		border-top: 1px solid var(--color-border);
	}
	.un-interviewcts .un-interview:not(:first-child) {
		margin-top: 100px;
	}
	.un-interviewcts .un-interview__question {
		gap: 0 30px;
		font-size: 2.5rem;
		padding: 13px 30px 12px;
		margin-bottom: 48px;
	}
	.un-interviewcts .un-interview__answer__image {
		max-width: 800px;
		margin: auto;
	}
	.un-interviewcts .un-interview__answer__text {
		line-height: 2;
		letter-spacing: 1px;
	}
	.un-interviewcts .un-interview__answer__text + .un-interviewcts .un-interview__answer__text {
		margin-top: 40px;
	}
	.un-interviewcts .un-interview__answer--row {
		display: flex;
		gap: 0 70px;
	}
	.un-interviewcts .un-interview__answer--row .un-interview__answer__image {
		flex: 0 0 468px;
		margin: 0;
	}
	.un-interviewcts .un-interview__answer--rowreverse {
		display: flex;
		flex-direction: row-reverse;
		gap: 0 70px;
	}
	.un-interviewcts .un-interview__answer--rowreverse .un-interview__answer__image {
		flex: 0 0 468px;
		margin: 0;
	}
	.un-interviewcts .un-interview__answer--clm {
		gap: 50px 0;
	}
}

/* un-schedule
-------------------------------------------------------*/
.un-schedule {
	padding-top: 40px;
	margin-top: 50px;
	border-top: 1px solid var(--color-border);
}
.un-schedule__title {
	position: relative;
	padding: 12px 25px;
	background-color: #38C8C8;
	border-radius: 12px 12px 0 0;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: var(--line-height-l);
	overflow: hidden;
}
.un-schedule__title::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-right: 14px;
	background: url(/recruit/assets/images/common/icon_clock.svg) no-repeat 0 0;
	background-size: cover;
	vertical-align: middle;
}
.un-schedule__body {
	padding: 20px;
	background-color: #fff;
	border-radius: 0 0 12px 12px;
	overflow: hidden;
}
.un-schedule__table {
	width: 100%;
	border: 1px solid var(--color-border);
	border-right: 0;
	border-left: 0;
}
.un-schedule__table thead th:nth-child(1) {
	width: 30%;
	padding: 12px 20px;
	background-color: #F0F6F6;
	font-family: Inter, sans-serif;
	font-size: 1.8rem;
	font-weight: 900;
	border-bottom: 1px solid var(--color-border);
}
.un-schedule__table thead th:nth-child(2) {
	width: 70%;
	padding: 12px 20px;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	border-bottom: 1px solid var(--color-border);
}
.un-schedule__table tbody td:nth-child(1) {
	width: 30%;
	padding: 12px 20px;
	background-color: #F0F6F6;
	font-family: Inter, sans-serif;
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	border-bottom: 1px solid var(--color-border);
}
.un-schedule__table tbody td:nth-child(2) {
	width: 70%;
	padding: 12px 20px;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px), print {
	.un-schedule {
		padding-top: 80px;
		margin-top: 80px;
	}
	.un-schedule__inner {
		width: 800px;
		margin: 0 auto;
	}
	.un-schedule__title {
		padding: 15px 40px;
		font-size: 2.5rem;
	}
	.un-schedule__title::before {
		margin-right: 20px;
	}
	.un-schedule__body {
		padding: 50px;
	}
	.un-schedule__table thead th:nth-child(1) {
		width: 160px;
		padding: 16px 26px;
		font-size: 2.6rem;
	}
	.un-schedule__table thead th:nth-child(2) {
		width: 540px;
		padding: 16px 40px;
		font-size: 2.6rem;
	}
	.un-schedule__table tbody td:nth-child(1) {
		width: 160px;
		padding: 16px 26px;
		font-size: 2.6rem;
	}
	.un-schedule__table tbody td:nth-child(2) {
		width: 540px;
		padding: 16px 40px;
		font-size: 1.8rem;
	}
}

/* un-message
-------------------------------------------------------*/
.un-message {
	padding-top: 40px;
	margin-top: 50px;
	border-top: 1px solid var(--color-border);
}
.un-message__image {
	border-radius: 6px;
	overflow: hidden;
}
.un-message__detail {
	position: relative;
	padding: 30px;
	margin-top: -20px;
	background: linear-gradient(90deg, #F4ECF9 0%, #D3EFFA 100%);
	border-radius: 12px;
	overflow: hidden;
	z-index: 1;
}
.un-message__title {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
}
@media (min-width: 768px), print {
	.un-message {
		padding-top: 80px;
		margin-top: 80px;
	}
	.un-message__inner {
		position: relative;
		padding-top: 330px;
		padding-left: 416px;
	}
	.un-message__image {
		position: absolute;
		top: 0;
		left: 0;
		max-width: 800px;
	}
	.un-message__detail {
		width: 783px;
		padding: 50px;
	}
	.un-message__title {
		margin-bottom: 40px;
		font-size: 2.8rem;
	}
}

/* un-lowercontents
-------------------------------------------------------*/
.un-lowercontents {
	position: relative;
	padding-top: 80px;
	padding-bottom: 100px;
	background-color: #fff;
	z-index: 2;
}
.un-lowercontents::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 22px;
	background: url(/recruit/assets/images/interview/bg_lowercts_sp.png) no-repeat 0 0;
	background-size: cover;
}
.un-lowercontents__inner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
}
@media (min-width: 768px), print {
	.un-lowercontents__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px), print {
	.un-lowercontents {
		padding-top: 165px;
		padding-bottom: 150px;
	}
	.un-lowercontents::before {
		height: 52px;
		background: url(/recruit/assets/images/interview/bg_lowercts.png) no-repeat 0 0;
		background-size: cover;
	}
}

/* un-relatedlink
-------------------------------------------------------*/
.un-relatedlink {
	margin-bottom: 30px;
}
.un-relatedlink__item + .un-relatedlink__item {
	padding-top: 50px;
	margin-top: 40px;
	border-top: 1px dashed var(--color-border);
}
@media (min-width: 768px), print {
	.un-relatedlink {
		margin-bottom: 50px;
	}
	.un-relatedlink__item + .un-relatedlink__item {
		padding-top: 40px;
		margin-top: 50px;
	}
}
.un-relatedlink__tab-item {
	position: relative;
	background-color: #fff;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
}
.un-relatedlink__tab-item::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 16px;
	height: 10px;
	background: url(/recruit/assets/images/common/icon_arrow2_d.svg) no-repeat 0 0;
	background-size: cover;
	transform: translateY(-50%);
}
.un-relatedlink__tab-item + .un-relatedlink__tab-item {
	margin-top: 20px;
}
@media (min-width: 768px), print {
	.un-relatedlink__tab-item {
		flex: 0 0 366px;
		transition: color 0.3s, background-color 0.3s;
	}
	.un-relatedlink__tab-item::before {
		right: 20px;
		width: 20px;
		height: 12px;
	}
	.un-relatedlink__tab-item + .un-relatedlink__tab-item {
		margin-top: 0;
	}
}
.un-relatedlink__tab-item.is-active {
	background-color: #333;
	color: #fff;
	pointer-events: none;
	cursor: default;
}
.un-relatedlink__tab-item.is-active::before {
	display: none;
}
.un-relatedlink__tab-link {
	display: block;
	width: 100%;
	padding: 20px 40px 19px 20px;
	color: inherit;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: var(--line-height-s);
}
@media (min-width: 768px), print {
	.un-relatedlink__tab-link {
		padding: 20px 40px 19px 30px;
		font-size: 1.8rem;
	}
}
.un-relatedlink__tab__contents {
	margin: 20px 0;
}
@media (min-width: 768px), print {
	.un-relatedlink__tab__contents {
		margin: 0;
	}
}
.un-relatedlink__tab__contents-item {
	display: none;
	padding: 55px 0;
	background-color: #fff;
}
@media (min-width: 768px), print {
	.un-relatedlink__tab__contents-item {
		padding: 50px 0;
	}
}
.un-relatedlink__tab__contents-item.is-active {
	display: block;
}
@media (min-width: 768px), print {
	.un-relatedlink__tab {
		display: flex;
		gap: 0 50px;
	}
	.un-relatedlink__tab--bottom {
		display: none;
	}
}
.un-relatedlink__tab--bottom .un-relatedlink__tab-item::before {
	transform: translateY(-50%) rotate(180deg);
}

/* un-people
-------------------------------------------------------*/
/* .un-people {
	position: relative;
	background: linear-gradient(90deg, rgb(244, 236, 249) 0%, rgb(211, 239, 250) 100%);
}
.un-people__inner {
	background-color: #fff;
	padding-top: 80px;
	padding-bottom: 80px;
	margin-top: -50px;
	border-radius: 0 50px 0 0;
}
.un-people__upper {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
	margin-bottom: 100px;
}
@media (min-width: 768px), print {
	.un-people__upper {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.un-people__header {
	margin-bottom: 40px;
}
.un-people__secondary {
	margin-bottom: 40px;
}
.un-people__card > a {
	display: block;
}
.un-people__card__image {
	position: relative;
	padding-top: 55.8208%;
	border-radius: 12px;
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.un-people__card__image::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.un-people__card__image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.3s;
}
.un-people__card__arrow {
	display: block;
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 40px;
	height: 40px;
	background: url(/recruit/assets/images/common/icon_arrow_r.svg) no-repeat 0 0;
	background-size: cover;
	z-index: 1;
}
.un-people__card__title {
	position: absolute;
	left: 30px;
	bottom: 20px;
	padding-right: 55px;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
	z-index: 1;
}
.un-people__card__detail {
	margin-top: 20px;
}
.un-people__card__text {
	color: var(--color-txt);
	font-size: 1.4rem;
	font-weight: 700;
}
.un-people__card + .un-people__card {
	margin-top: 40px;
}
@media (min-width: 768px), print {
	.un-people__inner {
		padding-top: 143px;
		padding-bottom: 128px;
	}
	.un-people__upper {
		margin-bottom: 176px;
	}
	.un-people__cards {
		display: flex;
		gap: 50px;
	}
	.un-people__card {
		width: calc(50% - 25px);
	}
	.un-people__card__arrow {
		right: 30px;
		bottom: 30px;
		width: 48px;
		height: 48px;
		transition: background 0.3s;
	}
	.un-people__card__title {
		left: 50px;
		bottom: 40px;
		padding-right: 95px;
		font-size: 2.8rem;
		transition: color 0.3s;
	}
	.un-people__card__detail {
		margin-top: 30px;
	}
	.un-people__card__text {
		font-size: 1.6rem;
	}
	.un-people__card > a:hover .un-people__card__title {
		color: var(--color-txt-hover);
	}
	.un-people__card > a:hover .un-people__card__image img {
		transform: scale(1.05);
	}
	.un-people__card > a:hover .un-people__card__arrow {
		background: url(/recruit/assets/images/common/icon_arrow_r_white.svg) no-repeat 0 0;
		background-size: cover;
	}
	.un-people__card + .un-people__card {
		margin-top: 0;
	}
} */