@charset "UTF-8";
/* ============================================================
   オンステージ トップページ（マジシャン派遣）
   2026-08-30 クライアントFB反映版:
   - FVは現行サイトのMV（mv.webp / mv-sp.webp・グラデ文字・斜体）を踏襲
   - 全セクションを現行サイト準拠のダーク基調（黒×ゴールド）に統一
   - 見出しは現行の main-ttl 相当（中央寄せ＋金グラデの斜め下線）
   カラー実測値: 黒 #111 / ゴールド #e5a759 / 下線グラデ #E1A858→#FAEB8F
   フォントは外部読み込みなし（Shippori Mincho相当はヒラギノ明朝で代替）
   ブレイクポイント: 375（基準）/ 768 / 1280
============================================================ */

/* ---- リセット（最小限） ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* ---- デザイントークン（現行テーマの実測値） ---- */
:root {
  --c-black: #111;
  --c-black2: #1a1a1a;
  --c-panel: #222;
  --c-card: #1f1f1f;
  --c-line: #3a3a3a;
  --c-gold: #e5a759;        /* メインアクセント */
  --c-gold-deep: #ce8325;   /* 濃いゴールド */
  --c-gold-light: #f3d87e;  /* ハイライト */
  --c-cream: #eae0d2;       /* クリーム（MV文字グラデ始点） */
  --c-text: #fff;
  --c-text-sub: #ccc;
  --grad-dark: linear-gradient(to right, #111 0%, #303030 50%, #111 100%);
  --grad-gold: linear-gradient(135deg, #f3d87e 0%, #e5a759 45%, #ce8325 100%);
  --grad-ttl: linear-gradient(90deg, #E1A858 0%, #FAEB8F 100%);   /* 現行 main-ttl-dec */
  --grad-mv-txt: linear-gradient(90deg, #eae0d2 0%, #d0b782 100%); /* 現行 mv-lead-txt */
  --font-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "HGS明朝E", serif; /* 現行のShippori Mincho相当 */
  --w-content: 1120px;
}

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-black);
  line-height: 1.85;
  font-size: 15px;
  overflow-wrap: break-word;
}

/* ============================================================
   ヘッダー（現行同様、MVの上に重ねる透過ヘッダー）
============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
}
.header-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
}
.header-logo { line-height: 0; }
.header-logo img { width: 150px; height: auto; }
.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  align-items: center;
}
.header-nav a {
  color: var(--c-text);
  text-decoration: none;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.header-nav a:hover { color: var(--c-gold); }
.header-nav .nav-cta {
  background: var(--grad-gold);
  color: var(--c-black);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  text-shadow: none;
}
.header-nav .nav-cta:hover { color: var(--c-black); opacity: 0.85; }

/* SP: ナビが2段に折り返してFVのキャッチと重なるため、ヘッダーは「ロゴ＋CTA＋ハンバーガー」の1行にし、
   その他のメニューはハンバーガー内に格納。開閉は details/summary のため JS 不要 */
.sp-menu { display: none; }
@media (max-width: 767px) {
  .site-header { position: absolute; }
  .header-inner { flex-wrap: nowrap; padding: 12px 16px; gap: 8px; position: relative; }
  .header-logo img { width: 118px; }
  .header-nav { margin-left: auto; }
  .header-nav ul { gap: 0; }
  .header-nav li:not(:last-child) { display: none; }
  .header-nav .nav-cta { font-size: 12px; padding: 8px 14px; white-space: nowrap; }

  .sp-menu { display: block; }
  /* メニュー展開中は、背景コンテンツの操作とスクロールを止める */
  body:has(.sp-menu[open]) { overflow: hidden; }
  body:has(.sp-menu[open]) :is(.header-logo, .header-nav) { pointer-events: none; }
  .sp-menu-btn {
    position: relative;
    z-index: 2;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(229, 167, 89, 0.6);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--c-gold-light);
    cursor: pointer;
  }
  .sp-menu-btn::-webkit-details-marker { display: none; }
  .sp-menu-btn:focus-visible { outline: 2px solid var(--c-gold-light); outline-offset: 2px; }
  .sp-menu-icon { display: grid; gap: 4px; width: 20px; }
  .sp-menu-icon span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .sp-menu-label { font-size: 8px; font-weight: 700; letter-spacing: 0.08em; line-height: 1; }
  .sp-menu[open] .sp-menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .sp-menu[open] .sp-menu-icon span:nth-child(2) { opacity: 0; }
  .sp-menu[open] .sp-menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .sp-menu-panel {
    /* ヘッダー直下から画面下までを覆い、背面を操作できなくする */
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    min-height: calc(100dvh - 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 20px 24px;
    background: #0c0c0c;
    border-top: 1px solid rgba(229, 167, 89, 0.4);
    border-bottom: 1px solid rgba(229, 167, 89, 0.4);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    animation: sp-menu-in 0.22s ease-out;
  }
  .sp-menu-panel li + li { border-top: 1px solid var(--c-line); }
  .sp-menu-panel a:not(.btn) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    color: var(--c-text);
    font-size: 15px;
    text-decoration: none;
  }
  .sp-menu-panel a:not(.btn)::after { content: "›"; color: var(--c-gold); font-size: 18px; }
  .sp-menu-panel .sp-menu-cta { display: block; margin-top: 16px; }
}
@media (max-width: 359px) {
  .header-logo img { width: 96px; }
  .header-nav .nav-cta { font-size: 11px; padding: 7px 10px; }
}
@keyframes sp-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sp-menu-panel { animation: none; }
  .sp-menu-icon span { transition: none; }
}

/* ============================================================
   S01 ファーストビュー（現行 .mv の再現）
============================================================ */
/* PC/タブレット: 現行サイトのMVと同じ「画像の上に文字を重ねる」構成
   SP: 767px以下は下部のメディアクエリで「画像＋その下に文字」の縦積みに切替（2026-09-07 FB対応） */
.hero {
  position: relative;
  aspect-ratio: 375 / 480;
  overflow: hidden;
  background: var(--c-black);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;  /* 現行SP: background right / cover */
}
/* 画像上の文字を読みやすくする下地（人物や明るい照明との干渉を防ぐ） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 42%, rgba(0,0,0,0.15) 62%, rgba(0,0,0,0.55) 100%);
}
.hero-catch {
  position: absolute;
  top: 88px;                      /* SPヘッダー（ロゴ＋CTA1行）の下 */
  left: 5%;
  right: 5%;
  z-index: 2;
  font-style: italic;             /* 現行 .mv-txt-inner */
  font-weight: bold;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  background: var(--grad-mv-txt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .hero-brand { font-size: 30px; }
.hero-btn {
  margin-top: 20px;
  font-size: 14px;
  padding: 12px 28px;
}
.hero-btn::after { content: "　›"; }

/* ---- S01b FV直下の導入ブロック ---- */
.hero-sub {
  background: var(--grad-dark);
  padding: 44px 0 52px;
  border-bottom: 1px solid rgba(229, 167, 89, 0.35);
}
.join {
  font-family: var(--font-serif);
  text-align: center;
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.join span { text-decoration: underline; text-underline-offset: 4px; }
.hero-lead {
  font-size: 14px;
  color: #ddd;
  max-width: 640px;
  margin: 0 auto 20px;
}
.hero-points {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto 24px;
}
.hero-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--grad-gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); /* ダイヤ型 */
}
.hero-points strong { color: var(--c-gold-light); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  transition: opacity 0.3s ease;
}
.btn:hover { opacity: 0.85; }
.btn-primary {
  background: var(--grad-gold);
  color: var(--c-black);
  box-shadow: 0 4px 16px rgba(229, 167, 89, 0.35);
}
.btn-outline {
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-large { padding: 18px 40px; font-size: 16px; }

/* ============================================================
   セクション共通（現行 .main-ttl 準拠の見出し）
============================================================ */
.section { padding: 56px 0; }
.section-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 16px;
}
.section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  /* 行の長さを均等に分け、最終行に1文字だけ落ちるのを防ぐ（2026-09-07 FB対応）
     未対応ブラウザ向けにはSPのフォント縮小（下部メディアクエリ）で担保 */
  text-wrap: balance;
  text-align: center;
  color: var(--c-text);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);  /* 現行 main-ttl */
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 40px;
}
.section h2::after {
  /* 現行 main-ttl-dec（金グラデの斜め下線）のCSS再現 */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(560px, 88%);
  height: 8px;
  background: var(--grad-ttl);
  clip-path: polygon(1.3% 0, 100% 0, 98.7% 100%, 0 100%);
}
.section h3 { font-size: 16px; line-height: 1.5; }
.section-desc {
  color: var(--c-text-sub);
  margin: 0 auto 28px;
  max-width: 46em;
}
.section-note {
  color: var(--c-text-sub);
  margin: 24px auto 0;
  max-width: 46em;
}

/* セクション背景の濃淡（現行サイトの黒基調に統一） */
.section-light { background: var(--c-black2); }
.section-gray { background: #161616; }
.section-cream { background: var(--c-black); }
.section-dark { background: var(--c-black); }
.section-darker { background: #0c0c0c; }

.section-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: center;
}
.section-links a:not(.btn) {
  color: var(--c-gold);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-right: 18px;
}
.section-links a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.section-links a:not(.btn):hover { opacity: 0.75; }

/* ============================================================
   S02 お悩み
============================================================ */
.problem-list { display: grid; gap: 14px; max-width: 720px; margin: 0 auto; }
.problem-list li {
  background: #242424;
  border-left: 3px solid var(--c-gold);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  color: #eee;
}
.problem-list strong { color: var(--c-gold-light); }

/* ============================================================
   S03 シーン別
============================================================ */
.scene-grid { display: grid; gap: 16px; }
.scene-card {
  background: var(--c-panel);
  border: 1px solid rgba(229, 167, 89, 0.25);
  border-radius: 8px;
  padding: 22px 20px;
}
.scene-card h3 {
  font-family: var(--font-serif);
  color: var(--c-gold-light);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(229, 167, 89, 0.25);
}
.scene-card p { font-size: 13.5px; color: #ddd; }

/* ============================================================
   S04 料金（ダーク配色のテーブル）
============================================================ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { min-width: 640px; }
.price-table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-text);
}
.price-table th, .price-table td {
  border: 1px solid var(--c-line);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}
.price-table thead th {
  background: #000;
  color: var(--c-gold-light);
  font-weight: 700;
}
.price-table tbody th {
  background: #221a10;
  color: var(--c-text);
  font-weight: 700;
}
.price-table tbody td { color: #eee; }
.price-table tbody td:last-child {
  font-weight: 700;
  color: var(--c-gold-light);
  white-space: nowrap;
}
.price-notes { margin: 28px auto 0; display: grid; gap: 18px; max-width: 46em; }
.price-notes h3 {
  color: var(--c-gold);
  border-left: 3px solid var(--c-gold);
  padding-left: 10px;
  margin-bottom: 6px;
}
.price-notes p { color: var(--c-text-sub); }

/* ============================================================
   S04b 他社との比較（2026-08-31 増設）
============================================================ */
/* 768px時にちょうど収まる幅（横スクロール回避）。767px以下はカード表示に切替 */
.compare-table { min-width: 700px; }
.compare-table thead th.compare-self {
  background: var(--grad-gold);
  color: var(--c-black);
}
.compare-table tbody td.compare-self {
  background: #221a10;
  color: var(--c-gold-light);
  font-weight: 700;
  border-color: rgba(229, 167, 89, 0.5);
}
.compare-table tbody td { color: #ccc; }
.compare-table tbody td:last-child {
  /* price-table の最終列強調（金色・nowrap）を打ち消す */
  color: #ccc;
  font-weight: 400;
  white-space: normal;
}

/* SP: 4列の表は横スクロールしないと読めないため、比較ポイントごとのカードに組み替える
   （2026-09-03 クライアントFB対応。768px以上は通常の表のまま） */
@media (max-width: 767px) {
  .compare-scroll { overflow-x: visible; }
  .compare-table { min-width: 0; width: 100%; display: block; }
  .compare-table caption { display: block; }
  .compare-table thead { display: none; }          /* 列見出しは各セルのラベルで代替 */
  .compare-table tbody { display: block; }
  .compare-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--c-card);
  }
  .compare-table tbody tr:last-child { margin-bottom: 0; }
  /* 比較ポイント名をカード見出しに */
  .compare-table tbody th[scope="row"] {
    display: block;
    background: #000;
    color: var(--c-gold-light);
    font-family: var(--font-serif);
    font-size: 15px;
    border: none;
    padding: 12px 16px;
  }
  .compare-table tbody td {
    display: block;
    border: none;
    border-top: 1px solid var(--c-line);
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.7;
  }
  /* 各セルの上に列名（オンステージ／個人／イベント会社）を出す */
  .compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #999;
    margin-bottom: 2px;
  }
  .compare-table tbody td.compare-self {
    border-top: 1px solid rgba(229, 167, 89, 0.5);
  }
  .compare-table tbody td.compare-self::before { color: var(--c-gold); }
}

/* ============================================================
   S05 選ばれる理由
============================================================ */
.reason-grid { display: grid; gap: 16px; }
.reason-card {
  background: var(--c-card);
  border: 1px solid rgba(229, 167, 89, 0.2);
  border-radius: 8px;
  padding: 24px 22px;
}
.reason-num {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.reason-card h3 { margin-bottom: 10px; color: var(--c-text); }
.reason-card p { font-size: 13.5px; color: var(--c-text-sub); }

/* ============================================================
   S06 導入事例
============================================================ */
.case-grid { display: grid; gap: 16px; }
.case-card {
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-gold);
  border-radius: 6px;
  padding: 20px;
  background: var(--c-card);
}
.case-card h3 {
  font-family: var(--font-serif);
  color: var(--c-gold-light);
  margin-bottom: 12px;
}
.case-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}
.case-card dt {
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  background: transparent;
  font-size: 11px;
  text-align: center;
  padding: 2px 8px;
  border-radius: 3px;
  align-self: start;
  margin-top: 3px;
}
.case-card dd { border-bottom: 1px dashed var(--c-line); padding-bottom: 4px; color: #ddd; }
.case-card > p { font-size: 13px; color: #bbb; }

/* ---- S06 主な出張先リスト（2026-08-31 増設） ---- */
.venue-ttl {
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--c-gold);
  border-left: 3px solid var(--c-gold);
  padding-left: 10px;
}
.venue-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.venue-list li {
  font-size: 12.5px;
  color: #ddd;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 4px 14px;
  background: var(--c-card);
}

/* ============================================================
   S07 お客様の声
============================================================ */
.voice-grid { display: grid; gap: 16px; }
.voice-card {
  background: var(--c-panel);
  border-radius: 8px;
  padding: 24px 22px;
  border: 1px solid rgba(229, 167, 89, 0.25);
}
.voice-meta {
  display: inline-block;
  font-size: 11.5px;
  color: var(--c-black);
  background: var(--c-gold);
  border-radius: 3px;
  padding: 2px 10px;
  margin-bottom: 12px;
  font-weight: 700;
}
.voice-card h3 {
  font-family: var(--font-serif);
  color: var(--c-gold-light);
  margin-bottom: 10px;
}
.voice-card p { font-size: 13.5px; color: #ddd; }
.voice-name {
  margin-top: 12px;
  text-align: right;
  font-size: 12.5px;
  color: #aaa;
}

/* ============================================================
   S08 マジシャン紹介
============================================================ */
.magician-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.magician-card a { text-decoration: none; display: block; }
.magician-card picture {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(229, 167, 89, 0.4);
  margin-bottom: 12px;
  background: var(--c-panel);
}
.magician-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.magician-card a:hover img { transform: scale(1.05); }
.magician-card h3 {
  font-family: var(--font-serif);
  color: var(--c-gold-light);
  margin-bottom: 6px;
}
.magician-card p { font-size: 12.5px; color: var(--c-text-sub); }

/* ============================================================
   S09 ご利用の流れ
============================================================ */
.flow-list { display: grid; gap: 0; max-width: 720px; margin: 0 auto; }
.flow-step {
  position: relative;
  padding: 0 0 28px 34px;
  border-left: 2px solid var(--c-gold);
  margin-left: 8px;
}
.flow-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.flow-step::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-gold);
}
.flow-num {
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--c-gold);
  letter-spacing: 0.1em;
  margin-right: 10px;
  font-size: 13px;
}
.flow-step h3 { margin-bottom: 8px; color: var(--c-text); }
.flow-step p { font-size: 14px; max-width: 40em; color: #ddd; }
.flow-time {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-gold-light);
}
.flow-time::before { content: "⏱ "; }

/* ============================================================
   S10 FAQ（アコーディオン）
============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
}
.faq-item h3 { margin: 0; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 44px 16px 18px;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.6;
  position: relative;
  color: var(--c-text);
}
.faq-q::before {
  content: "Q.";
  font-family: var(--font-serif);
  color: var(--c-gold);
  margin-right: 8px;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { padding: 0 18px 16px; }
.faq-a p {
  font-size: 14px;
  border-top: 1px dashed #444;
  padding-top: 12px;
  color: #ddd;
}
.faq-a p::before {
  content: "A.";
  font-family: var(--font-serif);
  color: var(--c-gold-light);
  font-weight: 700;
  margin-right: 8px;
}

/* ============================================================
   S10b はじめての方へ（2026-08-31 増設）
============================================================ */
.first-grid { display: grid; gap: 16px; }
.first-card {
  background: var(--c-card);
  border: 1px solid rgba(229, 167, 89, 0.2);
  border-radius: 8px;
  padding: 24px 22px;
}
.first-card h3 {
  color: var(--c-gold-light);
  font-family: var(--font-serif);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(229, 167, 89, 0.25);
}
.first-card p { font-size: 13.5px; color: var(--c-text-sub); }
.first-card .first-template {
  background: #221a10;
  border-left: 3px solid var(--c-gold);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
  color: #eee;
  margin-bottom: 10px;
}

/* ============================================================
   S11 最終CTA
============================================================ */
.section-cta {
  background: var(--grad-dark);
  color: var(--c-text);
  text-align: center;
  border-top: 1px solid rgba(229, 167, 89, 0.35);
}
.section-cta h2 { margin-bottom: 28px; }
.cta-lead {
  max-width: 40em;
  margin: 0 auto 26px;
  color: #ddd;
  text-align: left;
}
.section-cta .hero-cta { justify-content: center; }

/* ============================================================
   404ページ
============================================================ */
.notfound {
  background: var(--grad-dark);
  color: var(--c-text);
  text-align: center;
  padding: 160px 0 96px;   /* 透過ヘッダー分の余白を上に確保 */
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.notfound .section-inner { width: 100%; }
.notfound-code {
  font-family: var(--font-serif);
  font-size: 88px;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.notfound h1 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 18px;
}
.notfound-text {
  max-width: 34em;
  margin: 0 auto 28px;
  color: #ddd;
  text-align: left;
  font-size: 14px;
}
.notfound-cta { justify-content: center; }

/* ============================================================
   フッター
============================================================ */
.site-footer {
  background: #0c0c0c;
  color: var(--c-text-sub);
  padding: 40px 0 20px;
  font-size: 13px;
  border-top: 1px solid #2a2a2a;
}
.footer-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: 28px;
}
.footer-logo img { width: 168px; height: auto; }
.footer-info p { margin-top: 12px; }
.footer-info a { color: var(--c-gold-light); text-decoration: none; }
.footer-nav ul { display: grid; gap: 8px; }
.footer-nav a { color: var(--c-text-sub); text-decoration: none; }
.footer-nav a:hover { color: var(--c-gold); }
.footer-copy {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  border-top: 1px solid #333;
  font-size: 11px;
  color: #888;
}

/* ============================================================
   レスポンシブ: 768px〜（タブレット）
============================================================ */
@media (min-width: 768px) {
  body { font-size: 16px; }
  .header-inner { padding: 18px 24px; }
  .header-logo img { width: 190px; }
  .header-nav a { font-size: 14px; }

  /* 現行PC版MV: aspect 1440/680・テキスト位置 top20% left10% */
  .hero { aspect-ratio: 1440 / 680; }
  .hero-bg img { object-position: center; }
  .hero-catch { top: 20%; left: 10%; right: auto; }
  .hero-title { font-size: 3vw; }
  .hero-title .hero-brand { font-size: 5.2777vw; }  /* 現行PC実測値 */
  /* PCはヘッダーと重ならないため、暗幕は上部のみ軽く */
  .hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 60%);
  }
  .hero-btn {
    margin-top: 5.5vw;
    font-size: 15px;
    padding: 14px 40px;
  }
  .hero-sub { padding: 56px 0 64px; }
  .join { font-size: 20px; margin-bottom: 32px; }
  .hero-lead { font-size: 15px; }

  .section { padding: 72px 0; }
  .section-inner { padding: 0 24px; }
  .section h2 { font-size: 30px; margin-bottom: 48px; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .first-grid { grid-template-columns: repeat(3, 1fr); }
  .magician-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr auto; align-items: start; }
  .footer-nav ul { grid-template-columns: repeat(2, auto); gap: 8px 32px; }
}

/* ============================================================
   レスポンシブ: 1280px〜（デスクトップ）
============================================================ */
@media (min-width: 1280px) {
  .hero-title { font-size: 42px; }        /* 3vw相当の上限で固定 */
  .hero-title .hero-brand { font-size: 74px; }
  .hero-btn { margin-top: 72px; }
  .section { padding: 88px 0; }
  .section h2 { font-size: 32px; }
  .scene-grid { grid-template-columns: repeat(3, 1fr); }
  .case-grid { grid-template-columns: repeat(3, 1fr); }
  .magician-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .magician-card p { font-size: 11.5px; }
}

/* ============================================================
   レスポンシブ: 〜767px（スマホ）の上書き
   ※ .section h2 の基本指定より後に置くこと（先に書くと上書きされない）
============================================================ */
@media (max-width: 767px) {
  /* 端末幅や端末側の文字サイズ設定に余裕を持たせ、
     最終行に1文字だけ落ちるのを防ぐ（text-wrap:balance 未対応環境のフォールバック） */
  .section h2 {
    font-size: 21px;
    letter-spacing: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .notfound h1 { font-size: 21px; text-wrap: balance; }

  /* ---- SPのファーストビュー（2026-09-07 FB対応） ----
     横長のMV画像を縦長枠にcoverすると横6割が切れて人物が巨大化し、
     文字とも重なるため、SPは「画像を全幅で見せ、その下に文字＋CTA」の縦積みにする */
  .hero {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-bg {
    position: relative;
    display: block;
  }
  .hero-bg img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    /* 元比率のままだと高さ約198pxで人物が小さいため、やや縦長の枠にする。
       演者は画像の46〜98%に位置し右端まで写っているので、右端を基準に切り、
       左の暗い背景（0〜33%）だけを捨てる（2026-09-07 FB対応） */
    aspect-ratio: 375 / 285;
    object-fit: cover;
    object-position: right center;
  }
  /* 画像上部だけ暗くしてヘッダー（ロゴ・CTA）を読めるようにする */
  .hero::before {
    inset: 0 0 auto 0;
    height: 96px;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0) 100%);
  }
  /* 画像の下端を黒へなじませ、テキストブロックと一体に見せる */
  .hero-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.85) 65%, var(--c-black) 100%);
    pointer-events: none;
  }
  .hero-catch {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-top: -40px;          /* 画像に少し食い込ませて余白を締める */
    padding: 0 20px 36px;
    text-align: center;
    background: var(--c-black);
    z-index: 3;
  }
  .hero-title {
    font-size: 22px;
    line-height: 1.7;
    text-wrap: balance;
  }
  .hero-title .hero-brand {
    font-size: 32px;
    display: inline-block;
    margin-top: 6px;
  }
  .hero-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 22px auto 0;
    font-size: 16px;
    padding: 16px 20px;
  }
}
