@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
#main .interviewList  {
	display: flex;
	flex-wrap: wrap;
	gap: 11.5rem 8rem;
	margin-right: -2rem;
}
#main .interviewList li {
	width: calc((100% - 8rem) / 2);
}
#main .interviewList a {
	display: block;
	border-radius: 2rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}
#main .interviewList a:hover {
	opacity: 0.7;
}
#main .interviewList a:after {
	border: 0.3rem solid #fff;
	position: absolute;  
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;  
	border-radius: 2rem;
	content: "";
	transition: all ease 1s;
}
#main .interviewList .photo {
	aspect-ratio: 560 / 736;
}
#main .interviewList .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#main .interviewList .sub {
	z-index: 1;
	position: absolute;
	bottom: 2.1rem;
	left: 2.1rem;
	right: 3rem;
	color: #fff;
	transition: all ease 1s;
}
#main .interviewList .sub p {
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.24);
}
#main .interviewList .sub .ttl {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	position: relative;
	padding-left: 1.2rem;
	margin-left: 0.5rem;
	background: url(../img/common/icon11.png) no-repeat left center;
	background-size: 0.8rem auto;
	transition: all ease 1s;
}
#main .interviewList .sub .ttl2 {
	background-image: url(../img/common/icon33.png);
}
#main .interviewList .sub .ttl3 {
	background-image: url(../img/common/icon34.png);
}
#main .interviewList .sub .txt {
	font-size: 3.0rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	transition: all ease 1s;
}
#main .interviewList .sub .txt small {
	margin: 0.2rem 0 0 0.5rem;
	display: block;
	font-size: 1.39rem;
	letter-spacing: 0.14em;
	transition: all ease 1s;
}
#main .interviewList .text {
	margin: 1rem -4rem 0 0;
}
#main .interviewList .text .subSpan {
	padding-bottom: 0.9rem;
	margin-right: -2rem;
	width: fit-content;
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 2.8;
	color: #fff;
	font-feature-settings: "palt";
	background-image: repeating-linear-gradient(to top, #fff 0 1px, transparent 2px 1lh);
}

@media all and (min-width: 897px) {
	#main .comBox .comLinkList .on a {
		color: #EC8DB8;
		background-image: url(../img/common/icon32.png);
	}
	#main .comBox .comLinkList .itemColor1.on a {
		color: #F4AB45;
		background-image: url(../img/common/icon28.png);
	}
	#main .comBox .comLinkList .itemColor2.on a {
		color: #676AAF;
		background-image: url(../img/common/icon31.png);
	}
	#main .comBox .lBox {
		margin-right: 8rem;
	}
	#main .comBox .comLinkList a {
		width: 22.1rem;
	}
}

@media all and (max-width: 896px) {
	#main .interviewList {
		margin: 0;
		gap: 8rem 0;
		flex-direction: column;
	}
	#main .interviewList li {
		width: 100%;
	}
}