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

/* =============================================
   HEROセクション
   ============================================= */

/* ─── パンくず背景（CLUBページのみ黄緑で塗りつぶし・PCのみ） ─── */
.sec-club-hero-wrap {
	background-color: var(--color-accent);
}

/* PC: SPブロック非表示 */
.club-hero__pc {
	display: block;
}

.club-hero__sp {
	display: none;
}

/* ─── PC: ヒーロー背景・レイアウト ─── */
.sec-club-hero {
	background-color: var(--color-accent);
}

/* PC: タイトル（左）＋説明文（右）横並び */
.club-hero__pc .page-hero__head {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 0;
}

.club-hero__pc .page-hero__title {
	flex-shrink: 0;
}

.club-hero__desc {
	font-size: clamp(32px, 4vw, 60px);
	font-weight: 900;
	line-height: 1.2;
	padding-top: 24px;
	text-align: left;
}

/* ─── 写真スライダーエリア（背景白・黄緑の外） ─── */
.sec-club-hero__slider-wrap {
	background-color: var(--color-accent);
	padding-top: var(--section-pt);
	padding-bottom: 48px;
}

.club-hero__slider {
	width: 100%;
	overflow: hidden;
}

.club-hero__slide-inner {
	height: 700px;
	overflow: hidden;
}

.club-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

@media (hover: hover) {
	.club-hero__slider .swiper-slide:hover .club-hero__img {
		transform: scale(1.03);
	}
}

/* ─── ドット ─── */
.club-hero__slider .swiper-pagination {
	position: relative;
	bottom: auto;
	padding: 32px 40px 12px;
	background-color: var(--color-accent);
}

.club-hero__slider .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	margin: 0 8px !important;
	background-color: var(--color-black);
	opacity: 0.3;
}

.club-hero__slider .swiper-pagination-bullet-active {
	background-color: var(--color-black);
	opacity: 1;
}

/* =============================================
   キャッチコピー・本文
   ============================================= */
.sec-club-catch {
	background-color: var(--color-white);
	padding: 60px 0;
}

.club-catch__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}

/* ─── キャッチコピー ─── */
.club-catch__copy {
	position: relative;
}

.club-catch__copy1 {
	font-family: var(--font-en);
	font-size: 70px;
	font-weight: 900;
	color: var(--color-black);
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.club-catch__copy2 {
	font-family: var(--font-en);
	font-size: 96px;
	font-weight: 900;
	color: var(--color-black);
	line-height: 1.0;
	letter-spacing: 0.02em;
}

/* ─── リード本文 ─── */
.club-catch__lead {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.8;
	color: var(--color-black);
	text-align: left;
	margin-top: 40px;
}

/* =============================================
   テキストブロック
   ============================================= */
.sec-club-textblock {
	background-color: var(--color-white);
	padding: 0 0 60px;
}

.club-textblock__item {
	border-top: 1px solid #E0E0E0;
	padding: 48px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.club-textblock__item:first-child {
	border-top: none;
}

.club-textblock__item.is-last {
	border-bottom: 1px solid #E0E0E0;
}

.club-textblock__title {
	font-family: var(--font-ja);
	font-size: var(--page-h2-pc); /* 26px */
	font-weight: 700;
	color: var(--color-orange);
	line-height: 1.5;
}

.club-textblock__body {
	color: var(--color-black);
}

/* =============================================
   概要セクション（PC:リスト / SP:アコーディオン）
   ============================================= */
.sec-club-overview {
	background-color: var(--color-white);
	padding: 60px 0;
}

.club-overview__heading {
	font-family: var(--font-ja);
	font-size: 50px;
	font-weight: 700;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 48px;
}

.club-overview__list {
	width: 100%;
}

/* ─── PC・タブレット：縦積みリスト ─── */
.club-overview__item {
	border-top: 1px solid #D0D0D0;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.club-overview__item:first-child {
	border-top: none;
}

.club-overview__item.is-last {
	border-bottom: 1px solid #D0D0D0;
}

.club-overview__term {
	font-family: var(--font-ja);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-orange);
	cursor: default;
	user-select: none;
}

/* アコーディオンアイコンはPCで非表示 */
.club-accordion__icon {
	display: none;
}

/* アコーディオン本文はPCで常時表示（grid トリック無効化） */
.js-accordion-body {
	display: block;
	overflow: visible;
}

/* 概要：PCは常時展開 */
.club-overview__desc {
	overflow: visible;
	max-height: none;
}

/* =============================================
   場所・Map
   ============================================= */
.sec-club-location {
	background-color: var(--color-white);
	padding: 60px 0;
}

/* PC: PCブロック表示・SPブロック非表示 */
.club-location__pc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 80px;
	align-items: start;
}

.club-location__sp {
	display: none;
}

.club-location__item {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.club-location__name {
	font-family: var(--font-ja);
	font-size: 26px;
	font-weight: 700;
	color: var(--color-black);
}


.club-location__address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.club-location__zip,
.club-location__street {
	font-family: var(--font-ja);
	font-size: 20px;
	color: var(--color-black);
	line-height: 1.6;
}

.club-location__map {
	width: 100%;
	height: 480px;
	overflow: hidden;
}

.club-location__map iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

/* =============================================
   備考
   ============================================= */
.sec-club-note {
	background-color: var(--color-white);
	padding: 60px 0 0;
}

.club-note__item {
	border-top: 1px solid #D0D0D0;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.club-note__item:first-child {
	border-top: none;
}

.club-note__item.is-last {
	border-bottom: 1px solid #D0D0D0;
}

.club-note__title {
	font-family: var(--font-ja);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-orange);
}

.club-note__body {
	color: var(--color-black);
}

/* =============================================
   料金セクション
   ============================================= */
.sec-club-fee {
	background-color: var(--color-white);
	padding: 40px 0 0;
}

.club-fee__heading {
	font-family: var(--font-ja);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 40px;
}

.club-fee__list {
	width: 100%;
	border-right: 1px solid #E0E0E0;
}

.club-fee__item {
	display: grid;
	grid-template-columns: 200px 1fr;
	border-top: 1px solid #E0E0E0;
}

.club-fee__item.is-last {
	border-bottom: 1px solid #E0E0E0;
}

.club-fee__term,
.club-fee__desc {
	padding: 20px 24px;
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	line-height: 1.7;
	color: var(--color-black);
}

.club-fee__term {
	font-weight: 700;
	background-color: var(--color-offwhite);
	border-right: 1px solid #E0E0E0;
}

.club-fee__desc {
	font-weight: 400;
}


/* =============================================
   CTAボタンラッパー
   ============================================= */
.sec-club-btn {
	background-color: var(--color-white);
	padding: 80px 0;
	text-align: center;
}

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

	.sec-club-btn {
		padding: 60px 0;
	}

	/* ─── HEROキャッチのpadding-topを打ち消し ─── */
	.club-hero__desc {
		padding-top: 0;
	}

	.club-catch__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.club-catch__copy2 {
		font-size: clamp(48px, 6vw, 80px);
	}


	.club-location__pc {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px 60px;
	}

}

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

	.sec-club-btn {
		padding: 40px 0;
	}

	/* ─── HERO ─── */

	/* パンくず＋HEROを包む1枚の背景 */
	.sec-club-hero-wrap {
		position: relative;
		background-color: transparent;
		background-image: var(--club-hero-bg-sp);
		background-size: cover;
		background-position: center center;
	}

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

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

	/* パンくず文字・セパレーターを白に（緑オーバーレイのため） */
	.sec-club-hero-wrap .breadcrumb,
	.sec-club-hero-wrap .breadcrumb a,
	.sec-club-hero-wrap .breadcrumb__item,
	.sec-club-hero-wrap .breadcrumb__item--current {
		color: var(--color-white);
	}

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

	/* PC: ヒーローブロック非表示 */
	.club-hero__pc {
		display: none;
	}

	/* SP: ヒーローブロック表示 */
	.club-hero__sp {
		display: block;
	}

	/* SPヒーロー：フルスクリーン高さ */
	.club-hero__sp .sec-club-hero {
		background-color: transparent;
		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で下部へ */
	.club-hero__sp .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;
	}

	/* タイトルグループ（中央配置） */
	.club-hero__sp-title-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
		width: 100%;
	}

	.club-hero__sp .page-hero__title {
		color: var(--color-white);
	}

	.club-hero__sp .section-subtitle {
		color: var(--color-white) !important;
	}

	/* キャッチ＋ロゴの下部ラッパー: margin-top:autoで下部に押し出す */
	.club-hero__sp-bottom {
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		width: 100%;
		gap: 16px;
		margin-top: auto;
	}

	/* キャッチ（下部左寄せ） */
	.club-hero__sp-catch {
		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;
		margin: 0;
	}

	/* ロゴ（右下） */
	.club-hero__sp-logo {
		display: block;
		width: 56px;
		flex-shrink: 0;
	}

	/* ドット：背景なし・小さく */
	.club-hero__slider .swiper-pagination {
		background-color: transparent;
		padding: 16px 0;
	}

	.club-hero__slider .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 4px !important;
	}

	/* スライダーエリア背景も透明に */
	.sec-club-hero__slider-wrap {
		background-color: transparent;
		padding-top: var(--section-pt-sp);
		padding-bottom: 0;
	}

	.club-hero__slide-inner {
		height: 90vw;
		aspect-ratio: unset;
	}

	/* ─── キャッチ・本文 ─── */
	.sec-club-catch {
		padding: var(--section-pt-sp) 0 var(--section-pb-sp);
	}

	.club-catch__copy1 {
		font-size: var(--page-catch-copy1-sp);
	}

	.club-catch__copy2 {
		font-size: var(--page-catch-copy2-sp);
	}

	.club-catch__lead {
		font-size: var(--page-catch-lead-sp);
	}

	/* ─── SP共通アコーディオン ─── */

	/* アイコン（SVG chevron・広めのV）：SPのみ表示 */
	.club-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 .club-accordion__icon {
		transform: rotate(180deg);
	}

	/*
	 * SP アコーディオン開閉：.js-accordion-body を height: 0 で隠し
	 * JS が scrollHeight を正確に取得して height をアニメーション。
	 * padding は内側の .acc-inner（JS が動的挿入）に持たせることで
	 * scrollHeight の計算がずれない。
	 */
	.js-accordion-body {
		overflow: hidden;
		height: 0;
		transition: height 0.35s ease;
	}

	/* ─── アコーディオン内コンテンツのpadding統一（acc-inner に適用） ─── */
	.js-accordion-body > .acc-inner {
		padding: 16px 16px 24px;
	}

	/* ─── テキストブロック（SP：アコーディオン） ─── */
	.sec-club-textblock {
		padding: 0;
	}

	.club-textblock__item {
		padding: 0;
		gap: 0;
		display: block;
		border-top: 1px solid #E0E0E0;
	}

	.club-textblock__item:first-child {
		border-top: 1px solid #E0E0E0;
	}

	.club-textblock__item.is-last {
		border-bottom: none;
	}

	.club-textblock__title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-size: var(--page-h3-sp);
		color: var(--color-white);
		background-color: var(--color-orange);
		padding: 16px 20px;
		cursor: pointer;
	}

	/* ─── 概要（SP：アコーディオン） ─── */
	.sec-club-overview {
		padding: 0;
	}

	.club-overview__heading {
		font-size: var(--page-h1-sp);
		margin: 16px 0;
	}

	.club-overview__item {
		padding: 0;
		display: block;
		border-top: 1px solid #D0D0D0;
	}

	.club-overview__item:first-child {
		border-top: 1px solid #D0D0D0;
	}

	.club-overview__item.is-last {
		border-bottom: 1px solid #D0D0D0;
	}

	.club-overview__term {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-size: var(--page-h3-sp);
		color: var(--color-white);
		background-color: var(--color-orange);
		padding: 16px 20px;
		cursor: pointer;
	}

	/* ─── 場所・Map（SP：PCグリッドを非表示・SPアコーディオンを表示） ─── */
	.sec-club-location {
		padding: 0;
		margin-top: 0;
	}

	/* PC: グリッド非表示・SPアコーディオン表示 */
	.club-location__pc {
		display: none;
	}

	.club-location__sp {
		display: block;
	}

	.club-location__sp-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-size: var(--page-h3-sp);
		font-weight: 700;
		color: var(--color-white);
		background-color: var(--color-orange);
		padding: 16px 20px;
		cursor: pointer;
	}

	.club-location__sp-item {
		padding: 16px 0;
		border-bottom: 1px solid #E0E0E0;
	}

	.club-location__sp-item.is-last {
		border-bottom: none;
		padding-bottom: 24px;
	}

	.club-location__sp-name {
		font-size: var(--page-body-sp);
		font-weight: 700;
		color: var(--color-black);
		margin-bottom: 8px;
	}

	.club-location__sp .club-location__map {
		height: 250px;
		margin-top: 12px;
	}

	.club-location__zip,
	.club-location__street {
		font-size: var(--page-body-sp);
	}

	/* ─── 備考（SP：アコーディオン） ─── */
	.sec-club-note {
		padding: 0;
	}

	.club-note__item {
		padding: 0;
		gap: 0;
		border-top: 1px solid #D0D0D0;
		border-bottom: none;
	}

	.club-note__item:first-child {
		border-top: 1px solid #D0D0D0;
	}

	.club-note__title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-size: var(--page-h3-sp);
		color: var(--color-white);
		background-color: var(--color-orange);
		padding: 16px 20px;
		cursor: pointer;
	}


	/* ─── 料金（SP：アコーディオン） ─── */
	.sec-club-fee {
		padding: 0 0 var(--section-pb-sp);
	}

	.club-fee__heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		font-size: var(--page-h3-sp);
		color: var(--color-white);
		background-color: var(--color-orange);
		padding: 16px 20px;
		margin-bottom: 0;
		cursor: pointer;
	}



	.club-fee__list {
		border-right: none;
	}

	.club-fee__item {
		grid-template-columns: 1fr;
	}

	.club-fee__term {
		border-right: none;
		border-bottom: 1px solid #E0E0E0;
		padding: 14px 16px;
		font-size: var(--page-body-sp);
	}

	.club-fee__desc {
		padding: 14px 16px;
		font-size: var(--page-body-sp);
	}

}
