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

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

/* ─── パンくず背景（SCHOOLページのみ水色で塗りつぶし・PCのみ） ─── */
.sec-school-hero-wrap {
	background-color: var(--color-cyan);
}

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

.school-hero__sp {
	display: none;
}

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

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

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

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

/* =============================================
   2. HEROスライダー
   ============================================= */

/* ─── スライダーエリア（背景水色・HEROと連続させる） ─── */
.sec-school-hero__slider-wrap {
	background-color: var(--color-cyan);
	padding-top: var(--section-pt);
	padding-bottom: 48px;
}

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

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

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

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

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

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

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

/* =============================================
   3. キャッチコピー・本文
   ============================================= */

.sec-school-catch {
	background-color: var(--color-white);
	padding: 60px 0;
}

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

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

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

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

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

/* =============================================
   4. スクール紹介テキストブロック
   ============================================= */

.sec-school-textblock {
	background-color: var(--color-white);
	padding: 0 0 60px;
}

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

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

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

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

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

/* =============================================
   4-2. 概要セクション（PC: 常時展開 / SP: アコーディオン）
   ============================================= */

.sec-school-overview {
	background-color: var(--color-white);
	padding: 60px 0;
}

/* CLUBの club-overview__heading に準拠 */
.school-overview__heading {
	font-family: var(--font-ja);
	font-size: 50px;
	font-weight: 700;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 48px;
}

.school-overview__subheading {
	font-family: var(--font-ja);
	font-size: var(--page-h2-pc);
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 32px;
}

.school-overview__subheading::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: var(--color-orange);
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
	position: relative;
	top: -2px;
}

.school-overview__list {
	width: 100%;
}

/* クラスアイテム */
.school-overview__item {
	padding: 80px 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-top: 1px solid var(--color-gray-4);
}

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

.school-overview__item.is-last {
	border-bottom: 1px solid var(--color-gray-4);
}


/* クラス名見出し外枠（アコーディオントリガー兼） */
.school-overview__term {
	cursor: default;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0;
}

/* クラス名内部レイアウト（縦積み＋左オレンジライン） */
.school-overview__term-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-left: 5px solid var(--color-orange);
	padding: 8px 0 8px 20px;
}

/* クラス名テキスト */
.school-overview__class-name {
	font-family: var(--font-ja);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-black);
	line-height: 1.2;
}

/* バッジ＋補足テキスト 横並び */
.school-overview__term-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

/* 概要: PCは常時展開（共通JS・共通CSSに委ねる） */
.school-overview__desc {
	margin: 0;
}

/* PC: 見出し横インラインステータステキストは非表示（アコーディオン内に表示されるため） */
.school-overview__status--inline {
	display: none;
}

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

/* =============================================
   4-3. ブロック共通（テキスト・料金・住所）
   ============================================= */

.school-block {
	margin-bottom: 32px;
}

.school-block:last-child {
	margin-bottom: 0;
}

/* CLUBの club-note__title に準拠（28px オレンジ） */
.school-block__title {
	font-family: var(--font-ja);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-orange);
	margin: 0 0 16px;
}

.school-block__body {
	color: var(--color-black);
}

/* =============================================
   4-4. 料金テーブル（CLUBの club-fee に準拠）
   ============================================= */

/* CLUBの club-fee__list に準拠 */
.school-fee__list {
	width: 100%;
	border-left: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
}

/* CLUBの club-fee__item に準拠 */
.school-fee__item {
	display: grid;
	grid-template-columns: 200px 1fr;
	border-top: 1px solid #E0E0E0;
}

.school-fee__item:last-child {
	border-bottom: 1px solid #E0E0E0;
}

/* CLUBの club-fee__term / club-fee__desc に準拠 */
.school-fee__term,
.school-fee__desc {
	padding: 20px 24px;
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	line-height: 1.7;
	color: var(--color-black);
}

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

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

/* =============================================
   4-5. 住所・Map（CLUBの club-location に準拠）
   ============================================= */

/* PC: 2列グリッド */
.school-location__pc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 80px;
	align-items: start;
}

/* SP用ブロックはPCで非表示 */
.school-location__sp {
	display: none;
}

/* CLUBの club-location__item に準拠 */
.school-location__item {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* CLUBの club-location__name に準拠 */
.school-location__name {
	font-family: var(--font-ja);
	font-size: 26px;
	font-weight: 700;
	color: var(--color-black);
}


/* CLUBの club-location__address に準拠 */
.school-location__address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* CLUBの club-location__zip / club-location__street に準拠 */
.school-location__zip,
.school-location__street {
	font-family: var(--font-ja);
	font-size: 20px;
	color: var(--color-black);
	line-height: 1.6;
}

/* CLUBの club-location__map に準拠 */
.school-location__map {
	width: 100%;
	height: 480px;
	overflow: hidden;
}

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

/* =============================================
   5. 空き状況テーブル
   ============================================= */

.sec-school-class {
	padding: var(--section-pt) 0;
	background-color: var(--color-white);
}

/* 共通: セクション見出し */
.school-section__heading {
	font-family: var(--font-en);
	font-size: clamp(36px, 4vw, 64px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	color: var(--color-black);
	margin: 0 0 48px;
}

/* 空き状況リスト */
.school-class__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid #E0E0E0;
}

.school-class__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	border-bottom: 1px solid #E0E0E0;
	background-color: var(--color-white);
}

.school-class__item:nth-child(even) {
	background-color: #F8F8F8;
}

.school-class__name {
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	font-weight: 700;
	color: var(--color-black);
}

.school-class__right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.school-class__note {
	font-family: var(--font-ja);
	font-size: var(--text-base-size);
	font-weight: 700;
	color: var(--color-black);
}

/* 空き状況バッジ */
.school-class__badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 2px;
	font-family: var(--font-ja);
	font-size: var(--text-base-size);
	font-weight: 700;
	white-space: nowrap;
}

.school-class__badge--available {
	background-color: #22C55E;
	color: var(--color-white);
}

.school-class__badge--few {
	background-color: var(--color-orange);
	color: var(--color-white);
}

.school-class__badge--full {
	background-color: #EF4444;
	color: var(--color-white);
}

.school-class__badge--contact {
	background-color: #475569;
	color: var(--color-white);
}

/* =============================================
   6. クラス詳細セクション
   ============================================= */

.sec-school-classes {
	background-color: var(--color-white);
	padding: var(--section-pt) 0;
}

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

.school-classes__subheading {
	font-family: var(--font-ja);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-orange);
	margin: 0 0 0;
	padding: 0;
}

.school-classes__list {
	display: flex;
	flex-direction: column;
}

/* ─── クラスアイテム ─── */
.school-class__item {
	border-top: 1px solid #E0E0E0;
	padding: 48px 0;
}

.school-class__item:last-child {
	border-bottom: 1px solid #E0E0E0;
}

/* ─── クラス名ヘッダー（PC: 常時展開 / SP: アコーディオントリガー） ─── */
.school-class__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.school-class__header-inner {
	display: flex;
	align-items: center;
	gap: 16px;
}

.school-class__name {
	font-family: var(--font-ja);
	font-size: var(--page-h2-pc);
	font-weight: 700;
	color: var(--color-black);
	margin: 0;
	line-height: 1.4;
	padding-left: 16px;
	border-left: 4px solid var(--color-orange);
}

/* PC: アコーディオンアイコン非表示 */
.school-class__icon {
	display: none;
}

/* PC: accordion-body は常時展開（CLUBの .js-accordion-body に準拠・!important 不使用） */
.js-accordion-body {
	display: block;
	overflow: visible;
}

/* ─── ブロック共通 ─── */
.school-class__block {
	margin-bottom: 32px;
}

.school-class__block:last-child {
	margin-bottom: 0;
}

.school-class__block-title {
	font-family: var(--font-ja);
	font-size: var(--page-h3-pc);
	font-weight: 700;
	color: var(--color-black);
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-black);
}

.school-class__block-body {
	color: var(--color-black);
}

/* ─── 料金テーブル（XDデザイン準拠） ─── */
.school-class__fee-dl {
	border: 1px solid #D0D0D0;
	border-radius: 4px;
	overflow: hidden;
}

.school-class__fee-row {
	display: grid;
	grid-template-columns: 160px 1fr;
	border-bottom: 1px solid #D0D0D0;
}

.school-class__fee-row:last-child {
	border-bottom: none;
}

.school-class__fee-dt,
.school-class__fee-dd {
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	line-height: 1.7;
	color: var(--color-black);
	padding: 14px 20px;
}

.school-class__fee-dt {
	font-weight: 700;
	border-right: 1px solid #D0D0D0;
}

.school-class__fee-dd {
	font-weight: 400;
}

/* ─── 住所ブロック ─── */
.school-class__venues {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.school-class__venue-name {
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	font-weight: 700;
	color: var(--color-black);
	margin: 0 0 8px;
}

.school-class__venue-name::before {
	content: '●';
	color: var(--color-orange);
	margin-right: 6px;
}

.school-class__venue-addr {
	font-family: var(--font-ja);
	font-size: var(--page-body-pc);
	font-weight: 400;
	color: var(--color-black);
	line-height: 1.8;
	margin: 0 0 12px;
}

.school-class__venue-map {
	position: relative;
	width: 100%;
	padding-top: 60%;
}

.school-class__venue-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* =============================================
   7. CTAボタンラッパー
   ============================================= */

.sec-school-btn {
	background-color: var(--color-white);
	padding: 80px 0;
	text-align: center;
}

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

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

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

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

	/* ─── 住所グリッド（CLUBに準拠） ─── */
	.school-location__pc {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px 60px;
	}

}

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

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

	/* ─── HERO ─── */

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

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

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

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

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

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

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

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

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

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

	.school-hero__sp .section-subtitle--black {
		color: var(--color-white);
	}

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

	/* キャッチ（下部左寄せ） */
	.school-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;
	}

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

	/* ─── スライダー ─── */

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

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

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

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

	/* ─── キャッチ・本文 ─── */

	.sec-school-catch {
		padding: var(--section-pt-sp) 0 var(--section-pb-sp);
	}

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

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

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

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

	/*
	 * SP アコーディオン開閉: .js-accordion-body を height: 0 で隠し
	 * JS が scrollHeight を正確に取得して height をアニメーション。
	 * padding は内側の .acc-inner に持たせることで 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-school-textblock {
		padding: 0;
	}

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

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

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

	.school-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;
		margin: 0;
	}

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

	/* アイコン（CLUBの club-accordion__icon に準拠） */
	.school-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 .school-accordion__icon {
		transform: rotate(180deg);
	}


	/* ─── 概要セクション（SP: アコーディオン・CLUBの club-overview に準拠） ─── */

	.sec-school-overview {
		padding: 0 0 var(--section-pb-sp);
	}

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

	.school-overview__subheading {
		font-size: var(--page-h3-sp);
		margin-bottom: 16px;
	}

	.school-overview__subheading::before {
		width: 14px;
		height: 14px;
	}

	/* ─── クラスアイテム SP（school-textblock__item と同じ構造） ─── */

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

	.school-overview__item:first-child {
		border-top: 1px solid #E0E0E0;
	}

	.school-overview__item.is-last {
		border-bottom: 1px solid #E0E0E0;
	}

	/* SP: クラス名（オレンジ背景・白文字・CLUBのclub-overview__term SPに準拠） */
	.school-overview__term {
		display: block;
		padding: 0;
		cursor: pointer;
		background-color: transparent;
	}

	.school-overview__term-inner {
		display: block;
		gap: 0;
		border-left: none;
		padding: 0;
		width: 100%;
	}

	.school-overview__class-name {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		font-size: var(--page-h3-sp);
		font-weight: 700;
		color: var(--color-white);
		background-color: var(--color-orange);
		padding: 16px 20px;
		line-height: 1.4;
		flex-wrap: nowrap;
	}

	/* SP: バッジエリアのマージン調整 */
	.school-overview__term-meta {
		margin-bottom: 8px;
	}

	/* SP: 見出し横インラインステータステキスト（括弧形式） */
	.school-overview__status--inline {
		display: inline;
		font-size: 12px;
		font-weight: 400;
		color: var(--color-white);
		opacity: 0.9;
	}


	/* ─── ブロック共通（SP） ─── */

	.school-block {
		margin-bottom: 24px;
	}

	.school-block__title {
		font-size: var(--page-h3-sp);
		margin-bottom: 12px;
	}

	/* ─── 料金テーブル SP ─── */

	.school-fee__list {
		border-left: none;
		border-right: none;
	}

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

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

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

	/* ─── 住所・Map SP（CLUBと同一） ─── */

	.school-location__pc {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* SP: 住所名フォントをSPサイズに */
	.school-location__name {
		font-size: var(--page-body-sp);
	}

	/* SP: 地図の高さ */
	.school-location__map {
		height: 250px;
	}

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

	/* ─── 空き状況 ─── */

	.sec-school-class {
		padding: var(--section-pt-sp) 0;
	}

	.school-section__heading {
		font-size: clamp(28px, 8vw, 48px);
		margin-bottom: 32px;
	}

	.school-class__name {
		font-size: var(--page-body-sp);
	}

	.school-class__right {
		gap: 8px;
	}

	.school-class__note {
		font-size: 13px;
	}

	/* ─── クラス詳細（SP: アコーディオン） ─── */

	.sec-school-classes {
		padding: 0 0 var(--section-pb-sp);
	}

	.school-class__item {
		padding: 0;
		border-top: 1px solid #E0E0E0;
		border-bottom: none;
	}

	.school-class__item:last-child {
		border-bottom: 1px solid #E0E0E0;
	}

	/* ヘッダーをアコーディオントリガーとして表示 */
	.school-class__header {
		padding: 16px 0;
		margin-bottom: 0;
		cursor: pointer;
	}

	.school-class__header-inner {
		gap: 12px;
		flex: 1;
	}

	.school-class__name {
		font-size: var(--page-h3-sp);
		color: var(--color-black);
		padding-left: 12px;
		border-left-width: 3px;
	}

	/* SP: アコーディオンアイコン表示（黒chevron） */
	.school-class__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='%23000' 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 .school-class__icon {
		transform: rotate(180deg);
	}

	/* SP: accordion-body を height 0 で制御 */
	.school-class__body.js-accordion-body {
		overflow: hidden;
		height: 0;
	}

	.school-class__body .acc-inner {
		padding: 20px 16px 24px;
	}

	/* SP: ブロック間余白 */
	.school-class__block {
		margin-bottom: 24px;
	}

	.school-class__block-title {
		font-size: var(--page-h3-sp);
	}

	/* SP: 料金テーブル */
	.school-class__fee-row {
		grid-template-columns: 100px 1fr;
	}

	.school-class__fee-dt {
		padding: 12px 14px;
		font-size: var(--page-body-sp);
	}

	.school-class__fee-dd {
		padding: 12px 14px;
		font-size: var(--page-body-sp);
	}

	/* SP: 住所ブロックを縦積みに */
	.school-class__venues {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.school-class__venue-name {
		font-size: var(--page-body-sp);
	}

	.school-class__venue-addr {
		font-size: var(--page-body-sp);
	}

	.school-class__venue-map {
		padding-top: 70%;
	}

}
