/* ==========================================================================
   一松（久兵衛） style.css
   構成: 1.変数 / 2.ベース / 3.レイアウト / 4.共通コンポーネント /
         5.ヘッダー / 6.各セクション / 7.フッター / 8.固定ボタン /
         9.下層ページ / 10.レスポンシブ / 11.モーション設定
   命名: BEM (block__element--modifier)
   ========================================================================== */

/* ---------- 1. 変数 ------------------------------------------------------ */
:root {
  /* 色（白 × 松の深緑 × 近黒：参考サイトの配色に準拠） */
  --c-white:    #ffffff;
  --c-paper:    #ffffff;  /* メイン背景は白 */
  --c-kinari:   #f5f5f7;  /* 薄いグレーのセクション地 */
  --c-kinari-2: #ececee;  /* 薄グレー(濃) */
  --c-sumi:     #16130e;  /* 近黒（フッター・暗色セクション） */
  --c-sumi-2:   #322e28;
  --c-text:     #1c1813;  /* 本文 近黒 */
  --c-text-sub: #6f6f6f;  /* 日付などのグレー */
  --c-green:    #00510f;  /* 松の深緑（メインアクセント） */
  --c-green-d:  #003b0a;  /* 深緑(濃) */
  --c-line:     #e3e3e5;  /* 薄いグレー罫線 */

  /* フォント */
  --f-mincho: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN",
              "HGS明朝E", "MS PMincho", serif;
  --f-gothic: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Sans",
              "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ",
              Meiryo, sans-serif;

  /* 余白（8pxスケール） */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  /* レイアウト */
  --wrap:      1120px;
  --wrap-narrow: 760px;
  --radius:    2px;
  --header-h:  64px;
  --fixedbar-h: 62px;

  /* 動き */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. ベース --------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--f-mincho);
  color: var(--c-text);
  background-color: var(--c-paper);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

/* 画面下固定ボタン分の余白（スマホ） */
@media (max-width: 767px) {
  body { padding-bottom: var(--fixedbar-h); }
}

img { height: auto; }

:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 2px;
}

/* ---------- 3. レイアウト ----------------------------------------------- */
.wrap {
  width: min(100% - 2 * var(--sp-3), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section {
  padding-block: var(--sp-5);   /* SP基準: 縦スクロールを抑える */
}
.section--kinari { background-color: var(--c-kinari); }
/* 暗色セクション（Instagram等）の見出し装飾は金でコントラストを確保 */
.section--sumi .section__en { color: #cdb47c; }
.section--sumi .section__title::after { background: #cdb47c; }
/* 共通の予約CTA帯（各ページのフッター直上・余白確保） */
.reserve-cta { background-color: var(--c-kinari); }
.section--sumi   { background-color: var(--c-sumi); color: var(--c-kinari); }

.section__head {
  text-align: center;
  margin-bottom: var(--sp-5);
}
.section__en {
  display: block;
  font-family: var(--f-gothic);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}
.section__title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* 見出し下の装飾罫（細い深緑のライン） */
.section__title::after,
.page-head__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--c-green);
}

/* ---------- 4. 共通コンポーネント --------------------------------------- */
/* ボタン */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 8px var(--sp-4);
  text-align: center;
  font-family: var(--f-gothic);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--c-green);
  border-radius: var(--radius);
  background: var(--c-green);
  color: var(--c-white);
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.btn:hover { background: var(--c-green-d); border-color: var(--c-green-d); }
.btn--ghost {
  background: transparent;
  color: var(--c-green-d);
  border-color: var(--c-green-d);
}
.btn--ghost:hover { background: var(--c-green); border-color: var(--c-green); color: var(--c-white); opacity: 1; }
.btn--block { width: 100%; }
.btn__note {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 2px;
}

/* リンクの下線アクセント */
.link-more {
  font-family: var(--f-gothic);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--c-green-d);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.link-more:hover { color: var(--c-green); }

/* 縦書き装飾見出し（装飾用途のみ） */
.vtitle {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

/* 出現アニメ（JS付与） */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 5. ヘッダー ------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
.header__brand {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  line-height: 1.2;
}
.header__brand small {
  display: block;
  font-family: var(--f-gothic);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--c-text-sub);
}

/* PCナビ */
.gnav { display: none; }
.gnav__list { display: flex; gap: var(--sp-3); align-items: center; }
.gnav__link {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.gnav__link:hover { border-color: var(--c-green); }

/* 言語切替 */
.lang {
  position: relative;
  font-family: var(--f-gothic);
}
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 140px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 6px;
  display: none;
}
.lang__menu[data-open="true"] { display: block; }
.lang__item {
  display: block;
  padding: 8px 10px;
  font-size: 0.85rem;
  border-radius: var(--radius);
}
.lang__item:hover { background: var(--c-kinari); }
.lang__item[aria-current="true"] { color: var(--c-green-d); }

/* ハンバーガー */
.burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--c-sumi);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* モバイルドロワー */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--c-kinari);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 40;
  padding: var(--sp-4) var(--sp-3);
  overflow-y: auto;
}
.drawer[data-open="true"] { transform: translateX(0); }
.drawer__list { display: flex; flex-direction: column; gap: var(--sp-1); }
.drawer__link {
  display: block;
  padding: var(--sp-2) var(--sp-1);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--c-line);
}

/* ---------- 6. 各セクション --------------------------------------------- */
/* メインビジュアル */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
  background: var(--c-sumi);
}
.hero__slides { position: absolute; inset: 0; }
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.6s ease-in-out;
}
.hero__media.is-active { opacity: 1; }
/* 文字の視認性用スクリム（全体を薄く＋中央〜周辺をビネットで沈める） */
.hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 100% at 50% 48%, transparent 38%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32));
  pointer-events: none;
}
/* 文字を載せる半透明プレート（写真の明暗に左右されず必ず読める） */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(88vw, 560px);
  padding: clamp(2rem, 6vw, 3.2rem) clamp(1.8rem, 8vw, 4rem);
  background: rgba(18, 16, 12, 0.42);
  border: 1px solid rgba(205, 180, 124, 0.55);
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* 高級感のあるタイトル構成（overline＋大きな店名＋金の罫＋タグライン） */
.hero__eyebrow {
  font-family: var(--f-gothic);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: #cdb47c;               /* 暗色背景に映える上品な金 */
  margin-bottom: var(--sp-3);
  text-indent: 0.4em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}
.hero__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: var(--sp-3) auto;
  background: linear-gradient(90deg, transparent, #cdb47c, transparent);
}
.hero__sub {
  font-family: var(--f-mincho);
  font-size: 0.98rem;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7);
}

/* スライド切替ドット */
.hero__dots {
  position: absolute;
  z-index: 2;
  bottom: var(--sp-3);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  transition: background 0.3s var(--ease);
}
.hero__dot.is-active { background: rgba(255, 255, 255, 0.95); }
.hero__title {
  font-size: clamp(3.4rem, 15vw, 6.2rem);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1.2;
  font-weight: 500;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* about */
.about__lead {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2.2;
}
.about__grid { display: grid; gap: var(--sp-4); margin-top: var(--sp-5); }
.about__img img { width: 100%; border-radius: var(--radius); object-fit: cover; }

/* コースカード */
.courses { display: grid; gap: var(--sp-4); }
.course-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.course-card__img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--c-kinari-2); }
.course-card__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); flex: 1; }
.course-card__badge {
  align-self: flex-start;
  font-family: var(--f-gothic);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--c-green-d);
  border: 1px solid var(--c-green);
  border-radius: 999px;
  padding: 2px 10px;
}
.course-card__name { font-size: 1.25rem; letter-spacing: 0.08em; }
.course-card__meta { font-family: var(--f-gothic); font-size: 0.82rem; color: var(--c-text-sub); }
.course-card__price { font-size: 1rem; margin-top: auto; padding-top: var(--sp-1); }
.course-card__price b { color: var(--c-green-d); font-weight: 600; }

/* 座席 */
.seats { display: grid; gap: var(--sp-3); }
.seat-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.seat-card__img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; background: var(--c-kinari-2); }
.seat-card__body { padding: var(--sp-3); }
.seat-card__name { font-size: 1.1rem; letter-spacing: 0.08em; }
.seat-card__tag {
  font-family: var(--f-gothic);
  font-size: 0.72rem;
  color: var(--c-green-d);
  letter-spacing: 0.1em;
}

/* 予約 */
.reserve__box {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: var(--sp-4);
  text-align: center;
}
.reserve__points {
  display: grid;
  gap: var(--sp-2);
  margin: 0 auto var(--sp-4);
  max-width: 560px;
  text-align: left;
}
.reserve__points li {
  padding-left: 1.4em;
  position: relative;
  line-height: 1.8;
}
.reserve__points li::before {
  content: "―";
  position: absolute;
  left: 0;
  color: var(--c-green);
}
.reserve__actions { display: grid; gap: var(--sp-2); max-width: 420px; margin-inline: auto; }
.reserve__hours {
  font-family: var(--f-gothic);
  font-size: 0.82rem;
  color: var(--c-text-sub);
  margin-top: var(--sp-3);
}

/* お知らせ */
.news-list { display: grid; gap: 0; }
.news-item {
  display: grid;
  gap: 0.2em;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--c-line);
}
.news-item:first-child { border-top: 1px solid var(--c-line); }
.news-item__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-gothic);
  font-size: 0.78rem;
  color: var(--c-text-sub);
}
.news-item__cat {
  color: var(--c-green-d);
  border: 1px solid var(--c-green);
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 0.7rem;
}
.news-item__title { font-size: 1.05rem; letter-spacing: 0.04em; }
.news-item__title a:hover { color: var(--c-green-d); }
.news-empty {
  text-align: center;
  color: var(--c-text-sub);
  padding: var(--sp-5) 0;
}

/* 店舗情報テーブル */
.info-table { font-size: 0.95rem; }
.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-line);
}
.info-table th {
  font-weight: 500;
  font-family: var(--f-gothic);
  font-size: 0.85rem;
  color: var(--c-text-sub);
  white-space: nowrap;
  width: 8.5em;
  letter-spacing: 0.06em;
}

/* アクセス */
.access__map {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-kinari-2);
  width: 100%;
}
.access__note { margin-top: var(--sp-2); font-size: 0.9rem; color: var(--c-text-sub); }

/* Instagram */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.insta__grid img { aspect-ratio: 1; object-fit: cover; width: 100%; border-radius: var(--radius); background: var(--c-kinari-2); }

/* ---------- 7. フッター ------------------------------------------------- */
.footer {
  background-color: var(--c-sumi);
  color: var(--c-kinari);
  padding-block: var(--sp-6) var(--sp-4);
}
.footer__grid { display: grid; gap: var(--sp-4); }
.footer__brand { font-size: 1.2rem; letter-spacing: 0.14em; }
.footer__brand small { display: block; font-family: var(--f-gothic); font-size: 0.62rem; letter-spacing: 0.24em; opacity: 0.7; margin-top: 4px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3); font-family: var(--f-gothic); font-size: 0.85rem; }
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--sp-3);
  font-family: var(--f-gothic);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--c-kinari);
  transition: color 0.3s var(--ease);
}
.footer__insta svg { width: 30px; height: 30px; }
.footer__insta:hover { color: #cdb47c; }

/* SP：店名の横にInstagramアイコンを並べる（PCは従来どおり縦積み） */
@media (max-width: 767px) {
  .footer__info {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand insta"
      "tel   tel";
    align-items: center;
    column-gap: var(--sp-2);
  }
  .footer__info > .footer__brand { grid-area: brand; }
  .footer__info > .footer__insta { grid-area: insta; margin-top: 0; }
  .footer__info > p[style]        { grid-area: tel; }
  .footer__insta svg { width: 34px; height: 34px; }
}
.footer__nav a:hover { color: var(--c-green); }
.footer__copy { margin-top: var(--sp-4); font-family: var(--f-gothic); font-size: 0.72rem; opacity: 0.6; letter-spacing: 0.08em; }

/* ---------- 8. 固定ボタン（スマホ） ------------------------------------- */
.fixedbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr;
  height: var(--fixedbar-h);
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.fixedbar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--f-gothic);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--c-white);
  background: var(--c-green);
}
.fixedbar__btn small { font-size: 0.6rem; letter-spacing: 0.04em; opacity: 0.9; }
@media (min-width: 768px) {
  .fixedbar { display: none; }
}

/* ---------- 9. 下層ページ ----------------------------------------------- */
.page-head {
  background-color: var(--c-kinari);
  text-align: center;
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--c-line);
}
.page-head__en {
  display: block;
  font-family: var(--f-gothic);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--c-green);
  margin-bottom: var(--sp-1);
}
.page-head__title { font-size: 1.7rem; letter-spacing: 0.12em; }

.breadcrumb {
  font-family: var(--f-gothic);
  font-size: 0.75rem;
  color: var(--c-text-sub);
  padding-block: var(--sp-2);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5em; }
.breadcrumb li::after { content: "／"; margin-left: 0.5em; color: var(--c-line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a:hover { color: var(--c-green-d); }

/* コース詳細ブロック */
.course-detail {
  display: grid;
  gap: var(--sp-3);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--c-line);
}
.course-detail__img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; border-radius: var(--radius); background: var(--c-kinari-2); }
.course-detail__name { font-size: 1.5rem; letter-spacing: 0.08em; }
.course-detail__spec { margin-top: var(--sp-2); }
.course-detail__spec th,
.course-detail__spec td { padding: var(--sp-1) 0; border-bottom: 1px solid var(--c-line); vertical-align: top; text-align: left; }
.course-detail__spec th { font-family: var(--f-gothic); font-size: 0.82rem; color: var(--c-text-sub); width: 8em; font-weight: 500; }
.note-box {
  background: var(--c-kinari);
  border-left: 3px solid var(--c-green);
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.9rem;
  border-radius: var(--radius);
}

/* キャンセル料テーブル */
.cancel-table { margin-block: var(--sp-4); font-size: 0.95rem; }
.cancel-table caption {
  text-align: left;
  font-family: var(--f-gothic);
  font-size: 0.82rem;
  color: var(--c-text-sub);
  margin-bottom: var(--sp-1);
}
.cancel-table th,
.cancel-table td { border: 1px solid var(--c-line); padding: var(--sp-2); text-align: left; }
.cancel-table thead th { background: var(--c-kinari-2); font-family: var(--f-gothic); font-size: 0.85rem; }
.cancel-table tbody th { background: var(--c-kinari); white-space: nowrap; font-weight: 500; }
.cancel-table .is-emph { color: var(--c-green-d); font-weight: 600; }

/* 汎用本文 */
.prose { max-width: var(--wrap-narrow); }
.prose h2 { font-size: 1.3rem; letter-spacing: 0.08em; margin: var(--sp-5) 0 var(--sp-2); }
.prose h3 { font-size: 1.1rem; letter-spacing: 0.06em; margin: var(--sp-4) 0 var(--sp-1); color: var(--c-green-d); }
.prose p { margin-bottom: var(--sp-2); }
.prose ul.dashed { margin: var(--sp-2) 0; }
.prose ul.dashed li { position: relative; padding-left: 1.4em; margin-bottom: 0.4em; }
.prose ul.dashed li::before { content: "―"; position: absolute; left: 0; color: var(--c-green); }

/* 記事本文 */
.article__thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); background: var(--c-kinari-2); margin-bottom: var(--sp-3); }
.article__meta { display: flex; gap: var(--sp-2); align-items: center; font-family: var(--f-gothic); font-size: 0.8rem; color: var(--c-text-sub); margin-bottom: var(--sp-2); }
.article__title { font-size: 1.5rem; letter-spacing: 0.06em; line-height: 1.5; margin-bottom: var(--sp-3); }
.article__body p { margin-bottom: var(--sp-2); }
.back-link { text-align: center; margin-top: var(--sp-5); }

/* ページネーション */
.pagination { display: flex; justify-content: center; gap: var(--sp-1); margin-top: var(--sp-5); font-family: var(--f-gothic); }
.pagination a,
.pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.pagination .is-current { background: var(--c-sumi); color: var(--c-white); border-color: var(--c-sumi); }
.pagination a:hover { border-color: var(--c-green); }

/* ---------- 10. レスポンシブ ------------------------------------------- */
/* 10-0. 小型スマホ（〜479px）SP優先の詰め ------------------------------- */
@media (max-width: 479px) {
  :root { --header-h: 58px; }
  body { font-size: 15.5px; }

  .section { padding-block: var(--sp-4); }
  .section__head { margin-bottom: var(--sp-4); }
  .section__title { font-size: 1.4rem; }
  .hero { min-height: 72vh; }

  /* 店舗情報テーブルを縦積みにして横詰まりを防ぐ */
  .info-table th,
  .info-table td { display: block; width: auto; padding-block: 0.35rem; }
  .info-table th { border-bottom: none; padding-top: var(--sp-2); color: var(--c-green-d); }
  .info-table td { padding-top: 0; }

  /* コース詳細のスペック表も縦積み */
  .course-detail__spec th,
  .course-detail__spec td { display: block; width: auto; }
  .course-detail__spec th { border-bottom: none; padding-bottom: 0; color: var(--c-green-d); }

  /* カード内の左右余白を確保 */
  .course-card__body,
  .reserve__box { padding: var(--sp-3) var(--sp-2); }
}

/* 10-1. タブレット / PC ------------------------------------------------- */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .section { padding-block: var(--sp-7); }
  .section__title { font-size: 2rem; }

  .gnav { display: block; }
  .burger { display: none; }

  .about__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .courses { grid-template-columns: repeat(3, 1fr); }
  .seats { grid-template-columns: repeat(3, 1fr); }
  .insta__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr auto; align-items: end; }

  .course-detail { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-5); align-items: start; }
  .reserve__actions { grid-template-columns: 1fr; max-width: 360px; }
}

@media (min-width: 1024px) {
  .hero { min-height: 88vh; }
}

/* ---------- 11. モーション設定 ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
