@charset "UTF-8";

/* -------------------------------------
// MV
------------------------------------- */
.page-tag {
	right: 0.1em;
}

@media (min-width: 1730px) {
	.page-tag {
		right: calc((100vw - 1730px) / 2);
	}
}

@media only screen and (max-width: 768px) {
	.page-tag {
		right: 90px;
	}
}

/* -------------------------------------
// 共通
------------------------------------- */
.reveal-h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.875rem);
}

@media only screen and (max-width: 768px) {
	.reveal-h2 {
		font-size: clamp(1rem, 5.47vw, 2.625rem);
	}
}

/* -------------------------------------
// リスト
------------------------------------- */
.interview__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}

.interview__item {
	padding: 2rem 1.5rem 3rem;
	box-shadow: var(--box-shadow);
}

.interview-card{
	display: flex;
	flex-direction: column;
	height: 100%;
}

.interview-card__category {
	display: inline-block;
	font-size: 1.25rem;
	color: var(--p_blue);
	border: 1px solid var(--p_blue);
	border-radius: 100vmax;
	padding-inline: 1.25rem;
	margin-bottom: 1rem;
}

.interview-card__title {
	font-size: 1.75rem;
	color: var(--p_blue);
	display: flex;
	align-items: center;
	gap: 1em;
	margin-bottom: 2.5rem;

	&::before {
		content: "";
		width: 7px;
		height: 97px;
		background-image: var(--gd-ico);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		flex-shrink: 0;
	}
}

.interview-card__program {
	margin-bottom: 2.5rem;
}

.interview-card__program-title {
	font-size: 1.5rem;
	line-height: 1;
	color: var(--p_blue);
	margin-bottom: 0.5rem;
}

.interview-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
	margin-bottom: 1rem;
}

.interview-card__tag {
	font-size: 1.25rem;
	line-height: 1;
	color: #898989;

	&::before {
		content: "#";
	}
}

.interview-card__year {
	font-size: 1.5rem;
	line-height: 1;
	color: var(--p_blue);
	margin-bottom: 2.5rem;
}

.interview-card__image {
	margin-bottom: 3rem;

	img {
		width: 100%;
		height: auto;
	}
}

.interview-card__actions{
	margin-top: auto;
	padding-top: 1rem;
}

@media only screen and (max-width: 1024px) {
	.interview__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 20px;
	}
}

@media only screen and (max-width: 768px) {
	.interview__item {
		padding: 2rem 1rem 3rem;
	}

	.interview-card__category {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
		padding-inline: 1rem;
	}

	.interview-card__title {
		font-size: clamp(1.25rem, 2.86vw, 2rem);
		margin-bottom: 2rem;

		&::before {
			height: 64px;
		}
	}

	.interview-card__program {
		margin-bottom: 2rem;
	}

	.interview-card__program-title {
		font-size: clamp(1rem, 1.95vw, 1.5rem);
	}

	.interview-card__tags {
		gap: 10px;
	}

	.interview-card__tag {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
	}

	.interview-card__year {
		font-size: clamp(1rem, 1.95vw, 1.5rem);
		margin-bottom: 2rem;
	}

	.interview-card__image {
		margin-bottom: 1rem;
	}

	.interview-section .c-image-button {
		width: stretch;
		min-width: initial;

		svg {
			right: 10px;
			width: 1rem;
			height: 1rem;
		}
	}

	.interview-section .c-image-button__text--large {
		font-size: clamp(1rem, 3.91vw, 1.75rem);
	}
}