.p-interview .c-sub-fv {
	background-image: url("../img/interview/interview-fv.jpg");
}
.p-interview__img{
	position: relative;
	z-index: 0;
}
.p-interview__img img{
	width: 100%;
	height: auto;
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.p-interview__information{
	position: absolute;
	right: 24px;
	bottom: 16px;
	color: #fff;
	font-weight: 700;
	line-height: 1.5;
	text-shadow: 0 0 2px rgba(0,0,0,0.16);
}
.p-interview__position{
	font-size: var(--fontsize-14);
	color: rgba(255,255,255,0.8);
	display: block;
}
.p-interview__name{
	font-size: clamp(20px, 1.5vw, 28px);
	display: flex;
	align-items: center;
}
.p-interview__year{
	font-size: var(--fontsize-14);
	color: rgba(255,255,255,0.8);
	display: block;
	margin-left: 8px;
}
.p-interview-list{
	margin-bottom: clamp(40px, 4.9vw, 95px);
}
.p-interview-list__item:not(:last-child){
	margin-bottom: clamp(30px, 4.1vw, 80px);
}
.p-interview-flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.p-interview-flex__img,
.p-interview-flex__text{
	width: 48%;
}
.p-interview-flex__img img{
	width: 100%;
	height: auto;
}
.p-interview__cta .c-blue-btn{
	margin: 0 auto;
}
.js-readmore .js-readmore-content {
	position: relative;
	overflow: hidden;
	max-height: var(--readmore-collapsed, 370px);
	transition: max-height var(--trans-base);
}
.js-readmore .js-readmore-content::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 82px;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(235,237,240,0), rgba(235,237,240,0.8) 60%, rgba(235,237,240,1) 100%);
}
.js-readmore.is-open .js-readmore-content::after {
	display: none;
}
.p-interview__cta.is-hidden {
	display: none;
}
.p-interview-contact{
	background-color: var(--sub-color);
}
.p-interview-contact .c-circlebtm-title{
	margin-inline: auto;
	width: fit-content;
}
.p-interview-contact__links{
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, 1fr);
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px dashed var(--gray-color);
}
.p-interview-contact__links .c-blue-btn{
	width: 100%;
}
@media screen and (max-width:1024px) {
	.p-interview-flex{
		display: flow-root;
	}
	.p-interview-flex__img{
		float: left;
		margin: 0 20px 20px 0;
	}
	.p-interview-flex__text{
		width: 100%;
	}
}
@media screen and (max-width:767px) {
	.p-interview-flex__img{
		float: none;
		margin: 0 0 20px 0;
		width: 100%;
	}
	.p-interview__information{
		right: 12px;
		bottom: 10px;
	}
	.p-interview-contact .u-text-center{
		text-align: justify;
	}
	.p-interview-contact__links{
		gap: 15px;
		grid-template-columns: repeat(1, 1fr);
		padding-top: 15px;
		margin-top: 15px;
	}
}
@media screen and (max-width:480px) {
	.p-interview .c-sub-fv {
		background-image: url("../img/interview/interview-fv-sp.jpg");
	}
	.p-interview__information{
		right: auto;
		left: 12px;
	}
}