/* =========================================================
 * HOSLOGI — Cinematic / Luxury / High-end
 * モバイルファースト設計（基準: ~430px / 拡張: 768px / 1080px）
 * ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* ベース: ミッドナイトブラック */
  --c-bg: #0b0b10;
  --c-bg-soft: #100e18;
  --c-surface: #16121f;
  --c-line: rgba(226, 79, 207, 0.20);

  /* アクセント: ネオンピンク／マゼンタ + シアン（旧gold変数を流用）*/
  --c-gold: #e24fcf;          /* 主役のネオンピンク */
  --c-gold-bright: #ff9bf2;   /* 明るいピンク（発光・ハイライト） */
  --c-cyan: #3fd8e6;          /* 差し色のシアンネオン */
  --c-purple: #6a2db0;
  --c-purple-glow: rgba(226, 79, 207, 0.5);

  --c-text: #f3eef7;
  --c-text-dim: #a49bb0;

  /* ゴシックベース（20〜30代向け・乃木坂のような和文ゴシック）
     display: 英字見出し用の幾何学ゴシック / sans: 和文ゴシック
     ※ --font-mincho は互換のため残しているが、中身はゴシックを指す */
  --font-display: "Montserrat", "Noto Sans JP", sans-serif;
  --font-mincho: "Noto Sans JP", sans-serif;
  --font-sans: "Noto Sans JP", sans-serif;

  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { width: 100%; max-width: 100%; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-weight: 400; /* ゴシックは細すぎると弱くなるため標準の太さに */
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- 汎用: ボタン ---------- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-mincho);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  border-radius: 2px;
  transition: all 0.5s var(--ease-luxe);
  cursor: pointer;
}
.btn-gold {
  color: #16120a;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-bright) 55%, var(--c-gold) 100%);
  background-size: 200% 200%;
  box-shadow: 0 6px 24px rgba(201, 164, 92, 0.35);
}
.btn-gold:hover {
  background-position: 100% 50%;
  box-shadow: 0 10px 36px rgba(232, 200, 126, 0.55);
  transform: translateY(-3px);
}
.btn-outline-gold {
  color: var(--c-gold-bright);
  border: 1px solid var(--c-gold);
  background: transparent;
  position: relative;
  overflow: hidden;
}
.btn-outline-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,164,92,0.25), rgba(91,45,142,0.25));
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxe);
}
.btn-outline-gold:hover {
  box-shadow: 0 0 28px rgba(201, 164, 92, 0.45);
  transform: translateY(-3px);
}
.btn-outline-gold:hover::after { opacity: 1; }

/* ---------- スクロールリビール ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  padding-top: max(16px, env(safe-area-inset-top));
  transition: background 0.6s var(--ease-luxe), backdrop-filter 0.6s;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.header-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.32em;
  color: var(--c-gold-bright);
  /* ネオン発光 */
  text-shadow: 0 0 12px rgba(255,155,242,0.6), 0 0 26px rgba(226,79,207,0.45);
}
.header-nav { display: none; }
.header-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  margin-left: 34px;
  color: var(--c-text-dim);
  transition: color 0.4s;
  position: relative;
  text-align: center;
}
/* 英語の下に小さく日本語 */
.header-nav a i {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  margin-top: 2px;
  opacity: 0.75;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-luxe);
}
.header-nav a:hover { color: var(--c-gold-bright); }
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-nav .nav-cta { color: var(--c-gold); }

/* ハンバーガー */
.menu-toggle {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 1px;
  background: var(--c-gold-bright);
  transition: transform 0.45s var(--ease-luxe);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 11, 16, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-luxe);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.26em;
  color: var(--c-text);
}
/* 英語の下に小さく日本語（英語が苦手でも分かるように） */
.mobile-menu a i {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--c-text-dim);
  margin-top: 6px;
}
.mobile-menu a:active { color: var(--c-gold-bright); }
.mobile-menu a:active i { color: var(--c-gold); }

/* ---------- ① ヒーロー ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* ヒーロー背景画像（夜景）。HOSLOGIを中央に寄せるため位置を微調整 */
  background:
    url('../assets/hero.jpg') 51% center / cover no-repeat,
    radial-gradient(ellipse 80% 55% at 68% 30%, rgba(226, 79, 207, 0.45), transparent 60%),
    radial-gradient(ellipse 60% 45% at 18% 80%, rgba(63, 216, 230, 0.28), transparent 60%),
    linear-gradient(165deg, #170f22 0%, #0a0810 55%, #120a1c 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,8,16,0.28) 0%, rgba(10,8,16,0.10) 40%, rgba(10,8,16,0.95) 100%);
}
/* 背景画像にロゴ文字が入っているため、重複するテキストは非表示 */
.hero-eyebrow, .hero-logo, .hero-logo-ja { display: none; }
/* スクロール指標は非表示（ボタンと重なるため） */
.hero-scroll { display: none; }
/* コンテンツ（コピー＋ボタン）は下部に寄せる */
.hero { align-items: flex-end; }
.hero-content { padding-bottom: 84px; }
.hero-copy { margin-top: 0; text-shadow: 0 2px 20px rgba(0,0,0,0.9); }
.hero-cta { margin-top: 28px; }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  color: var(--c-gold);
  margin-bottom: 22px;
}
.hero-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 13vw, 6.5rem);
  letter-spacing: 0.22em;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, var(--c-gold-bright) 40%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* ネオン発光 */
  text-shadow: 0 0 24px rgba(255, 155, 242, 0.55), 0 0 60px rgba(226, 79, 207, 0.45);
}
.hero-logo-ja {
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  letter-spacing: 1.1em;
  text-indent: 1.1em;
  color: var(--c-text-dim);
  margin-top: 14px;
}
.hero-copy {
  font-family: var(--font-mincho);
  font-size: clamp(1.05rem, 4.4vw, 1.5rem);
  letter-spacing: 0.3em;
  margin-top: 40px;
  color: var(--c-text);
}
.hero-cta { margin-top: 44px; }
.hero-scroll {
  position: absolute;
  bottom: max(28px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: var(--c-text-dim);
}
.hero-scroll-line {
  width: 1px; height: 52px;
  margin: 10px auto 0;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 2.2s var(--ease-luxe) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(14px); opacity: 0; }
}

/* ---------- セクション共通 ---------- */
.section { padding: 88px 0; }
.section-head { text-align: center; padding: 0 24px; margin-bottom: 44px; }
/* 英字ラベル＋その下に小さく日本語（英語が苦手でも分かるように） */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.section-eyebrow i {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--c-text-dim);
  margin-top: 5px;
}
.section-title {
  /* ゴシックで力強く（20〜30代向け） */
  font-family: var(--font-display), var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 6.2vw, 2.3rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
/* タイトルを行ごとに積む（例: 【ホスロジ】/ YouTube） */
.section-title .line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.section-title .line-sub {
  font-size: 0.62em;
  letter-spacing: 0.1em;
}
/* タイトル内のプラットフォームアイコン */
.title-icon { display: inline-flex; align-items: center; }
.title-icon svg { width: 1.05em; height: 1.05em; fill: currentColor; }
.title-icon.is-youtube { color: #ff0033; }
/* タイトル下に並べるSNSアイコン列 */
.title-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  color: var(--c-text-dim);
}
.title-platforms svg { width: 19px; height: 19px; fill: currentColor; }
.title-platforms .is-youtube { color: #ff0033; }
.title-platforms .is-instagram { color: #e4649a; }
.title-platforms .is-x { color: #e8e6ee; }
.title-platforms .is-tiktok { color: #4de8e0; }
.section-lead {
  font-family: var(--font-mincho);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--c-text-dim);
  margin-top: 16px;
}

/* ---------- ② 最新動画カルーセル ---------- */
.carousel-wrap { position: relative; }
.video-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 18px 24px 34px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.video-carousel::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 86%;
  max-width: 420px;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.6s var(--ease-luxe);
}
.video-card-poster {
  position: relative;
  aspect-ratio: 16 / 9; /* YouTubeサムネイル比率 */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.6s var(--ease-luxe), border-color 0.6s;
}
.video-card-poster .poster-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-luxe);
}
/* サムネ未設定時のプレースホルダー（紫×金のシネマグラデーション） */
.poster-placeholder {
  background:
    radial-gradient(ellipse 100% 70% at 80% 10%, var(--c-purple-glow), transparent 55%),
    radial-gradient(ellipse 80% 60% at 15% 95%, rgba(201,164,92,0.3), transparent 55%),
    linear-gradient(160deg, #1c1428 0%, #0e0c14 60%, #161020 100%);
}
/* タイトルは画像の下（YouTube風レイアウト） */
.video-card-meta {
  padding: 14px 4px 0;
}
.video-card-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--c-gold-bright);
}
.video-card-title {
  font-family: var(--font-mincho);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-top: 8px;
  /* 2行で省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 再生時間バッジ（サムネ右下・YouTube風） */
.video-card-duration {
  position: absolute;
  right: 8px; bottom: 8px;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(5, 5, 8, 0.82);
  padding: 2px 7px;
  border-radius: 3px;
}
.video-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(232, 200, 126, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 16, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.5s var(--ease-luxe);
}
.video-card-play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--c-gold-bright);
  margin-left: 4px;
}
.video-card:hover { transform: translateY(-8px); }
.video-card:hover .video-card-poster {
  border-color: rgba(232, 200, 126, 0.55);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 42px rgba(201, 164, 92, 0.28);
}
.video-card:hover .poster-img { transform: scale(1.06); }
.video-card:hover .video-card-play {
  background: rgba(201, 164, 92, 0.25);
  box-shadow: 0 0 30px rgba(232, 200, 126, 0.5);
}

/* カルーセル矢印（PCのみ） */
.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: rgba(11, 11, 16, 0.7);
  backdrop-filter: blur(8px);
  color: var(--c-gold-bright);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxe);
}
.carousel-btn:hover {
  border-color: var(--c-gold);
  box-shadow: 0 0 24px rgba(201, 164, 92, 0.4);
}
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }

/* ---------- ③ ショートギャラリー ---------- */
.section-shorts { background: var(--c-bg-soft); }
.shorts-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 24px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shorts-scroll::-webkit-scrollbar { display: none; }

.short-card {
  flex: 0 0 46%;
  max-width: 210px;
  scroll-snap-align: start;
  cursor: pointer;
}
.short-card-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: all 0.5s var(--ease-luxe);
}
.short-card-frame .poster-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease-luxe);
}
.short-card-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.88) 0%, transparent 45%);
}
.short-card-platform {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--c-gold-bright);
  padding: 4px 10px;
  border: 1px solid rgba(232,200,126,0.4);
  border-radius: 100px;
  background: rgba(11,11,16,0.55);
  backdrop-filter: blur(4px);
}
.short-card-title {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.5;
}
.short-card:hover .short-card-frame {
  transform: translateY(-6px);
  border-color: rgba(122, 60, 180, 0.7);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 36px var(--c-purple-glow);
}
.short-card:hover .poster-img { transform: scale(1.07); }

/* ---------- ④ 掲載店舗（Stores） ---------- */
/* hidden 属性を確実に効かせる（お知らせ0件のとき枠ごと隠すため） */
[hidden] { display: none !important; }

/* トピック（お知らせ） */
.topic-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--c-line);
}
.topic-item {
  display: block;
  position: relative;
  padding: 16px 26px 16px 0;
  border-bottom: 1px solid var(--c-line);
}
.topic-item.is-link { transition: background 0.4s var(--ease-luxe); }
.topic-item.is-link:hover { background: rgba(201, 164, 92, 0.06); }
.topic-date {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--c-gold);
}
.topic-title {
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 5px;
}
.topic-body {
  font-size: 0.76rem;
  line-height: 1.9;
  color: var(--c-text-dim);
  margin-top: 5px;
}
.topic-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--c-gold);
}

/* よくある質問（開閉式） */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--c-line);
}
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  line-height: 1.65;
  transition: color 0.4s var(--ease-luxe);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::before {
  content: "Q";
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--c-gold);
  line-height: 1.8;
}
.faq-q::after {
  content: "＋";
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--c-gold);
  font-size: 0.8rem;
  transition: transform 0.4s var(--ease-luxe);
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-q:hover { color: var(--c-gold); }
.faq-a {
  display: flex;
  gap: 12px;
  padding: 0 0 18px 0;
  font-size: 0.78rem;
  line-height: 1.95;
  color: var(--c-text-dim);
  white-space: pre-wrap; /* スプシ内の改行をそのまま活かす */
}
.faq-a::before {
  content: "A";
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(232, 200, 126, 0.55);
  line-height: 1.9;
}

/* 「YouTubeで全部見る」導線（過去動画はYouTube側へ） */
.more-on-yt {
  display: flex;
  justify-content: center;
  padding: 6px 24px 0;
}
.btn-yt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  transition: all 0.45s var(--ease-luxe);
}
.btn-yt:hover {
  color: var(--c-text);
  border-color: rgba(255, 0, 51, 0.5);
  background: rgba(255, 0, 51, 0.07);
}
.btn-yt-icon { display: inline-flex; color: #ff0033; }
.btn-yt-icon svg { width: 17px; height: 17px; fill: currentColor; }

/* セクション下の補足テキスト */
.section-note {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  margin-top: 6px;
  padding: 0 24px;
}
/* 下層ページ（固定ヘッダーぶん上に余白を確保） */
.page-main { padding-top: 76px; }

/* 店舗＝3行×横スライド（1スワイプで3店舗ぶん動く）。タップでホスト一覧へ */
.store-grid {
  display: grid;
  grid-auto-flow: column;          /* 上から下へ4つ並べて、次の列へ */
  grid-template-rows: repeat(4, auto);
  grid-auto-columns: 252px;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 24px 18px;
  scroll-snap-type: x mandatory;   /* 4店舗ぶん（1列）ごとにピタッと止まる */
  scroll-padding-left: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 1180px;
  margin: 0 auto;
}
.store-grid::-webkit-scrollbar { display: none; }

.store-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-luxe), border-color 0.5s, box-shadow 0.5s;
}
.store-card.is-linked { cursor: pointer; }
.store-card.is-linked:hover,
.store-card.is-linked:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(232, 200, 126, 0.5);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55), 0 0 34px rgba(201, 164, 92, 0.2);
  outline: none;
}
.store-jump {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  white-space: nowrap;
}
.store-jump i { font-style: normal; font-size: 0.9rem; line-height: 1; }

.store-photo {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  /* 店舗ロゴは切り抜くと文字が欠けるため、全体を枠内に収める */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.04);
}
.store-photo.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, var(--c-purple-glow), transparent 60%),
    linear-gradient(170deg, #1a1426 0%, #100d18 70%);
}
.store-photo-initial {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(232, 200, 126, 0.4);
}
.store-info { flex: 1; min-width: 0; }
.store-name {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store-area {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store-sns { display: flex; gap: 6px; margin-top: 7px; }
.store-sns .sns-link { flex: 0 0 auto; width: 26px; min-height: 26px; gap: 0; }

/* ---------- ⑤ 掲載キャスト（Casts） ---------- */
/* キャスト＝店舗ごとのグループを縦に積み、店舗内は横スクロール */
.cast-grid {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}
.cast-group {
  margin-bottom: 26px;
  scroll-margin-top: 96px; /* 固定ヘッダーに隠れない位置で止める */
  border-radius: 8px;
}
/* ジャンプ先を一瞬光らせて「ここだよ」と示す */
.cast-group.is-flash { animation: castFlash 1.6s var(--ease-luxe); }
@keyframes castFlash {
  0%   { background: rgba(201, 164, 92, 0.16); }
  100% { background: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .cast-group.is-flash { animation: none; }
}
.cast-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-gold);
}
.cast-group-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cast-group-count {
  flex: 0 0 auto;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 2px 8px;
}
.cast-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 12px 24px 18px;
  scroll-snap-type: x proximity;
  scroll-padding-left: 24px; /* スナップが左余白を食わないように */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cast-scroll::-webkit-scrollbar { display: none; }

.cast-card {
  position: relative;
  flex: 0 0 45%;
  max-width: 200px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  box-shadow: var(--shadow-card);
  transition: all 0.6s var(--ease-luxe);
}
.cast-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 200, 126, 0.5);
  box-shadow: 0 26px 64px rgba(0,0,0,0.6), 0 0 48px rgba(201, 164, 92, 0.22);
}
.cast-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
}
/* 写真未設定時のプレースホルダー */
.cast-photo.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, var(--c-purple-glow), transparent 60%),
    linear-gradient(170deg, #1a1426 0%, #100d18 70%);
}
.cast-photo-initial {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: rgba(232, 200, 126, 0.35);
}
.cast-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--c-surface) 2%, transparent 40%);
}
.cast-info { padding: 2px 12px 14px; position: relative; }
.cast-role {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--c-gold);
}
.cast-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cast-store {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
  margin-top: 4px;
}
.cast-tagline {
  font-family: var(--font-mincho);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--c-text);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}

/* リッチリンクツリー（SNS） */
.cast-sns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
/* カルーセル内のキャストカードはアイコンのみ・小さめ */
.cast-sns .sns-link {
  flex: 0 0 auto;
  width: 32px;
  min-height: 32px;
  gap: 0;
}
.sns-link {
  flex: 1;
  min-width: 0; /* flex項目が縮んで、はみ出しを防ぐ */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px; /* タップ領域確保 */
  border: 1px solid var(--c-line);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
  transition: all 0.45s var(--ease-luxe);
}
.sns-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sns-link svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.sns-link:hover, .sns-link:active {
  color: var(--c-gold-bright);
  border-color: var(--c-gold);
  box-shadow: 0 0 20px rgba(201, 164, 92, 0.35);
  transform: translateY(-2px);
}

/* ---------- ⑤ オーナー向け ---------- */
.section-owners {
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 90% at 50% 110%, rgba(91, 45, 142, 0.35), transparent 60%),
    var(--c-bg-soft);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.owners-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 24px;
}
.owners-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.05rem, 4.2vw, 1.6rem);
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-top: 18px;
  margin-bottom: 40px; /* 直下のボタンとの余白（旧leadぶん） */
  /* 日本語を自然に折り返す（はみ出し防止） */
  word-break: normal;
  overflow-wrap: anywhere;
}
/* 「。」ごとに1行ずつ積む */
.owners-title .line { display: block; }
.br-pc { display: none; }
.owners-lead {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  color: var(--c-text-dim);
  margin: 26px 0 40px;
}

/* ---------- 問い合わせフォーム ---------- */
.section-contact {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.contact-form {
  margin-top: 44px;
  text-align: left;
}
.form-row { display: flex; flex-direction: column; gap: 22px; }
.form-field { display: block; margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--c-text-dim);
  margin-bottom: 10px;
}
.form-label i {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  border: 1px solid var(--c-line);
  border-radius: 2px;
  padding: 1px 7px;
  margin-left: 10px;
  vertical-align: middle;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 11, 16, 0.6);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-text);
  font-family: var(--font-sans);
  font-size: 1rem; /* iOS自動ズーム防止のため16px */
  font-weight: 300;
  transition: border-color 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(155, 151, 164, 0.5); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold), 0 0 22px rgba(201, 164, 92, 0.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:user-invalid,
.contact-form textarea:user-invalid { border-color: #a8506a; }
.form-submit {
  text-align: center;
  margin-top: 12px;
}
.form-submit .btn { border: none; }
.form-status {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-top: 18px;
  min-height: 1.2em;
}
.form-status.is-error { color: #e08aa0; }
.form-status.is-success { color: var(--c-gold-bright); }
.form-note {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  margin-top: 24px;
}

/* ---------- フッター ---------- */
.site-footer {
  text-align: center;
  padding: 56px 24px calc(36px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--c-line);
}
/* フッター上段：ブランド ／ メニュー ／ 運営会社 */
.footer-top {
  display: grid;
  gap: 34px;
  max-width: 1000px;
  margin: 0 auto 34px;
  text-align: left;
}
.footer-info { display: grid; gap: 30px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--c-text-dim);
  transition: color 0.4s var(--ease-luxe);
}
.footer-links a:hover { color: var(--c-gold); }
.footer-company { font-size: 0.72rem; line-height: 1.85; }
.footer-company dt {
  color: var(--c-gold);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  margin-top: 10px;
}
.footer-company dt:first-child { margin-top: 0; }
.footer-company dd { color: var(--c-text-dim); }
.footer-company-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(232, 200, 126, 0.4);
  padding-bottom: 2px;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--c-text-dim);
  margin-top: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  letter-spacing: 0.4em;
  color: var(--c-gold);
  font-size: 1rem;
}

/* 画面が広いときは横並び */
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1.6fr; gap: 48px; }
  .footer-info { grid-template-columns: auto 1fr; gap: 48px; }
}
.footer-sns {
  display: flex;
  justify-content: flex-start; /* フッター上段は左寄せレイアウト */
  gap: 14px;
  margin: 18px 0 0;
}
.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-text-dim);
  transition: all 0.45s var(--ease-luxe);
}
.footer-sns svg { width: 18px; height: 18px; fill: currentColor; }
.footer-sns a:hover {
  color: var(--c-gold-bright);
  border-color: var(--c-gold);
  box-shadow: 0 0 22px rgba(201, 164, 92, 0.4);
}
.footer-copy {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--c-text-dim);
}

/* ---------- 動画モーダル ---------- */
.theater-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 8, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-luxe);
}
.theater-modal.is-open { opacity: 1; pointer-events: auto; }
.theater-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: 16px;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-gold-bright);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s;
}
.theater-close:hover { box-shadow: 0 0 20px rgba(201,164,92,0.45); }
.theater-frame {
  width: min(92vw, 980px);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(91, 45, 142, 0.35);
}
.theater-frame.is-vertical {
  width: auto;
  height: min(86svh, 760px);
  aspect-ratio: 9 / 16;
}
.theater-frame iframe { width: 100%; height: 100%; border: 0; }

/* ========== タブレット (768px~) ========== */
@media (min-width: 768px) {
  .header-nav { display: flex; }
  .menu-toggle { display: none; }
  .site-header { padding: 20px 44px; }

  .section { padding: 120px 0; }

  .video-card { flex-basis: 320px; }
  .video-carousel { padding-left: 44px; padding-right: 44px; }
  .carousel-btn { display: block; }

  .shorts-scroll { padding-left: 44px; padding-right: 44px; }
  .short-card { flex-basis: 200px; }

  .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .store-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .form-row { flex-direction: row; }
  .form-row .form-field { flex: 1; margin-bottom: 0; }
  .form-row { margin-bottom: 22px; }

  .br-pc { display: inline; }
}

/* ========== デスクトップ (1080px~) ========== */
@media (min-width: 1080px) {
  .cast-grid { grid-template-columns: repeat(4, 1fr); }
  .store-grid { grid-template-columns: repeat(4, 1fr); }
  .video-carousel { justify-content: flex-start; }
}

/* モーション低減設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
 * TikTok 15本パッケージ
 *   .promo-tt … トップ（index）のヒーロー直下 訴求セクション
 *   .tt-*      … 専用LP（tiktok15.html）
 * ========================================================= */

/* ---------- 共通パーツ ---------- */
.tt-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 14px; }
.tt-chip {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 7px 15px;
  background: rgba(226, 79, 207, 0.06);
  white-space: nowrap;
}
.tt-chip.is-cyan { border-color: rgba(63, 216, 230, 0.4); background: rgba(63, 216, 230, 0.07); }

.tt-price-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 9vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, var(--c-gold-bright) 45%, var(--c-gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(226, 79, 207, 0.35);
}
.tt-price-main small { font-size: 0.42em; letter-spacing: 0.1em; -webkit-text-fill-color: var(--c-text-dim); }
.tt-price-sub {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  margin-top: 8px;
}
.tt-note {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--c-text-dim);
  margin-top: 14px;
}

/* ---------- ① トップの訴求セクション ---------- */
.promo-tt {
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background:
    radial-gradient(ellipse 75% 65% at 18% 0%, rgba(226, 79, 207, 0.24), transparent 62%),
    radial-gradient(ellipse 65% 60% at 92% 100%, rgba(63, 216, 230, 0.16), transparent 62%),
    linear-gradient(180deg, #0e0a16 0%, #0b0b10 100%);
}
.promo-tt-inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }
.promo-tt-title {
  font-family: var(--font-display), var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 7.4vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--c-text);
  margin: 14px 0 10px;
}
.promo-tt-title em {
  font-style: normal;
  color: var(--c-gold-bright);
  text-shadow: 0 0 26px rgba(226, 79, 207, 0.5);
}
.promo-tt-lead {
  font-size: 0.86rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-text-dim);
}
.promo-tt-price { margin-top: 16px; }
.promo-tt-cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }

/* TOPの訴求内「ホスロジ限定特典」 */
.promo-bonus {
  margin-top: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(232, 200, 126, 0.42);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(232, 200, 126, 0.1), rgba(232, 200, 126, 0.03));
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.promo-bonus-head { text-align: center; }
.promo-bonus-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: #14101c;
  background: linear-gradient(100deg, var(--c-gold-bright), var(--c-gold));
  border-radius: 999px;
  padding: 5px 16px;
}
.promo-bonus-lead {
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-top: 12px;
}
.promo-bonus-lead strong { color: var(--c-gold-bright); font-weight: 700; }
.promo-bonus-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 14px;
}
.promo-bonus-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.promo-bonus-list b {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  border: 1px solid rgba(232, 200, 126, 0.4);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 4px;
}
.pb-ico { display: inline-flex; flex: 0 0 auto; }
.pb-ico svg { width: 17px; height: 17px; fill: currentColor; }
.pb-ico.is-web { color: var(--c-gold); }
.pb-ico.is-ig { color: #e4649a; }
.pb-ico.is-yt { color: #ff0033; }

/* ---------- ② 専用LP：ヒーロー ---------- */
.tt-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 20px 54px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(226, 79, 207, 0.38), transparent 62%),
    radial-gradient(ellipse 60% 50% at 12% 88%, rgba(63, 216, 230, 0.22), transparent 62%),
    radial-gradient(ellipse 55% 45% at 92% 70%, rgba(106, 45, 176, 0.35), transparent 62%),
    linear-gradient(170deg, #150e20 0%, #0a0810 55%, #110a1a 100%);
}
.tt-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(11, 11, 16, 0.9) 100%);
}
.tt-hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.tt-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.42em;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.tt-eyebrow i {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--c-text-dim);
  margin-top: 8px;
}
.tt-h1 {
  font-family: var(--font-display), var(--font-sans), sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 8.2vw, 3.6rem);
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 16px 0 12px;
}
.tt-h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, var(--c-gold-bright) 50%, var(--c-gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 34px rgba(226, 79, 207, 0.5);
}
.tt-hero-lead {
  font-size: clamp(0.84rem, 3.4vw, 1rem);
  line-height: 1.85;
  letter-spacing: 0.05em;
  color: var(--c-text-dim);
}
.tt-pricebox {
  margin: 20px auto 0;
  max-width: 520px;
  padding: 18px 18px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: rgba(22, 18, 31, 0.66);
  backdrop-filter: blur(6px);
}
.tt-cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }

/* ---------- ② 専用LP：本文 ---------- */
.tt-list { max-width: 760px; margin: 0 auto; padding: 0 24px; display: grid; gap: 14px; }
.tt-card {
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: var(--c-surface);
  padding: 20px 22px;
}
.tt-card h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-text);
  margin-bottom: 8px;
}
.tt-card h3 span {
  display: inline-block;
  min-width: 1.9em;
  color: var(--c-gold-bright);
  font-family: var(--font-display);
}
.tt-card p { font-size: 0.84rem; line-height: 1.95; letter-spacing: 0.05em; color: var(--c-text-dim); }
.tt-quote {
  border-left: 2px solid var(--c-gold);
  padding: 6px 0 6px 16px;
  font-size: 0.9rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--c-text);
}

/* 料金・オプション表 */
.tt-table { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.tt-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--c-line);
}
.tt-row dt { font-size: 0.86rem; letter-spacing: 0.05em; color: var(--c-text); }
.tt-row dt i { display: block; font-style: normal; font-size: 0.7rem; color: var(--c-text-dim); margin-top: 5px; line-height: 1.7; }
.tt-row dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--c-gold-bright);
  white-space: nowrap;
}

/* 申込みの流れ */
.tt-steps { max-width: 700px; margin: 0 auto; padding: 0 24px; counter-reset: ttstep; }
.tt-step { position: relative; padding: 0 0 26px 46px; counter-increment: ttstep; }
.tt-step::before {
  content: counter(ttstep);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--c-gold-bright);
  border: 1px solid var(--c-gold);
  background: rgba(226, 79, 207, 0.08);
}
.tt-step::after {
  content: ""; position: absolute; left: 15px; top: 34px; bottom: 4px; width: 1px;
  background: linear-gradient(to bottom, var(--c-line), transparent);
}
.tt-step:last-child { padding-bottom: 0; }
.tt-step:last-child::after { display: none; }
.tt-step h3 { font-size: 0.92rem; font-weight: 700; letter-spacing: 0.05em; color: var(--c-text); margin-bottom: 6px; }
.tt-step p { font-size: 0.8rem; line-height: 1.9; letter-spacing: 0.05em; color: var(--c-text-dim); }

/* 最終CTA */
.tt-final {
  text-align: center; padding: 0 24px;
}
.tt-final .tt-cta { margin-top: 26px; }

@media (min-width: 768px) {
  .promo-tt { padding: 68px 24px; }
  .tt-list { grid-template-columns: 1fr 1fr; max-width: 900px; }
  .tt-list.is-single { grid-template-columns: 1fr; max-width: 760px; }
}

/* ---------- 特別プラン バッジ（見出し用） ---------- */
.tt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--c-gold);
  background: linear-gradient(90deg, rgba(226, 79, 207, 0.20), rgba(63, 216, 230, 0.14));
  box-shadow: 0 0 22px rgba(226, 79, 207, 0.35), inset 0 0 18px rgba(226, 79, 207, 0.10);
}
.tt-badge span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  color: var(--c-gold-bright);
}
.tt-badge b {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--c-text);
  padding-left: 10px;
  border-left: 1px solid rgba(226, 79, 207, 0.4);
}

/* 価格を1行にまとめる（コンパクト表示） */
.tt-price-inline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.tt-price-inline .tt-price-main { line-height: 1; }
.tt-price-inline .tt-price-sub { margin-top: 0; }

/* ---------- LINE 友だち追加ボタン（公式カラー） ---------- */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.38);
  transition: transform 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe);
}
.btn-line svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.btn-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(6, 199, 85, 0.55);
}

/* ---------- ホスロジ限定特典 ---------- */
.tt-card.is-bonus {
  border-color: rgba(226, 79, 207, 0.45);
  background: linear-gradient(160deg, rgba(226, 79, 207, 0.12), rgba(22, 18, 31, 0.92));
  box-shadow: inset 0 0 34px rgba(226, 79, 207, 0.07);
}
.tt-card.is-bonus h3 { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.tt-bonus-icon { width: 20px; height: 20px; flex-shrink: 0; fill: var(--c-gold-bright); }
/* .tt-card h3 span の色指定に勝たせるため詳細度を上げる */
.tt-card.is-bonus h3 span.tt-bonus-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #16120a;
  background: var(--c-gold-bright);
  border-radius: 999px;
  padding: 3px 10px;
  min-width: 0;
  white-space: nowrap;
}

/* 制作事例カードのアカウント名 */
.tt-sample-account {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--c-gold-bright);
}
