/* ============================================================
 * Sound Collective — Disciplines タイプ別サブリストページ 専用CSS
 * URL 想定: /disciplines/{discipline}/{type}
 * Figma "/all-classes" タイプ別 (fileKey fPjY95UhP1I9BIfLJQkB3s):
 *   full-program PC 2172:54480 / courses PC 2172:54562 /
 *   online-courses PC 2172:54712 / free-workshop PC 1914:45191
 *   SP 共通ヘッダ 2095:32628 / free-workshop SP 1822:44679
 * デザイントークンは sc-design-tokens.css の :root を利用。
 * アクセントは discipline 修飾クラス(.sc-dl--dj 等)で --sc-dl-accent を切替。
 * クラスは sc-dl-* で衝突回避。
 * ============================================================ */

.sc-dl {
	--sc-dl-accent: var(--sc-brand-dj);          /* 既定(dj) */
	--sc-dl-ink: #0b0d27;                         /* アクセント上の濃色文字 */
	--sc-dl-margin: 80px;                         /* PC ページ左右マージン */
	--sc-dl-card-bg: var(--sc-bg-bright);
	--sc-dl-card-border: #6a6a6a;
	--sc-dl-glow: color-mix(in srgb, var(--sc-dl-accent) 20%, transparent);
	background: var(--sc-bg);
	color: var(--sc-fg);
	font-family: var(--sc-font);
	font-weight: var(--sc-fw-medium);
	line-height: var(--sc-lh);
}
/* discipline 別アクセント */
.sc-dl--dj                 { --sc-dl-accent: var(--sc-brand-dj); }
.sc-dl--music-production   { --sc-dl-accent: var(--sc-brand-production); }
.sc-dl--studio-engineering { --sc-dl-accent: var(--sc-brand-studio); }
.sc-dl--vocals             { --sc-dl-accent: var(--sc-brand-vocal); }
.sc-dl--music-business     { --sc-dl-accent: var(--sc-brand-business); }
/* instruments はオンライン専用(Figma ブランド色未定義)= 白アクセント(詳細/カタログと統一) */
.sc-dl--instruments        { --sc-dl-accent: var(--sc-white); }

.sc-dl *, .sc-dl *::before, .sc-dl *::after { box-sizing: border-box; }
.sc-dl h1, .sc-dl h2, .sc-dl h3, .sc-dl p, .sc-dl dl, .sc-dl dd { margin: 0; }
.sc-dl img { max-width: 100%; display: block; }

/* ===== 汎用ボタン ===== */
.sc-dl-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 4px;
	min-height: 36px; padding: 7px 12px; width: max-content;
	border-radius: var(--sc-radius-pill); text-decoration: none; cursor: pointer;
	font-size: 14px; font-weight: var(--sc-fw-bold); line-height: 1.2;
}
.sc-dl-btn--outline { border: 1px solid var(--sc-border-invert); color: var(--sc-fg); background: transparent; }
.sc-dl-btn--outline:hover { background: var(--sc-bg-hover-strong); color: var(--sc-primary); }
.sc-dl-btn--primary { background: var(--sc-primary); color: var(--sc-white); min-height: 48px; padding: 7px 20px; font-size: 18px; } /* #98: 左右はボタントークン(Figma 547-5694 実効20px)に追随 */
.sc-dl-btn--primary:hover { color: var(--sc-white); background-image: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)); }
.sc-dl-btn i { font-size: 14px; }

/* ============================== Title Area ============================== */
.sc-dl-hero {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	min-height: 320px; padding: 96px 16px 48px; gap: 16px;
}
.sc-dl-hero__bg {
	position: absolute; inset: -40px 0; z-index: 0;
	background: center/cover no-repeat;
	filter: blur(4px); mix-blend-mode: lighten; opacity: .3; pointer-events: none;
}
.sc-dl-hero__inner {
	position: relative; z-index: 1;
	display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
	max-width: 1280px; width: 100%;
}
.sc-dl-hero__title { font-size: 40px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-white); }
.sc-dl-hero__sub { font-size: 18px; font-weight: var(--sc-fw-medium); color: var(--sc-white); }

/* ============================== Intro (heading + desc + stats) ============================== */
.sc-dl-intro {
	position: relative; max-width: 1440px; margin-inline: auto;
	padding: 40px var(--sc-dl-margin);
	display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
}
.sc-dl-intro--glow::before {
	content: ""; position: absolute; left: 50%; top: 45%; transform: translateX(-50%);
	width: 120%; height: 420px; z-index: 0; pointer-events: none;
	background: radial-gradient(ellipse at center, var(--sc-dl-glow), transparent 70%);
	filter: blur(40px); opacity: .5;
}
.sc-dl-intro__head { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; max-width: 832px; flex: 1 1 auto; }
.sc-dl-intro__title { font-size: 40px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-fg); }
.sc-dl-intro__desc p { font-size: 14px; font-weight: var(--sc-fw-medium); line-height: 1.4; color: var(--sc-fg-secondary); }

/* --- CardProductType (stats) --- */
.sc-dl-stats {
	position: relative; z-index: 1;
	flex: 0 0 auto; display: flex; align-items: center;
	width: 416px; max-width: 100%; height: 104px; padding: 16px 0;
	background: rgba(39,39,39,.2); border-radius: 8px; overflow: hidden;
}
.sc-dl-stats__item {
	flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
	height: 100%; padding: 0 8px; text-align: center;
}
.sc-dl-stats__item i { font-size: 24px; color: var(--sc-fg); }
.sc-dl-stats__item b { font-size: 14px; font-weight: var(--sc-fw-bold); line-height: 1.1; color: var(--sc-fg); }
.sc-dl-stats__sep { align-self: stretch; width: 1px; background: var(--sc-border-dim); }

/* ============================== Filter / Sort ============================== */
.sc-dl-controls { display: flex; flex-direction: column; }
.sc-dl-filterbar {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px;
	padding: 16px var(--sc-dl-margin) 0;
}
.sc-dl-fchip {
	display: inline-flex; align-items: center; justify-content: center;
	height: 36px; padding: 8px 6px; border: none; border-radius: 54px; cursor: pointer;
	background: var(--sc-bg-hover-strong); color: var(--sc-fg);
	font-family: var(--sc-font); font-size: 14px; font-weight: var(--sc-fw-bold); line-height: 1.4;
}
.sc-dl-fchip span { padding: 0 4px; white-space: nowrap; }
.sc-dl-fchip:hover { background: rgba(255,255,255,.16); }
.sc-dl-fchip.is-active { background: var(--sc-bg-invert); color: var(--sc-dl-ink); }
.sc-dl-fchip.is-active span { font-size: 12px; }
/* #131: free-workshop の chip は <a> リンク(横断一覧へ遷移)。button と同じ見た目に。 */
a.sc-dl-fchip { text-decoration: none; }

/* ============================== #130: Which DAW do you use?(MP courses)============================== */
/* クライアント追い指摘: 見出し〜比較トグルを背景付きパネルで括る(Figma 3985:72517 =
 * background-bright #272727、全幅ブリード / py 32px / px page-margin / gap 24px)。
 * レベルチップ(スクロール)は背景の外。 */
.sc-dl-daw {
	display: flex; flex-direction: column; align-items: center; gap: 24px;
	padding: 32px var(--sc-dl-margin);
	background: var(--sc-bg-bright);
}
.sc-dl-daw > * { width: 100%; max-width: 1280px; }
.sc-dl-daw .sc-dl-filterbar { padding: 0; }

.sc-dl-daw__head {
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	padding: 0; text-align: center;
}
.sc-dl-daw__title { font-size: 40px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-fg); }
.sc-dl-daw__sub { max-width: 720px; margin-inline: auto; font-size: 12px; font-weight: var(--sc-fw-medium); line-height: 1.4; color: var(--sc-fg); }

.sc-dl-daw__compare {
	display: flex; flex-direction: column; align-items: center; gap: 16px;
	padding: 0;
}
.sc-dl-daw__toggle {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	min-height: 32px; padding: 7px 12px; cursor: pointer;
	background: transparent; border: 1px solid var(--sc-border-invert); border-radius: 32px;
	color: var(--sc-fg); font-family: var(--sc-font);
	font-size: 12px; font-weight: var(--sc-fw-bold); line-height: 1.5; letter-spacing: .48px;
}
.sc-dl-daw__toggle:hover { background: var(--sc-bg-hover-strong); }
.sc-dl-daw__toggle i { font-size: 16px; transition: transform .2s ease; }
.sc-dl-daw__toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.sc-dl-daw__panel { display: flex; gap: 8px; align-items: stretch; width: 100%; }
.sc-dl-daw__panel[hidden] { display: none; }

.sc-dl-dawcard {
	flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 16px;
	padding: 20px; background: rgba(255,255,255,.03); border-radius: 16px;
}
.sc-dl-dawcard__head { display: flex; flex-direction: column; gap: 4px; }
.sc-dl-dawcard__title { font-size: 24px; font-weight: var(--sc-fw-bold); line-height: 1.4; color: var(--sc-fg); padding-bottom: 4px; }
.sc-dl-dawcard__lead { font-size: 16px; font-weight: var(--sc-fw-bold); line-height: 1.4; color: var(--sc-primary); }
.sc-dl-dawcard__feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sc-dl-dawcard__feats li { display: flex; align-items: flex-start; gap: 8px; }
.sc-dl-dawcard__feats i { flex: 0 0 auto; margin-top: 1px; font-size: 20px; color: var(--sc-fg); }
.sc-dl-dawcard__feats span { font-size: 16px; font-weight: var(--sc-fw-medium); line-height: 1.4; color: var(--sc-fg); }

/* ============================== Content wrapper ============================== */
.sc-dl-content { position: relative; max-width: 1440px; margin-inline: auto; padding: 24px var(--sc-dl-margin) 0; }

/* --- Full Program: 大カード 2 枚ペア --- */
.sc-dl-pair { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.sc-dl-pair .sc-dl-card { width: 407px; max-width: 100%; }

/* --- Free Workshop: 3 列グリッド --- */
.sc-dl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

/* ============================== Level section (courses / online) ============================== */
.sc-dl-level { position: relative; max-width: 1440px; margin-inline: auto; padding: 40px var(--sc-dl-margin); }
.sc-dl-level__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.sc-dl-level__label { display: flex; flex-direction: column; gap: 4px; }
.sc-dl-levelchip {
	align-self: flex-start; padding: 2px 8px; border-radius: 54px;
	background: var(--sc-bg-hover-strong); color: var(--sc-fg);
	font-size: 12px; font-weight: var(--sc-fw-medium); line-height: 1.4;
}
.sc-dl-level__title { font-size: 32px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-fg); }
.sc-dl-cards { position: relative; z-index: 1; margin-top: 32px; }

/* ============================== CardClass ============================== */
.sc-dl-card {
	position: relative; display: flex; flex-direction: column; overflow: hidden;
	background: var(--sc-dl-card-bg); border: 1px solid var(--sc-dl-card-border); border-radius: var(--sc-radius-card);
}
.sc-dl-card::after {
	content: ""; position: absolute; left: -25%; right: -25%; bottom: -50px; height: 130px; z-index: 0;
	background: radial-gradient(ellipse at center, var(--sc-dl-glow), transparent 70%);
	filter: blur(22px); mix-blend-mode: lighten; pointer-events: none;
}
.sc-dl-card__thumb { width: 100%; aspect-ratio: 1920 / 1080; background: #4d4d4d center/cover no-repeat; }
/* #165: body を伸長させ CTA を下端揃え(margin-top:auto は下記 __cta)。 */
.sc-dl-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; padding: 16px; flex: 1 1 auto; }
.sc-dl-card__content { display: flex; flex-direction: column; gap: 16px; }
.sc-dl-card__info { display: flex; flex-direction: column; gap: 4px; }

.sc-dl-card__tags { display: flex; gap: 4px; }
.sc-dl-tag { display: inline-flex; align-items: center; padding: 0 8px; font-size: 12px; font-weight: var(--sc-fw-bold); line-height: 1.2; }
.sc-dl-tag--cat { background: var(--sc-dl-accent); color: var(--sc-dl-ink); }
.sc-dl-tag--level { background: var(--sc-bg-hover-strong); color: var(--sc-fg); }

/* #165: タイトル2行クランプ(行数差でメタ行以下がズレるのを防ぐ)。 */
.sc-dl-card__title { font-size: 24px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-fg); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
/* full-program のみタイトルにアクセント帯 */
.sc-dl-card__title--bar { width: 100%; padding: 2px 4px; background: var(--sc-dl-accent); color: var(--sc-dl-ink); }

.sc-dl-card__stats { display: flex; gap: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--sc-border); }
.sc-dl-card__stat { flex: 1 0 0; display: flex; flex-direction: column; gap: 4px; min-width: 0; text-align: center; }
.sc-dl-card__stat:first-child { text-align: left; }
.sc-dl-card__stat:last-child { text-align: right; }
.sc-dl-card__stat dt { font-size: 12px; font-weight: var(--sc-fw-medium); color: var(--sc-fg-secondary); }
.sc-dl-card__stat dd { font-size: 16px; font-weight: var(--sc-fw-bold); color: var(--sc-fg); }

.sc-dl-card__desc {
	font-size: 12px; font-weight: var(--sc-fw-medium); line-height: 1.4; color: var(--sc-fg-secondary);
	display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.sc-dl-card__price { display: flex; flex-direction: column; gap: 4px; }
.sc-dl-card__price b { font-size: 20px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-fg); }
.sc-dl-card__price span { font-size: 12px; font-weight: var(--sc-fw-medium); color: var(--sc-fg-secondary); }

.sc-dl-card__cta {
	display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 7px 24px;
	border-radius: var(--sc-radius-pill); font-size: 18px; font-weight: var(--sc-fw-bold); line-height: 1.4; text-decoration: none;
	margin-top: auto; /* #165: カード下端に固定(body の flex:1 と併せ CTA 位置を揃える) */
}
.sc-dl-card__cta--light { background: var(--sc-white); color: var(--sc-dl-ink); }
.sc-dl-card__cta--light:hover { color: var(--sc-primary); }
.sc-dl-card__cta--primary { background: var(--sc-primary); color: var(--sc-white); }
.sc-dl-card__cta--primary:hover { color: var(--sc-white); background-image: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)); }

/* ============================== Full Program (FP) card — GitHub #46 ==============================
 * full-programs sublist (.sc-dl-pair holds the is_program cards). Mirrors the /disciplines/ index
 * FP card (sc-disciplines.css .sc-disc-card--bordered / --fp-solo): border #9a9a9a (grid) /
 * #6a6a6a (solo), accent-COLORED title text (not the filled --bar), inset+rounded+shadowed thumb,
 * accent glow top+bottom (lighten, .55), white CTA (already --light), and the PC single-item
 * full-width horizontal layout. Accent = --sc-dl-accent (per .sc-dl--<discipline>). */
.sc-dl-pair .sc-dl-card { border-color: #9a9a9a; }
.sc-dl-pair .sc-dl-card__thumb {
	position: relative; z-index: 1;
	margin: 8px; width: auto; border-radius: 8px;
	filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}
/* accent-COLORED title text (override the filled bar) */
.sc-dl-pair .sc-dl-card__title--bar { background: none; padding: 0; color: var(--sc-dl-accent); }
/* accent glow, top + bottom (override the single blurred ::after) */
.sc-dl-pair .sc-dl-card::before,
.sc-dl-pair .sc-dl-card::after {
	content: ""; position: absolute; left: 50%; right: auto; transform: translateX(-50%);
	width: 150%; height: 220px; z-index: 0; pointer-events: none;
	filter: none; mix-blend-mode: lighten; opacity: .55;
}
.sc-dl-pair .sc-dl-card::before { top: -96px; bottom: auto; background: radial-gradient(50% 100% at 50% 0%, var(--sc-dl-accent) 0%, transparent 72%); }
.sc-dl-pair .sc-dl-card::after  { top: auto; bottom: -96px; background: radial-gradient(50% 100% at 50% 100%, var(--sc-dl-accent) 0%, transparent 72%); }

/* single FP card → full-width horizontal layout (PC only) — Figma 2107:46308 */
@media (min-width:1025px) {
	.sc-dl-pair:has(> .sc-dl-card:only-child) > .sc-dl-card {
		width: 100%; max-width: none; flex-direction: row; align-items: stretch; border-color: #6a6a6a;
	}
	.sc-dl-pair:has(> .sc-dl-card:only-child) > .sc-dl-card > .sc-dl-card__thumb {
		flex: 0 0 640px; width: 640px; aspect-ratio: 640/354; align-self: flex-start; margin: 8px;
	}
	.sc-dl-pair:has(> .sc-dl-card:only-child) > .sc-dl-card > .sc-dl-card__body {
		flex: 1 1 0; min-width: 0; padding: 32px; justify-content: center;
	}
	/* #165: FP 単独カードは中央寄せレイアウトのため、CTA の margin-top:auto を無効化して
	 * justify-content:center のグルーピングを維持する(下端固定は複数カード時のみ必要)。 */
	.sc-dl-pair:has(> .sc-dl-card:only-child) > .sc-dl-card > .sc-dl-card__body > .sc-dl-card__cta {
		margin-top: 0;
	}
	.sc-dl-pair:has(> .sc-dl-card:only-child) .sc-dl-card__title--bar { font-size: 32px; }
	.sc-dl-pair:has(> .sc-dl-card:only-child) > .sc-dl-card::before { display: none; }
	.sc-dl-pair:has(> .sc-dl-card:only-child) > .sc-dl-card::after {
		left: auto; right: -8%; bottom: -110px; transform: none; width: 70%; height: 280px;
		background: radial-gradient(60% 100% at 100% 100%, var(--sc-dl-accent) 0%, transparent 72%);
	}
}

/* ============================== Carousel ============================== */
.sc-dl-carousel { position: relative; }
.sc-dl-carousel__track {
	display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
	scroll-snap-type: x mandatory; scroll-behavior: smooth;
	scrollbar-width: none; -ms-overflow-style: none;
}
.sc-dl-carousel__track::-webkit-scrollbar { display: none; }
.sc-dl-carousel__track > .sc-dl-card { flex: 0 0 314px; scroll-snap-align: center; } /* #110: 中央スナップ */
.sc-dl-carousel__nav { display: flex; justify-content: flex-end; gap: 8px; margin-top: 12px; }
.sc-dl-navbtn {
	display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 36px;
	border: none; border-radius: var(--sc-radius-pill); cursor: pointer;
	background: var(--sc-bg-hover-strong); color: var(--sc-fg); font-size: 14px;
}
.sc-dl-navbtn:hover { background: rgba(255,255,255,.16); color: var(--sc-primary); }

/* ============================== Subscription banner (online) ============================== */
.sc-dl-sub {
	position: relative; overflow: hidden; z-index: 1;
	display: flex; align-items: center; gap: 16px; margin: 0 auto; max-width: 876px; padding: 12px;
	background: var(--sc-dl-card-bg); border: 1px solid var(--sc-dl-card-border); border-radius: var(--sc-radius-card);
	text-decoration: none;
}
/* #129: online-courses の Subscription バナー内側 padding が消える件。テーマ静的CSSにも
 * Elementor ウィジェット設定にも padding の打ち消しは無く、原因は Elementor の element/CSS
 * キャッシュ(旧描画)と判断。恒久保証のため実描画経路(ブロック版=Elementor shortcode
 * ウィジェット / モノリス版=.sc-dl 内)いずれでも効く !important で padding を固定する。 */
.elementor-widget-shortcode .sc-dl-sub,
.sc-dl .sc-dl-sub,
.sc-dl-sub { padding: 12px !important; }

/* #129 追い指摘: サブスクバナーを他セクション(.sc-dl-explore 等)と同じ幅制約に。
 * PC max-width:876px 中央 + section padding 40px var(--sc-dl-margin) / SP 左右16px。
 * sc-global-overrides.css #30 が PC で .sc-dl-sub に max-width:none !important + width:100% を
 * 当てて全幅化しているため、ラッパー配下の高詳細度セレクタ + !important で 876px を取り戻す。 */
.sc-dl-subwrap { padding: 40px var(--sc-dl-margin); }
.sc-dl-subwrap .sc-dl-sub,
.elementor-widget-shortcode .sc-dl-subwrap .sc-dl-sub {
	max-width: 876px !important; width: 100%; margin-inline: auto;
}
.sc-dl-sub::after {
	content: ""; position: absolute; left: -20%; bottom: -60px; width: 60%; height: 130px; z-index: 0;
	background: radial-gradient(ellipse at center, var(--sc-dl-glow), transparent 70%);
	filter: blur(22px); mix-blend-mode: lighten; pointer-events: none;
}
.sc-dl-sub__main { position: relative; z-index: 1; flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sc-dl-sub__chip { align-self: flex-start; background: var(--sc-bg-hover-strong); border-radius: 54px; padding: 2px 8px; font-size: 12px; font-weight: var(--sc-fw-medium); color: var(--sc-fg); }
.sc-dl-sub__title { font-size: 20px; font-weight: var(--sc-fw-bold); line-height: 1.4; color: var(--sc-fg); }
.sc-dl-sub__meta { font-size: 12px; font-weight: var(--sc-fw-medium); color: var(--sc-fg-secondary); }
.sc-dl-sub__meta b { color: var(--sc-fg); font-weight: var(--sc-fw-bold); }
.sc-dl-sub__arrow { position: relative; z-index: 1; color: var(--sc-fg); }
.sc-dl-sub__arrow i { font-size: 24px; }

/* ============================== 空状態 ============================== */
.sc-dl-empty {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
	min-height: 220px; padding: 48px 16px; text-align: center;
	border: 1px dashed var(--sc-border); border-radius: var(--sc-radius-card); background: var(--sc-bg-hover);
}
.sc-dl-empty i { font-size: 40px; color: var(--sc-fg-secondary); }
.sc-dl-empty p { font-size: 16px; font-weight: var(--sc-fw-medium); color: var(--sc-fg-secondary); }

/* ============================== Bottom CTA ============================== */
.sc-dl-explore { display: flex; justify-content: center; padding: 48px 16px 32px; }

/* ============================== Facility banner ============================== */
.sc-dl-facility { position: relative; overflow: hidden; padding: 48px var(--sc-dl-margin); }
.sc-dl-facility__bg {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background: left center/cover no-repeat; opacity: .18; mix-blend-mode: hard-light;
	-webkit-mask-image: linear-gradient(to right, #000 40%, transparent 85%);
	        mask-image: linear-gradient(to right, #000 40%, transparent 85%);
}
.sc-dl-facility__inner {
	position: relative; z-index: 1; max-width: 1296px; margin-inline: auto;
	display: flex; flex-direction: row; align-items: flex-start; gap: 24px; /* 2カラム(courseのみ1カラム) */
}
.sc-dl-facility__text { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.sc-dl-facility__title { font-size: 40px; font-weight: var(--sc-fw-bold); line-height: 1.2; color: var(--sc-fg); }
.sc-dl-facility__text p { font-size: 18px; font-weight: var(--sc-fw-medium); line-height: 1.4; color: var(--sc-fg); }
.sc-dl-facility__shot { flex: 0 0 auto; width: 525px; max-width: 50%; height: auto; aspect-ratio: 525 / 297; object-fit: cover; border-radius: var(--sc-radius-card); }

/* ============================== Speak to our Team ============================== */
.sc-dl-contact { background: var(--sc-bg-bright); padding: 48px 16px; }
.sc-dl-contact__inner { max-width: 846px; margin-inline: auto; display: flex; flex-direction: column; gap: 24px; }
.sc-dl-contact__title { font-size: 32px; font-weight: var(--sc-fw-bold); line-height: 1.2; text-align: center; color: var(--sc-fg); }
.sc-dl-form { display: flex; flex-direction: column; gap: 8px; }
.sc-dl-form__fields { display: flex; flex-direction: column; gap: 12px; }
.sc-dl-field { display: flex; flex-direction: column; gap: 4px; }
.sc-dl-field label { font-size: 14px; font-weight: var(--sc-fw-medium); color: var(--sc-fg); }
.sc-dl-field input, .sc-dl-field textarea {
	width: 100%; min-height: 36px; padding: 8px 12px;
	background: var(--sc-bg-hover-strong); border: .5px solid var(--sc-border); border-radius: 8px;
	color: var(--sc-fg); font-family: var(--sc-font); font-size: 13px; line-height: 1.5;
}
.sc-dl-field textarea { resize: vertical; }
.sc-dl-field input::placeholder, .sc-dl-field textarea::placeholder { color: var(--sc-fg-secondary); }
.sc-dl-form__consent { font-size: 12px; font-weight: var(--sc-fw-medium); line-height: 1.5; color: var(--sc-fg-secondary); }

.sc-dl-recaptcha {
	display: flex; align-items: center; gap: 12px; width: 302px; max-width: 100%; height: 76px; padding: 0 12px;
	background: var(--sc-white); border: 1px solid #d3d3d3; border-radius: 3px; box-shadow: 0 0 4px 1px rgba(0,0,0,.08);
}
.sc-dl-recaptcha__box { width: 28px; height: 28px; border: 2px solid #444746; border-radius: 2px; background: #fff; flex: 0 0 auto; }
.sc-dl-recaptcha__label { flex: 1 1 auto; font-size: 14px; font-weight: var(--sc-fw-medium); color: var(--sc-dl-ink); }
.sc-dl-recaptcha__brand { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #555; }
.sc-dl-recaptcha__brand i { font-size: 22px; color: #4285f4; }
.sc-dl-recaptcha__brand small { font-size: 10px; }

.sc-dl-contact__submit {
	width: 100%; min-height: 36px; padding: 7px 12px; border: none; border-radius: var(--sc-radius-pill); cursor: pointer;
	background: var(--sc-primary); color: var(--sc-white); font-family: var(--sc-font); font-size: 14px; font-weight: var(--sc-fw-bold); line-height: 1.2;
}
.sc-dl-contact__submit:hover { background-image: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)); }

/* ============================== 下部追従CTA ============================== */
/* SP は下記 max-width:1024px 内で下中央固定。PC(#125: Figma 2704:67918)は下記で右下固定。 */
.sc-dl-fixedcta { display: none; }

/* #125: PC でも追従CTAを表示(画面右下・右端8px、フル幅にはしない)。
   見た目は Hub 6ページの .sc-*-fixedcta PC 仕様と同一。SP 挙動は下の max-width:1024px 側で維持。 */
@media (min-width: 1025px) {
	.sc-dl-fixedcta {
		position: fixed; z-index: 100;
		right: 8px; left: auto; bottom: calc(16px + env(safe-area-inset-bottom, 0px));
		display: inline-flex; align-items: center; justify-content: center; gap: 8px;
		min-height: 36px; padding: 7px 24px;
		background: var(--sc-primary); color: var(--sc-white);
		border-radius: var(--sc-radius-pill); text-decoration: none; white-space: nowrap;
		font-size: 14px; font-weight: var(--sc-fw-bold); line-height: 1.2;
		box-shadow: 0 6px 20px rgba(0,0,0,.35);
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	}
	.sc-dl-fixedcta i { font-size: 20px; }
	.sc-dl-fixedcta:hover { color: var(--sc-white); background-image: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)); }
	.sc-dl-fixedcta--hide { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); }
}

/* ============================================================
 * SP (Figma 2095:32628 / 1822:44679) — max-width:1024px
 * ============================================================ */
@media (max-width: 1024px) {
	.sc-dl { --sc-dl-margin: 16px; overflow-x: clip; }

	/* 追従CTA */
	.sc-dl-fixedcta {
		position: fixed; z-index: 100;
		left: 50%; bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		transform: translateX(-50%);
		display: inline-flex; align-items: center; justify-content: center; gap: 6px;
		min-height: 36px; padding: 7px 24px; max-width: calc(100% - 32px);
		background: var(--sc-primary); color: var(--sc-white);
		border-radius: var(--sc-radius-pill); text-decoration: none; white-space: nowrap;
		font-size: 14px; font-weight: var(--sc-fw-bold); line-height: 1.2;
		box-shadow: 0 6px 20px rgba(0,0,0,.35);
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	}
	.sc-dl-fixedcta i { font-size: 12px; }
	.sc-dl-fixedcta:hover { color: var(--sc-white); background-image: linear-gradient(rgba(255,255,255,.10), rgba(255,255,255,.10)); }
	.sc-dl-fixedcta--hide { opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(12px); }

	.sc-dl-hero { min-height: 240px; padding: 64px 16px 40px; }
	.sc-dl-hero__title { font-size: 32px; }
	.sc-dl-hero__sub { font-size: 16px; }

	/* Intro は縦積み。順序: 見出し → stats → 説明(Figma SP) */
	.sc-dl-intro { flex-direction: column; align-items: stretch; gap: 16px; padding-top: 24px; }
	.sc-dl-intro__head { display: contents; }
	.sc-dl-intro__title { order: 1; font-size: 32px; }
	.sc-dl-intro__desc { order: 3; }
	.sc-dl-stats { order: 2; width: 100%; height: auto; gap: 2px; padding: 8px 0; background: var(--sc-bg-bright); }
	.sc-dl-stats__item { gap: 2px; min-height: 64px; }

	/* #130: Which DAW セクション SP(見出し縮小 / 比較カード縦積み) */
	.sc-dl-daw__title { font-size: 24px; }
	.sc-dl-daw__panel { flex-direction: column; }

	/* Level 見出し */
	.sc-dl-level { padding: 32px var(--sc-dl-margin); }
	.sc-dl-level__title { font-size: 24px; }
	.sc-dl-cards { margin-top: 24px; }

	/* Full Program のペアは縦積み */
	.sc-dl-pair { flex-direction: column; align-items: stretch; }
	.sc-dl-pair .sc-dl-card { width: 100%; }

	/* Free Workshop グリッドは 1 列 */
	.sc-dl-grid { grid-template-columns: 1fr; }

	/* カルーセルカードは SP 幅 */
	.sc-dl-carousel__track > .sc-dl-card { flex-basis: 308px; }
	/* #110 SP centered/peek: トラックを画面幅まで拡張し両端に (100vw-308)/2 の余白。gap 13px。 */
	.sc-dl-carousel__track {
		width: calc(100% + 32px); margin-inline: -16px;
		padding-inline: calc((100vw - 308px) / 2); scroll-padding-inline: calc((100vw - 308px) / 2);
		gap: 13px;
	}
	.sc-dl-carousel__nav {
		position: absolute; inset: 0 0 8px; margin: 0;
		align-items: center; justify-content: space-between; pointer-events: none;
	}
	.sc-dl-navbtn { pointer-events: auto; }

	.sc-dl-sub { margin-top: 8px; }

	.sc-dl-explore { padding: 32px 16px; }

	.sc-dl-facility__inner { flex-direction: column; }
	.sc-dl-facility__title { font-size: 32px; }
	.sc-dl-facility__text p { font-size: 14px; }
	.sc-dl-facility__shot { width: 100%; height: auto; aspect-ratio: 525 / 297; }

	.sc-dl-contact { padding: 32px 23px; }
	.sc-dl-field input, .sc-dl-field textarea { min-height: 48px; }
	.sc-dl-contact__submit { min-height: 48px; font-size: 18px; }
}

@media (max-width: 640px) {
	.sc-dl-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 1024px) {
	/* タブレット: Workshop グリッドは 2 列 */
	.sc-dl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* #110 fix: tablet(768–1024px) は centered/peek のブリード＋(100vw-308)/2 の過大 padding を
 * 打ち消し、PC と同じ通常スクロールカルーセルに戻す(左空白の解消)。中央+peek は ≤767px のみ。 */
@media (min-width: 768px) and (max-width: 1024px) {
	.sc-dl-carousel__track {
		width: auto; margin-inline: 0;
		padding-inline: 0; scroll-padding-inline: 0; gap: 16px;
	}
}

@media (max-width: 480px) {
	.sc-dl-carousel__track > .sc-dl-card { flex-basis: 82vw; }
	.sc-dl-carousel__track { padding-inline: 9vw; scroll-padding-inline: 9vw; } /* #110: card=82vw なので余白=9vw */
}
