@charset "UTF-8";

.s-interview__content {
	margin-block: 22.5rem 6rem;
}

@media only screen and (max-width: 768px) {
	.s-interview__content {
		margin-block: 10rem 6rem;
	}
}

.interview-hero {
	margin-bottom: 3rem;
}

.interview-hero__visual {
	position: relative;
	margin-inline: auto;
}

.interview-hero__image {
	display: block;
	width: calc(100% - 64px);
	margin-left: auto;
	aspect-ratio: 11 / 5;
	object-fit: cover;
}

.interview-hero__subtitle {
	position: absolute;
	top: 0;
	left: 10px;
	margin: 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
}

.interview-hero__title {
	position: absolute;
	left: 16px;
	bottom: 15%;
	margin: 0;
	z-index: 2;
}

@media only screen and (max-width: 1200px) {
	.interview-hero__title {
		left: 48px;
	}
}

@media only screen and (max-width: 1024px) {
	.interview-hero__image {
		width: calc(100% - 25px);
		aspect-ratio: 585 / 360;
	}

	.interview-hero__subtitle {
		left: 0;
		font-size: 1rem;
	}

	.interview-hero__title {
		position: static;
		gap: 5px;
		margin: -20px 0 0 20px;
	}
}

@media only screen and (max-width: 768px) {
	.interview-hero__image {
		width: calc(100% - 15px);
	}

	.interview-hero__subtitle {
		font-size: 0.5rem;
	}
}

.interview-profile__body {
	display: grid;
	grid-template-columns: 173px 240px 1fr;
	gap: 40px;
	align-items: center;
}

.interview-profile__image img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
}

.interview-profile__title {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--p_blue);
}

.interview-profile__name {
	font-size: 1.5rem;
}

.interview-profile__meta-item {
	display: flex;
    flex-direction: column;
	font-size: 1.125rem;
	color: var(--grey);
}

.interview-profile__meta-item span {
    display: block;
}

.interview-profile__description {
	font-size: 1.25rem;
}

.interview-profile.c-frame {
	padding: 3rem 2rem;
	margin-bottom: 3rem;
}

@media only screen and (max-width:1024px) {
	.interview-profile__body {
		display: grid;
		grid-template-columns: 40% 60%;
		gap: 20px 10px;
		align-items: center;
	}

	.interview-profile__description {
		grid-column: 1 / -1;
	}

	.interview-profile__image img {
		width: 100%;
		margin-inline: auto;
	}
}

@media only screen and (max-width: 768px) {
	.interview-profile__body {
		display: grid;
		grid-template-columns: 30% 70%;
	}

	.interview-profile__title {
		font-size: 1.5rem;
	}

	.interview-profile__name {
		font-size: clamp(1rem, 3.125vw, 1.5rem);
	}

	.interview-profile__meta-item {
		font-size: clamp(0.8rem, 2.34375vw, 1.125rem);
	}

	.interview-profile__description {
		font-size: clamp(0.8rem, 2.34375vw, 1.125rem);
	}

	.interview-profile.c-frame {
		padding: 3rem 1rem;
		margin-bottom: 3rem;
	}
}

.interview-summary__header {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 3rem;

	&::before {
		content: "";
		width: 7px;
		height: 64px;
		background-image: url("../img/common/gd-icon.webp");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		flex-shrink: 0;
	}
}

.interview-summary__heading {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	color: var(--p_blue);
	line-height: 1;
}

.interview-summary__heading-en {
	font-family: var(--font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
}

.interview-summary__heading-ja {
	font-size: 1.75rem;
}

.interview-summary__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5em;
}

.summary-card {
	position: relative;
	padding: 2rem 1.5rem 3rem;
	background: #C7E1E0;
}

.summary-card__heading {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	border-bottom: 1px solid #000;
	margin-bottom: 1rem;
}

.summary-card__number {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
}

.summary-card__title {
	font-size: 1.5rem;
}

.summary-card__image {
	position: absolute;
	top: -2.5rem;
	right: 1rem;
	width: 160px;
	z-index: 2;

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

.summary-card__text {
	font-size: 1.25rem;
	line-height: 1.8;
}

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

@media only screen and (max-width: 768px) {
	.interview-summary__header {
		gap: 20px;
		margin-bottom: 3rem;

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

	.interview-summary__heading-en {
		font-family: var(--font-heading);
		font-size: 1.0625rem;
		font-weight: 700;
	}

	.interview-summary__heading-ja {
		font-size: clamp(1rem, 2.21vw, 1.75rem);
	}

	.summary-card {
		padding: 2rem 1rem 3rem;
	}

	.summary-card__heading {
		display: flex;
		gap: 1rem;
		align-items: flex-start;
		border-bottom: 1px solid #000;
		margin-bottom: 1rem;
	}

	.summary-card__number {
		font-size: clamp(1.25rem, 3.39vw, 2rem);
	}

	.summary-card__title {
		font-size: clamp(1rem, 2.21vw, 1.5rem);
	}

	.summary-card__image {
		position: absolute;
		right: -40px;

		img {
			width: 70%;
		}
	}

	.summary-card__text {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
		line-height: 1.7;
	}
}

.interview-chapter {
	margin-bottom: 6rem;
}

.interview-chapter__heading {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	width: fit-content;
	padding: 0.5rem 1.5rem 1rem;
	margin-bottom: 1rem;
	background-image: url('../img/top/grada_bg.webp');
	background-size: cover;
	background-position: left center;
	color: var(--white);
	line-height: 1;
}

.interview-chapter__number {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
}

.interview-chapter__title {
	font-size: 1rem;
}

.interview-chapter__content h3 {
	font-size: 2.25rem;
	line-height: 2;
	color: var(--p_blue);
	margin-bottom: 2rem;
}

.interview-chapter__content p {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 4.5rem;

	strong {
		color: var(--orange);
		font-weight: normal;
	}
}

.interview-chapter__content p img {
	display: block;
	max-width: 100%;
	margin-inline: auto;
	margin-bottom: 4rem;
}

@media only screen and (max-width: 768px) {
	.interview-chapter {
		margin-bottom: 2.5rem;
	}

	.interview-chapter__heading {
		gap: 0.5rem;
		padding: 0.5rem 1rem 1rem 0.5rem;
	}

	.interview-chapter__number {
		font-size: clamp(1.25rem, 3.39vw, 2rem);
	}

	.interview-chapterrd__title {
		font-size: clamp(0.875rem, 2.23vw, 1.25rem);
	}

	.interview-chapter__content h3 {
		font-size: clamp(1.25rem, 3.39vw, 2.25rem);
		line-height: 2;
	}

	.interview-chapter__content p {
		font-size: clamp(1rem, 2.21vw, 1.5rem);
	}
}

/* -------------------------------------
// 一覧スライド
------------------------------------- */
.rp-section {
	background: var(--white);
	padding: 5rem 2.5rem;
	margin-top: 18rem;
	overflow: hidden;
	position: relative;
	z-index: +2;
}

.rp-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--p_blue);
	line-height: 1;
}

.rp-title {
	font-size: 2rem;
	font-weight: 700;
}

.rp-nav {
	display: flex;
	gap: 40px;
}

.rp-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	line-height: 1;
	background: none;

	span {
		font-size: 1.25rem;
	}

	svg {
		width: 1.5rem;
		height: 1.5rem;
		color: var(--p_blue);
	}
}

.rp-swiper {
	overflow: visible;
	.swiper-wrapper {
		align-items: stretch;
	}

	.swiper-slide {
		height: auto;
	}
}

@media (max-width: 768px) {
	.rp-section {
		padding: 4rem 1.25rem;
		margin-top: 6rem;
		overflow: hidden;
	}

	.rp-swiper {
		overflow: visible;
		margin-right: -16px;
	}

	.rp-header {
		flex-direction: column;

		gap: 20px;
		margin-bottom: 1rem;
	}

	.rp-title {
		font-size: 1.5rem;
		align-self: flex-start;
	}

	.rp-nav {
		align-self: flex-end;
		gap: 15px;
	}

	.rp-btn span {

		font-size: 1rem;
	}

	.rp-btn svg {
		width: 1rem;
		height: 1rem;
	}
}

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

.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: 2rem;
	color: var(--p_blue);
	display: flex;
	align-items: center;
	gap: 1em;
	margin-bottom: 2.5rem;

	&::before {
		content: "";
		width: 7px;
		height: 97px;
		background-image: url("../img/common/gd-icon-l.webp");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		flex-shrink: 0;
	}
}

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

.interview-card__tags {
	display: flex;
	align-items: center;
	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;
	}
}

@media only screen and (max-width: 1024px) {
	.interview-card__category {
		font-size: 1.25rem;
	}

	.interview-card__title {
		font-size: 1.25rem;
	}

	.interview-card__tag {
		font-size: 0.8rem;
	}

	.interview-card__year {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
}

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

	.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__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;
	}
}