/* キャストン / CASTON - 共通スタイル */

:root {
  /* ブランドカラー4色。役割ごとに使い分ける。
     使用量の目安は 背景(白・薄いアイボリー)65〜70% / main 15〜20% / sub 7〜10% /
     highlight 5〜8% / accent 3〜5%。
     全部を同じ強さで使わず、--main を中心に、残りは補助的に使う。 */

  /* メイン：ヘッダー・フッター・主要見出し・主要CTA・選択中の項目など */
  --main: #3f9aae;
  /* サブ：タグ、カード装飾、サブボタン、ホバー、アイコン背景、薄い区切りなど。
     淡い色なので、白背景の文字にはこの色ではなく --sub-dark を使う */
  --sub: #79c9c5;
  /* アクセント：「おすすめ」バッジ・重要な数字・特に強調したいCTA・通知など、
     注目させたい所だけ。使いすぎてサイトが赤っぽくならないようにする */
  --accent-coral: #f96e5b;
  /* アクセントの明るめ。CTAバンドのグラデーションなどに使う */
  --accent-coral-light: #fb8d76;
  /* ハイライト：セクション背景・注目コンテンツの囲み・吹き出し・カードの薄い背景など。
     ※淡いクリーム色なので文字色には使わない。この色の上の文字は
     --main-dark や --text-main などの濃い色にする */
  --highlight: #ffe2af;

  /* メインカラーの濃淡。グラデーションやホバーなどの微調整用 */
  --main-dark: #2f7383;
  --main-light: #5bafc2;
  /* サブカラーの濃いめ。白背景の上に置く文字・アイコンに使う */
  --sub-dark: #3b918c;

  /* ベースカラー（背景・文字） */
  --bg-white: #ffffff;
  --bg-gray: #faf8f3;
  --text-main: #1a1a1a;
  --text-muted: #5b6165;
  --border-color: #e5e2d9;
  --container-width: 1120px;
  --font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Meiryo", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.7;
}

h1, h2, h3 {
  color: var(--main);
  line-height: 1.4;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.2em;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー・ナビ */

.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* トップページだけ：ファーストビューではヘッダーを隠し、
   スクロールしたら（.is-shown が付いたら）上からスライドインさせる。
   fixedにすることでヘッダー分の高さが消え、ヒーローが画面最上部から始まる */
.tp-body .site-header {
  position: fixed;
  left: 0;
  right: 0;
  translate: 0 -100%;
  transition: translate 0.35s ease;
}

.tp-body .site-header.is-shown {
  translate: 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--main);
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--sub-dark);
  font-weight: 700;
}

.brand-logo {
  display: none;
  height: 78px;
  width: auto;
}

.brand-logo.is-loaded {
  display: block;
}

.brand-logo.is-loaded ~ .brand-main,
.brand-logo.is-loaded ~ .brand-sub {
  display: none;
}

/* スマホ表示：ロゴが画面の左上に寄るよう、ヘッダーの余白を詰める。
   お問い合わせボタン＋メニューボタンが横に並んでも収まるよう、ロゴも少し小さくする。 */
@media (max-width: 639px) {
  .header-inner {
    padding: 4px 12px;
  }

  .brand-logo {
    height: 56px;
  }

  .header-actions {
    gap: 8px;
  }

  /* メニューボタン（三本線）はスマホでは指で押しやすいよう少し大きくする */
  .nav-toggle {
    width: 40px;
    height: 40px;
    gap: 6px;
    padding: 0 4px;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main);
}

/* 各HTMLに残しているプレーンなリンク一覧。メニューはscript.jsが挿入する
   .menu-panel（カード型全画面メニュー）を使うため、こちらは常に表示しない */
.site-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-favorites {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--main);
}

.nav-favorites:hover {
  color: var(--sub-dark);
}

.favorites-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

@keyframes favorites-count-badge-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.favorites-count-badge--pulse {
  animation: favorites-count-badge-pulse 0.4s ease;
}

.favorite-flyer {
  position: fixed;
  background: var(--accent-coral);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.3, 0, 0.6, 1), opacity 0.6s ease-in;
}

/* ヘッダーのお問い合わせボタン：ファーストビューと同じオレンジで一番目立たせる。
   「最短10分でお見積もり」を小さく添えて、押す理由が伝わるようにする。 */
.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 7px 20px;
  border-radius: 999px;
  background: var(--accent-coral);
  color: #ffffff;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 2px 8px rgba(249, 110, 91, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--accent-coral-light);
  transform: translateY(-1px);
}

.header-cta-main {
  font-size: 15px;
  font-weight: 700;
}

.header-cta-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 639px) {
  .header-cta {
    padding: 6px 14px;
  }

  .header-cta-main {
    font-size: 13px;
  }

  .header-cta-sub {
    font-size: 9px;
  }
}

/* ============================================================
   スマホ用の下部固定CTA（script.jsで挿入される .mobile-bottom-cta）
   下にスクロールし始めたら（.is-shown）画面下からスライドインする。
   左：電話 / 右：お問い合わせ。PCでは表示しない。
   ============================================================ */

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 639px) {
  /* 下部CTAに隠れてフッター最下部が読めなくならないよう、余白を確保する */
  body {
    padding-bottom: 84px;
  }

  .mobile-bottom-cta {
    display: flex;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--border-color);
    translate: 0 110%;
    transition: translate 0.3s ease;
  }

  .mobile-bottom-cta.is-shown {
    translate: 0 0;
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 4px;
    border-radius: 999px;
    line-height: 1.3;
    text-align: center;
  }

  .mobile-cta-tel {
    background: var(--main);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(63, 154, 174, 0.35);
  }

  .mobile-cta-contact {
    background: var(--accent-coral);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(249, 110, 91, 0.35);
  }

  .mobile-cta-main {
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-cta-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* スマホではヘッダー内のお問い合わせボタンは出さず、下部固定CTAに任せる */
  .header-cta {
    display: none;
  }

  /* トップページ：スクロールで出てくるのはメニューボタン（三本線）だけにする。
     ヘッダーの帯・ロゴは出さず、右上に白い丸ボタンだけが現れる */
  .tp-body .site-header {
    background: transparent;
    border-bottom: none;
    pointer-events: none;
  }

  .tp-body .site-header .brand {
    display: none;
  }

  .tp-body .header-inner {
    justify-content: flex-end;
    padding: 10px 12px;
  }

  .tp-body .nav-toggle {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    padding: 0 11px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }

}

/* ============================================================
   メニューボタンで開くカード型全画面メニュー（script.jsで挿入される .menu-panel）
   スマホ・PC共通で、大きなカード＋写真つきリンクの見やすいメニューを表示する。
   PCでは中身がmax-width 680pxで中央に寄るだけで、構成は同じ。
   ============================================================ */

.menu-panel {
  display: none;
}

/* メニューが開いている間は三本線ボタンを「×」に変える */
.nav-toggle span {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 背面のページがスクロールしないように固定する */
body.menu-open {
  overflow: hidden;
}

@keyframes menu-panel-in {
  from {
    opacity: 0;
    translate: 0 12px;
  }
}

body.menu-open .menu-panel {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9; /* ヘッダー（z-index:10）の下。メニューボタンは押せるまま */
  background: var(--bg-white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 上：ヘッダーに隠れない分 ／ 下：スマホの下部固定CTAに隠れない分の余白。
     左右はコンテンツ幅680pxを上限に中央へ寄せる */
  padding: 120px max(18px, calc((100% - 680px) / 2))
    calc(96px + env(safe-area-inset-bottom));
  animation: menu-panel-in 0.25s ease;
}

/* にぎやかしの円：ブランドカラーの丸を画面の端に少しのぞかせる。
   スクロールしても動かないようfixedにし、z-index:-1でカードや文字の下に敷く */
body.menu-open .menu-panel::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at -45px 16%, var(--sub) 0 115px, transparent 116px),
    radial-gradient(circle at calc(100% + 55px) 38%, var(--accent-coral) 0 105px, transparent 106px),
    radial-gradient(circle at -35px 76%, var(--highlight) 0 95px, transparent 96px),
    radial-gradient(circle at calc(100% - 25px) 93%, var(--sub) 0 50px, transparent 51px);
  opacity: 0.55;
}

/* 枠線つきの大きなカード */
.mm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px 13px;
  background: var(--bg-white);
  border: 2px solid var(--main);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(63, 154, 174, 0.14);
  color: var(--main);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(63, 154, 174, 0.22);
}

/* アイコンは色付きの丸の中に白抜きで入れる。カードごとに色を変えてにぎやかにする */
.mm-card svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 50%;
  background: var(--main);
  color: #ffffff;
}

.mm-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mm-card-grid .mm-card:nth-child(2) svg {
  background: var(--accent-coral);
}

.mm-card-grid .mm-card:nth-child(3) svg {
  background: var(--sub-dark);
}

.mm-card-grid .mm-card:nth-child(4) svg {
  background: var(--highlight);
  color: var(--main-dark);
}

/* 一番上の「出演者紹介」はオレンジにして一番目立たせる */
.mm-card--wide {
  flex-direction: row;
  gap: 14px;
  padding: 18px 8px;
  margin-bottom: 14px;
  font-size: 19px;
  border-color: var(--accent-coral);
  color: var(--accent-coral);
  box-shadow: 0 2px 10px rgba(249, 110, 91, 0.18);
}

.mm-card--wide:hover {
  box-shadow: 0 6px 16px rgba(249, 110, 91, 0.26);
}

.mm-card--wide svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--accent-coral);
}

/* 見出しラベル（頭に小さな色付きの四角を添える） */
.mm-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.mm-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--main);
}

.mm-label--coral::before {
  background: var(--accent-coral);
}

/* 矢印つきのリンク一覧（2列）。ジャンルには丸い写真を添える */
.mm-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}

.mm-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  /* 「バルーンパフォーマー」等が中途半端な位置で折り返さないよう、<wbr>の位置でだけ改行する */
  word-break: keep-all;
}

.mm-links a:hover {
  color: var(--main);
}

.mm-links a img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.mm-links a span {
  flex: 1;
}

.mm-links a::after {
  content: "→";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--main);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.mm-links--coral a::after {
  background: var(--accent-coral);
}

@media (max-width: 959px) {
  body.menu-open .menu-panel {
    padding-top: 110px;
  }

  /* メニューと一緒に下部CTA（電話・お問い合わせ）も表示する */
  body.menu-open .mobile-bottom-cta {
    translate: 0 0;
  }
}

@media (max-width: 639px) {
  /* スマホはヘッダーが低い（ロゴ56px）ので上の余白を詰める */
  body.menu-open .menu-panel {
    padding-top: 76px;
  }

  /* スマホのメニューボタンは三本線の間隔が広い（gap:6px）ので「×」の位置を合わせる */
  body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* フッター */

.site-footer {
  background: var(--main);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 20px 24px;
  margin-top: 60px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo-wrap {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
}

.footer-brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

.footer-brand-tagline {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 320px;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 14px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
  color: var(--highlight);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

/* ボタン */

.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.button-primary {
  background: var(--main);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--main-light);
}

.button-secondary {
  background: var(--bg-white);
  color: var(--main);
  border-color: var(--main);
}

.button-secondary:hover {
  border-color: var(--sub-dark);
  color: var(--sub-dark);
}

/* 出演者に連絡する系の、特に強調したい主要CTA用。アクセントカラーを使うのは
   こうした「一番押してほしいボタン」だけに絞る。 */
.button-cta {
  background: var(--accent-coral);
  color: #ffffff;
}

.button-cta:hover {
  filter: brightness(1.08);
}

.button-danger {
  background: var(--bg-white);
  color: var(--accent-coral);
  border-color: var(--accent-coral);
}

.button-danger:hover {
  background: var(--accent-coral);
  color: #ffffff;
}

/* ヒーロー */

.hero-section {
  /* 白文字が読めるよう、メインカラーの濃淡だけでつなぐ（淡いサブ色は使わない） */
  background: linear-gradient(135deg, var(--main-dark) 0%, var(--main) 60%, var(--main-light) 100%);
}

.hero {
  padding: 44px 0 40px;
  text-align: center;
}

.hero-headline {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.hero-headline-lead {
  display: block;
  font-weight: 700;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--highlight);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--highlight);
  border-radius: 2px;
  animation: hero-underline-grow 1s ease-out 0.3s forwards;
}

.hero-headline-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

@keyframes hero-underline-grow {
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlight::after {
    animation: none;
    width: 100%;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 20px;
}

.hero-cta-button {
  min-width: 200px;
}

.hero-launch-notice {
  margin-top: 12px;
  text-align: center;
  /* 青いヒーロー背景の上ではコーラルが沈むので、明るいハイライト色で目立たせる */
  color: var(--highlight);
  font-weight: 700;
  font-size: 14px;
}

/* ヒーロー写真（雰囲気写真が自動で流れる、画面いっぱいのバナー） */

.hero-photo {
  position: relative;
}

.hero-gallery {
  overflow: hidden;
  height: 220px;
}

.hero-gallery-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: hero-gallery-scroll 14s linear infinite;
}

.hero-gallery img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-trust-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 92%;
  background: #ffffff;
  color: var(--main);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(63, 154, 174, 0.2);
}

.hero-trust-stars {
  /* 白地の上の星。淡いハイライト色では見えないため、アクセントカラーにする */
  color: var(--accent-coral);
  letter-spacing: 1px;
}

@keyframes hero-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gallery-track {
    animation: none;
  }
}

/* ファーストビュー下の、スクロールを促すバウンドアイコン */

.hero-scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  animation: hero-scroll-cue-bounce 1.8s ease-in-out infinite;
}

.hero-scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes hero-scroll-cue-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue {
    animation: none;
  }
}

/* トップページ：出演者フォトスライダー（右から左へ流れるループ） */

.performer-slider-section {
  overflow: hidden;
  background: var(--bg-gray);
  padding: 40px 0;
}

.performer-slider {
  overflow: hidden;
}

.performer-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: performer-slider-scroll 32s linear infinite;
}

.performer-slider-card {
  position: relative;
  flex-shrink: 0;
  width: 190px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(63, 154, 174, 0.12);
  transition: transform 0.2s ease;
}

.performer-slider-card:hover {
  transform: translateY(-6px);
}

.performer-slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.performer-slider-card-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(63, 154, 174, 0.85), transparent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

@keyframes performer-slider-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .performer-slider-track {
    animation: none;
  }
}

/* スクロールで要素をフェードイン表示させる汎用クラス。
   同じグリッド内で順番にずらして表示されるよう、nth-childでtransition-delayを付ける。 */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.24s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(7) { transition-delay: 0.36s; }
.reveal-on-scroll:nth-child(8) { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 左右・下からフェードインする汎用reveal（悩み吹き出しなど、方向性のある演出用） */

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-pop {
  opacity: 0;
  transform: scale(0.7) translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-pop.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right,
  .reveal-pop {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* トップページ下部の「お悩み吹き出し」CTA。参考にしたキャッチコピー・構成を
   キャストン向けに再構成したもの。 */

.worry-cta-section {
  background: linear-gradient(160deg, var(--main) 0%, var(--main-light) 90%);
  padding: 56px 0 64px;
  overflow: hidden;
}

.worry-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 40px;
}

.worry-bubble {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px 22px;
  width: 260px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.worry-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
}

.worry-bubble-center::after {
  left: 50%;
  margin-left: -10px;
}

.worry-bubble-right::after {
  left: auto;
  right: 28px;
}

.worry-bubble-title {
  display: inline-block;
  color: var(--accent-coral);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 8px;
  border-bottom: 3px solid var(--highlight);
  padding-bottom: 2px;
}

.worry-bubble-text {
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.worry-cta-headline {
  text-align: center;
  margin-bottom: 28px;
}

.worry-cta-headline-main {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.4;
}

.worry-cta-headline-sub {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-size: 15px;
}

.worry-cta-action {
  text-align: center;
}

.worry-cta-action .cta-speed-badge {
  background: rgba(255, 255, 255, 0.18);
}

.worry-cta-button {
  min-width: 220px;
}

.worry-cta-phone {
  margin-top: 22px;
  color: #ffffff;
}

.worry-cta-phone-label {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.worry-cta-phone-number {
  display: inline-block;
  margin-top: 4px;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.worry-cta-phone-note {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.75;
}

@media (min-width: 720px) {
  .worry-cta-headline-main {
    font-size: 40px;
  }
}

/* トップページの実績数字（業界年数・対応エリア・累計手配件数など） */

.achievement-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.achievement-stat {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 28px 16px;
}

.achievement-stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--main);
  line-height: 1;
}

.achievement-stat-unit {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
}

.achievement-stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

/* CTA欄に添える「最短10分見積り」などのスピードバッジ */

.cta-speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.cta-speed-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ジャンルグリッド */

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.page-heading {
  margin-top: 32px;
  margin-bottom: 24px;
}

/* 出演者登録ページ */

.apply-intro {
  text-align: center;
}

.apply-intro-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.apply-profile-example {
  max-width: 420px;
  margin: 0 auto;
}

.apply-profile-example-link {
  margin: 20px 0 0;
  text-align: center;
}

.section-heading-accent h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  padding-bottom: 3px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--main), var(--highlight), var(--accent-coral), var(--sub)) 1;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.genre-card {
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  font-weight: 700;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.genre-card:hover {
  border-color: var(--sub);
  box-shadow: 0 4px 14px rgba(63, 154, 174, 0.08);
}

.genre-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--main);
}

.genre-card:hover svg {
  stroke: var(--sub);
}

.genre-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-gray);
}

.genre-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.genre-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 154, 174, 0.45);
}

.genre-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.genre-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  /* 「人気」などの注目バッジはアクセントカラー */
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* シナリオセクション */

.scenario-section {
  background: var(--bg-gray);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.scenario-section .scenario-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 24px;
}

.scenario-cta {
  margin-top: 4px;
}

.scenario-section .scenario-lead {
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
}

.scenario-uses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 18px;
  margin: 24px 0 28px;
}

.scenario-use {
  --accent: var(--main);
  --accent-tint: rgba(63, 154, 174, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 136px;
}

.scenario-use-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-tint);
  box-shadow: 0 2px 8px rgba(63, 154, 174, 0.08);
}

.scenario-use-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-use-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
  white-space: nowrap;
}

.scenario-use-2 { --accent: var(--sub-dark); --accent-tint: rgba(121, 201, 197, 0.14); }
.scenario-use-3 { --accent: var(--accent-coral); --accent-tint: rgba(249, 110, 91, 0.14); }
.scenario-use-4 { --accent: var(--sub-dark); --accent-tint: rgba(121, 201, 197, 0.14); }
.scenario-use-5 { --accent: var(--main); --accent-tint: rgba(91, 175, 194, 0.12); }
.scenario-use-6 { --accent: var(--main); --accent-tint: rgba(63, 154, 174, 0.1); }

/* 選ばれる理由 */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* トップページの「選ばれる理由」は5枚などグリッドの列数で割り切れない枚数になりやすいため、
   グリッドではなくflex+wrapにして、最後の行（余った分）が左寄せにならず中央に来るようにする。
   apply.html・fee.htmlのtrust-gridは4枚で割り切れるため、このクラスは付けずグリッドのままにしている。 */
.trust-grid--balanced {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-grid--balanced .trust-item {
  flex: 1 1 300px;
  max-width: 340px;
}

.trust-item {
  --accent: var(--main);
  --accent-tint: rgba(63, 154, 174, 0.1);
  position: relative;
  padding: 24px 20px 20px;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(63, 154, 174, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(63, 154, 174, 0.12);
}

.trust-item-price { --accent: var(--main); --accent-tint: rgba(63, 154, 174, 0.1); }
.trust-item-track { --accent: var(--accent-coral); --accent-tint: rgba(249, 110, 91, 0.12); }
.trust-item-backup { --accent: var(--main); --accent-tint: rgba(63, 154, 174, 0.1); }
.trust-item-invoice { --accent: var(--main); --accent-tint: rgba(91, 175, 194, 0.12); }
.trust-item-contact { --accent: var(--sub-dark); --accent-tint: rgba(121, 201, 197, 0.12); }
.trust-item-fee { --accent: var(--main); --accent-tint: rgba(63, 154, 174, 0.1); }
.trust-item-profile { --accent: var(--main); --accent-tint: rgba(91, 175, 194, 0.12); }
.trust-item-match { --accent: var(--sub-dark); --accent-tint: rgba(121, 201, 197, 0.12); }

.trust-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.trust-item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.trust-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-tint);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  overflow: visible;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 比較しやすい：棒グラフが伸び縮みする */
.trust-icon-compare .bar {
  fill: var(--accent);
  stroke: none;
  transform-origin: bottom;
  animation: bar-grow 2.4s ease-in-out infinite;
}
.trust-icon-compare .bar-1 { animation-delay: 0s; }
.trust-icon-compare .bar-2 { animation-delay: 0.2s; }
.trust-icon-compare .bar-3 { animation-delay: 0.4s; }

@keyframes bar-grow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.55); }
}

/* 料金帯が分かる：コインが時々くるっと回る */
.trust-icon-price .coin {
  fill: none;
  transform-origin: center;
  transform-box: fill-box;
  animation: coin-flip 3s ease-in-out infinite;
}
.trust-icon-price .coin circle {
  fill: var(--bg-white);
  stroke: var(--accent);
}
.trust-icon-price .coin text {
  font-size: 10px;
  font-weight: 700;
  fill: var(--accent);
  stroke: none;
}

@keyframes coin-flip {
  0%, 40%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.1); }
  60% { transform: scaleX(1); }
}

/* 実績を確認できる：右肩上がりの線が描かれる */
.trust-icon-track .track-line,
.trust-icon-track .track-arrow {
  stroke: var(--accent);
  stroke-dasharray: 32;
  animation: track-draw 3s ease-in-out infinite;
}
.trust-icon-track .track-arrow {
  stroke-dasharray: 12;
  animation-name: track-draw-arrow;
}

@keyframes track-draw {
  0% { stroke-dashoffset: 32; opacity: 0; }
  15% { opacity: 1; }
  60%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes track-draw-arrow {
  0%, 45% { stroke-dashoffset: 12; opacity: 0; }
  60% { opacity: 1; }
  60%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* 問い合わせが簡単：封筒が軽く揺れて通知が点滅する */
.trust-icon-contact .envelope {
  stroke: var(--accent);
  transform-origin: center;
  transform-box: fill-box;
  animation: envelope-wiggle 2.6s ease-in-out infinite;
}

@keyframes envelope-wiggle {
  0%, 60%, 100% { transform: rotate(0deg); }
  65% { transform: rotate(-6deg); }
  75% { transform: rotate(5deg); }
  85% { transform: rotate(0deg); }
}

.trust-icon-contact .envelope-dot {
  fill: var(--accent-coral);
  stroke: none;
  transform-origin: center;
  transform-box: fill-box;
  animation: dot-pulse 2.6s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 55% { transform: scale(1); opacity: 1; }
  65% { transform: scale(1.3); opacity: 0.7; }
  75% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-icon-compare .bar,
  .trust-icon-price .coin,
  .trust-icon-track .track-line,
  .trust-icon-track .track-arrow,
  .trust-icon-contact .envelope,
  .trust-icon-contact .envelope-dot {
    animation: none;
  }
}

/* 利用の流れ */

.step-section {
  background: var(--bg-gray);
  border-radius: 8px;
  padding: 32px 24px;
}

.step-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-item {
  text-align: center;
  padding: 8px 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--main);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.step-item h3 {
  font-size: 16px;
  color: var(--main);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  max-width: 260px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
}

.step-arrow svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(90deg);
  animation: step-arrow-nudge-vertical 1.6s ease-in-out infinite;
}

@keyframes step-arrow-nudge-vertical {
  0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
  50% { transform: rotate(90deg) translateX(8px); opacity: 1; }
}

@media (min-width: 720px) {
  .step-flow {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .step-item {
    flex: 1 1 0;
    max-width: 240px;
  }

  .step-arrow {
    padding-top: 14px;
  }

  .step-arrow svg {
    transform: rotate(0deg);
    animation-name: step-arrow-nudge;
  }

  @keyframes step-arrow-nudge {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(8px); opacity: 1; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-arrow svg {
    animation: none;
  }

  .step-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* お客様の声 */

.testimonial-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(63, 154, 174, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(63, 154, 174, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: none;
  }
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: var(--main);
}

.testimonial-rating .star {
  /* 白いカードの上の星。淡いハイライト色では見えないため、アクセントカラーにする */
  color: var(--accent-coral);
  font-size: 16px;
}

.testimonial-quote {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.testimonial-tag {
  align-self: flex-start;
}

/* ジャンルページの在籍出演者紹介（写真つきの簡易カード。個別プロフィールページへのリンク） */

.performer-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .performer-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.performer-mini-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-gray);
  text-align: center;
  transition: box-shadow 0.15s ease;
}

.performer-mini-card:hover {
  box-shadow: 0 8px 20px rgba(63, 154, 174, 0.15);
}

.performer-mini-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.performer-mini-card-body {
  padding: 12px;
}

.performer-mini-card-name {
  font-weight: 700;
  color: var(--main);
  margin: 0 0 4px;
}

.performer-mini-card-catchphrase {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* 出演者向けCTA */

.performer-cta {
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-light) 100%);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
}

.performer-cta h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 10px;
}

.performer-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 20px;
}

/* 詳細ページ下部のCTA。トップページのお問い合わせバンドと同じく、
   「電話」と「お問い合わせフォーム」の2つの導線を横並びで置く。 */
.performer-cta-sub {
  color: #fff;
  font-weight: 700;
}

.performer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 760px;
  margin: 24px auto 0;
}

.performer-cta-action {
  width: calc(50% - 10px);
}

.performer-cta-action-sub {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto 10px;
}

.performer-cta-tel {
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 14px 10px 12px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.performer-cta-action .button {
  display: block;
  width: 100%;
  padding: 16px 10px;
  font-size: 16px;
}

.performer-cta-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  margin: 8px auto 0;
}

@media (max-width: 640px) {
  .performer-cta-actions {
    flex-direction: column;
    gap: 24px;
  }

  .performer-cta-action {
    width: 100%;
  }
}

.button-gold {
  background: var(--highlight);
  color: var(--main-dark);
}

.button-gold:hover {
  background: #ffd18c;
}

/* バッジ */

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-genre {
  background: var(--main);
  color: #ffffff;
}

.badge-tag {
  background: var(--bg-gray);
  color: var(--main);
  border: 1px solid var(--border-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* 都道府県別 地域ページ（magician-area-◯◯.html） */

.area-about p {
  margin: 0 0 16px;
}

.area-city-heading {
  margin: 24px 0 12px;
  font-size: 16px;
}

/* 県リンクをバッジ風に並べたときのホバー */
a.badge-tag:hover {
  background: var(--main);
  color: #ffffff;
}

/* 「◯◯にできる演出」のスタイル紹介カード（data-genre-styles で流し込み） */
.genre-style-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .genre-style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.genre-style-card {
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
}

.genre-style-card-strength {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--main);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 3px 10px;
}

.genre-style-card-title {
  margin: 0 0 8px;
  font-size: 16px;
}

.genre-style-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.genre-style-more {
  margin: 16px 0 0;
  text-align: right;
}

/* アバタープレースホルダー */

.avatar-placeholder {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.performer-photo {
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%; /* 縦長ポートレート写真は顔が上寄りに来ることが多いため */
  flex-shrink: 0;
}

/* 出演者詳細ページ：動画/写真メディア表示 */

.performer-media-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-gray);
}

.performer-media-video {
  position: absolute;
  inset: 0;
}

.performer-media-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 動画と写真を切り替えて表示する場合、両方とも16:9のステージいっぱいに重ねて置き、
   is-activeが付いている方だけを表示する。 */
.performer-media-view {
  display: none;
  position: absolute;
  inset: 0;
}

.performer-media-view.is-active {
  display: block;
}

/* 写真ギャラリー：縦長・横長など元のサイズに関わらず、動画と同じ16:9の枠にそのまま収める。
   同じ写真をぼかして拡大したものを背景に敷くことで、余白（レターボックス）を自動生成する。 */
.performer-media-photos {
  position: absolute;
  inset: 0;
}

.performer-photo-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.performer-photo-frame.is-active {
  opacity: 1;
}

.performer-photo-frame-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(0.6);
  transform: scale(1.15);
}

.performer-photo-frame-fg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.performer-photo-nav-dots[hidden] {
  display: none;
}

/* 写真に重ねる半透明の前へ／次へボタン。写真の左右中央に浮かせて配置する。 */
.performer-photo-nav-overlay-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(63, 154, 174, 0.45);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease;
}

.performer-photo-nav-overlay-button:hover,
.performer-photo-nav-overlay-button:active {
  background: rgba(63, 154, 174, 0.7);
}

.performer-photo-nav-overlay-button-prev {
  left: 10px;
}

.performer-photo-nav-overlay-button-next {
  right: 10px;
}

.performer-photo-nav-overlay-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performer-photo-nav-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.performer-photo-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border-color);
  transition: width 0.25s ease, background 0.25s ease;
}

.performer-photo-nav-dot.is-active {
  width: 22px;
  background: var(--main);
}

.performer-media-toggle {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.performer-media-toggle-button {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-gray);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.performer-media-toggle-button.is-active {
  background: var(--main);
  border-color: var(--main);
  color: #ffffff;
}

/* フィルターバー（出演者一覧） */

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--main);
}

.filter-field[hidden] {
  display: none;
}

.filter-field select,
.filter-field input,
.filter-field button {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text-main);
}

/* 都道府県＋市区町村のグループ。市区町村欄が現れても横並びの他の項目を
   押し出さないよう、この枠の中で縦に積む（都道府県の下に市区町村が出る）。 */

.filter-field-region {
  gap: 12px;
}

/* 並び替え（おすすめ順）：フィルター条件ではないので、フィルター枠の外に
   小さく置く。他のフィルターより優先度が低いことが分かるようにしている。 */

.search-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.sort-control select {
  font-family: inherit;
  font-size: 13px;
  padding: 5px 8px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text-main);
}

.result-count {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* 予算のレンジスライダー（出演者一覧・シーンページ共通）。
   他のフィルター項目（select等）と同じ枠付きの箱に収めて、フィルターの一つだと分かりやすくする。
   ハンドルは塗りつぶし＋グリップ線で「つまんで動かせるもの」に見えるようにしている。 */

.budget-range-field {
  min-width: 220px;
}

.budget-range {
  padding: 12px 14px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #ffffff;
}

.budget-range-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--main);
  text-align: center;
  margin-bottom: 16px;
  transition: transform 0.15s ease;
}

/* スマホで指(親指)がハンドルの上にある金額表示に被って見えなくなるのを防ぐため、
   ドラッグ中（is-dragging）だけ金額表示を指の届かない上の位置へ持ち上げる。
   持ち上げている間は文字を大きくし、背景色付きのバッジにして、後ろの内容と
   ごちゃつかず読みやすくする（ドラッグ中にハイライト色になるハンドルと揃えた配色）。
   指を離すとtransition付きで元の位置・見た目に戻る。パソコンはマウス操作で指に隠れる
   問題がないため、このメディアクエリでスマホ幅の時だけ適用する。 */
@media (max-width: 639px) {
  .budget-range-value {
    /* border-radiusとwidth/marginは常にこの形にしておく（普段は背景が透明で、
       中身の文字幅ぴったりのブロックが中央に来るだけなので見た目は変わらない）。
       これをis-dragging専用の切り替えにすると、指を離した瞬間に角丸→四角、
       文字幅→全幅へ一瞬で戻ってしまい、まだフェード中のハイライト色背景が「四角い枠」として
       ぴかっと見えてしまう。常にこの形にしておけば、背景・文字サイズ・影だけが
       なめらかにフェードする。 */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 999px;
    transition: transform 0.15s ease, font-size 0.15s ease, padding 0.15s ease,
      background 0.15s ease, box-shadow 0.15s ease;
  }

  .budget-range.is-dragging .budget-range-value {
    transform: translateY(-34px);
    font-size: 18px;
    background: var(--highlight);
    color: var(--main-dark);
    padding: 6px 18px;
    box-shadow: 0 4px 12px rgba(63, 154, 174, 0.35);
  }
}

.budget-range-track {
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: var(--border-color);
  margin: 0 18px;
  touch-action: none;
}

.budget-range-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--main);
  border-radius: 2px;
}

.budget-range-handle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--main);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(63, 154, 174, 0.4), 0 0 0 1px var(--border-color);
  transform: translate(-50%, -50%);
  cursor: grab;
  touch-action: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* ハンドルの中の小さな2本線（グリップ）。「つまんでスライドできる」ことを見た目で伝える。 */
.budget-range-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(to right, #ffffff 2px, transparent 2px 5px, #ffffff 5px 7px, transparent 7px 10px, #ffffff 10px 12px, transparent 12px);
  background-size: 13px 10px;
}

.budget-range-handle:hover,
.budget-range-handle:focus-visible {
  background: var(--highlight);
  outline: none;
  transform: translate(-50%, -50%) scale(1.12);
}

.budget-range-handle.is-dragging {
  cursor: grabbing;
  background: var(--highlight);
  box-shadow: 0 3px 10px rgba(63, 154, 174, 0.45), 0 0 0 1px var(--border-color);
}

.budget-range-hint {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ジャンル紹介ページ（mc.htmlなど）：導入セクション
   スマホでは「見出し → 写真 → 説明文」の順に縦に並べる */

.genre-hero {
  background: var(--bg-gray);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.genre-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.genre-hero-heading {
  text-align: center;
}

.genre-hero-heading .badge-genre {
  margin-bottom: 12px;
}

.genre-hero-heading h1 {
  font-size: 28px;
  margin: 8px 0 0;
}

.genre-hero-text {
  text-align: center;
}

.genre-hero-text p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.genre-hero-media {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-white);
}

.genre-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* パソコンでは左に「見出し＋説明文」、右に写真の2カラム。
   上下の1fr（余白行）で、テキストを写真の高さに対して上下中央に置く */
@media (min-width: 860px) {
  .genre-hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: 1fr auto auto 1fr;
    column-gap: 24px;
    row-gap: 0;
  }

  .genre-hero-heading {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .genre-hero-heading h1 {
    margin-bottom: 12px;
  }

  .genre-hero-text {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
  }

  .genre-hero-text p {
    margin: 0;
  }

  .genre-hero-media {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
  }
}

/* マジシャンページ＆シーン別ページ：ファーストビュー
   パレットのオレンジ系（--highlight）を背景に、写真と
   おすすめポイントの白カードを並べる。他ジャンルページの .genre-hero とは独立。
   magician.htmlではスライドショー、magician-scene-*.htmlでは1枚写真（.magic-hero-photo）を使う */

.magic-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--highlight) 0%, #ffd591 100%);
  padding: 44px 0 52px;
  border-bottom: 1px solid var(--border-color);
}

/* 背景にうっすら見せる英字。飾りなので読み上げ対象外（aria-hidden） */
.magic-hero-watermark {
  position: absolute;
  top: 4px;
  left: 8px;
  font-size: clamp(80px, 13vw, 150px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  user-select: none;
}

/* 背景の飾り丸。サブカラーとアクセントカラーを薄く使う */
.magic-hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.magic-hero-circle-1 {
  width: 240px;
  height: 240px;
  background: var(--sub);
  opacity: 0.35;
  top: -70px;
  right: -70px;
}

.magic-hero-circle-2 {
  width: 170px;
  height: 170px;
  background: var(--accent-coral);
  opacity: 0.22;
  bottom: -60px;
  left: -50px;
}

/* スマホでは「見出し → 写真 → キャッチコピー・ポイント」の順に縦に並べる */
.magic-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.magic-hero-heading h1 {
  font-size: 38px;
  color: var(--text-main);
  letter-spacing: 0.06em;
  margin: 10px 0 0;
}

.magic-hero-catch {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--main-dark);
  margin: 0 0 22px;
}

.magic-hero-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.magic-hero-point {
  background: var(--bg-white);
  border-left: 4px solid var(--accent-coral);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.magic-hero-point-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.magic-hero-point p:last-child {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.magic-hero-cta {
  margin-top: 22px;
  text-align: center;
}

.magic-hero-cta-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--main-dark);
}

/* 写真スライドショー：img.is-active だけをフェードで表示する */

.magic-hero-media {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.magic-hero-slideshow {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.magic-hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.magic-hero-slideshow img.is-active {
  opacity: 1;
}

/* 写真の下の切り替えボタン（丸ドット）。script.jsが枚数分生成する */
.hero-slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.hero-slideshow-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.hero-slideshow-dot.is-active {
  background: var(--accent-coral);
}

/* シーン別ページ用：スライドショーの代わりに使う1枚写真 */

.magic-hero-photo {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.magic-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* シーン別ページはタイトルが長いので、h1をひとまわり小さくする */
.magic-hero--scene h1 {
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: 1.45;
}

/* パソコンでは左に「見出し＋テキスト」、右に写真の2カラム。
   写真はテキスト列と同じ高さまで伸ばし、写真を大きく見せる */
@media (min-width: 900px) {
  .magic-hero-inner {
    display: grid;
    grid-template-columns: 1fr 46%;
    grid-template-rows: auto 1fr;
    column-gap: 44px;
    row-gap: 0;
  }

  .magic-hero-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .magic-hero-heading h1 {
    margin-bottom: 12px;
  }

  .magic-hero-text {
    grid-column: 1;
    grid-row: 2;
  }

  .magic-hero-cta {
    text-align: left;
  }

  .magic-hero-media {
    grid-column: 2;
    grid-row: 1 / -1;
    max-width: 560px;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .magic-hero-slideshow,
  .magic-hero-photo {
    flex: 1;
    aspect-ratio: auto;
  }
}

/* ジャンル紹介ページ・エリア別ページ：パンくずリスト */

.breadcrumb {
  /* 左右の余白は .container の padding(20px) をそのまま使うため、上下だけ指定する。
     padding: 14px 0 と書くと左右0で上書きされ、スマホで左端に張り付いてしまう。 */
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--main);
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 6px;
  color: var(--border-color);
}

.breadcrumb-current {
  color: var(--main);
}

/* ジャンル紹介ページ：呼びたいシーンから選ぶ（このページで一番押してほしい導線） */

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* スマホでは1枚220px基準だと1列になり縦に長くなりすぎるため、2列固定にして
   スクロール量を抑える（パソコン側の並び・列数はauto-fillのまま変更しない）。 */
@media (max-width: 639px) {
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .occasion-card {
    padding: 16px 8px;
  }

  .occasion-card-icon {
    width: 48px;
    height: 48px;
  }

  .occasion-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .occasion-card-label {
    font-size: 13px;
  }

  .occasion-card-hint {
    font-size: 11px;
  }
}

.occasion-card {
  --accent: var(--main);
  --accent-tint: rgba(63, 154, 174, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 12px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-white);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.occasion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(63, 154, 174, 0.1);
  border-color: var(--accent);
}

.occasion-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-tint);
}

.occasion-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.occasion-card-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--main);
  line-height: 1.3;
}

.occasion-card-hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

/* エリアから探す：デフォルメ日本地図。
   viewBoxで描いているので、横幅に合わせて全体（ブロック・文字）が自動で拡大縮小する。
   パソコンでは大きくなりすぎないようmax-widthで抑え、スマホでは画面幅いっぱいに広がる。 */

.japan-map-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.japan-map {
  display: block;
  width: 100%;
  height: auto;
}

.japan-map .map-region rect {
  transition: filter 0.15s ease;
}

.japan-map .map-region text {
  fill: #fff;
  font-size: 18px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

.japan-map .map-region:hover rect,
.japan-map .map-region:focus rect {
  filter: brightness(1.12);
}

.japan-map .map-region:focus {
  outline: none;
}

.japan-map .map-region:focus-visible rect {
  stroke: var(--accent-coral);
  stroke-width: 3;
}

.map-color-1 rect { fill: var(--main-light); }
.map-color-2 rect { fill: var(--main); }
.map-color-3 rect { fill: var(--sub-dark); }

/* スマホでは地図全体が縮むぶん、文字だけ少し大きくして読みやすさを保つ */
@media (max-width: 639px) {
  .japan-map .map-region text {
    font-size: 21px;
  }
}

/* 呼びたいシーンから選ぶ：写真カード版。
   写真全体がボタンで、写真下部の暗い帯（グラデーション）の上にシーン名を重ねる。 */

.scene-photo-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  /* 写真が用意できていない・読み込めないときの下地色（帯と文字はそのまま見える） */
  background: linear-gradient(135deg, var(--main), var(--sub-dark));
  box-shadow: 0 2px 8px rgba(20, 40, 46, 0.1);
  /* transform/opacityのtransitionは.reveal-on-scrollのふわっとした表示に使うため、
     ここでは上書きしない（上書きすると出現アニメがカクッと切り替わってしまう）。
     ホバー時の演出は写真の拡大と影のみ。 */
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
}

.scene-photo-card:hover {
  box-shadow: 0 10px 24px rgba(20, 40, 46, 0.18);
}

.scene-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.scene-photo-card:hover img {
  transform: scale(1.05);
}

.scene-photo-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 30px 14px 12px;
  background: linear-gradient(
    to top,
    rgba(20, 40, 46, 0.95),
    rgba(20, 40, 46, 0.6) 55%,
    rgba(20, 40, 46, 0)
  );
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.scene-photo-hint {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .scene-photo-label {
    padding: 22px 10px 9px;
    font-size: 13px;
  }

  .scene-photo-hint {
    font-size: 11px;
  }
}

.occasion-card-2 { --accent: var(--main); --accent-tint: rgba(91, 175, 194, 0.12); }
.occasion-card-3 { --accent: var(--sub-dark); --accent-tint: rgba(121, 201, 197, 0.14); }
.occasion-card-4 { --accent: var(--accent-coral); --accent-tint: rgba(249, 110, 91, 0.14); }
.occasion-card-5 { --accent: var(--main); --accent-tint: rgba(91, 175, 194, 0.12); }
.occasion-card-6 { --accent: var(--main); --accent-tint: rgba(63, 154, 174, 0.1); }
.occasion-card-7 { --accent: var(--sub-dark); --accent-tint: rgba(121, 201, 197, 0.14); }
.occasion-card-8 { --accent: var(--main); --accent-tint: rgba(91, 175, 194, 0.12); }

.genre-more-link {
  text-align: center;
  margin-top: 24px;
}

/* ジャンル別よくある質問 */

.genre-faq {
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 28px;
}

.genre-faq-group + .genre-faq-group {
  margin-top: 24px;
}

.genre-faq-group h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--sub-dark);
  margin-bottom: 10px;
}

.genre-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.genre-faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 4px 16px;
}

.genre-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  font-weight: 700;
  color: var(--main);
  cursor: pointer;
  list-style: none;
}

.genre-faq-item summary::-webkit-details-marker {
  display: none;
}

.genre-faq-item summary::before {
  content: "Q";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-right: 4px;
}

.genre-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  color: var(--sub-dark);
  transition: transform 0.15s ease;
}

.genre-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.genre-faq-item p {
  margin: 0 0 16px 30px;
  color: var(--text-muted);
  font-size: 14px;
}

/* シーン別ランディングページ（scene.html）：見出し＋地域検索欄をまとめたクリーム色のブロック。
   GigSaladの「イベント種類を選ぶ」ヒーローを参考に、シーンから検索までを一つの塊に見せている。 */

.scene-hero {
  background: var(--highlight);
  padding: 40px 0;
  text-align: center;
}

.scene-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scene-hero-inner h1 {
  /* クリーム色の背景に負けないよう、濃いめのメイン色にする */
  color: var(--main-dark);
}

/* パソコンでは折り返さず、スマホでのみ.scene-heading-breakの位置で改行する。
   このmax-widthのメディアクエリは、他のメディアクエリより後ろ（ファイルの下の方）に
   置くこと。CSSは詳細度が同じ場合、後に書かれた方が勝つため、上に置くとスマホ判定でも
   このdisplay:noneの方が優先されてしまい、改行が効かなくなる。 */
.scene-heading-break {
  display: none;
}

@media (max-width: 639px) {
  .scene-heading-break {
    display: inline;
  }
}

.scene-hero-inner p {
  color: var(--main-dark);
  max-width: 640px;
  margin: 0 auto 24px;
}

.scene-hero-inner .filter-bar {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

/* 地域オートコンプリート（都道府県のひらがな入力・候補選択） */

.region-autocomplete {
  position: relative;
  width: 100%;
  flex: 1;
  min-width: 0;
}

.region-autocomplete input {
  width: 100%;
}

/* 地図タップのみで選ぶ地域欄（トップページ・scene.html）：ネイティブのtext inputではなく
   ボタンにすることで、スマホでのキーボード表示やフォーカス時のズーム・スクロールを避けている。 */

.region-autocomplete button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.region-autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(63, 154, 174, 0.12);
  max-height: 240px;
  overflow-y: auto;
}

.region-autocomplete-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-main);
  cursor: pointer;
}

.region-autocomplete-item:hover,
.region-autocomplete-item.is-active {
  background: var(--bg-gray);
  color: var(--main);
}

.region-autocomplete-empty {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* トップページのエリア選択：地方ブロック→都道府県で選ぶ簡易マップパネル */

.region-map-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  width: 320px;
  max-width: 90vw;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(63, 154, 174, 0.12);
}

.region-map-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    ".       .      hokkaido hokkaido"
    ".       .      tohoku   tohoku"
    ".       chubu  kanto    kanto"
    "chugoku kinki  kinki    ."
    "kyushu  shikoku .       .";
  gap: 6px;
}

.region-map-block {
  grid-area: auto;
  padding: 10px 6px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-gray);
  color: var(--main);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
}

.region-map-block:hover {
  /* 淡いティールの上に白文字は読めないので、文字は濃い色のままにする */
  background: var(--sub);
  border-color: var(--sub);
  color: var(--text-main);
}

.region-map-back {
  border: none;
  background: none;
  padding: 4px 0 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  touch-action: manipulation;
}

.region-map-back:hover {
  color: var(--main);
}

.region-map-prefectures {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-map-prefecture {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-gray);
  color: var(--text-main);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  touch-action: manipulation;
}

.region-map-prefecture:hover {
  /* 淡いティールの上に白文字は読めないので、文字は濃い色のままにする */
  background: var(--sub);
  border-color: var(--sub);
  color: var(--text-main);
}

/* 出演者を探すページの地域検索：都道府県の下の「あ〜わ行」インデックス */

.region-map-gyou {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-gray);
  color: var(--main);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
}

.region-map-gyou:hover {
  /* 淡いティールの上に白文字は読めないので、文字は濃い色のままにする */
  background: var(--sub);
  border-color: var(--sub);
  color: var(--text-main);
}

/* 行を選んだ後の市区町村一覧：件数が多い都道府県でもパネル内でスクロールできるようにする */

.region-map-cities {
  max-height: 240px;
  overflow-y: auto;
}

/* シーン別ランディングページ：都道府県ディレクトリ */

.region-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 24px;
}

/* スマホでは1列にして、地方ブロックごとの都道府県の数が違っても
   ガタガタに見えないようにする。 */
@media (max-width: 639px) {
  .region-directory-grid {
    grid-template-columns: 1fr;
  }
}

.region-directory-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--sub-dark);
  margin-bottom: 10px;
}

.region-directory-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.region-directory-block a {
  color: var(--text-muted);
}

.region-directory-block a:hover {
  color: var(--sub-dark);
}

/* 出演者カードグリッド */

.performer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.performer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-white);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.performer-card:hover {
  box-shadow: 0 8px 20px rgba(63, 154, 174, 0.12);
  transform: translateY(-2px);
}

.performer-card-link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 1;
}

.performer-card-photo {
  position: relative;
  width: 38%;
  flex-shrink: 0;
  background: var(--bg-gray);
}

.performer-card-photo-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.performer-card-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.performer-card-genre-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
}

.performer-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.performer-card-name {
  font-size: 18px;
  margin: 0;
}

.performer-card-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 2px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.performer-card-catchphrase {
  color: var(--text-muted);
  font-size: 14px;
  margin: 6px 0 0;
}

.performer-card-cta {
  display: block;
  margin: 12px 16px 16px;
  text-align: center;
  font-size: 14px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* 出演者詳細ページ */

.performer-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}

.performer-media {
  display: flex;
  flex-direction: column;
}

.performer-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: var(--bg-gray);
  border-radius: 8px;
  text-align: center;
}

.performer-summary h1 {
  font-size: 22px;
  margin: 4px 0;
}

.performer-summary-facts {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

.performer-summary-catchphrase {
  font-size: 15px;
  font-weight: 700;
  color: var(--main);
  margin: 8px 0 4px;
}

/* 写真の右横に置くプロフィール文（magician-01.htmlなどで使用）。 */
.performer-summary-profile {
  margin: 8px 0 4px;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.performer-summary-cta {
  margin-top: 8px;
  text-align: center;
}

.performer-favorite-toggle {
  margin-top: 4px;
  width: 100%;
}

.performer-favorite-toggle.is-active {
  background: var(--highlight);
  border-color: var(--highlight);
  color: var(--main-dark);
}

/* 動画もgalleryの写真も無い出演者向けの、プロフィール写真だけのフォールバック欄。
   スマホ（performer-detail-layoutが縦積みになる960px未満）では欄自体を出さない。
   パソコンでは今まで通り表示する（画面が広く、プロフィール写真で埋めても違和感が出にくいため）。 */
@media (max-width: 959px) {
  .performer-media--fallback-only {
    display: none;
  }
}

/* パソコンでは「写真：左3割／プロフィール：右7割」の横並びにする。
   写真は縮小するだけでトリミングはしない。 */
@media (min-width: 960px) {
  .performer-detail-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .performer-media {
    flex: 3;
    justify-content: flex-start;
  }

  .performer-summary {
    flex: 7;
    align-items: flex-start;
    text-align: left;
  }
}

.performer-detail-section {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

/* 出演者個別プロフィールページ（magician-01.htmlなど）。.performer-media-stage（16:9の枠）の
   中に、動画のiframeか単体の写真をそのまま敷き詰める。カルーセルではなく静的な表示のみ。 */
.performer-media-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* HTMLファイルを直接開いたとき（file://）だけJSが差し込む、動画の代替表示。
   YouTubeの仕様でローカルでは埋め込み再生できないため、サムネイル＋リンクにする。 */
.performer-media-fallback {
  position: absolute;
  inset: 0;
  display: block;
}

.performer-media-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performer-media-fallback span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* プロフィールページ最上部の写真欄。動画枠(.performer-media-stage)と違い、
   16:9などの比率に固定せず、元画像の縦横比のままトリミングせず表示する。 */
.performer-profile-frame {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-gray);
}

.performer-profile-photo {
  display: block;
  width: 100%;
  height: auto;
}

/* スマホでは縦長のプロフィール写真が画面を占領しないよう、
   高さを抑えて顔まわり（上寄り）を中心にトリミングする */
@media (max-width: 767px) {
  .performer-profile-photo {
    max-height: 320px;
    object-fit: cover;
    object-position: center 25%;
  }
}

/* 写真ギャラリー。正方形にトリミングせず、元の縦横比のまま表示する。
   通常はJS（initPerformerGalleryScroll）が自動スライドに変換するので、
   このグリッド表示はJSが無効なときのフォールバック。 */
.performer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: start;
}

.performer-gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .performer-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 自動スライド版ギャラリー（JSで.performer-gallery-grid--sliderが付く）。
   写真の高さをそろえて横一列に並べ、右から左へ流し続ける。 */
.performer-gallery-grid--slider {
  display: block;
  overflow: hidden;
}

.performer-gallery-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: performer-gallery-scroll 24s linear infinite;
}

.performer-gallery-track img {
  width: auto;
  height: 270px;
  flex-shrink: 0;
}

/* トラックは同じ写真セット2つで構成されているので、
   ちょうど半分（+gapの半分）動かすと切れ目なくループする */
@keyframes performer-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

@media (max-width: 639px) {
  .performer-gallery-track img {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .performer-gallery-track {
    animation: none;
  }
}

/* シーン別ページの実例写真ギャラリー。元の縦横比を保ったまま並べる（トリミングしない）。
   マソンリー（段組み）にすることで、縦長・横長が混在してもレイアウトが崩れない。 */
.scene-photo-grid {
  column-count: 2;
  column-gap: 10px;
}

.scene-photo-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 8px;
  break-inside: avoid;
}

@media (min-width: 720px) {
  .scene-photo-grid {
    column-count: 3;
    column-gap: 14px;
  }

  .scene-photo-grid img {
    margin-bottom: 14px;
  }
}

/* 実例写真の自動スライド版（JSで.scene-photo-grid--sliderが付く）。
   PCは横一列で右から左へ。スマホで写真が3枚以上のときはトラックが2本になり、
   上段は右から左・下段は左から右（.scene-photo-track--reverse）へ流す。 */
.scene-photo-grid--slider {
  column-count: auto;
  display: block;
  overflow: hidden;
}

.scene-photo-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scene-photo-scroll 24s linear infinite;
}

.scene-photo-track + .scene-photo-track {
  margin-top: 10px;
}

.scene-photo-track img {
  width: auto;
  height: 240px;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* 逆方向（左から右）は同じキーフレームを逆再生する */
.scene-photo-track--reverse {
  animation-direction: reverse;
}

/* トラックは同じ写真セット2つで構成されているので、
   ちょうど半分（+gapの半分）動かすと切れ目なくループする */
@keyframes scene-photo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@media (max-width: 719px) {
  .scene-photo-track img {
    height: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-photo-track {
    animation: none;
  }
}

/* シーン別ページの「こんな進行イメージ」など、説明文に写真を添える横並びレイアウト。
   画像はトリミングせず、元の縦横比のまま表示する。 */
.scene-image-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.scene-image-text img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.scene-image-text p {
  margin: 0;
}

@media (min-width: 720px) {
  .scene-image-text {
    flex-direction: row;
    align-items: flex-start;
  }

  .scene-image-text img {
    /* 左半分を写真、右半分を文章にする（gap分を差し引いてちょうど半々に） */
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .scene-image-text p {
    flex: 1;
  }
}

.performer-detail-bottom-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

/* スマホ用の追従CTAバー。パソコン（960px以上）ではプロフィール欄自体が画面に
   sticky表示されるため不要。表示/非表示はscript.js側でスクロール量を見て切り替える。 */
.performer-mobile-sticky-cta {
  display: none;
}

@media (max-width: 959px) {
  .performer-mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.25s ease;
  }

  .performer-mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }

  .performer-mobile-sticky-cta .button {
    display: block;
    width: 100%;
  }
}

/* 作業までの流れ */

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-steps li {
  display: flex;
  gap: 16px;
}

.process-step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--main);
  color: #ffffff;
  font-weight: 700;
}

.process-step-body h3 {
  margin: 4px 0 4px;
  font-size: 16px;
}

.process-step-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* キャンセルポリシー */

.cancellation-table-wrap {
  overflow-x: auto;
}

.cancellation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cancellation-table th,
.cancellation-table td {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.cancellation-table th {
  background: var(--bg-gray);
  color: var(--main);
}

.cancellation-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* 比較リストページ */

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.compare-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.compare-item-body {
  min-width: 0;
}

.compare-item-name {
  margin: 6px 0 4px;
  font-size: 17px;
  color: var(--main);
}

.compare-item-catchphrase {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compare-item-remove {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.compare-item-remove:hover {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
}

.performer-not-found {
  text-align: center;
  padding: 80px 20px;
}

/* 送信完了ページ */

.thanks-section {
  text-align: center;
  padding: 80px 20px;
}

.thanks-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 12px auto 28px;
}

.performer-not-found a {
  color: var(--main);
  font-weight: 700;
  text-decoration: underline;
}

/* フォーム（問い合わせ） */

.form-note {
  color: var(--text-muted);
  font-size: 14px;
}

/* プライバシーポリシーなどの箇条書きリスト */
.policy-list {
  margin: 16px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--main);
  margin-bottom: 16px;
}

form .required {
  color: var(--accent-coral);
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
}

form .badge-public,
form .badge-private {
  margin-left: 6px;
  vertical-align: middle;
}

.badge-public {
  background: rgba(255, 226, 175, 0.4);
  color: var(--main-dark);
  border: 1px solid var(--highlight);
}

.badge-private {
  background: var(--bg-gray);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.form-field-hint {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 20px;
}

.form-section-divider::before,
.form-section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.form-section-divider-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

/* 登録内容の変更ページ（update.html）：項目ごとに「変更する」チェックを入れると
   入力欄が現れる仕組み。 */

.change-field {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.change-field-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--main);
  margin-bottom: 0;
}

.change-field-toggle input[type="checkbox"] {
  width: auto;
  margin-top: 0;
}

.change-field-content {
  margin-top: 12px;
}

.change-field-content[hidden] {
  display: none;
}

.change-field-content label {
  margin-bottom: 0;
}

.apply-privacy-notice {
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.apply-privacy-notice-title {
  font-weight: 700;
  color: var(--main);
  margin: 0 0 10px;
}

.apply-privacy-notice ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.apply-privacy-notice li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.apply-privacy-notice li:last-child {
  margin-bottom: 0;
}

/* 登録削除フォーム（update.html）：変更依頼とは別の、取り消しがきかない操作であることが
   ひと目でわかるよう、赤系の縁取りで他のフォームと区別する。 */
.danger-zone {
  border: 1px solid var(--accent-coral);
  border-radius: 10px;
  padding: 24px 20px;
  background: rgba(249, 110, 91, 0.05);
}

.danger-zone h2 {
  color: var(--accent-coral);
  margin-top: 0;
}

.danger-zone > p {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

form input,
form select,
form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 6px;
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-main);
}

form textarea {
  resize: vertical;
}

/* iOS Safariでは日付inputが独自の見た目で描画され、width: 100%を無視して
   横にはみ出すことがあるため、標準の見た目を無効化して他の入力欄と揃える。
   タップすればOS標準の日付ピッカーがそのまま開く。 */
form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff;
  min-height: 44px;
  text-align: left;
}

form input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* 予算欄など、入力欄のすぐ後ろに「万円」のような単位を添えるためのレイアウト */
.input-with-unit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-with-unit input {
  flex: 1;
  margin-top: 6px;
}

.input-unit {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-main);
  white-space: nowrap;
}

.region-picker-trigger {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
}

.region-picker-trigger--error {
  border-color: var(--accent-coral);
}

.apply-service-area-nationwide {
  margin-bottom: 12px;
}

.apply-service-area-prefectures[hidden] {
  display: none;
}

.apply-service-area-block {
  margin-bottom: 14px;
}

.apply-service-area-block-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.apply-service-area-checks {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 4px;
}

.apply-service-area-checks .form-checkbox-option {
  margin-bottom: 0;
  flex: 0 0 auto;
}

/* スマホでは、都道府県名の長さによって1行に入る数がバラバラにならないよう、
   4つ並んだら必ず改行するグリッドにする。 */
@media (max-width: 639px) {
  .apply-service-area-checks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
    row-gap: 10px;
  }

  .apply-service-area-checks .form-checkbox-option {
    margin-bottom: 0;
  }
}

/* 出演者詳細ページの問い合わせフォーム：1問ずつ進むウィザード */

.wizard-progress {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
}

.wizard-progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.wizard-progress-ring-track,
.wizard-progress-ring-bar {
  fill: none;
  stroke-width: 6;
}

.wizard-progress-ring-track {
  stroke: var(--border-color);
}

.wizard-progress-ring-bar {
  stroke: var(--main);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}

.wizard-progress-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--main);
}

.wizard-step[hidden] {
  display: none;
}

.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.wizard-nav .wizard-back,
.wizard-nav .wizard-forward {
  flex: 1;
}

.wizard-nav .wizard-back[hidden] {
  display: none;
}

.form-checkbox-group {
  margin-bottom: 16px;
}

.form-checkbox-group[hidden] {
  display: none;
}

.form-checkbox-group-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--main);
  margin-bottom: 8px;
}

.form-checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-checkbox-option input[type="checkbox"] {
  width: auto;
  display: inline-block;
  margin-top: 0;
}

/* レスポンシブ: タブレット以上 */

@media (min-width: 640px) {
  .genre-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .filter-bar > .filter-field {
    flex: 1 1 160px;
  }

  .hero-gallery {
    height: 320px;
  }

  .hero-gallery-track {
    animation-duration: 24s;
  }
}

/* レスポンシブ: デスクトップ以上 */

@media (min-width: 960px) {
  .genre-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .performer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-headline {
    font-size: 38px;
  }

  .hero-highlight {
    font-size: 44px;
  }

  .hero-headline-sub {
    margin-top: 6px;
  }
}

/* コラム一覧ページ */

.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.column-card {
  --accent: var(--main);
  display: block;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(63, 154, 174, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.column-card:nth-child(4n+2) { --accent: var(--main-light); }
.column-card:nth-child(4n+3) { --accent: var(--accent-coral); }
.column-card:nth-child(4n+4) { --accent: var(--sub); }

.column-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(63, 154, 174, 0.12);
}

.column-card-link {
  display: block;
}

.column-card-meta {
  color: var(--text-muted);
  font-size: 13px;
  margin: 12px 0 0;
}

.column-card-title {
  font-size: 18px;
  margin: 10px 0 8px;
  color: var(--main);
}

.column-card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* コラム記事ページ */

.column-article {
  max-width: 720px;
  margin: 0 auto;
}

.column-article-meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.column-article-lead {
  margin: 16px 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--highlight);
  border-radius: 0 8px 8px 0;
  background: var(--bg-gray);
  color: var(--text-main);
  font-size: 16px;
}

/* ヒーローの「呼べる」と同じ、伸びるアンダーラインのハイライト */
.column-highlight {
  position: relative;
  display: inline-block;
  color: var(--sub-dark);
}

.column-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 3px;
  /* 白背景の上ではクリーム色の線が見えないため、サブカラーの線にする */
  background: var(--sub);
  border-radius: 2px;
  animation: hero-underline-grow 1s ease-out 0.3s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .column-highlight::after {
    animation: none;
    width: 100%;
  }
}

.column-article h2 {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  font-size: 22px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--main), var(--highlight), var(--accent-coral), var(--sub)) 1;
}

.column-article figure {
  margin: 28px 0;
}

.column-article figure img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.column-article figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.column-article h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
}

.column-article p {
  margin: 12px 0;
  line-height: 1.8;
}

.column-article ul,
.column-article ol {
  margin: 12px 0;
  padding-left: 1.4em;
}

.column-article li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.column-checklist {
  counter-reset: column-checklist;
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.column-checklist li {
  --accent: var(--main);
  position: relative;
  padding: 14px 16px 14px 52px;
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-gray);
}

.column-checklist li:nth-child(4n+2) { --accent: var(--main); }
.column-checklist li:nth-child(4n+3) { --accent: var(--accent-coral); }
.column-checklist li:nth-child(4n+4) { --accent: var(--sub-dark); }

.column-checklist li::before {
  counter-increment: column-checklist;
  content: counter(column-checklist);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-checklist h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.column-checklist p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.column-faq-item {
  margin-bottom: 20px;
}

.column-article .column-faq-q,
.column-article .column-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.column-article .column-faq-q {
  margin-bottom: 6px;
  font-size: 16px;
}

.column-article .column-faq-a {
  color: var(--text-muted);
}

.column-faq-label {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  /* Qの丸。淡いティールの上に白文字は読めないため、濃いめのティールに白文字にする */
  background: var(--sub-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.column-faq-label-a {
  background: var(--main);
}

/* コラム記事内の料金表など */

.column-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.column-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.column-table th,
.column-table td {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
  line-height: 1.6;
}

.column-table th {
  background: var(--bg-gray);
  color: var(--main);
}

.column-cta-box {
  margin-top: 32px;
  padding: 24px;
  border-radius: 8px;
  background: var(--bg-gray);
  border-top: 4px solid var(--main);
  text-align: center;
}

/* 記事CTAボックス内の電話案内 */
.column-cta-tel {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.column-cta-tel a {
  font-weight: 700;
  font-size: 16px;
}

/* お問い合わせページ上部の電話案内 */
.contact-tel-box {
  margin: 20px 0 28px;
  padding: 18px 24px;
  border-radius: 8px;
  background: var(--bg-gray);
  text-align: center;
}

.contact-tel-box .contact-tel-label {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.contact-tel-box .contact-tel-num {
  margin: 0 0 4px;
}

.contact-tel-box .contact-tel-num a {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}

/* コラム記事末尾の執筆者ボックス */
.column-author {
  margin-top: 32px;
  padding: 18px 24px;
  border-left: 4px solid var(--main);
  background: var(--bg-gray);
  border-radius: 0 8px 8px 0;
}

.column-author-name {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.column-author-bio {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* コラム記事末尾の関連ページリンク */
.column-related {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 8px;
  background: var(--bg-gray);
}

.column-related h2 {
  font-size: 17px;
  margin: 0 0 12px;
}

.column-related ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.column-cta-box p {
  margin: 0 0 16px;
}

.column-cta-box .button {
  margin: 0 6px;
}

/* 出演実績一覧ページ（works.html） */

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.works-card {
  --accent: var(--main);
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(63, 154, 174, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.works-card:nth-child(4n+2) { --accent: var(--main-light); }
.works-card:nth-child(4n+3) { --accent: var(--accent-coral); }
.works-card:nth-child(4n+4) { --accent: var(--sub); }

.works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(63, 154, 174, 0.12);
}

.works-card-link {
  display: block;
}

.works-card-img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-gray);
}

.works-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-card-body {
  /* spanのままだと左右paddingが中のブロック要素に効かないので、必ずblockにする */
  display: block;
  padding: 20px 24px 26px;
}

.works-card-title {
  font-size: 17px;
  margin: 10px 0 8px;
  color: var(--main);
}

.works-card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.works-card-meta {
  color: var(--text-muted);
  font-size: 13px;
  margin: 12px 0 0;
}

/* 出演実績 記事ページの開催概要ボックス */

.works-overview {
  list-style: none;
  margin: 20px 0;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--main);
  border-radius: 8px;
  background: var(--bg-gray);
}

.column-article .works-overview {
  padding-left: 20px;
}

.works-overview li {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  line-height: 1.6;
}

.works-overview li:last-child {
  border-bottom: none;
}

.works-overview-label {
  flex-shrink: 0;
  width: 6.5em;
  font-weight: 700;
  color: var(--sub-dark);
  font-size: 14px;
}

/* 運営者紹介カード（about.html） */

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  margin-top: 20px;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.founder-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--main);
  margin: 0;
}

.founder-role {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.founder-bio {
  margin: 12px 0 0;
  color: var(--text-main);
}

.founder-photo-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .founder-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-page .founder-card,
  .about-page .founder-card p {
    text-align: left;
  }
}

/* 運営会社概要（about.html） */

.company-info {
  margin: 24px 0 0;
}

.company-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.company-info-row dt {
  font-size: 13px;
  color: var(--text-muted);
}

.company-info-row dd {
  margin: 0;
  color: var(--text-main);
}

@media (min-width: 720px) {
  .company-info-row {
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
  }

  .company-info-row dt {
    flex: 0 0 220px;
  }

  .company-info-row dd {
    flex: 1;
  }
}

/* about.html: ページ全体を中央揃えに */

.about-page .page-heading,
.about-page p {
  text-align: center;
}

.about-page p {
  line-height: 1.9;
  margin: 0 0 1.1em;
}

.about-page p:last-child {
  margin-bottom: 0;
}

/* about.html: 見出し直下の背景（ハイライトカラーの薄いクリーム色） */

.about-hero {
  background: #fff1da;
}

/* about.html: セクションの背景を交互に変えて単調さを避ける */

.about-tint {
  background: var(--bg-gray);
  border-radius: 16px;
}

/* about.html: 最後のCTA */

.about-final-cta h2 {
  margin-bottom: 8px;
}

p.about-final-cta-secondary {
  margin-top: 14px;
  font-size: 14px;
}

.about-final-cta-secondary a {
  color: var(--text-muted);
  text-decoration: underline;
}

.about-final-cta-secondary a:hover {
  color: var(--sub-dark);
}

.button-large {
  padding: 16px 32px;
  font-size: 17px;
}

/* よくあるご質問（faq-list / faq-item） */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 18px 20px;
  background: var(--bg-gray);
  border-radius: 8px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--main);
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   トップページ専用デザイン（tp-プレフィックス）
   イベントパートナー（event-partners.net）のデザイン言語を参考に、
   実測値（円のサイズ・余白・配色）を再現している。
   配色はサイト共通のブランドカラー4色（:root の --main / --sub /
   --accent-coral / --highlight）を使う。tp-専用の色は増やさないこと。
   グレーのみtp-専用: 薄いオフホワイト #faf7f2 / グレー #f1eee7
   英字見出し: Oswald 173px（ゴースト文字）/ 数字: Roboto Condensed
   ============================================================ */

.tp-body { overflow-x: hidden; }

.tp {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, sans-serif;
  color: #000;
}

.tp-wcm {
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.tp-pc { display: inline; }
.tp-sp { display: none; }

/* --- セクション見出し（巨大ゴースト英字＋日本語） --- */
.tp-ttl {
  position: relative;
}

.tp-ttl-en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 173px;
  line-height: 1;
  letter-spacing: 0;
  color: #faf7f2;
  margin-left: -51px;
  white-space: nowrap;
}

.tp-ttl-jp {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin: 0;
}

/* 見出しの頭に置くオレンジの四角。青が多い画面のアクセントとして全セクション共通で付ける */
.tp-ttl-jp::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--accent-coral);
  margin-right: 14px;
}

/* --- 黒丸ボタン（白い円＋矢印つき） --- */
.tp-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 323px;
  height: 58px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  border-radius: 5px;
  background: var(--main);
  text-align: center;
  letter-spacing: 0.75px;
  padding: 2px 48px 0;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s;
}

.tp-btn:hover { opacity: 0.7; color: #fff; }

.tp-btn::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 27px;
}

.tp-btn::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--main);
  border-right: 2px solid var(--main);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 35px;
}

/* 一番押してほしいボタン。特に強調したいCTAなのでアクセントカラー（コーラル）を使う。
   丸は白、丸の中の矢印はボタンの地色（コーラル）で抜く。 */
.tp-btn--highlight { background: var(--accent-coral); color: #fff; }
.tp-btn--highlight:hover { color: #fff; }
.tp-btn--highlight::before { background: #fff; }
.tp-btn--highlight::after { border-color: var(--accent-coral); }

.tp-btn-center { display: flex; justify-content: center; margin-top: 40px; }

/* --- スライダー矢印（メインカラーの丸） --- */
.tp-slider-nav {
  position: absolute;
  right: 20px;
  bottom: 0;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.tp-slider-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--main);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.tp-slider-btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 50%;
}

.tp-slider-btn--next::after { transform: translate(-70%, -50%) rotate(45deg); }
.tp-slider-btn--prev::after { transform: translate(-30%, -50%) rotate(-135deg); }
.tp-slider-btn:hover { opacity: 0.6; }

.tp-slider-nav--labeled .tp-slider-btn { background: none; }
.tp-slider-nav--labeled .tp-slider-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #000;
}
.tp-slider-nav--labeled .tp-slider-btn { width: 44px; height: 62px; }
.tp-slider-nav--labeled .tp-slider-btn::after { top: 20px; }
.tp-slider-nav--labeled .tp-slider-btn span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

/* ============================================================
   メインビジュアル
   横に流れ続ける出演者写真のループスライダー＋縦書きキャッチコピー帯。
   写真サイズ・帯の位置・登場アニメーションの比率は
   参考サイト（FUDGE KiU特集）の実測値に合わせている。
   写真の縦横比 576:854 / PC: 4枚横並び / SP: 約1.3枚表示
   .show はページ表示後にJS（initTopHeroIntro）が付与する。
   ============================================================ */
.tp-hero {
  background: var(--accent-coral);
  color: #ffffff;
  padding-bottom: 50px;
  overflow: clip;
}

.tp-hero-imgwrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tp-hero-slider {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* 5枚で1セット。コピーを右隣に置き、-100%流して無限ループ */
.tp-hero-slide {
  position: relative;
  width: 135.2459%;
}

.tp-hero-imgs {
  display: flex;
  width: 100%;
}

.tp-hero-imgs img {
  display: block;
  /* 写真の幅＋間隔＝20%（5枚で100%）。写真同士の余白は狭めに保つ */
  width: 19.3624%;
  /* HTMLのheight属性を打ち消す（高さはaspect-ratioで決める） */
  height: auto;
  margin-right: 0.6376%;
  aspect-ratio: 576 / 854;
  object-fit: cover;
  object-position: top center;
  border-radius: 5px;
  clip-path: inset(0 0 100% 0);
}

.tp-hero-imgs--copy {
  position: absolute;
  top: 0;
  left: 100%;
}

@keyframes tp-hero-marquee {
  0% { translate: 0 0; }
  to { translate: -100% 0; }
}

/* 縦書きキャッチコピーの帯（ヒーローの背景色と同じ色で写真の上に重ねる） */
.tp-hero-tagline {
  position: absolute;
  top: 0;
  margin-left: 74.2259%;
  width: 6.6485%;
  max-width: 73px;
  height: 100%;
  background: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
}

.tp-hero-tagline span {
  writing-mode: vertical-rl;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  /* 縦書きは詰まって見えるので文字間は広めにとる */
  letter-spacing: 0.38em;
  color: #ffffff;
}

/* 大きなキャッチコピー：写真のすぐ下に置く。
   以前は写真に重ねていたが、右端の縦書き帯（わくわくを）と文字が被るため、
   写真の下に出して被らないようにしている。 */
.tp-hero-hgroup {
  position: relative;
  z-index: 2;
  /* 写真の下端に実績バッジの下半分（約33px）が重なるので、被らないよう広めにとる */
  margin-top: 72px;
  padding: 0 20px;
  text-align: center;
}

.tp-hero-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.4;
  /* 900だと文字が潰れて読みにくいので、少し細めの600にしている */
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  opacity: 0;
  translate: 0 10px;
}

/* 2行目「ぴったりの出演者をご提案。」の下線。
   タイトル表示後に左からしゅっと伸びる（.show 付与で発火） */
.tp-hero-title-em {
  position: relative;
  display: inline-block;
}

.tp-hero-title-em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: 100%;
  height: 0.12em;
  border-radius: 999px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: left;
}

/* 見出し・リード文の中で目立たせたい語句。色は本文と同じ白のまま、太さだけで目立たせる */
.tp-hero-mark {
  color: #ffffff;
  font-weight: 700;
}

/* リード文の「目的」「人数」「予算」を1つずつ枠で囲うタグ */
.tp-hero-tag {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 10px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.6;
}

.tp-hero-lead {
  margin: 24px 0 0;
  padding: 0 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  opacity: 0;
  translate: 0 10px;
}

/* リード文の下のお問い合わせボタン */
.tp-hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 0 20px;
  opacity: 0;
  translate: 0 10px;
}

/* 実績バッジ：白い枠線で囲んだ2つの実績（お客様評価・累計手配実績）。
   スライドショーの下端をまたぐように置くため、
   wrapを高さ0にして中身を上下中央揃えにする＝写真の下端がバッジの真ん中に来る */
.tp-hero-stats-wrap {
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.tp-hero-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: fit-content;
  padding: 10px 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  /* 写真とコーラル背景にまたがるので、半透明ではなく塗りつぶしにする。
     色はサイトのハイライト色（クリーム）。淡い背景なので文字は濃い色にする */
  background: var(--highlight);
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  translate: 0 10px;
}

.tp-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 24px;
}

/* 実績バッジをリンク（works.htmlへの根拠導線）にしても見た目が変わらないように */
a.tp-hero-stat {
  color: inherit;
  text-decoration: none;
}

/* 2つの実績の間に薄い仕切り線を入れる */
.tp-hero-stat + .tp-hero-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.tp-hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tp-hero-stat-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* 星は黄色で目立たせる（クリーム背景に沈まないよう少し濃いめの金色） */
.tp-hero-stat-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.tp-hero-stat-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-coral);
}

.tp-hero-stat-num small {
  font-size: 12px;
  font-weight: 700;
  margin-left: 2px;
}

/* ヒーロー背景がコーラルなので、ヒーロー内のCTAだけ白反転にして埋もれないようにする。
   丸はコーラル、丸の中の矢印は白で抜く。 */
.tp-hero-cta .tp-btn--highlight { background: #fff; color: var(--accent-coral); }
.tp-hero-cta .tp-btn--highlight:hover { color: var(--accent-coral); }
.tp-hero-cta .tp-btn--highlight::before { background: var(--accent-coral); }
.tp-hero-cta .tp-btn--highlight::after { border-color: #fff; }

/* 登場アニメーション（.show 付与後に発火） */
.tp-hero.show .tp-hero-tagline { clip-path: inset(0); transition: 1s ease 2s; }
.tp-hero.show .tp-hero-slide { animation: tp-hero-marquee 18.75s linear 0.5s infinite; }
.tp-hero.show .tp-hero-imgs img { clip-path: inset(0); transition: 1s ease 0.5s; }
.tp-hero.show .tp-hero-imgs img:nth-child(2) { transition-delay: 0.8s; }
.tp-hero.show .tp-hero-imgs img:nth-child(3) { transition-delay: 1.1s; }
.tp-hero.show .tp-hero-imgs img:nth-child(4) { transition-delay: 1.4s; }
.tp-hero.show .tp-hero-imgs img:nth-child(5) { transition-delay: 1.7s; }
.tp-hero.show .tp-hero-imgs--copy img { transition-delay: 2s; }
.tp-hero.show .tp-hero-title { opacity: 1; translate: 0 0; transition: 0.7s ease 1s; }
/* タイトルの登場（1s開始＋0.7s）が終わって1秒おいてから下線を伸ばす */
.tp-hero.show .tp-hero-title-em::after { transform: scaleX(1); transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.7s; }
.tp-hero.show .tp-hero-lead { opacity: 1; translate: 0 0; transition: 1s ease 2s; }
.tp-hero.show .tp-hero-cta { opacity: 1; translate: 0 0; transition: 1s ease 2.3s; }
.tp-hero.show .tp-hero-stats { opacity: 1; translate: 0 0; transition: 1s ease 2.6s; }

/* スマホ：写真を大きく1.3枚見せ、帯は右寄り・文字下寄せ */
@media (max-width: 979px) {
  .tp-hero { padding-bottom: 36px; }
  /* 写真1枚≒画面幅の61.5%（以前より20%縮小）。写真間の余白は約2.53vwのまま維持 */
  .tp-hero-slide { width: 320.3988%; }
  .tp-hero-imgs img { width: 19.2094%; margin-right: 0.7906%; }
  .tp-hero-tagline {
    margin-left: 81.3333%;
    width: 12.1333%;
    max-width: none;
  }
  .tp-hero-tagline span { font-size: 15px; letter-spacing: 0.3em; }
  /* 写真の下端に実績バッジの下半分（約28px）が重なるぶん広めにとる */
  .tp-hero-hgroup { margin-top: 56px; }
  .tp-hero-title { font-size: 6.2vw; letter-spacing: 0.02em; }
  .tp-hero-lead { margin-top: 18px; font-size: 16px; line-height: 1.9; }
  .tp-hero-cta { margin-top: 20px; }
  .tp-hero-stats { padding: 8px 2px; }
  .tp-hero-stat { padding: 0 14px; }
  .tp-hero-stat-label { font-size: 10px; }
  .tp-hero-stat-stars { font-size: 13px; }
  .tp-hero-stat-num { font-size: 21px; }
  .tp-hero-stat-num small { font-size: 11px; }
}

/* ============================================================
   イントロ下：パフォーマンス中の写真が流れる帯
   高さはヒーローの写真（約460px）の半分強くらいに抑えている。
   同じ写真を2セット並べて-50%動かすことで、途切れずにループさせている。
   ============================================================ */
.tp-scenestrip {
  overflow: hidden;
  margin-bottom: 80px;
}

.tp-scenestrip-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: tp-scenestrip-scroll 45s linear infinite;
}

.tp-scenestrip img {
  flex: none;
  height: 300px;
  width: auto;
  display: block;
  object-fit: cover;
}

@keyframes tp-scenestrip-scroll {
  from { transform: translateX(0); }
  /* 2セット並べているので、半分ぶん動かすと1セット目と同じ見た目に戻る */
  to { transform: translateX(calc(-50% - 4px)); }
}

/* 動きを減らす設定にしている人には流さない */
@media (prefers-reduced-motion: reduce) {
  .tp-scenestrip-track { animation: none; }
}

/* ============================================================
   イントロ
   ============================================================ */
.tp-intro {
  padding: 60px 0 96px;
}

.tp-intro-ttl {
  font-size: 28px;
  line-height: 1.71;
  letter-spacing: 0.05em;
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px;
}

.tp-intro-ttl span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 51px;
  font-weight: 700;
  color: var(--accent-coral);
  position: relative;
  top: 4px;
  margin: 0 5px;
  letter-spacing: 0;
}

/* イントロ見出し末尾の「キャストン」をテキストではなくロゴ画像で見せる */
.tp-intro-logo {
  display: block;
  width: 240px;
  max-width: 70%;
  height: auto;
  margin: -8px auto 0;
}

.tp-intro-txt {
  font-size: 15px;
  line-height: 2.13;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
}

/* ============================================================
   ジャンルから探す（色面カードの横スライダー）
   ============================================================ */
.tp-genre {
  margin-bottom: 129px;
}

.tp-genre .tp-wcm {
  position: relative;
  padding-bottom: 8px;
}

.tp-genre .tp-ttl {
  margin-bottom: 20px;
}

/* ジャンル一覧下の「準備中でも相談可」の注記 */
.tp-genre-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.tp-genre-lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.025em;
  margin: 0;
}

/* パソコンでは3列×2段で6ジャンルがちょうど収まる。矢印ボタンは使わない。 */
.tp-genre-slider-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.tp-genre-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-genre-card {
  display: block;
  position: relative; /* 準備中バッジの配置基準 */
  height: 100%;
  border-radius: 10px;
  padding: 30px 0 26px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

/* 準備中のジャンルに表示するバッジ（カード右上に重ねる） */
.tp-genre-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background: #fff;
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.tp-genre-card:hover { opacity: 0.85; }

/* カードはメインカラーとサブカラーを交互に並べて、ブルー系で統一する。
   淡いサブカラーの上に白文字は読めないので、サブ側は濃い文字にする */
.tp-genre-card--main { background: var(--main); color: #fff; }
.tp-genre-card--sub { background: var(--sub); color: var(--text-main); }

.tp-genre-card-img {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.tp-genre-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-genre-card-en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.025em;
}

.tp-genre-card-jp {
  display: block;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 12px;
}

.tp-genre-card-txt {
  display: block;
  font-size: 14px;
  line-height: 1.57;
  padding: 0 32px;
}

/* ============================================================
   選ばれる理由（メインカラーの背景＋巨大な白い円）
   ============================================================ */
.tp-reason {
  background: var(--main);
  padding: 60px 0 10px;
  position: relative;
  overflow: hidden;
}

.tp-reason .tp-wcm { position: relative; }

.tp-reason-ghost .tp-ttl-en {
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -22px;
  left: -51px;
  margin-left: 0;
}

.tp-reason-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  margin: 90px 0 0;
}

.tp-reason-heading span {
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 50px;
}

.tp-reason-heading span::before,
.tp-reason-heading span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: calc(100% - 12px);
  border-radius: 3px;
  background: #fff;
  top: 10px;
}

.tp-reason-heading span::before { left: 0; transform: rotate(-28deg); }
.tp-reason-heading span::after { right: 0; transform: rotate(28deg); }

.tp-reason-title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 47px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 5px 0 80px;
}

.tp-reason-title em {
  font-style: normal;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 75px;
  color: var(--highlight);
  padding: 0 6px;
}

.tp-reason-lst {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-reason-lst > li {
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  margin-bottom: 84px;
}

/* 奇数番目は写真と本文の左右を入れ替えて、交互のリズムを作る */
.tp-reason-lst > li:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

/* 白い大きな四角 */
.tp-reason-inner {
  flex: 1;
  min-width: 0;
  padding: 64px 48px 44px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* ハイライトカラーのREASON番号。白い面の外側の角に引っ掛けて置く。
   淡いクリーム色の上なので、文字は濃いめのメインカラーにする。 */
.tp-reason-num {
  position: absolute;
  top: -26px;
  left: -22px;
  width: 116px;
  height: 116px;
  background: var(--highlight);
  color: var(--main-dark);
  border-radius: 8px;
  text-align: center;
  font-size: 46px;
  line-height: 1;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  padding-top: 26px;
  z-index: 2;
}

.tp-reason-num em {
  font-style: normal;
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

/* 左右を入れ替えた回は、番号も反対側の角に置く */
.tp-reason-lst > li:nth-child(2n + 1) .tp-reason-num {
  left: auto;
  right: -22px;
}

/* 四角い出演者写真 */
.tp-reason-char {
  flex: none;
  z-index: 1;
}

.tp-reason-char img {
  width: 330px;
  height: 440px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* 背景の色面デコレーション */
.tp-reason-deco {
  position: absolute;
  border-radius: 10px;
  z-index: 0;
}

.tp-reason-deco--highlight {
  width: 203px;
  height: 203px;
  background: var(--highlight);
  bottom: -60px;
  right: -70px;
}

.tp-reason-deco--sub {
  width: 260px;
  height: 260px;
  background: var(--sub);
  bottom: -80px;
  left: -90px;
}

.tp-reason-deco--main-light {
  width: 290px;
  height: 290px;
  background: var(--main-light);
  bottom: -90px;
  right: -100px;
}

.tp-reason-ttl {
  text-align: center;
  font-weight: 800;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 45px;
  width: 100%;
}

.tp-reason-ttl small {
  display: block;
  font-size: 20px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.tp-reason-ttl em.big {
  display: block;
  font-style: normal;
  font-size: 44px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.tp-reason-ttl em.big i {
  font-style: normal;
  font-size: 20px;
}

.tp-reason-text {
  max-width: 586px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tp-reason-ttl2 {
  text-align: center;
  margin: 0 0 20px;
}

.tp-reason-ttl2 em {
  display: inline-block;
  font-style: normal;
  padding: 0 30px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 600;
  position: relative;
}

.tp-reason-ttl2 em::before,
.tp-reason-ttl2 em::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 4px);
  border-radius: 3px;
  background: #000;
  top: -2px;
}

.tp-reason-ttl2 em::before { left: 0; transform: rotate(-36deg); }
.tp-reason-ttl2 em::after { right: 0; transform: rotate(35deg); }

/* お客様の声リスト（吹き出しアイコン＋点線） */
.tp-reason-note {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  width: 100%;
}

.tp-reason-note li {
  position: relative;
  padding: 0 0 12px 56px;
  margin-bottom: 18px;
  border-bottom: 2px dotted #d8d3c9;
  font-size: 18px;
  line-height: 1.72;
  letter-spacing: 0.025em;
  font-weight: 600;
  text-align: left;
}

.tp-reason-note li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 32px;
  height: 22px;
  background: var(--main);
  border-radius: 5px;
}

.tp-reason-note li::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 7px solid var(--main);
  border-right: 8px solid transparent;
}

.tp-reason-note li em {
  font-style: normal;
  color: var(--sub-dark);
}

.tp-reason-note--sub li { font-size: 16px; }
.tp-reason-note--sub li::before { background: var(--sub); }
.tp-reason-note--sub li::after { border-top-color: var(--sub); }

.tp-reason-note-txt {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}

.tp-reason-note-txt em {
  font-style: normal;
  color: var(--sub-dark);
  font-weight: bold;
}

.tp-reason-inner .tp-btn { margin-top: 10px; }

/* ============================================================
   お客様の声
   ============================================================ */
.tp-voice {
  padding: 62px 0 57px;
  position: relative;
  overflow: hidden;
}

.tp-voice::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 363px;
  bottom: 0;
  right: 0;
  background: #f1eee7;
}

.tp-voice-heading {
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 130px 0 20px;
  position: relative;
}

.tp-voice-heading .tp-ttl { width: 415px; flex: none; }

.tp-voice-heading .tp-ttl-en {
  color: #f1eee7;
  margin-left: 0;
  position: relative;
  left: 18px;
  top: -8px;
}

.tp-voice-heading .tp-ttl-jp {
  bottom: 18px;
  padding-left: 51px;
}

.tp-voice-lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
  padding-bottom: 11px;
}

.tp-voice-heading .tp-slider-nav { right: 20px; bottom: 11px; }

.tp-voice-cont {
  position: relative;
  margin-top: 40px;
}

/* 左端のカラフルな紙の束デコレーション */
.tp-voice-deco {
  position: absolute;
  left: -30px;
  bottom: 60px;
  width: 170px;
  height: 220px;
  z-index: 2;
}

.tp-voice-deco span {
  position: absolute;
  width: 120px;
  height: 170px;
  border-radius: 8px;
  left: 20px;
  top: 20px;
}

.tp-voice-deco span:nth-child(1) { background: var(--highlight); transform: rotate(-18deg); }
.tp-voice-deco span:nth-child(2) { background: var(--sub); transform: rotate(-9deg); }
.tp-voice-deco span:nth-child(3) { background: var(--main); transform: rotate(-2deg); }
.tp-voice-deco span:nth-child(4) { background: var(--main-light); transform: rotate(6deg); }

.tp-voice-slider {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 10px 40px 45px 190px;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}

.tp-voice-slider::-webkit-scrollbar { display: none; }

.tp-voice-card {
  flex: none;
  width: 350px;
  background: #fff;
  border: 2px solid var(--sub);
  border-radius: 4px;
  padding: 26px 28px 22px;
  display: flex;
  flex-direction: column;
}

.tp-voice-card-ttl {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  margin: 0 0 14px;
}

.tp-voice-ico {
  display: inline-block;
  vertical-align: -3px;
  width: 26px;
  height: 19px;
  background: var(--sub);
  border-radius: 4px;
  position: relative;
  margin-right: 10px;
}

.tp-voice-ico::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 100%;
  width: 0;
  height: 0;
  border-top: 6px solid var(--sub);
  border-right: 7px solid transparent;
}

.tp-voice-card-txt {
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 20px;
  flex: 1;
}

.tp-voice-card-info {
  border-top: 1px solid #e5e1d8;
  padding-top: 14px;
  margin: 0;
  font-size: 12px;
}

.tp-voice-card-info div { display: flex; margin-bottom: 4px; }
.tp-voice-card-info dt { font-weight: 800; margin-right: 8px; }
.tp-voice-card-info dt::after { content: "："; }
.tp-voice-card-info dd { margin: 0; }

/* ============================================================
   出演者紹介（青い大円）／ Q&A（グレーの大円）共通
   ============================================================ */
.tp-circleblock {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tp-circleblock-left {
  width: 45%;
  position: relative;
  z-index: 1;
}

.tp-circleblock-right {
  width: 55%;
  position: relative;
}

.tp-performer {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.tp-performer .tp-ttl { margin-bottom: 50px; }

.tp-circleblock-deco {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 12px;
  background: #f1eee7;
  top: -80px;
  right: -60px;
  z-index: 0;
}

/* 写真は縦長（YOURI・Sumikaの写真と同じ 2:3 の比率）に統一して表示する。
   横長の写真は object-fit: cover で縦長にトリミングされる */
.tp-bigcircle {
  width: fit-content;
  padding: 45px;
  border-radius: 14px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.tp-bigcircle--main { background: var(--main); }

.tp-bigcircle img {
  width: 313px;
  height: 470px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
}

.tp-performer-name {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.tp-performer-badge {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background: var(--sub);
  color: var(--text-main);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  letter-spacing: 0.05em;
}

.tp-performer-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.025em;
  margin: 14px 0 26px;
}

.tp-updown {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.tp-performer .tp-updown { right: auto; left: calc(100% + 60px); }

.tp-updown-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--main);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.tp-updown-btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 50%;
}

.tp-updown-btn--up::after { transform: translate(-50%, -30%) rotate(-45deg); }
.tp-updown-btn--down::after { transform: translate(-50%, -70%) rotate(135deg); }
.tp-updown-btn:hover { opacity: 0.6; }

/* --- Q&A --- */
.tp-qa {
  padding: 60px 0 90px;
  overflow: hidden;
}

.tp-qa .tp-ttl { margin-bottom: 30px; }

/* 質問の一覧：白い四角のボタンを並べる。押すと下のパネルに大きく表示される。
   6問なのでPCは3列×2行、スマホは2列×3行になる。 */
.tp-qa-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.tp-qa-q {
  background: #fff;
  border: 2px solid #e5e1d8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  color: inherit;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.tp-qa-q:hover { border-color: var(--main-light); }

/* 選択中の質問（サイトの基調色の青にする） */
.tp-qa-q.is-active {
  background: var(--main);
  border-color: var(--main);
  color: #fff;
}

.tp-qa-q span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--sub-dark);
}

.tp-qa-q.is-active span { color: #fff; }

/* 選ばれた質問と答えを大きく見せるパネル */
.tp-qa-panel {
  background: #faf7f2;
  border-radius: 12px;
  padding: 32px 40px 28px;
}

.tp-qa-active {
  background: var(--main);
  color: #fff;
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}

.tp-qa-active span {
  flex: none;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.tp-qa-active p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

.tp-qa-answer {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.025em;
  margin: 0 0 26px;
  padding: 0 4px;
}

.tp-qa-a {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: var(--sub-dark);
  float: left;
  line-height: 1.3;
  margin-right: 14px;
}

/* ============================================================
   コラム
   ============================================================ */
.tp-blog {
  margin: 40px 0 120px;
  /* 下の.tp-blog-lst::before（100vwの背景帯）が画面右にはみ出して
     ページ全体の横幅を広げてしまうのを、このセクションの中で刈り取る */
  overflow-x: clip;
}

.tp-blog .tp-ttl { margin-bottom: 20px; }

.tp-blog-lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.025em;
  margin: 0 0 42px;
  width: calc(100% - 160px);
}

.tp-blog-lst {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.tp-blog-lst::before {
  content: "";
  position: absolute;
  background: #f1eee7;
  top: 56px;
  bottom: -44px;
  left: 76px;
  width: 100vw;
  z-index: -1;
}

.tp-blog-lst > li { width: 25%; }

.tp-blog-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #000;
  height: 100%;
  transition: opacity 0.2s;
}

.tp-blog-card:hover { opacity: 0.8; color: #000; }

.tp-blog-card-img {
  display: block;
  height: 200px;
  overflow: hidden;
  background: #faf7f2;
}

.tp-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-blog-card-body {
  display: block;
  padding: 16px 20px 22px;
}

.tp-blog-tags { display: block; margin-bottom: 10px; }

.tp-blog-tag {
  display: inline-block;
  background: var(--sub);
  color: var(--text-main);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  margin: 0 6px 4px 0;
}

.tp-blog-card-ttl {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: 0.025em;
}

/* ============================================================
   こんな目的でよくご利用いただいています
   ============================================================ */
.tp-purpose {
  padding-top: 40px;
  margin-bottom: 100px;
}

.tp-purpose-ttl {
  text-align: center;
  margin: 0 0 40px;
}

.tp-purpose-ttl span {
  display: inline-block;
  font-size: 28px;
  line-height: 1.71;
  letter-spacing: 0.1em;
  font-weight: 800;
  position: relative;
  padding: 20px 50px;
}

.tp-purpose-ttl span::before,
.tp-purpose-ttl span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 12px);
  border-radius: 3px;
  background: var(--accent-coral);
  top: 10px;
}

.tp-purpose-ttl span::before { left: 0; transform: rotate(-28deg); }
.tp-purpose-ttl span::after { right: 0; transform: rotate(28deg); }

.tp-purpose-lst {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  list-style: none;
  margin: 0 -8px;
  padding: 0;
}

.tp-purpose-lst > li {
  width: 33.33%;
  padding: 0 8px;
  margin-bottom: 37px;
}

.tp-purpose-item {
  border: 2px solid #e5e1d8;
  border-radius: 8px;
  background: #faf7f2;
  padding: 0 29px 27px;
  height: 100%;
  text-align: center;
}

.tp-purpose-icon {
  width: 60px;
  height: 60px;
  margin: -30px auto 9px;
  background: var(--main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-purpose-icon svg { width: 28px; height: 28px; }

.tp-purpose-item-ttl {
  font-size: 18px;
  line-height: 2.33;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--main);
  margin: 0 0 5px;
}

.tp-purpose-item-txt {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ============================================================
   お問い合わせ（メインカラーのバンド）
   ============================================================ */
.tp-contact {
  background: var(--accent-coral);
  position: relative;
  overflow: hidden;
}

.tp-contact-inner {
  padding-top: 92px;
  padding-bottom: 52px;
  position: relative;
  text-align: center;
}

.tp-contact-ghost {
  position: absolute;
  top: 0;
  left: -22px;
  font-family: "Oswald", sans-serif;
  font-size: 173px;
  line-height: 148px;
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  pointer-events: none;
}

.tp-contact-sub {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.025em;
  margin: 0 0 15px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
}

/* 「ご予算の目安がわからない…」などのお悩みを白い吹き出しにして目立たせる */
.tp-contact-sub-chip {
  position: relative;
  display: inline-block;
  background: #fff;
  color: var(--accent-coral);
  font-size: 16px;
  line-height: 1;
  padding: 11px 20px 12px;
  border-radius: 999px;
}

.tp-contact-sub-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
}

/* 2つ目の吹き出し・締めの一言は少し遅れて表示して、順番に目に入るようにする */
.tp-contact-sub-chip.reveal-right { transition-delay: 0.15s; }
.tp-contact-sub .tp-contact-sub-close { transition-delay: 0.3s; }

.tp-contact-ttl {
  color: var(--highlight);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 20px;
  position: relative;
}

.tp-contact-ttl span { font-size: 49px; }
.tp-contact-ttl strong { font-size: 66px; font-weight: 800; }

/* ハイライトカラーの円バッジ（最短10分）。淡いクリーム色の上なので文字は濃い色にする。
   PCでは丸い吹き出しにして、しっぽを見出し（お任せください！）の方向＝左向きに付ける */
.tp-contact-badge {
  position: absolute;
  width: 190px;
  height: 190px;
  background: var(--highlight);
  border-radius: 50%;
  right: 12px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.1));
}

/* 吹き出しのしっぽ（左下向き・見出しの方向）。
   細長い三角にして付け根を円の内側に隠し、先端だけが円からのぞくようにする */
.tp-contact-badge::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 12px;
  transform: rotate(-42deg); /* マイナス＝反時計回りで先端を左下の外向きにする */
  border: 12px solid transparent;
  border-right: 34px solid var(--highlight);
  border-left: 0;
}

/* 画面幅が狭いと見出しと重なるので、バッジを見出しの下の通常の流れに置く
   （吹き出しのしっぽはPC配置のときだけ表示する） */
@media (max-width: 1140px) {
  .tp-contact-badge {
    position: static;
    margin: 16px auto 4px;
  }

  .tp-contact-badge::before { display: none; }
}

.tp-contact-badge p {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
}

/* スマホ専用の改行（PCでは非表示。スマホ側のメディアクエリで表示に切り替える） */
.tp-contact-badge br.sp-br { display: none; }

.tp-contact-badge strong {
  display: block;
  font-size: 26px;
  color: var(--main-dark);
  margin: 4px 0 2px;
}

.tp-contact-badge em {
  font-style: normal;
  display: block;
  margin-top: 3px;
  border-top: 1px solid #000;
  padding-top: 4px;
}

/* バッジは表示後もゆっくり上下に浮かせて、目に留まりやすくする。
   （reveal-popのフェードイン(約0.5s)が終わってから動き出すよう1s遅らせる） */
@keyframes tp-contact-badge-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.tp-contact-badge.is-visible {
  animation: tp-contact-badge-bob 2.8s ease-in-out 1s infinite;
}

.tp-contact-list {
  display: flex;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto;
  padding: 22px 10px 0;
  list-style: none;
}

.tp-contact-list > li { width: calc(50% - 10px); text-align: center; }

.tp-contact-list-sub {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.tp-contact-tel {
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 12px 10px 10px;
  text-decoration: none;
}

.tp-contact-tel-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.tp-contact-list .tp-btn {
  max-width: 100%;
  height: 64px;
  font-size: 17px;
}

/* オレンジのバンドの上ではコーラルのボタンが沈むので、白地＋コーラル文字にする */
.tp-contact .tp-btn--highlight { background: #fff; color: var(--accent-coral); }
.tp-contact .tp-btn--highlight:hover { color: var(--accent-coral); }
.tp-contact .tp-btn--highlight::before { background: var(--accent-coral); }
.tp-contact .tp-btn--highlight::after { border-color: #fff; }

/* 最後のCTAボタンは白い光の輪が広がる演出で「押せる・押してほしい」を伝える */
@keyframes tp-contact-btn-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
}

.tp-contact .tp-btn--highlight {
  animation: tp-contact-btn-glow 2.2s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .tp-contact-badge.is-visible,
  .tp-contact .tp-btn--highlight {
    animation: none;
  }
}

.tp-contact-note {
  color: #fff;
  font-size: 12px;
  margin: 10px 0 0;
}

/* ============================================================
   フッター上のクイックナビ／写真ストリップ
   ============================================================ */
.tp-footnav {
  background: #faf7f2;
  padding: 17px 0;
}

.tp-footnav-lst {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.tp-footnav-lst li { flex: 1; }

.tp-footnav-lst a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  padding: 8px 10px;
  border-left: 1px solid #ddd8ce;
}

.tp-footnav-lst li:last-child a { border-right: 1px solid #ddd8ce; }
.tp-footnav-lst a:hover { opacity: 0.6; color: #000; }

.tp-footnav-ico { display: inline-flex; width: 20px; height: 20px; }
.tp-footnav-ico svg { width: 100%; height: 100%; }

.tp-photostrip {
  display: flex;
}

.tp-photostrip img {
  width: 20%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   レスポンシブ（〜767px）
   ============================================================ */
@media (max-width: 767px) {
  .tp-pc { display: none; }
  .tp-sp { display: inline; }

  .tp-ttl-en {
    font-size: 74px;
    margin-left: -25px;
  }

  .tp-ttl-jp { font-size: 24px; bottom: 0; }
  .tp-ttl-jp::before { width: 10px; height: 10px; margin-right: 8px; }

  .tp-btn {
    max-width: 280px;
    height: 48px;
    font-size: 14px;
    /* 右側の丸矢印（right:27px・直径18px）と文字が被らないよう、左右48px空ける */
    padding: 0 48px;
  }

  /* メインビジュアル */
  .tp-hero-inner { height: 560px; }

  .tp-hero-bg {
    width: 722px;
    height: 722px;
    top: -250px;
    margin-left: -361px;
  }

  .tp-hero-text {
    top: 24px;
    width: 100%;
    padding: 0 27px 0;
    font-size: 22px;
    line-height: 1.6;
  }

  .tp-hero-arrow { display: none; }

  .tp-hero-photo--center {
    width: 240px;
    height: 240px;
    bottom: 60px;
    left: calc(50% - 120px);
  }

  .tp-hero-photo--left {
    width: 140px;
    height: 140px;
    bottom: 230px;
    left: calc(50% - 185px);
  }

  .tp-hero-photo--right {
    width: 140px;
    height: 140px;
    bottom: 245px;
    left: calc(50% + 45px);
  }

  .tp-hero-bubble {
    width: 130px;
    height: 130px;
    bottom: 0;
    left: -12px;
  }

  .tp-hero-bubble-name { font-size: 18px; }
  .tp-hero-bubble::before { right: 2px; top: 13px; }

  /* イントロ */
  .tp-intro { padding: 27px 0 60px; }
  .tp-intro-ttl { font-size: 21px; line-height: 1.62; }
  .tp-intro-ttl span { font-size: 40px; }
  .tp-intro-txt { text-align: left; line-height: 1.73; }

  /* ジャンル */
  .tp-genre { margin-bottom: 60px; }
  .tp-genre-lead { font-size: 15px; line-height: 1.73; }
  .tp-genre .tp-wcm { padding-bottom: 8px; }
  /* スマホは2列。上下の余白と写真を詰めて、マスが縦に長くなりすぎないようにする */
  .tp-genre-slider { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tp-genre-card { padding: 14px 8px 12px; }
  .tp-genre-card-img { width: 118px; height: 118px; margin-bottom: 8px; }
  .tp-genre-card-en { font-size: 10px; }
  .tp-genre-card-jp { font-size: 16px; margin-bottom: 4px; }
  .tp-genre-card-txt { font-size: 11px; line-height: 1.5; padding: 0 4px; }
  /* スマホは2列なので、PC用の交互クラス（main/sub/main/sub…）のままだと
     左列と右列がそれぞれ同じ色に揃ってしまう。
     4枚ごとに「main / sub / sub / main」の並びに上書きして市松模様にする */
  .tp-genre-slider li:nth-child(4n + 1) .tp-genre-card,
  .tp-genre-slider li:nth-child(4n + 4) .tp-genre-card { background: var(--main); color: #fff; }
  .tp-genre-slider li:nth-child(4n + 2) .tp-genre-card,
  .tp-genre-slider li:nth-child(4n + 3) .tp-genre-card { background: var(--sub); color: var(--text-main); }

  /* 選ばれる理由 */
  .tp-reason { padding-top: 40px; }
  .tp-reason-ghost .tp-ttl-en { top: -8px; left: -25px; }
  .tp-reason-heading { margin-top: 24px; }
  .tp-reason-heading span { font-size: 15px; padding: 8px 30px; }
  .tp-reason-title { font-size: 28px; margin-bottom: 60px; }
  .tp-reason-title em { font-size: 46px; }

  /* スマホでは写真を上、本文を下に縦積みする */
  .tp-reason-lst > li,
  .tp-reason-lst > li:nth-child(2n + 1) {
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
  }

  .tp-reason-inner {
    width: 100%;
    padding: 40px 24px 32px;
  }

  .tp-reason-num,
  .tp-reason-lst > li:nth-child(2n + 1) .tp-reason-num {
    width: 72px;
    height: 72px;
    font-size: 30px;
    padding-top: 15px;
    top: -14px;
    left: -8px;
    right: auto;
  }

  .tp-reason-num em { font-size: 12px; margin-bottom: 1px; }

  /* 縦積みの親がalign-items:centerのため、width:100%を指定しないと
     元画像が縦長の写真は幅が縮んで縦長のまま表示されてしまう */
  .tp-reason-char { order: -1; margin-bottom: 16px; width: 100%; }
  .tp-reason-char img { width: 100%; height: 240px; }
  /* REASON03のスマホ用写真（会場の様子）は上端寄せだと天井ばかり写るので、中央寄りで切り抜く */
  .tp-reason-lst > li:nth-child(3) .tp-reason-char img { object-position: center 60%; }

  .tp-reason-deco { display: none; }

  .tp-reason-ttl { margin-bottom: 24px; }
  .tp-reason-ttl small { font-size: 14px; line-height: 1.8; }
  .tp-reason-ttl em.big { font-size: 24px; }
  .tp-reason-ttl em.big i { font-size: 14px; }
  .tp-reason-ttl2 em { font-size: 15px; }
  .tp-reason-note li { font-size: 13px; padding-left: 40px; margin-bottom: 12px; }
  .tp-reason-note li::before { width: 24px; height: 17px; left: 4px; }
  .tp-reason-note li::after { left: 9px; top: 18px; }
  .tp-reason-note--sub li { font-size: 12px; }
  .tp-reason-note-txt { font-size: 13px; }

  /* お客様の声 */
  .tp-voice-heading { flex-wrap: wrap; padding-right: 20px; }
  .tp-voice-heading .tp-ttl { width: 100%; }
  .tp-voice-heading .tp-ttl-en { left: 0; }
  .tp-voice-heading .tp-ttl-jp { padding-left: 20px; bottom: 0; }
  /* BACK/NEXTボタン（高さ62px）を本文より下に置くため、リード文の下に余白を確保する */
  .tp-voice-lead { width: 100%; font-size: 14px; padding: 16px 0 72px; }
  .tp-voice-heading .tp-slider-nav { bottom: 0; }
  .tp-voice-deco { display: none; }
  .tp-voice-slider { padding: 10px 20px 40px; }
  .tp-voice-card { width: 300px; padding: 20px 22px 18px; }
  .tp-voice::before { height: 275px; }

  /* 出演者紹介 */
  .tp-performer { padding: 50px 0 30px; }
  .tp-performer .tp-circleblock { flex-direction: column; }
  .tp-circleblock-left,
  .tp-circleblock-right { width: 100%; }
  .tp-performer .tp-ttl { margin-bottom: 30px; }

  .tp-bigcircle {
    width: fit-content;
    padding: 25px;
    margin: 30px auto 0;
  }

  .tp-bigcircle img { width: 212px; height: 318px; }
  .tp-circleblock-deco { width: 180px; height: 180px; top: 0; right: -40px; }
  .tp-performer-name { font-size: 21px; }
  .tp-performer-badge { width: 52px; height: 52px; font-size: 9px; margin-right: 10px; }
  /* 切り替えボタンの位置・見た目はファイル末尾近くの「表示確認後の微調整」内で指定 */

  /* Q&A */
  .tp-qa { padding: 40px 0 60px; }
  .tp-qa-list { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
  .tp-qa-q { font-size: 12px; padding: 12px; }
  .tp-qa-q span { font-size: 16px; margin-bottom: 4px; }
  .tp-qa-panel { padding: 20px 16px 18px; }
  .tp-qa-active { padding: 16px 18px; gap: 10px; margin-bottom: 16px; }
  .tp-qa-active span { font-size: 20px; }
  .tp-qa-active p { font-size: 16px; }

  /* コラム：縦に長くなりすぎないよう、カードを2列×2段で並べる */
  .tp-blog { margin: 20px 0 70px; }
  .tp-blog-lead { width: 100%; font-size: 14px; margin-bottom: 26px; }
  .tp-blog-lst { flex-flow: row wrap; gap: 14px 10px; }
  .tp-blog-lst > li { width: calc(50% - 5px); }
  .tp-blog-lst::before { left: 30px; top: 60px; bottom: -24px; }
  .tp-blog-card-img { height: 110px; }
  .tp-blog-card-body { padding: 10px 12px 14px; }
  .tp-blog-tags { margin-bottom: 6px; }
  .tp-blog-tag { font-size: 10px; padding: 2px 7px; margin: 0 4px 3px 0; }
  .tp-blog-card-ttl { font-size: 13px; line-height: 1.55; }

  /* 目的 */
  .tp-purpose { margin-bottom: 60px; }
  .tp-purpose-ttl span { font-size: 18px; line-height: 1.67; padding: 10px 30px; }
  .tp-purpose-ttl span::before,
  .tp-purpose-ttl span::after { height: calc(100% - 30px); top: 19px; }
  .tp-purpose-lst { margin: 0 -6px; }
  .tp-purpose-lst > li { width: 50%; padding: 0 6px; margin-bottom: 26px; }
  .tp-purpose-item { padding: 0 12px 19px; }
  .tp-purpose-icon { width: 36px; height: 36px; margin: -18px auto 3px; }
  .tp-purpose-icon svg { width: 18px; height: 18px; }
  .tp-purpose-item-ttl { font-size: 14px; line-height: 2; margin-bottom: 2px; }
  .tp-purpose-item-txt { font-size: 12px; }

  /* お問い合わせ */
  .tp-contact-inner { padding: 48px 10px 40px; }
  .tp-contact-ghost { font-size: 74px; line-height: 56px; left: -2px; }
  .tp-contact-sub { font-size: 15px; padding: 0 10px; gap: 12px 6px; }
  /* スマホでも吹き出し2つを横一列（左・右）に収めるため、文字サイズを画面幅に合わせて縮める */
  .tp-contact-sub-chip { font-size: clamp(10px, 3.1vw, 13px); padding: 9px 8px 10px; white-space: nowrap; }
  /* 「そんな方にも！」だけを必ず次の行（吹き出しの下）に落とす */
  .tp-contact-sub-close { font-size: 17px; flex-basis: 100%; }
  .tp-contact-ttl span { font-size: 22px; }
  .tp-contact-ttl strong { font-size: 30px; }

  /* スマホでは正方形だと縦に場所を取るので、横長の帯にして文章を流し込む */
  .tp-contact-badge {
    position: static;
    margin: 18px auto 10px;
    width: min(360px, 100%);
    height: auto;
    border-radius: 12px;
    padding: 16px 20px;
  }

  /* スマホでは改行を消して流し込むが、「お待たせしません！」の後だけ改行する */
  .tp-contact-badge br { display: none; }
  .tp-contact-badge br.sp-br { display: inline; }
  .tp-contact-badge p { font-size: 15px; line-height: 1.7; }

  .tp-contact-badge strong {
    display: inline;
    font-size: 24px;
    margin: 0 2px;
  }

  .tp-contact-list { flex-direction: column; padding: 18px 10px 0; }
  .tp-contact-list > li { width: 100%; margin-bottom: 24px; }
  .tp-contact-tel-num { font-size: 30px; }

  /* フッターナビ・写真ストリップ */
  .tp-footnav-lst { flex-wrap: wrap; }
  .tp-footnav-lst li { flex: none; width: 50%; }
  .tp-footnav-lst a { font-size: 13px; padding: 8px 4px; border: none; }
  .tp-footnav-ico { width: 16px; height: 16px; }

  .tp-photostrip img { height: 90px; }
  .tp-scenestrip img { height: 176px; }
  .tp-scenestrip { margin-bottom: 50px; }
}

/* 表示確認後の微調整：見出し色をリファレンス同様の黒に固定し、
   出演者切り替えの矢印がブルーの円に隠れないようにする */
.tp-ttl-jp,
.tp-intro-ttl,
.tp-purpose-ttl span,
.tp-performer-name,
.tp-voice-card-ttl,
.tp-reason-heading span,
.tp-qa-active p {
  color: inherit;
}

.tp .tp-ttl-jp,
.tp .tp-intro-ttl,
.tp .tp-purpose-ttl span,
.tp .tp-performer-name {
  color: #000;
}

.tp-reason .tp-reason-heading span,
.tp-reason .tp-reason-title { color: #fff; }
.tp-qa-active p { color: #fff; }

.tp-performer .tp-circleblock-left { position: static; }

.tp-performer .tp-updown {
  left: auto;
  right: 20px;
  top: 50%;
}

/* スマホ：切り替えボタンを写真の左右の外側に置いて、左右で次の出演者に進めるようにする。
   写真の枠が青なので、ボタンは白地＋青矢印にして見やすくしている。
   位置の計算：写真の箱=横262px×縦368px（写真212×318＋枠25px×2）、
   セクション下余白30px → 箱の縦中央は下から214px、ボタン(44px)のbottomは192px。
   幅は写真の箱(262px)より広めにして、ボタンが写真に重ならないようにする
   （画面が狭いときは左右8pxずつ余白を残す） */
@media (max-width: 979px) {
  .tp-performer .tp-updown {
    position: absolute;
    top: auto;
    bottom: 192px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(370px, calc(100% - 16px));
    flex-direction: row;
    justify-content: space-between;
  }

  .tp-performer .tp-updown-btn {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .tp-performer .tp-updown-btn::after { border-color: var(--main); }
  /* 矢印を上下向きから左右向きに変える（prev=左、next=右） */
  .tp-performer .tp-updown-btn--up::after { transform: translate(-30%, -50%) rotate(-135deg); }
  .tp-performer .tp-updown-btn--down::after { transform: translate(-70%, -50%) rotate(45deg); }
}

/* お問い合わせ：見出しがバッジと重ならないように本家同様に幅を制限 */
.tp-contact-sub,
.tp-contact-ttl {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tp-contact-ttl span { font-size: 44px; }

@media (max-width: 767px) {
  .tp-contact-ttl span { font-size: 22px; }
}

/* ============================================================
   選ばれる理由ページ（reason.html）
   トップページのtp-スタイル（メインカラー背景・白い四角カードなど）を流用し、
   このページ固有の部分だけ rsn- プレフィックスで追加する。
   配色はサイト共通のブランドカラー4色のみ使う。
   ============================================================ */

/* --- ページタイトル（出演者紹介ページ performer.html、イベントの流れ flow.html でも共用） --- */
.rsn-hero,
.flw-hero {
  padding: 40px 0 10px;
  text-align: center;
}

.rsn-hero-en,
.flw-hero-en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--sub-dark);
}

.rsn-hero-ttl,
.flw-hero-ttl {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 8px 0 16px;
}

.rsn-hero-lead,
.flw-hero-lead {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

/* --- キャストンができること：四角い3枚のカード --- */
.rsn-services {
  padding: 34px 0 74px;
}

.rsn-services-lst {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0 0 52px;
  padding: 0;
}

.rsn-services-lst > li { flex: 1; min-width: 0; }

.rsn-service {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rsn-service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.rsn-service-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 14px 10px;
  margin: 0;
}

/* カードごとにブランドカラーを塗り分ける。
   淡いサブカラーの上に白文字は読めないので、サブ側だけ濃い文字にする */
.rsn-service--main { background: var(--main); }
.rsn-service--sub { background: var(--sub); }
.rsn-service--sub .rsn-service-label { color: var(--text-main); }
.rsn-service--accent { background: var(--accent-coral); }

/* ＼ ～ ／ のキャッチコピー（トップの見出しと同じあしらい） */
.rsn-catch {
  text-align: center;
  margin: 0 0 20px;
}

.rsn-catch span {
  display: inline-block;
  position: relative;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 10px 50px;
}

.rsn-catch span::before,
.rsn-catch span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: calc(100% - 12px);
  border-radius: 3px;
  background: #000;
  top: 10px;
}

.rsn-catch span::before { left: 0; transform: rotate(-28deg); }
.rsn-catch span::after { right: 0; transform: rotate(28deg); }

.rsn-catch em {
  font-style: normal;
  color: var(--sub-dark);
}

.rsn-catch-lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}

.rsn-catch-lead em {
  font-style: normal;
  font-weight: bold;
  color: var(--sub-dark);
}

/* --- メインカラー背景の中の白い大きなカード --- */
.rsn-reasons { padding-bottom: 40px; }

.rsn-card {
  background: #fff;
  border-radius: 14px;
  padding: 64px 48px 52px;
  margin-bottom: 96px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsn-card:last-child { margin-bottom: 70px; }

/* カード内の本文（テキスト＋四角い写真の2カラム） */
.rsn-detail {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 940px;
  margin: 0 auto 28px;
}

.rsn-detail-body { flex: 1; min-width: 0; }

.rsn-detail-ttl {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--sub);
  padding-bottom: 10px;
  margin: 0 0 20px;
}

.rsn-detail-body p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.025em;
  margin: 0 0 16px;
}

.rsn-detail-body p:last-child { margin-bottom: 0; }

.rsn-detail-body em {
  font-style: normal;
  font-weight: bold;
  color: var(--sub-dark);
}

/* 即座に返信する内容のリスト（四角いチップ） */
.rsn-quicklist {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.rsn-quicklist li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.rsn-quicklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--sub);
}

/* 四角い写真 */
.rsn-detail-photo { flex: none; width: 280px; }

.rsn-detail-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
}

@media (max-width: 767px) {
  .rsn-hero-ttl,
  .flw-hero-ttl { font-size: 26px; }
  .rsn-hero-lead,
  .flw-hero-lead { font-size: 13px; }

  .rsn-services { padding: 24px 0 54px; }
  .rsn-services-lst { flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .rsn-service img { aspect-ratio: 16 / 9; }
  .rsn-service-label { font-size: 14px; padding: 12px 10px; }

  .rsn-catch span { font-size: 16px; padding: 8px 22px; }
  .rsn-catch-lead { font-size: 13px; text-align: left; }

  .rsn-card { padding: 52px 18px 32px; margin-bottom: 64px; }
  .rsn-card:last-child { margin-bottom: 50px; }

  .rsn-detail { flex-direction: column; gap: 18px; margin-bottom: 20px; }
  .rsn-detail-ttl { font-size: 18px; }
  .rsn-detail-body p { font-size: 13px; }
  .rsn-quicklist li { font-size: 13px; }
  .rsn-detail-photo { width: 100%; order: -1; }
  .rsn-detail-photo img { height: 200px; }
  /* REASON03のスマホ用写真（会場の様子）は上端寄せだと天井ばかり写るので、中央寄りで切り抜く */
  .rsn-card:last-of-type .rsn-detail-photo img { object-position: center 60%; }
}

/* ============================================================
   出演者紹介ページ（performer.html）
   トップページのtp-スタイル（見出し・ジャンルカード・CTAバンドなど）を流用し、
   このページ固有の部分だけ pf- プレフィックスで追加する。
   配色はサイト共通のブランドカラー4色のみ使う。
   ============================================================ */

/* --- 在籍出演者：プロフィール写真の横スライダー --- */
.pf-performers {
  padding: 30px 0 90px;
}

.pf-performers-heading {
  position: relative;
}

.pf-lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}

/* 矢印ボタンはリード文の右端に置く（.tp-slider-nav の absolute 配置を利用） */
.pf-performers-heading .tp-slider-nav {
  bottom: 6px;
}

.pf-slider {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 30px 0 0;
  /* 左端はコンテンツ幅（1140px）に揃え、画面が狭い時は20pxの余白にする */
  padding: 10px max(20px, calc(50% - 550px)) 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pf-slider::-webkit-scrollbar { display: none; }

.pf-slider > li { flex: none; }

.pf-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100%;
  background: #fff;
  border: 2px solid var(--sub);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-main);
  transition: opacity 0.2s;
}

.pf-card:hover { opacity: 0.8; }

.pf-card-img {
  display: block;
  width: 100%;
  /* aspect-ratioだと中の写真の縦横比に引っ張られて高さが揃わないため、高さは固定にする */
  height: 370px;
  overflow: hidden;
  background: var(--bg-gray);
}

.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.pf-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 20px 20px;
}

.pf-card-badge {
  background: var(--main);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.pf-card-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pf-card-txt {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

/* 「プロフィールを見る」：tp-btnと同じ丸＋矢印のあしらいの小さいテキストリンク */
.pf-card-more {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: var(--sub-dark);
  padding-right: 26px;
}

.pf-card-more::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--main);
}

.pf-card-more::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* --- 出演者選定へのこだわり：3つのポイント --- */
.pf-points {
  padding: 0 0 90px;
}

.pf-points .tp-ttl {
  margin-bottom: 40px;
}

.pf-points-lst {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.pf-points-lst > li {
  flex: 1;
  min-width: 0;
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 28px 26px 26px;
}

.pf-point-num {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  line-height: 1;
  color: var(--sub-dark);
  margin-bottom: 14px;
}

.pf-point-num em {
  display: block;
  font-style: normal;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.pf-points-lst h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.pf-points-lst p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 767px) {
  .pf-performers { padding: 10px 0 60px; }
  .pf-lead { font-size: 14px; line-height: 1.8; }
  /* スマホでは矢印はリード文の下に出す（重なり防止） */
  .pf-performers-heading .tp-slider-nav {
    position: static;
    justify-content: flex-end;
    margin-top: 14px;
  }
  .pf-slider { gap: 14px; margin-top: 10px; }
  .pf-card { width: 240px; }
  .pf-card-img { height: 295px; }
  .pf-card-name { font-size: 17px; }

  .pf-points { padding-bottom: 60px; }
  .pf-points-lst { flex-direction: column; gap: 14px; }
  .pf-points-lst > li { padding: 22px 20px 20px; }
}

/* ============================================================
   イベントの流れページ（flow.html）専用スタイル（flw-プレフィックス）
   イベントパートナーの「サービスの流れ」ページを参考に、
   4つの四角いカードを左右交互に並べて流れを見せる。
   カードの角丸はトップページの四角カード（.rsn-card等）に合わせて14px。
   配色はブランドカラー4色（--highlight / --sub / --main / --accent-coral）。
   ページタイトルは .rsn-hero 系（.flw-hero）を共用している。
   ============================================================ */

.flw-flow {
  padding: 26px 0 70px;
}

.flw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flw-step {
  position: relative;
}

/* カード同士を縦に少し重ねて、対角線上に流れているように見せる */
.flw-step + .flw-step {
  margin-top: -60px;
}

.flw-card {
  position: relative;
  z-index: 1;
  width: min(520px, 46vw);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(44px, 5vw, 60px) clamp(28px, 4vw, 48px) clamp(36px, 4.5vw, 50px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* 偶数ステップは右寄せにして、左→右→左→右のジグザグにする */
.flw-step--02 .flw-card,
.flw-step--04 .flw-card {
  margin-left: auto;
}

.flw-step--01 .flw-card { background: var(--highlight); color: #000; }
.flw-step--02 .flw-card { background: var(--sub); color: #fff; }
.flw-step--03 .flw-card { background: var(--main); color: #fff; }
.flw-step--04 .flw-card { background: var(--accent-coral); color: #fff; }

/* カードの中の大きなゴースト数字 */
.flw-num {
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(70px, 9vw, 110px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* 黄色いカードだけは背景が明るいので、数字を少し強めの白にする */
.flw-step--01 .flw-num { color: rgba(255, 255, 255, 0.65); }

.flw-step-ttl {
  margin: 0;
  position: relative;
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.5;
  /* 共通スタイルの h2 { color: var(--main) } を打ち消して、円ごとの文字色に合わせる */
  color: inherit;
}

/* タイトル下の仕切り線 */
.flw-step-ttl::after {
  content: "";
  display: block;
  width: clamp(150px, 22vw, 230px);
  max-width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  margin: clamp(12px, 1.8vw, 20px) auto 0;
}

.flw-step-txt {
  margin: clamp(12px, 1.8vw, 20px) 0 0;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  line-height: 2;
}

.flw-step-note {
  margin: clamp(8px, 1.4vw, 16px) 0 0;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 800;
  color: var(--accent-coral);
}

/* STEP01の中のお問い合わせボタン */
.flw-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px clamp(14px, 2.4vw, 30px);
  border-radius: 6px;
  background: var(--accent-coral);
  color: #fff;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s;
}

.flw-btn:hover {
  opacity: 0.75;
  color: #fff;
}

/* カードのフチに重ねる四角い写真（STEP01・04） */
.flw-photo {
  position: absolute;
  width: clamp(110px, 14vw, 160px);
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.flw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flw-step--01 .flw-photo { top: -18px; left: 40%; }
.flw-step--04 .flw-photo { bottom: -18px; right: 40%; }

/* 写真の代わりに置く飾りの四角（STEP02・03） */
.flw-dot {
  position: absolute;
  border-radius: 10px;
  z-index: 0;
}

.flw-step--02 .flw-dot {
  width: clamp(70px, 9vw, 100px);
  aspect-ratio: 1;
  background: #f1eee7;
  top: -16px;
  right: 44%;
}

.flw-step--03 .flw-dot {
  width: clamp(56px, 7vw, 80px);
  aspect-ratio: 1;
  background: var(--highlight);
  bottom: -12px;
  left: 46%;
}

/* カードとカードをつなぐ手描き風の矢印 */
.flw-arrow {
  position: absolute;
  width: clamp(48px, 6.4vw, 74px);
  color: #111;
  z-index: 3;
}

.flw-arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 矢印は「遷移先」のliに入っているので、カードの少し上に置く */
.flw-step--02 .flw-arrow { top: -26px; left: 45%; }
.flw-step--03 .flw-arrow { top: -26px; right: 46%; transform: scaleX(-1); }
.flw-step--04 .flw-arrow { top: -40px; left: 45%; }

/* ステップの下の補足 */
.flw-note {
  margin: 44px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
}

.flw-note a {
  color: var(--main);
  font-weight: 700;
}

/* --- 選ばれる理由への導線 --- */
.flw-reason {
  background: #faf7f2;
  padding: 60px 0 64px;
  text-align: center;
}

.flw-reason-catch {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sub-dark);
}

.flw-reason-ttl {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.flw-reason .tp-btn-center {
  margin-top: 26px;
}

/* --- スマホ表示：カードを中央に縦並びにする --- */
@media (max-width: 767px) {
  .flw-flow { padding: 16px 0 50px; }

  .flw-step + .flw-step { margin-top: 26px; }

  .flw-card,
  .flw-step--02 .flw-card,
  .flw-step--04 .flw-card {
    width: min(100%, 400px);
    margin: 0 auto;
    padding: 38px 26px 32px;
  }

  .flw-num { font-size: 72px; top: 6px; left: 14px; }
  .flw-step-ttl { font-size: 20px; }
  .flw-step-ttl::after { width: 170px; margin-top: 12px; }
  .flw-step-txt { font-size: 13px; margin-top: 12px; }
  .flw-step-note { font-size: 13px; }
  .flw-btn { font-size: 12px; padding: 11px 18px; }

  .flw-photo,
  .flw-dot { display: none; }

  /* 矢印はカードの上（前のカードとの間）に置いて、下向きに流す */
  .flw-arrow,
  .flw-step--02 .flw-arrow,
  .flw-step--04 .flw-arrow {
    position: static;
    display: block;
    width: 44px;
    margin: -4px auto 12px;
    transform: rotate(18deg);
  }

  .flw-step--03 .flw-arrow {
    position: static;
    display: block;
    width: 44px;
    margin: -4px auto 12px;
    transform: scaleX(-1) rotate(18deg);
  }

  .flw-note { font-size: 12px; margin-top: 30px; text-align: left; }

  .flw-reason { padding: 44px 0 48px; }
  .flw-reason-catch { font-size: 12px; }
  .flw-reason-ttl { font-size: 20px; }
}
