@charset "UTF-8";
/*
 * coach.css
 * COACHページ（/coach/）専用スタイル
 *
 * @package ds-basketballclub-2026
 */

/* =============================================
   1. HERO
   ============================================= */

/* PCブロック（SPでは非表示） */
.coach-page-hero__pc {
	display: block;
}

/* SPブロック（PCでは非表示） */
.coach-page-hero__sp {
	display: none;
}

/* キャッチ＋写真ブロック */
.coach-page-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	position: relative;
}


/* 左: テキスト */
.coach-page-hero__text {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.coach-page-hero__catch {
	font-family: var(--font-ja);
	font-size: clamp(32px, 4vw, 60px);
	font-weight: 900;
	line-height: 1.8;
	color: var(--color-black);
	margin: 0;
}

.coach-page-hero__profile {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.coach-page-hero__affiliation {
	font-family: var(--font-ja);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-black);
	margin: 0;
}

.coach-page-hero__name {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.coach-page-hero__role {
	font-family: var(--font-ja);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-black);
}

.coach-page-hero__name-ja {
	font-family: var(--font-ja);
	font-size: 48px;
	font-weight: 900;
	color: var(--color-black);
	letter-spacing: 0.05em;
}

.coach-page-hero__name-en {
	font-family: var(--font-ja);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-black);
}

/* 右: 写真（PC） */
.coach-page-hero__photo-wrap {
	overflow: hidden;
}

.coach-page-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* SPキャッチ（PCでは非表示） */
.coach-hero__catch--sp {
	display: none;
}

/* =============================================
   2. キャッチ＋写真・PROFILE エリア
   ============================================= */

/* HEROタイトル直下から始まる独自エリア（sec-page-content は使わない） */
.sec-coach-page-content {
	padding: var(--section-pt) 0 0;
}

/* PC: PROFILEボックス表示・SPアコーディオン非表示 */
.coach-page-profile__pc {
	display: block;
}

.coach-page-profile__sp {
	display: none;
}

.sec-coach-page-profile {
	padding: var(--section-pt) 0 0;
	background-color: var(--color-white);
}

/* 経歴ボックス */
.coach-page-profile__box {
	border: 1px solid var(--color-black);
	padding: 60px 60px 60px;
	position: relative;
}

/* PROFILE 見出しエリア */
.coach-page-profile__heading-wrap {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
}

/* 横線（不要なので非表示） */
.coach-page-profile__rule {
	display: none;
}

/* PROFILE 文字 */
.coach-page-profile__heading {
	font-family: var(--font-en);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--color-black);
	background-color: var(--color-white);
	padding: 0 24px;
	margin: 0;
	white-space: nowrap;
}

/* グリッド（左右2カラム） */
.coach-page-profile__grid {
	display: grid;
	grid-template-columns: 28fr 72fr;
	gap: 48px;
}

/* ラベル（経歴種別の見出し） */
.coach-page-profile__label {
	font-family: var(--font-ja);
	font-size: 26px;
	font-weight: 900;
	color: var(--color-black);
	border-bottom: 1px solid var(--color-black);
	padding-bottom: 12px;
	margin-bottom: 24px;
	margin-top: 0;
}

.coach-page-profile__license {
	font-size: 20px;
	font-weight: 900;
}

.coach-page-profile__label--mt {
	margin-top: 48px;
}

/* 経歴本文 */
.coach-page-profile__body {
	font-family: var(--font-ja);
	font-size: var(--text-base-size);
	font-weight: 400;
	color: var(--color-black);
	line-height: 1.7;
}

.coach-page-profile__body p {
	margin-bottom: 1.3em;
}

.coach-page-profile__body p:last-child {
	margin-bottom: 0;
}

.coach-page-profile__block {
	break-inside: avoid;
	margin-bottom: 1.6em;
}

.coach-page-profile__block:last-child {
	margin-bottom: 0;
}

.coach-page-profile__body .coach-page-profile__block-heading {
	font-size: var(--text-lg-size);
	font-weight: 700;
	margin-bottom: 0.2em;
}

.coach-page-profile__body .coach-page-profile__block-indent {
	font-size: var(--text-base-size);
	font-weight: 400;
	padding-left: 1.4em;
	margin-top: 0;
	margin-bottom: 0;
}

/* 選手経歴: 2カラム */
.coach-page-profile__body--3col {
	column-count: 2;
	column-gap: 32px;
}

.coach-page-profile__body--3col p {
	break-inside: avoid;
}

/* =============================================
   3. インタビューセクション
   ============================================= */

/* インタビュー各ブロック（セクション間の余白） */
.coach-interview {
	padding-top: 80px;
}

/* 最初のブロックは上余白なし（sec-page-content の padding-top に委譲） */
.coach-interview--first {
	padding-top: 0;
}

/* Q&A ブロック */
.coach-interview__qa-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0;
}

/* Q: オレンジ太字 */
.coach-interview__qa-q {
	font-family: var(--font-ja);
	font-size: var(--page-h2-pc);
	font-weight: 700;
	color: var(--color-orange);
	line-height: 1.5;
	margin: 0;
}

/* A: 本文 */
.coach-interview__qa-a {
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	font-weight: 400;
	color: var(--color-black);
	line-height: 1.9;
	margin: 0;
}

.coach-interview__qa-a p {
	margin-bottom: 1.5em;
}

.coach-interview__qa-a p:last-child {
	margin-bottom: 0;
}

/* 画像ブロック */
.coach-interview__images {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.coach-interview__img-block--full .coach-interview__img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.coach-interview__img-block--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.coach-interview__img-block--two-col .coach-interview__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* =============================================
   レスポンシブ（タブレット 〜1024px）
   ============================================= */
@media screen and (max-width: 1024px) {

	.coach-page-hero__title {
		font-size: 140px;
	}

	.coach-page-hero__inner {
		grid-template-columns: 1fr 320px;
		gap: 32px;
	}

	.coach-page-hero__name-ja {
		font-size: 36px;
	}

	.coach-page-hero__photo-wrap {
		height: 400px;
	}

	.coach-page-profile__box {
		padding: 32px 32px 40px;
	}

	.coach-interview__img-block--full .coach-interview__img {
		height: 380px;
	}

	.coach-page-profile__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.coach-page-profile__label {
		font-size: 20px;
	}

	.coach-page-profile__license {
		font-size: 16px;
	}

	.coach-page-profile__body--3col {
		column-count: 1;
	}

}

/* =============================================
   レスポンシブ（SP 〜768px）
   ============================================= */
@media screen and (max-width: 768px) {

	/* SPヒーローラッパー: 背景画像＋オーバーレイ */
	.sec-coach-hero-wrap {
		position: relative;
		background-image: var(--coach-hero-bg-sp);
		background-size: cover;
		background-position: center center;
	}

	.sec-coach-hero-wrap::after {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.50);
		pointer-events: none;
	}

	/* パンくず・HEROをオーバーレイより前面に */
	.sec-coach-hero-wrap .breadcrumb-wrap,
	.sec-coach-hero-wrap .sec-coach-hero {
		position: relative;
		z-index: 1;
	}

	/* パンくず文字・セパレーターを白に */
	.sec-coach-hero-wrap .breadcrumb,
	.sec-coach-hero-wrap .breadcrumb a,
	.sec-coach-hero-wrap .breadcrumb__item,
	.sec-coach-hero-wrap .breadcrumb__item--current {
		color: var(--color-white);
	}

	.sec-coach-hero-wrap .breadcrumb__item + .breadcrumb__item::before {
		color: rgba(255, 255, 255, 0.6);
	}

	/* HEROエリア: フルスクリーン */
	.sec-coach-hero {
		min-height: calc(100vh - var(--header-height-sp) - 40px);
		min-height: calc(calc(var(--vh, 1vh) * 100) - var(--header-height-sp) - 40px);
		padding-top: var(--section-pt-sp);
		padding-bottom: var(--section-pt-sp);
	}

	/* タイトル（上）＋キャッチ（下）: タイトルは上部、キャッチはmargin-top:autoで下部へ */
	.sec-coach-hero .page-hero__head {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		height: calc(100vh - var(--header-height-sp) - 40px - var(--section-pt-sp) * 2);
		height: calc(calc(var(--vh, 1vh) * 100) - var(--header-height-sp) - 40px - var(--section-pt-sp) * 2);
		justify-content: flex-start;
		margin-bottom: 0;
		gap: 0;
		padding-top: 0;
	}

	/* タイトルグループ: SP縦並び・中央揃え */
	.coach-hero__title-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
		width: 100%;
	}

	/* HEROタイトル・サブタイトルを白に */
	.sec-coach-hero .page-hero__title,
	.sec-coach-hero .section-subtitle {
		color: var(--color-white);
	}

	/* SPキャッチ: margin-top:autoで下部に押し出す */
	.coach-hero__catch--sp {
		display: block;
		font-family: var(--font-ja);
		font-size: var(--page-catch-lead-sp);
		font-weight: 900;
		color: var(--color-white);
		line-height: 1.8;
		text-align: left;
		width: 100%;
		margin: auto 0 0;
	}

	/* PCブロックを非表示 */
	.coach-page-hero__pc {
		display: none;
	}

	/* SPブロックを表示 */
	.coach-page-hero__sp {
		display: block;
	}

	/* SP: 写真全幅・高さ固定トリミング */
	.coach-page-hero__sp-photo {
		display: block;
		width: 100%;
		height: 420px;
		object-fit: cover;
		object-position: center top;
	}

	/* SP: プロフィールエリア */
	.coach-page-hero__sp-profile {
		display: flex;
		flex-direction: column;
		gap: 4px;
		padding: 24px 0 0;
		align-items: center;
		text-align: center;
	}

	.coach-page-hero__sp-affiliation {
		font-family: var(--font-ja);
		font-size: var(--text-sm-size); /* 14px */
		font-weight: 400;
		color: var(--color-black);
	}

	.coach-page-hero__sp-role {
		font-family: var(--font-ja);
		font-size: var(--page-body-sp); /* 16px */
		font-weight: 700;
		color: var(--color-black);
		margin-top: 4px;
	}

	.coach-page-hero__sp-name {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		justify-content: center;
		gap: 4px 8px;
		margin-top: 4px;
	}

	.coach-page-hero__sp-name-ja {
		font-family: var(--font-ja);
		font-size: var(--page-h1-sp); /* 28px */
		font-weight: 900;
		color: var(--color-black);
	}

	.coach-page-hero__sp-name-en {
		font-family: var(--font-ja);
		font-size: var(--page-body-sp); /* 16px */
		font-weight: 400;
		color: var(--color-black);
	}


	/* PROFILE */
	.sec-coach-page-profile {
		padding: var(--section-pt-sp) 0 var(--section-pb-sp);
	}

	/* PC非表示・SPアコーディオン表示 */
	.coach-page-profile__pc {
		display: none;
	}

	.coach-page-profile__sp {
		display: block;
	}

	/* アコーディオン各アイテム */
	.coach-profile-accordion__item {
		border-top: 1px solid #D0D0D0;
	}

	.coach-profile-accordion__item:last-child {
		border-bottom: 1px solid #D0D0D0;
	}

	/* トリガー（黒背景・白文字） */
	.coach-profile-accordion__trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-family: var(--font-ja);
		font-size: var(--page-h3-sp); /* 18px */
		font-weight: 700;
		color: var(--color-white);
		background-color: var(--color-black);
		padding: 16px 20px;
		cursor: pointer;
	}

	/* アイコン（chevron・白） */
	.coach-profile-accordion__icon {
		display: block;
		flex-shrink: 0;
		width: 20px;
		height: 20px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline points='2,6 10,14 18,6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		transition: transform 0.3s ease;
	}

	.js-accordion-item.is-open .coach-profile-accordion__icon {
		transform: rotate(180deg);
	}

	/* アコーディオン本体：高さ0で初期非表示、JSがheightをアニメーション */
	.coach-page-profile__sp .js-accordion-body {
		overflow: hidden;
		height: 0;
		transition: height 0.35s ease;
	}

	/* アコーディオン内コンテンツの余白 */
	.coach-page-profile__sp .js-accordion-body > .acc-inner {
		padding: 16px 16px 24px;
	}

	/* アコーディオン内サブ見出し */
	.coach-profile-accordion__sub-heading {
		font-family: var(--font-ja);
		font-size: var(--page-body-sp); /* 16px */
		font-weight: 700;
		color: var(--color-black);
		border-bottom: 1px solid #D0D0D0;
		padding-bottom: 8px;
		margin: 24px 0 12px;
		text-align: center;
	}

	.coach-page-profile__label {
		font-size: 17px;
	}

	.coach-page-profile__label--mt {
		margin-top: 32px;
	}

	/* sec-coach-page-content */
	.sec-coach-page-content {
		padding: var(--section-pt-sp) 0 0;
	}

	/* PROFILE ボックス */
	.coach-page-profile__box {
		padding: 24px 16px 32px;
	}

	.coach-page-profile__heading-wrap {
		margin-bottom: 24px;
	}

	/* Q&Aブロック */
	.coach-interview__qa-block {
		gap: 12px;
	}

	.coach-interview__qa-q {
		font-size: var(--page-h3-sp);
	}

	.coach-interview__qa-a {
		font-size: var(--page-body-sp);
	}

	.coach-interview__qa-a p {
		margin: 0 0 1em;
	}

	.coach-interview__qa-a p:last-child {
		margin-bottom: 0;
	}

	/* インタビューブロック間余白 */
	.coach-interview {
		padding-top: 48px;
	}

	.coach-interview--first {
		padding-top: 0;
	}

	/* フル幅画像の高さ */
	.coach-interview__img-block--full .coach-interview__img {
		height: 260px;
	}

	/* 2カラム画像の高さ */
	.coach-interview__img-block--two-col .coach-interview__img {
		height: 180px;
	}

	/* 画像上余白 */
	.coach-interview__images {
		margin-top: 24px;
	}

}
