:root {
  color-scheme: light;

  /* 秋パレット（生成り地 × パンプキン × メープルレッド × マスタードゴールド × 栗色） */
  --blush: #FFF7EC;
  --blush2: #FBE7CE;
  --lav: #F7DCBB;
  --pink: #F5822B;        /* パンプキンオレンジ（プライマリ） */
  --magenta: #E23A1E;     /* メープルレッド（フチ・アクセント） */
  --pink-deep: #9A2B18;   /* 栗・マルーン（見出し・深色） */
  --blue: #C2410C;        /* バーントオレンジ（サブ） */
  --blue-deep: #9A3412;   /* 深いラスト */
  --yellow: #F7C948;      /* ハニーゴールド（ハイライト） */
  --yellow-deep: #E0A21A; /* マスタード */
  --ink: #3E2418;         /* 温かいダークブラウン */
  --ink-soft: #8A6A55;    /* 白カード上の補助文字（生成り地では --ink-soft-strong を使う） */
  --ink-soft-strong: #75543F; /* 生成り地の補助文字（--ink-soft では AA 未達） */
  --magenta-text: #D6371B;    /* 白地の小サイズ赤文字（--magenta は白地で AA 未達） */
  --magenta-on-cream: #B8300F;/* 生成り地の強調赤（--magenta は 3.6:1 しか出ない） */
  --card: #FFFFFF;
  --line: #F2D8BB;

  --grad-pink: linear-gradient(135deg, #F79A3E 0%, #E23A1E 100%); /* オレンジ→レッド（文字を載せない装飾面のみ） */
  --grad-cta: linear-gradient(135deg, #C2410C 0%, #9A2B18 100%);  /* 白文字を載せる面。--grad-pink は白文字で 2.2:1 しか出ない */
  --shadow: 0 20px 44px -22px rgba(154, 43, 24, .40);
  --shadow-sm: 0 12px 26px -16px rgba(154, 43, 24, .4);

  --font-display: "Futura", "Avenir Next", "Century Gothic", system-ui, sans-serif;
  --font-round: "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Rounded Mplus 1c", "Zen Maru Gothic", system-ui, sans-serif;
  --font-body: "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", system-ui, sans-serif;
  --wrap: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink); font-family: var(--font-body); line-height: 1.8;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  background:
    radial-gradient(1200px 500px at 100% -5%, var(--lav) 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 100%, var(--lav) 0%, transparent 55%),
    linear-gradient(180deg, var(--blush) 0%, var(--blush2) 100%);
  background-attachment: fixed;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }
a { color: inherit; }
img { max-width: 100%; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(60px, 8vw, 108px) 0; position: relative; scroll-margin-top: 90px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-round); font-weight: 800; font-size: .8rem; letter-spacing: .18em;
  color: #fff; background: var(--grad-cta); padding: 6px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.h2 {
  font-family: var(--font-round); font-weight: 800; font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  line-height: 1.2; margin: 18px 0 10px; text-wrap: balance;
  color: var(--pink-deep);
}
/* SP で「公／開しました」のように語の途中で割れるのを防ぐ折り返し単位（.cta-band h2 でも使う） */
.unit { display: inline-block; }
.lead { color: var(--ink-soft-strong); max-width: 62ch; font-family: var(--font-round); font-weight: 700; }

/* Header */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 247, 236, .85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-in { max-width: var(--wrap); margin: 0 auto; padding: 12px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; font-size: 1.35rem; display: flex; align-items: center; gap: 10px; color: var(--pink-deep); }
.brand .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--grad-pink); box-shadow: 0 5px 12px -4px var(--pink); -webkit-text-stroke: 0; }
.nav-links { display: flex; gap: 24px; align-items: center; font-family: var(--font-round); font-weight: 800; font-size: .9rem; }
.nav-links a { text-decoration: none; color: var(--pink-deep); transition: color .2s; }
.nav-links a:hover { color: var(--magenta); }
.pill { text-decoration: none; padding: 10px 22px; border-radius: 999px; background: var(--grad-cta); color: #fff !important; box-shadow: 0 8px 18px -8px var(--pink); font-weight: 800; letter-spacing: .03em; transition: transform .15s; }
.pill:hover { transform: translateY(-2px); }

/* SP は横幅が足りずナビリンクを畳むため、代わりにヘッダー下へ
   横スクロールのアンカーチップ列を出す（1カラムで 10,000px 超あり節間移動が要る） */
.anchor-chips { display: none; }
@media (max-width: 760px) {
  .nav-links a:not(.pill) { display: none; }
  /* ブランド名と pill は 320px 幅で折り返すと形が崩れるため、縮めて1行に固定する */
  .nav-in { padding: 10px 16px; gap: 10px; }
  .brand { font-size: 1.15rem; gap: 8px; white-space: nowrap; }
  .brand .dot { width: 24px; height: 24px; }
  .pill { padding: 9px 16px; font-size: .85rem; white-space: nowrap; }
  /* 5つ並べると 375px 幅に収まらない。チップを詰めて、末尾の「公式LINE」が
     主要導線として認識できる幅まで見せる（375px で約 2/3 が出る） */
  .anchor-chips {
    display: flex; gap: 7px; overflow-x: auto; padding: 0 12px 10px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .anchor-chips::-webkit-scrollbar { display: none; }
  .anchor-chips a {
    flex: 0 0 auto; text-decoration: none; font-family: var(--font-round); font-weight: 800;
    font-size: .75rem; color: var(--pink-deep); background: #fff;
    border: 2px solid var(--line); border-radius: 999px; padding: 7px 11px;
  }
  .anchor-chips a.is-line { background: var(--pink-deep); color: #fff; border-color: var(--pink-deep); }
  .section { scroll-margin-top: 118px; }
  .cta-band::before { font-size: 4rem; opacity: .12; }
  .hero > .leaf:first-of-type { display: none; }
}
/* チップ列が溢れるのは 428px 以下だけ。溢れていないのにフェードが掛かると
   末尾チップが理由もなく薄く見えるため、溢れる幅にだけ掛ける。
   マスクはスクロール枠に掛かるため右端までスクロールしても薄いままになる。
   終端で解除するには JS が要り、この repo は JS を持たないので、
   代わりにフェード幅をチップ1つ（約78px）より十分狭い 24px に抑えている */
@media (max-width: 428px) {
  .anchor-chips {
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent);
    mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent);
  }
}

/* Hero */
.hero { padding: clamp(26px, 4vw, 52px) 0 clamp(40px, 6vw, 68px); position: relative; }
.leaf { position: absolute; font-size: 1.8rem; opacity: .8; z-index: 0; animation: sway 6s ease-in-out infinite; }
@keyframes sway { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-8px) rotate(8deg); } }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 50px); align-items: center; }
/* 1カラム時は幅を絞る。中身が absolute の画像のため max-width + auto margin では
   グリッド項目が fit-content=0 に潰れるので width で指定する */
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } .kv { width: min(100%, 460px); margin-inline: auto; } }
/* h1 は「ALPACA GO」＋「秋のお稽古 in 筑波コース1000」を1つの見出しとして束ねる器。
   見た目は子が決めるので h1 既定の文字サイズ・太さだけ消す。
   line-height は触らない（.hero-jp が継承しており、1 にすると行間が詰まる）。
   .hero-jp を block に戻すのは、inline-block のままだと行ボックスができて
   ベースライン下の descent が余白として入り、元の間隔からずれるため */
.hero h1 { font-size: 1rem; font-weight: inherit; }
/* block 化でマージンが相殺されるようになるため、元の間隔(6+8=14px)を margin-top で作り直す */
.hero h1 .hero-jp { display: block; margin-top: 14px; }
.hero-title {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(3.4rem, 11vw, 5.4rem);
  line-height: .9; letter-spacing: .01em; margin: 14px 0 6px;
  color: var(--pink-deep);
}
.hero-shout { font-family: var(--font-round); font-weight: 800; color: var(--blue-deep); font-size: clamp(.95rem, 2vw, 1.15rem); line-height: 1.7; margin-bottom: 6px; }
.hero-shout b { color: var(--magenta-on-cream); }
.hero-jp { display: inline-block; font-family: var(--font-round); font-weight: 800; font-size: clamp(1.25rem, 3.2vw, 1.75rem); color: var(--pink-deep); margin-top: 8px; }

/* 袋文字は濃色の塗り＋白フチで組む。白塗りは生成り地に対して 1.06:1 しか出ず、
   輪郭線だけで字形を読ませることになるため。巨大な .hero-title だけは
   ワードマークとして白抜きを残す（54px 以上＝大文字サイズ基準 3:1 を輪郭で満たす） */
@supports (-webkit-text-stroke: 1px currentColor) {
  .h2 { -webkit-text-stroke: 2.5px #fff; paint-order: stroke fill; text-shadow: 3px 3px 0 rgba(154,43,24,.20); }
  .hero-jp { -webkit-text-stroke: 2px #fff; paint-order: stroke fill; }
  .hero-title { color: #fff; -webkit-text-stroke: 4px var(--magenta); paint-order: stroke fill; text-shadow: 5px 5px 0 rgba(154,43,24,.25); }
}

a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 3px;
  border-radius: 6px;
}
.cta-band a:focus-visible, footer a:focus-visible, .ribbon a:focus-visible {
  outline-color: #fff;
}
/* 開催後の主役は「写真がある」の一行。CTA の直上に置き、日付ボックスより後ろに読ませる */
.hero-lead { font-family: var(--font-round); font-weight: 800; font-size: clamp(1.05rem, 2.2vw, 1.3rem); margin: 0 0 14px; color: var(--magenta-on-cream); }
/* 開催日は CTA 直前の主役。主日付はここに集約し、KV バッジは装飾的な再掲として従える */
.hero-date {
  display: inline-block; margin: 14px 0 16px; padding: 10px 22px;
  background: #fff; border: 3px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm);
}
.hero-date-day {
  font-family: var(--font-round); font-weight: 800; line-height: 1.1;
  font-size: clamp(1.5rem, 4.6vw, 1.9rem); color: var(--pink-deep);
}
.hero-date-day .y { font-size: .4em; letter-spacing: .1em; color: var(--ink-soft); vertical-align: .3em; margin-right: .45em; }
.hero-date-day .u { font-size: .56em; margin: 0 .04em; }
.hero-date-day .wd { font-size: .48em; color: var(--magenta-text); margin-left: .25em; }
.hero-date-time {
  font-family: var(--font-round); font-weight: 800; letter-spacing: .06em; color: var(--ink);
  font-size: clamp(.95rem, 2.4vw, 1.1rem);
}
/* 開催済みであることを日付の直下で言い切る。日付ボックス自体は記録として残す */
.hero-date-done {
  display: inline-block; margin-top: 8px; padding: 3px 14px; border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-round); font-weight: 800; font-size: .82rem; letter-spacing: .04em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-safely { font-family: var(--font-display); font-weight: 700; letter-spacing: .14em; font-size: .9rem; color: var(--pink-deep); margin-top: 16px; }
.btn-primary { font-family: var(--font-round); font-weight: 800; text-decoration: none; padding: 15px 30px; border-radius: 999px; background: var(--grad-cta); color: #fff; box-shadow: var(--shadow); transition: transform .15s; letter-spacing: .03em; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { font-family: var(--font-round); font-weight: 800; text-decoration: none; padding: 15px 30px; border-radius: 999px; background: #fff; color: var(--pink-deep); border: 2px solid var(--line); }
/* 縦積みになると文字数の差がそのままボタン幅の差になるため、SP では横幅を揃える */
@media (max-width: 760px) {
  .hero-cta { gap: 10px; }
  .hero-cta > a { flex: 1 1 100%; padding: 15px 20px; text-align: center; }
}

/* KV */
.kv { position: relative; aspect-ratio: 4 / 3; border-radius: 30px; overflow: hidden; background: var(--grad-pink); box-shadow: var(--shadow); border: 6px solid #fff; }
.kv img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kv-badge { position: absolute; z-index: 5; right: -6px; bottom: 24px; background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight: 700; padding: 12px 18px; border-radius: 16px; box-shadow: var(--shadow-sm); transform: rotate(-6deg); line-height: 1.1; text-align: center; border: 3px solid #fff; }
.kv-badge small { display: block; font-family: var(--font-round); font-size: .64rem; letter-spacing: .06em; margin-top: 3px; color: var(--pink-deep); }
.float { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Ribbon */
.ribbon { background: var(--grad-cta); color: #fff; overflow: hidden; padding: 12px 0; box-shadow: var(--shadow-sm); }
/* マーキーは同一コピー4枚を並べ、1コピー分ちょうど（トラック幅の 25%）動かして原点に戻す。
   width:max-content が無いとトラック幅が親幅になり、移動量が1コピー幅と一致せず継ぎ目が飛ぶ。
   文言を変えるときは4枚を完全に同一に保つこと（1枚でも違うと移動量がずれて継ぎ目が飛ぶ）。
   可視域は常に約3コピー分。それを超える幅の画面では末尾に隙間が出る */
.ribbon-track { display: flex; width: max-content; white-space: nowrap; font-family: var(--font-round); font-weight: 800; letter-spacing: .1em; font-size: .92rem; animation: slide 40s linear infinite; }
.ribbon-track > span { display: inline-flex; gap: 30px; padding-right: 30px; }
.ribbon-track b { color: var(--yellow); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-25%); } }

/* card base */
.about-card { background: var(--card); border-radius: 26px; padding: clamp(28px, 4vw, 50px); box-shadow: var(--shadow); border: 2px solid var(--line); }
.about-card p + p { margin-top: 14px; }
.insta { margin-top: 22px; padding-top: 22px; border-top: 2px dashed var(--line); font-family: var(--font-round); font-weight: 800; }
/* 割らない単位（人名）だけに nowrap を掛ける。親へ word-break: keep-all を掛ける手は使えない
   — Blink は区切りの ／ で折り返すが WebKit(Safari/iOS) は折り返さず、全名が1行の塊になって
   カードからはみ出す。区切りを素のテキストのまま残せば ／ が両エンジンで折り返し点になる */
.insta-keep { white-space: nowrap; }
.insta small { display: inline-block; background: var(--grad-cta); color: #fff; padding: 3px 12px; border-radius: 999px; letter-spacing: .1em; font-size: .72rem; margin-bottom: 8px; }

/* Info */
.info-grid { background: var(--card); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--line); }
.info-row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; padding: 17px clamp(20px,3vw,30px); border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row dt { font-family: var(--font-round); font-weight: 800; }
.info-row dt > span { background: var(--yellow); border-radius: 8px; padding: 2px 10px; font-size: .84rem; }
.price { color: var(--magenta-text); font-family: var(--font-round); font-weight: 800; font-size: 1.05rem; }
.price-xl { color: var(--pink-deep); font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
@media (max-width: 620px) { .info-row { grid-template-columns: 1fr; gap: 4px; } }

/* Classes */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 720px) { .cards { grid-template-columns: 1fr; } }
.class { background: var(--card); border-radius: 22px; padding: 26px; position: relative; box-shadow: var(--shadow-sm); border: 2px solid var(--line); transition: transform .18s, box-shadow .18s; }
.class:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.class .tag { font-family: var(--font-round); font-weight: 800; font-size: .74rem; color: #fff; padding: 4px 13px; border-radius: 999px; display: inline-block; }
.class-a .tag { background: var(--magenta-text); } /* --magenta は 11.8px の白文字に対し 4.32:1 */
.class-b .tag { background: var(--blue); }
.class-c .tag { background: var(--pink-deep); }
.class-d .tag { background: var(--yellow-deep); color: var(--ink); }
.class h3 { font-family: var(--font-round); font-weight: 800; font-size: 1.18rem; margin: 12px 0 2px; color: var(--pink-deep); }
.class .cap { color: var(--magenta-text); font-family: var(--font-round); font-weight: 800; font-size: .86rem; margin-bottom: 10px; }
.class p.d { color: var(--ink-soft); font-size: .92rem; }

/* Incom highlight */
.incom { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: center; background: var(--card); border-radius: 26px; padding: clamp(26px,4vw,44px); box-shadow: var(--shadow); border: 2px solid var(--line); margin-top: 26px; }
@media (max-width: 780px) { .incom { grid-template-columns: 1fr; } .incom-visual { width: min(100%, 360px); margin-inline: auto; } }
.incom h3 { font-family: var(--font-round); font-weight: 800; font-size: 1.4rem; color: var(--pink-deep); margin-bottom: 6px; }
.incom ul { list-style: none; display: grid; gap: 8px; font-family: var(--font-round); font-weight: 700; font-size: .92rem; }
.incom ul li::before { content: "🏍 "; }
/* 🏍 は ::before の装飾マーカーなので、折り返した2行目を字下げで揃える */
@media (max-width: 780px) { .incom ul li { padding-left: 1.7em; text-indent: -1.7em; } }
.incom-visual { position: relative; margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.incom-visual img { display: block; width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.incom-visual figcaption { position: absolute; inset: auto 0 0; background: var(--grad-cta); color: #fff; text-align: center; font-family: var(--font-round); font-weight: 800; font-size: .9rem; padding: 10px 16px; }
.incom-visual figcaption b { font-family: var(--font-display); font-size: 1.25rem; margin-right: 6px; }
/* 帯は文字サイズ固定なので、写真が 360px 上限に縮む幅では画像の 1/3 を覆って被写体を隠す
   （実測 375px で 32%、320px は折り返して 60%）。帯の見た目は変えずに文字だけ詰めて
   375px で 25%・320px で 31%（1行に収まる）まで戻す */
@media (max-width: 780px) {
  .incom-visual figcaption { font-size: .78rem; padding: 7px 10px; }
  .incom-visual figcaption b { font-size: 1rem; margin-right: 4px; }
}

/* Features */
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
@media (max-width: 820px) { .feat { grid-template-columns: 1fr; } }
.feat-item { background: var(--card); border-radius: 22px; padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--line); }
.feat-ic { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; background: var(--blush); }
.feat-item h3 { font-family: var(--font-round); font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; color: var(--pink-deep); }
.feat-item p { color: var(--ink-soft); font-size: .92rem; }

/* Photos（About のペア・スケジュール下・ギャラリー共通） */
.photo { margin: 0; background: var(--card); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); border: 2px solid var(--line); }
.photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.photo figcaption { padding: 12px 18px; font-family: var(--font-round); font-weight: 700; font-size: .86rem; color: var(--ink-soft); }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
@media (max-width: 720px) { .photo-duo { grid-template-columns: 1fr; } }
.photo-wide { max-width: 640px; margin: 34px auto 0; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* Photo links（走行写真の Google ドライブ フォルダ） */
.dl-h3 { font-family: var(--font-round); font-weight: 800; font-size: 1.15rem; color: var(--pink-deep); margin: 30px 0 0; }
/* 2つのリスト（4枚・3枚）で列幅を共通にする。列数を別々に固定すると、
   主役であるクラス別カードが「その他」より小さくなる幅が出てしまう。
   auto-fill なので 1280px で4列・768px で2列・それ以下で1列と自然に落ちる（実測値） */
.dl-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; margin-top: 14px; }
.dl-card {
  display: grid; grid-template-rows: auto 1fr; height: 100%; text-decoration: none; overflow: hidden;
  background: var(--card); border: 2px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s;
}
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* 既定のフォーカスリングは角丸 6px。カードの角丸 20px に合わせる */
.dl-card:focus-visible { border-radius: 20px; }
/* サムネはフォルダの1枚目。カード幅が 247〜576px と幅広いので、比率を固定して切り抜く */
.dl-thumb { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; background: var(--blush2); }
/* 文字は3行固定。文字数が違っても「開く」行の高さが揃うよう、名前の行を伸ばす */
.dl-body { display: grid; grid-template-rows: auto 1fr auto; gap: 4px; padding: 16px 18px 18px; }
/* 「初級クラス（インカム）」だけ2行になる。2行分を確保して、カード間で
   フォルダ名の行の位置を揃える */
.dl-cat { font-family: var(--font-round); font-weight: 800; font-size: 1.05rem; line-height: 1.35; min-height: 2.7em; color: var(--pink-deep); }
/* フォルダ名は Alpaca Go_20260901_… の1語扱いになり、狭い幅でカードを突き破るため強制的に折る */
.dl-name { font-size: .8rem; color: var(--ink-soft); overflow-wrap: anywhere; }
.dl-go { font-family: var(--font-round); font-weight: 800; font-size: .86rem; color: var(--magenta-text); margin-top: 8px; }


/* Schedule */
.time { max-width: 640px; margin: 26px auto 0; }
.time-item { display: grid; grid-template-columns: max-content 1fr; gap: 20px; padding: 16px 0; border-bottom: 2px dashed var(--line); }
.time-item .t { font-family: var(--font-display); font-weight: 700; color: var(--pink-deep); font-size: 1.05rem; white-space: nowrap; }
/* 時刻列は範囲表記（7:50〜8:40）を1行に収めるため max-content。SP では gap を詰めて本文幅を確保する */
@media (max-width: 760px) { .time-item { gap: 14px; } }
.time-note { text-align: center; color: var(--ink-soft-strong); font-size: .88rem; margin-top: 20px; }

/* FAQ */
.faq { max-width: 760px; margin: 26px auto 0; display: grid; gap: 14px; }
.faq details { background: var(--card); border-radius: 16px; padding: 6px 22px; border: 2px solid var(--line); box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-round); font-weight: 800; cursor: pointer; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 14px; color: var(--pink-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; color: var(--magenta); font-weight: 800; }
.faq details[open] summary::after { content: "－"; }
.faq p { color: var(--ink-soft); padding: 0 0 16px; font-size: .94rem; }

/* CTA */
.cta-band { background: var(--grad-cta); color: #fff; border-radius: 30px; padding: clamp(38px,6vw,68px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: "🍁"; position: absolute; font-size: 7rem; opacity: .18; top: -18px; left: 10px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-round); font-weight: 800; font-size: clamp(1.6rem,4vw,2.4rem); color: #fff; -webkit-text-stroke: 0; }
.cta-band p { color: rgba(255,255,255,.92); margin: 12px auto 26px; max-width: 46ch; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--pink-deep); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: #fff; }

/* Footer */
footer { background: var(--ink); color: #fff; text-align: center; padding: 46px 22px; }
footer .brand { justify-content: center; margin-bottom: 12px; color: #fff; }
footer p { color: rgba(255,255,255,.78); font-size: .85rem; }
footer a { color: var(--yellow); }
