/* ==========================================================================
   ゴングマン公式サイト 共通スタイル
   --------------------------------------------------------------------------
   ■ デザインコンセプト:「試合ポスター × 応援したくなる公式サイト」
     - 墨黒(リング・会場の闇) × 深紅(コーナー・闘志) × ゴールド(王座ベルト)
     - スポンサー向けセクションはキャンバス生成り(明るい紙色)で信頼感を出す
   ■ 色やフォントを変えたい場合は、下の :root のカスタムプロパティを編集
   ========================================================================== */

/* ---------- デザイントークン ---------- */
:root {
  /* カラー */
  --ink: #17130f;        /* 墨黒(メイン背景) */
  --ink-2: #221c15;      /* 墨黒の明るめ(カード) */
  --ink-3: #2e261d;      /* 罫線・区切り(暗部) */
  --paper: #f6f1e6;      /* キャンバス生成り(明るいセクション背景) */
  --paper-2: #ece4d2;    /* 生成りの濃いめ(カード) */
  --red: #c8322b;        /* 深紅(コーナーレッド) */
  --red-deep: #9e211c;   /* 深紅の暗め */
  --gold: #d9a441;       /* 王座ゴールド */
  --gold-2: #e8bc5e;     /* ゴールド明るめ(ホバー) */
  --white: #fffdf8;      /* オフホワイト(暗部のテキスト) */
  --muted-d: #b9ac97;    /* 暗部のサブテキスト */
  --muted-l: #6c6154;    /* 明部のサブテキスト */
  --line-l: #d9cfba;     /* 明部の罫線 */

  /* タイポグラフィ */
  --font-display-en: "Anton", "Shippori Antique B1", sans-serif; /* 欧文見出し(ポスター体) */
  --font-display-jp: "Shippori Antique B1", "Zen Kaku Gothic New", sans-serif; /* 和文見出し */
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;

  /* レイアウト */
  --max-w: 1120px;
  --pad-x: clamp(20px, 5vw, 48px);
  --sec-pad: clamp(64px, 10vw, 120px);
  --radius: 6px;

  /* ヘッダー高さ(アンカーずれ防止にも使用) */
  --header-h: 64px;
}

/* ---------- リセット・ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--white);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- 共通レイアウト ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--sec-pad) 0; position: relative; }
.section--paper { background: var(--paper); color: #241d15; }
.section--paper .sec-lead { color: var(--muted-l); }
.section--red { background: linear-gradient(135deg, var(--red-deep), var(--red)); color: var(--white); }

/* セクション見出し(試合カード風ラベル + 大見出し) */
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display-en);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-label::before {
  content: ""; width: 26px; height: 12px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%); /* コーナーテープ風 */
}
.section--paper .sec-label { color: var(--red-deep); }
.sec-title {
  font-family: var(--font-display-jp);
  font-weight: 700;
  font-size: clamp(26px, 4.4vw, 42px);
  letter-spacing: 0.04em;
}
.sec-title .en {
  display: block;
  font-family: var(--font-display-en);
  font-size: 0.5em; letter-spacing: 0.18em;
  color: var(--muted-d); margin-top: 6px;
}
.section--paper .sec-title .en { color: var(--muted-l); }
.sec-lead { max-width: 46em; color: var(--muted-d); margin-top: 16px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
  text-decoration: none; border: 2px solid transparent; border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px; /* タップしやすい高さ */
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--gold); color: #241a08; box-shadow: 0 6px 20px rgba(217, 164, 65, 0.3); }
.btn--gold:hover { background: var(--gold-2); }
.btn--red { background: var(--red); color: var(--white); box-shadow: 0 6px 20px rgba(200, 50, 43, 0.35); }
.btn--red:hover { background: #d8443c; }
.btn--ghost { border-color: currentColor; color: var(--white); background: transparent; }
.section--paper .btn--ghost { color: #241d15; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.section--paper .btn--ghost:hover { background: rgba(0, 0, 0, 0.05); }
.btn .arrow { font-family: var(--font-display-en); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(23, 19, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-3);
}
.site-header .wrap { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand { white-space: nowrap; }
.brand .en {
  font-family: var(--font-display-jp);
  font-weight: 700;
  font-size: 19px; letter-spacing: 0.06em; color: var(--white);
}
@media (max-width: 1280px) { .brand .jp { display: none; } }
.brand .en span { color: var(--gold); }
.brand .jp { font-size: 11px; color: var(--muted-d); letter-spacing: 0.1em; }
.gnav ul { display: flex; gap: clamp(12px, 1.6vw, 24px); align-items: center; }
.gnav a {
  text-decoration: none; font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 8px 2px; position: relative; white-space: nowrap;
}
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.gnav a:hover::after, .gnav a[aria-current="page"]::after { transform: scaleX(1); }
.gnav a[aria-current="page"] { color: var(--gold); }
.gnav .nav-cta {
  background: var(--red); border-radius: var(--radius); padding: 9px 14px; color: var(--white);
}
.gnav .nav-cta::after { display: none; }
.gnav .nav-cta:hover { background: #d8443c; }

/* ハンバーガー */
.nav-toggle {
  display: none; background: none; border: 0; padding: 10px;
  width: 48px; height: 48px; position: relative;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--white); margin: 6px auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .gnav {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    background: rgba(23, 19, 15, 0.98);
    border-bottom: 1px solid var(--ink-3);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  .gnav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .gnav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--pad-x) 20px; }
  .gnav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--ink-3); }
  .gnav .nav-cta { margin-top: 14px; text-align: center; border-bottom: 0; }
}

/* ---------- モバイル固定CTAバー ---------- */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(23, 19, 15, 0.96);
  border-top: 1px solid var(--ink-3);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 12px 8px; font-size: 13px; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---------- ヒーロー(TOP) ----------
   スマホファースト: 基本スタイル=モバイル、@media (min-width: 861px)=PC。 */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 36px) 0 40px;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 85% 4%, rgba(217, 164, 65, 0.14), transparent 62%),
    radial-gradient(620px 460px at 8% 96%, rgba(200, 50, 43, 0.16), transparent 60%),
    var(--ink);
}
/* リングロープ風の水平ライン */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 31%, rgba(255, 253, 248, 0.05) 31%, rgba(255, 253, 248, 0.05) calc(31% + 1px), transparent calc(31% + 1px)),
    linear-gradient(to bottom, transparent 47%, rgba(255, 253, 248, 0.04) 47%, rgba(255, 253, 248, 0.04) calc(47% + 1px), transparent calc(47% + 1px)),
    linear-gradient(to bottom, transparent 63%, rgba(255, 253, 248, 0.03) 63%, rgba(255, 253, 248, 0.03) calc(63% + 1px), transparent calc(63% + 1px));
}
/* 背面の巨大GONGMANゴーストタイポ
   モバイルでは見出しと干渉しないよう、ヘッダー直下にうっすら配置 */
.hero-ghost {
  position: absolute; top: calc(var(--header-h) - 6px); right: -0.05em; bottom: auto;
  font-family: var(--font-display-en);
  font-size: clamp(58px, 17vw, 240px);
  letter-spacing: 0.02em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 164, 65, 0.16);
  user-select: none; pointer-events: none;
  white-space: nowrap;
}
/* モバイル: 縦一列(コピー → 説明 → CTA → 写真) */
.hero .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 26px; }
.hero-titles { position: relative; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 11px; border: 1px solid var(--ink-3); border-radius: 999px;
  color: var(--muted-d); background: rgba(255, 253, 248, 0.03);
  line-height: 1.4;
}
.tag--gold { border-color: rgba(217, 164, 65, 0.6); color: var(--gold); }
.hero-copy {
  font-family: var(--font-display-jp); font-weight: 700;
  font-size: clamp(38px, 11.5vw, 74px);
  line-height: 1.16; letter-spacing: 0.015em;
}
.hero-copy .line { display: block; opacity: 0; transform: translateY(0.35em); animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.hero-copy .line:nth-child(2) { animation-delay: 0.18s; }
.hero-copy .line:nth-child(3) { animation-delay: 0.36s; }
.hero-copy .accent { color: var(--red); }
.hero-copy .accent--gold { color: var(--gold); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.hero-sub { margin-top: 16px; color: var(--muted-d); max-width: 34em; font-size: 14.5px; line-height: 1.9; }
.hero-sub strong { color: var(--white); }
/* モバイル: CTAは全幅で縦積み(親指で押しやすく) */
.hero-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.hero-ctas .btn { width: 100%; }
/* 「カーンッ」ゴング演出(モバイルはコピー右上に寄り添う) */
.gong-kaan {
  position: absolute; top: -26px; right: 2px;
  font-family: var(--font-display-jp); font-weight: 700;
  font-size: 15px; color: var(--gold);
  transform: rotate(-8deg);
  animation: kaan 2.6s ease-in-out infinite;
}
@keyframes kaan {
  0%, 74%, 100% { opacity: 0.85; transform: rotate(-8deg) scale(1); }
  80% { opacity: 1; transform: rotate(-8deg) scale(1.14); }
  86% { opacity: 0.9; transform: rotate(-8deg) scale(1.02); }
}

/* ヒーロー写真枠 */
.hero-visual { position: relative; }
.hero-visual .ph { aspect-ratio: 4 / 5; }
.hero-photo {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: top center;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 164, 65, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.hero-visual::after {
  content: "CHAMPION — KROSS×OVER PRO-KICK SUPERLIGHTWEIGHT";
  position: absolute; left: 10px; bottom: 14px; max-width: calc(100% - 20px);
  background: var(--red); color: var(--white);
  font-family: var(--font-display-en); font-size: 10px; letter-spacing: 0.14em;
  padding: 7px 12px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* PC(861px〜): 2カラム+大型ゴースト */
@media (min-width: 861px) {
  .hero {
    min-height: min(92vh, 860px);
    display: flex; align-items: center;
    padding: calc(var(--header-h) + clamp(40px, 8vw, 90px)) 0 clamp(56px, 8vw, 96px);
  }
  .hero-ghost {
    top: auto; bottom: -0.18em; right: -0.06em;
    font-size: clamp(90px, 17vw, 240px);
    -webkit-text-stroke-color: rgba(217, 164, 65, 0.22);
  }
  .hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
  .hero-tags { gap: 8px; margin-bottom: 22px; }
  .tag { font-size: 12px; letter-spacing: 0.08em; padding: 6px 12px; }
  .hero-copy { font-size: clamp(38px, 7.2vw, 74px); line-height: 1.22; letter-spacing: 0.02em; }
  .hero-sub { margin-top: 20px; font-size: inherit; line-height: inherit; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
  .hero-ctas .btn { width: auto; }
  .gong-kaan { top: -34px; right: 4px; font-size: clamp(16px, 2vw, 22px); }
  .hero-visual .ph { aspect-ratio: 3 / 4; }
  .hero-photo { aspect-ratio: 3 / 4; }
  .hero-visual::after { left: -10px; bottom: 18px; max-width: none; font-size: 12px; letter-spacing: 0.16em; padding: 8px 14px; }
}

/* ---------- 写真プレースホルダー ----------
   本番写真に差し替える際は、<figure class="ph" ...> ごと
   <img src="..." alt="..."> に置き換えてください(READMEに手順あり)。 */
.ph {
  position: relative; width: 100%;
  background:
    repeating-linear-gradient(-45deg, rgba(217, 164, 65, 0.06) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--ink-2), #2a2118);
  border: 1px dashed rgba(217, 164, 65, 0.45);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0; overflow: hidden;
}
.ph::before, .ph::after { content: ""; position: absolute; width: 20px; height: 20px; opacity: 0.6; pointer-events: none; }
.ph::before { top: 12px; left: 12px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ph::after { bottom: 12px; right: 12px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.section--paper .ph::before, .section--paper .ph::after { border-color: rgba(158, 33, 28, 0.5); }
.ph .ph-label {
  text-align: center; padding: 16px; color: var(--muted-d);
  font-size: 13px; letter-spacing: 0.06em; line-height: 1.7;
}
.ph .ph-label strong { display: block; color: var(--gold); font-size: 14px; margin-bottom: 4px; }
.section--paper .ph {
  background:
    repeating-linear-gradient(-45deg, rgba(158, 33, 28, 0.05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--paper-2), #e2d7bf);
  border-color: rgba(158, 33, 28, 0.4);
}
.section--paper .ph .ph-label { color: var(--muted-l); }
.section--paper .ph .ph-label strong { color: var(--red-deep); }

/* ---------- NEWS ---------- */
.news-list { display: grid; gap: 0; border-top: 1px solid var(--ink-3); }
.news-item {
  display: grid; grid-template-columns: 120px 130px 1fr; gap: 16px; align-items: baseline;
  padding: 18px 4px; border-bottom: 1px solid var(--ink-3);
  text-decoration: none; transition: background 0.2s ease;
}
.news-item:hover { background: rgba(255, 253, 248, 0.03); }
.news-date { font-family: var(--font-display-en); letter-spacing: 0.08em; color: var(--muted-d); font-size: 14px; }
.news-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-align: center;
  padding: 3px 10px; border-radius: 999px; border: 1px solid var(--gold); color: var(--gold);
  justify-self: start;
}
.news-cat--fight { border-color: var(--red); color: #e0655e; }
.news-title { font-size: 15px; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: auto auto; }
  .news-title { grid-column: 1 / -1; }
}

/* ---------- カードグリッド ---------- */
.grid { display: grid; gap: clamp(16px, 2.6vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
}
.section--paper .card { background: var(--white); border-color: var(--line-l); box-shadow: 0 4px 18px rgba(60, 45, 20, 0.06); }
.card h3 { font-family: var(--font-display-jp); font-size: 19px; margin-bottom: 10px; letter-spacing: 0.03em; }
.card p { font-size: 14.5px; color: var(--muted-d); margin-bottom: 0; }
.section--paper .card p { color: var(--muted-l); }
.card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 14px;
  color: var(--gold);
  border: 1px solid rgba(217, 164, 65, 0.4); border-radius: 12px;
  background: linear-gradient(160deg, rgba(217, 164, 65, 0.12), rgba(217, 164, 65, 0.03));
}
.card .icon svg { width: 23px; height: 23px; display: block; }
.section--paper .card .icon {
  color: var(--red-deep);
  border-color: rgba(158, 33, 28, 0.35);
  background: linear-gradient(160deg, rgba(158, 33, 28, 0.09), rgba(158, 33, 28, 0.02));
}

/* 三本柱カード */
.pillar { position: relative; overflow: hidden; }
.pillar::after {
  content: ""; position: absolute; top: 0; right: 0; width: 56px; height: 56px;
  background: linear-gradient(45deg, transparent 50%, rgba(217, 164, 65, 0.18) 50%);
}
.pillar .pillar-en {
  font-family: var(--font-display-en); font-size: 12px; letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 8px;
}

/* ---------- 実績ハイライト帯 ---------- */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink-3); border: 1px solid var(--ink-3); border-radius: var(--radius); overflow: hidden; }
.hl {
  background: var(--ink-2); padding: clamp(20px, 3vw, 32px); text-align: center;
}
.hl .hl-num {
  font-family: var(--font-display-en); font-size: clamp(26px, 3.6vw, 40px);
  color: var(--gold); letter-spacing: 0.04em; line-height: 1.2; display: block;
}
.hl .hl-label { font-size: 13px; color: var(--muted-d); margin-top: 8px; display: block; }
@media (max-width: 640px) { .highlights { grid-template-columns: 1fr; } }

/* ---------- CTAバナー ---------- */
.cta-banner {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(120deg, var(--red-deep) 0%, var(--red) 60%, #d8443c 100%);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0 18px, transparent 18px 36px);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-family: var(--font-display-jp); font-size: clamp(24px, 4vw, 38px); letter-spacing: 0.04em; }
.cta-banner p { color: rgba(255, 253, 248, 0.9); margin: 14px auto 26px; max-width: 40em; }
.cta-banner .btn--gold { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3); }

/* ---------- SNS ---------- */
.sns-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .sns-grid { grid-template-columns: repeat(2, 1fr); } }
.sns-card {
  display: block; text-decoration: none; text-align: center;
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius);
  padding: 24px 14px; transition: border-color 0.2s ease, transform 0.15s ease;
}
.sns-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.sns-card .sns-name { font-family: var(--font-display-en); letter-spacing: 0.12em; font-size: 15px; display: block; }
.sns-card .sns-id { font-size: 12.5px; color: var(--muted-d); display: block; margin-top: 6px; }
.sns-card .sns-note { font-size: 11px; color: var(--gold); display: block; margin-top: 4px; }

/* ---------- テーブル(戦績・プラン) ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px;
}
table.data th, table.data td { padding: 14px 14px; text-align: left; border-bottom: 1px solid var(--ink-3); vertical-align: top; }
table.data thead th {
  font-family: var(--font-display-en); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border-bottom: 2px solid var(--gold);
}
.section--paper table.data th, .section--paper table.data td { border-color: var(--line-l); }
.section--paper table.data thead th { color: var(--red-deep); border-bottom-color: var(--red-deep); }
.result-w { font-family: var(--font-display-en); color: var(--gold); letter-spacing: 0.08em; white-space: nowrap; }
.result-l { font-family: var(--font-display-en); color: var(--muted-d); letter-spacing: 0.08em; white-space: nowrap; }
.note-chip {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  border: 1px solid var(--muted-d); color: var(--muted-d);
  border-radius: 999px; padding: 1px 9px; margin-left: 6px; vertical-align: middle;
}

/* ---------- タイムライン(PROFILE) ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--ink-3); }
.tl-item { position: relative; padding: 0 0 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -27px; top: 8px; width: 14px; height: 14px;
  background: var(--red); border-radius: 50%; border: 3px solid var(--ink);
  box-shadow: 0 0 0 2px var(--red);
}
.tl-item--gold::before { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.tl-round {
  font-family: var(--font-display-en); font-size: 12px; letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 4px;
}
.tl-item h3 { font-family: var(--font-display-jp); font-size: 20px; margin-bottom: 8px; }
.tl-item p { color: var(--muted-d); font-size: 15px; max-width: 44em; }

/* プロフィール表 */
.prof-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prof-table th, .prof-table td { padding: 13px 10px; border-bottom: 1px solid var(--ink-3); text-align: left; vertical-align: top; }
.prof-table th { width: 32%; color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ---------- スポンサープラン ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--white); border: 1px solid var(--line-l); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column;
  color: #241d15;
}
.plan--featured { border: 2px solid var(--red); box-shadow: 0 10px 34px rgba(158, 33, 28, 0.16); position: relative; }
.plan--featured::before {
  content: "おすすめ"; position: absolute; top: -13px; left: 22px;
  background: var(--red); color: var(--white); font-size: 12px; font-weight: 700;
  padding: 3px 14px; border-radius: 999px; letter-spacing: 0.08em;
}
.plan h3 { font-family: var(--font-display-jp); font-size: 20px; }
.plan .plan-en { font-family: var(--font-display-en); font-size: 11px; letter-spacing: 0.2em; color: var(--muted-l); display: block; margin-bottom: 12px; }
.plan .plan-price { font-family: var(--font-display-en); font-size: 26px; color: var(--red-deep); margin: 6px 0 2px; letter-spacing: 0.03em; }
.plan .plan-price-note { font-size: 11.5px; color: var(--muted-l); margin-bottom: 16px; }
.plan ul { display: grid; gap: 9px; margin: 8px 0 22px; flex: 1; align-content: start; }
.plan li { font-size: 14px; padding-left: 22px; position: relative; line-height: 1.7; }
.plan li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.plan .btn { margin-top: auto; }

/* FAQ */
.faq { border-top: 1px solid var(--line-l); }
.faq details { border-bottom: 1px solid var(--line-l); }
.faq summary {
  cursor: pointer; padding: 18px 36px 18px 4px; font-weight: 700; font-size: 15.5px;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display-en); font-size: 22px; color: var(--red-deep); transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-a { padding: 0 4px 20px; color: var(--muted-l); font-size: 14.5px; }

/* スポンサーロゴ枠 */
.sponsor-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 800px) { .sponsor-logos { grid-template-columns: repeat(2, 1fr); } }
.sponsor-logo-slot {
  aspect-ratio: 8 / 3; border: 1px dashed var(--line-l); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-l); font-size: 12.5px; letter-spacing: 0.08em; background: var(--white);
  text-align: center; padding: 8px;
  min-width: 0;
}
@media (max-width: 640px) { .sponsor-logo-slot { aspect-ratio: auto; min-height: 68px; font-size: 11px; } }

/* ---------- ベルトバナー(タイトル実績の帯) ---------- */
.belt-banner {
  border: 1px solid rgba(217, 164, 65, 0.5); border-radius: var(--radius);
  background:
    radial-gradient(700px 220px at 50% 0%, rgba(217, 164, 65, 0.14), transparent 70%),
    var(--ink-2);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}
.belt-banner .belt-en {
  font-family: var(--font-display-en); letter-spacing: 0.22em; color: var(--gold); font-size: clamp(13px, 1.6vw, 16px);
}
.belt-banner h3 { font-family: var(--font-display-jp); font-size: clamp(22px, 3.6vw, 34px); margin: 10px 0 8px; }
.belt-banner p { color: var(--muted-d); font-size: 14.5px; margin: 0; }

/* ---------- ギャラリー ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery .ph { aspect-ratio: 1; }

/* ---------- フォーム ---------- */
.form-grid { display: grid; gap: 22px; max-width: 720px; }
.field label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }
.field .req {
  color: var(--red); font-size: 11px; border: 1px solid var(--red);
  border-radius: 3px; padding: 0 6px; margin-left: 8px; vertical-align: middle;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit;
  border: 1px solid var(--line-l); border-radius: var(--radius); background: var(--white);
  color: #241d15;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: 2px solid rgba(200, 50, 43, 0.25); }
.field .err { display: none; color: var(--red-deep); font-size: 13px; margin-top: 6px; font-weight: 700; }
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: var(--red-deep); background: #fdf3f2; }
.field.is-error .err { display: block; }
.form-note { font-size: 13px; color: var(--muted-l); }
.form-success {
  display: none; background: #eef7ee; border: 1px solid #9ec89e; border-radius: var(--radius);
  padding: 22px; color: #23511f; font-weight: 700;
}
.form-success.is-visible { display: block; }

/* ---------- フッター ---------- */
.site-footer { background: #100d0a; border-top: 1px solid var(--ink-3); padding: clamp(40px, 6vw, 64px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .en { font-family: var(--font-display-en); font-size: 26px; letter-spacing: 0.08em; }
.footer-brand .en span { color: var(--gold); }
.footer-brand p { color: var(--muted-d); font-size: 13.5px; margin-top: 12px; max-width: 30em; }
.footer-nav h4 { font-family: var(--font-display-en); font-size: 12px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 14px; }
.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a { text-decoration: none; font-size: 14px; color: var(--muted-d); }
.footer-nav a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 12px; color: var(--muted-d); border-top: 1px solid var(--ink-3); padding-top: 22px; letter-spacing: 0.06em; }

/* ---------- スクロールリビール ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- ページ下層ヒーロー ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(48px, 8vw, 88px)) 0 clamp(40px, 6vw, 64px);
  background:
    radial-gradient(800px 320px at 85% 0%, rgba(200, 50, 43, 0.16), transparent 65%),
    var(--ink);
  border-bottom: 1px solid var(--ink-3);
  position: relative; overflow: hidden;
}
.page-hero .en {
  font-family: var(--font-display-en);
  font-size: clamp(44px, 9vw, 96px); line-height: 1; letter-spacing: 0.02em;
  color: var(--white);
}
.page-hero .en .slash { color: var(--red); }
.page-hero .jp { color: var(--gold); font-weight: 700; letter-spacing: 0.14em; margin-top: 10px; font-size: 14px; }
.page-hero .lead { color: var(--muted-d); margin-top: 18px; max-width: 46em; }
@media (max-width: 640px) {
  .page-hero { padding: calc(var(--header-h) + 34px) 0 32px; }
  .page-hero .en { font-size: clamp(38px, 12vw, 56px); }
  .page-hero .lead { font-size: 14.5px; }
}

/* ---------- ユーティリティ ---------- */
.mt-l { margin-top: clamp(28px, 4vw, 48px); }
.mt-m { margin-top: 24px; }
.center { text-align: center; }
.small-note { font-size: 12.5px; color: var(--muted-d); }
.section--paper .small-note { color: var(--muted-l); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 実写真(差し替え済み写真の共通スタイル) ---------- */
.photo-frame {
  position: relative; margin: 0; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.35);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section--paper .photo-frame { border-color: rgba(158, 33, 28, 0.25); box-shadow: 0 8px 26px rgba(60, 45, 20, 0.14); }

.card-photo {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border-radius: calc(var(--radius) + 1px); margin-bottom: 16px;
}

.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform 0.35s ease; }
.gallery figure:hover img { transform: scale(1.045); }

/* ---------- 単品メニュー(SNS投稿・動画制作・グッズ) ---------- */
.price-list { display: grid; gap: 0; margin-top: 6px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  font-size: 14.5px; line-height: 1.6;
  padding: 9px 0; border-bottom: 1px dashed var(--line-l);
}
.price-list li:last-child { border-bottom: none; }
.price-list .price { font-family: var(--font-display-en); color: var(--red-deep); font-size: 15px; letter-spacing: 0.03em; white-space: nowrap; }

/* ---------- スポンサーロゴ(実ロゴ用カード) ---------- */
.sponsor-logo-card {
  aspect-ratio: 2 / 1; background: var(--white);
  border: 1px solid var(--line-l); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 12px; min-width: 0; overflow: hidden;
}
.sponsor-logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
@media (max-width: 640px) { .sponsor-logo-card { aspect-ratio: 2 / 1; } }

/* ---------- 料金表の拡張(WORKS) ---------- */
.section--paper .belt-banner { color: var(--white); }
.section:not(.section--paper) .price-list li { border-bottom-color: var(--ink-3); }
.section:not(.section--paper) .price-list .price { color: var(--gold); }
.price-list small { display: block; font-size: 12px; color: var(--muted-l); font-family: var(--font-body, inherit); letter-spacing: 0; }
.section:not(.section--paper) .price-list small { color: var(--muted-d); }
.price-list .price small { display: inline; margin-left: 4px; }
.price-list--lg li { font-size: 16px; font-weight: 700; padding: 14px 0; }
.price-list--lg .price { font-size: 22px; }
.price-list--lg small { font-weight: 400; }
.price-list--row { grid-template-columns: repeat(3, 1fr); column-gap: 28px; }
.price-list--row li:last-child { border-bottom: 1px dashed var(--line-l); }
@media (max-width: 720px) { .price-list--row { grid-template-columns: 1fr; } .price-list--row li:last-child { border-bottom: none; } }
/* グッズ(Tシャツ) */
.goods-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.goods-photos img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; border-radius: var(--radius); border: 1px solid var(--line-l); background: var(--white); }

/* お問い合わせフォーム(本番接続) */
.hp-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.cf-turnstile { min-height: 65px; }
.form-error { margin-top: 12px; color: var(--red-deep); font-size: 14px; font-weight: 700; }
