@charset "UTF-8";


/* interviewarchive ---------------------------------------*/

.interview {
	padding: 60px 60px 40px;
}

.interviewarchive-list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 60px;
}

.interviewarchive-list li {
	width: calc(33.33% - 20px);
}

.interviewarchive-list-item {
	background: #EFEEEA;
	border-radius: 20px;
	padding: 40px 40px;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	transition: all .6s var(--easeImage);
}

.interviewarchive-list-item:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.interviewarchive-list-item::after {
    display: block;   
	content: '';
	width: 35px;
	height: 32px;
	-webkit-mask-image: url('../img/interview/icon_quote.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/interview/icon_quote.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	vertical-align: middle;
	background: #A6A6A6;
	position: absolute;
	right: 30px;
	top: 30px;
	transition: all .6s var(--easeImage);
}

.interviewarchive-list-item:hover::after {
	background: #956134;
}

.interviewarchive-list-item-text {
	font-size: 24px;
	line-height: 1.6;
	color: #262626;
	padding-right: 50px;
	width: 100%;
	margin-bottom: 19px;
	transition: all .3s var(--easeQuint);
}

.interviewarchive-list-item:hover .interviewarchive-list-item-text {
	color: #956134;
}

.interviewarchive-list-item-info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: nowrap;
	gap: 20px;
	margin-top: auto;
	width: 100%;
}

.interviewarchive-list-item-info-text {
	font-size: 14px;
	line-height: 1.4;
	color: #737373;
}

.interviewarchive-list-item-info-image {
	border-radius: 50%;
	overflow: hidden;
}


/* interviewarticle ---------------------------------------*/

.interviewarticle {
	padding: 60px 60px 0;
}

.interviewarticle-head {
	margin-bottom: 60px;
}

.interviewarticle-title {
	font-size: 40px;
	/* letter-spacing: -0.02em; */
	line-height: 1.6;
	margin-bottom: 10px;
	text-align: center;
}

.interviewarticle-house {
	font-size: 14px;
	letter-spacing: 0.01em;
	line-height: 1.6;
	color: #737373;
	text-align: center;
	margin-bottom: 40px;
}

.interviewarticle-mv {
	border-radius: 20px;
	overflow: hidden;
}

.interviewarticle-mv img {
	width: 100%;
}

.interviewarticle-content {
	padding-top: 60px;
}

.interviewarticle-content-inner {
	max-width: 1040px;
	margin: 0 auto;
}

.interviewarticle-body {
}

.interviewarticle-body-inner {
	max-width: 800px;
	margin: 0 auto;
}

.interviewarticle-question {
	font-size: 24px;
	line-height: 2;
	/* letter-spacing: 0.05em; */
	margin-bottom: 60px;
}

.interviewarticle-owner {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-bottom: 60px;
	background: #EFEEEA;
	padding: 60px 180px 60px 60px;
	border-radius: 20px;
	position: relative;
}

.interviewarticle-owner::after {
    display: block;   
	content: '';
	width: 40px;
	height: 38px;
	-webkit-mask-image: url('../img/interview/icon_quote.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/interview/icon_quote.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	vertical-align: middle;
	background: #956134;
	position: absolute;
	right: 30px;
	top: 30px;
	transition: all .6s var(--easeImage);
}

.interviewarticle-builder {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-bottom: 60px;
}

.interviewarticle-body-image {
	margin-bottom: 60px;
}

.interviewarticle-body-image img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
}

.interviewarticle-body-image figcaption {
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #595959;
	margin-top: 15px;
}

.interviewarticle-related {
	margin-bottom: 130px;
}

/* small pc */
@media screen and (min-width: 768px) and (max-width: 1000px){

	.interviewarchive-list {
		gap: 20px;
	}

	.interviewarchive-list li {
		width: calc(33.33% - 13.33px);
	}

	.interviewarchive-list-item {
		padding: 30px;
	}

	.interviewarchive-list-item::after {
		width: 22px;
		height: 21px;
	}

	.interviewarchive-list-item-text {
		font-size: 20px;
		padding-right: 35px;
	}
	
}
/* small pc */

@media screen and (min-width: 768px) and (max-width: 860px){

	.interviewarchive-list li {
		width: calc(50% - 10px);
	}


}


@media screen and (max-width: 767px){


	/* interviewarchive ---------------------------------------*/

	.interview {
		padding: 39px 20px 68px;
	}

	.interviewarchive-list {
		flex-direction: column;
		gap: 20px;
		padding-bottom: 0;
	}

	.interviewarchive-list li {
		width: 100%;
	}

	.interviewarchive-list-item {
		padding: 30px 30px;
	}

	.interviewarchive-list-item:hover {
		box-shadow: unset;
	}

	.interviewarchive-list-item::after {
		width: 26px;
		height: 24px;
	}

	.interviewarchive-list-item:hover::after {
		background: #A6A6A6;
	}

	.interviewarchive-list-item-text {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.interviewarchive-list-item:hover .interviewarchive-list-item-text {
		color: #262626;
	}

	/* .interviewarchive-list-item-info {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: nowrap;
		gap: 20px;
		margin-top: auto;
		width: 100%;
	} */

	.interviewarchive-list-item-info-text {
		line-height: 1.7;
	}

	.interviewarchive-list-item-info-image {
		width: 96px;
		height: 96px;
	}


	/* interviewarticle ---------------------------------------*/

	.interviewarticle {
		padding: 40px 20px 0;
	}

	.interviewarticle-head {
		margin-bottom: 0;
	}

	.interviewarticle-title {
		font-size: 24px;
		letter-spacing: -0.02em;
	}

	.interviewarticle-house {
		margin-bottom: 26px;
	}

	.interviewarticle-mv {
		border-radius: 20px;
		overflow: hidden;
	}

	.interviewarticle-mv img {
		width: 100%;
	}

	.interviewarticle-content {
		padding-top: 60px;
	}

	.interviewarticle-question {
		font-size: 16px;
		letter-spacing: -0.02em;
		margin-bottom: 40px;
	}

	.interviewarticle-question:not(:first-child) {
		margin-top: 60px;
	}

	.interviewarticle-owner {
		font-size: 14px;
		letter-spacing: 0.07em;
		margin-bottom: 40px;
		padding: 19px 60px 19px 20px;
	}

	.interviewarticle-owner::after {
		width: 26px;
		height: 24px;
		right: 20px;
		top: 20px;
	}

	.interviewarticle-builder {
		font-size: 14px;
		line-height: 2;
		letter-spacing: 0.07em;
		margin-bottom: 40px;
	}

	.interviewarticle-body-image {
		margin-bottom: 40px;
	}

	.interviewarticle-body-image img {
		border-radius: 20px;
		overflow: hidden;
		width: 100%;
	}

	.interviewarticle-body-image figcaption {
		font-size: 12px;
		line-height: 1.5;
		letter-spacing: 0.1em;
		color: #595959;
		margin-top: 15px;
	}

	.interviewarticle-related {
		margin-bottom: 88px;
	}

}