/* ===================================================
   CLUB SAPPHIRE - 共通スタイルシート
=================================================== */

/* リセット */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* CSS変数 */
:root {
  --bg-dark: #0a0a0f;
  --bg-navy: #0d1421;
  --sapphire: #1e3a5f;
  --sapphire-light: #2a4a73;
  --gold: #c9a227;
  --gold-light: #e0b84a;
  --text: #ffffff;
  --text-muted: #8a8a9a;
  --accent-green: #5a8a6a;
}

/* ベース */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== ヘッダー ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 0.9rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10,10,15,0.96);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}

.logo {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.logo span {
  display: block;
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  margin-top: 0.15rem;
  font-family: 'Noto Serif JP', serif;
}

.header-tel {
  display: none;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.88rem;
  transition: background 0.25s, color 0.25s;
}

.header-tel:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

@media (min-width: 768px) {
  .header-tel { display: inline-block; }
}

/* ===== パンくず ===== */
.breadcrumb {
  padding: 5rem 4% 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.breadcrumb a:hover { opacity: 0.7; }

/* ===== ヒーロー（トップ） ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 4% 4rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(30,58,95,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.08) 0%, transparent 55%),
    var(--bg-dark);
}

.hero-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-tagline strong { color: var(--text); font-weight: 600; }

/* ===== ヒーロー（サブページ） ===== */
.hero-sub {
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5.5rem 4% 3.5rem;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(30,58,95,0.4) 0%, transparent 55%),
    var(--bg-dark);
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-sub h1 {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(1.9rem, 5.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-sub h1 span {
  display: block;
  font-size: 0.48em;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.18em;
  font-family: 'Noto Serif JP', serif;
}

.hero-sub .hero-tagline {
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

/* ===== ボタン ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 2.3rem;
  background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-light) 100%);
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,162,39,0.35);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,162,39,0.28);
}

/* ===== セクション共通 ===== */
section { padding: 5rem 4%; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.93rem;
}

/* ===== 背景バリエーション ===== */
.bg-navy { background: var(--bg-navy); }
.bg-dark { background: var(--bg-dark); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

/* ===== 料金テーブル ===== */
.price-table-wrap { max-width: 680px; margin: 0 auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-table th {
  background: rgba(30,58,95,0.35);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.9rem;
}

.price-table td { color: var(--text-muted); font-size: 0.93rem; }

.price-table .amount {
  font-family: 'Cinzel', serif;
  color: var(--text);
  font-weight: 600;
}

.price-note {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(201,162,39,0.2);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.9;
}

/* ===== 料金カード（トップ用） ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  background: rgba(30,58,95,0.18);
  border: 1px solid rgba(201,162,39,0.12);
  padding: 2.3rem;
}

.price-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.price-list { list-style: none; }

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.93rem;
}

.price-list .time { color: var(--text-muted); }
.price-list .amount { font-family: 'Cinzel', serif; font-weight: 600; }

/* ===== エリアグリッド ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.area-item {
  display: block;
  padding: 2rem 1.3rem;
  background: rgba(30,58,95,0.14);
  border: 1px solid rgba(201,162,39,0.14);
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.area-item:hover {
  background: rgba(30,58,95,0.32);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.area-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.area-desc { font-size: 0.78rem; color: var(--text-muted); }

/* ===== ジャンルグリッド ===== */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.genre-item {
  display: block;
  padding: 1.8rem;
  background: rgba(30,58,95,0.14);
  border: 1px solid rgba(201,162,39,0.1);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.genre-item:hover {
  background: rgba(30,58,95,0.28);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.genre-name-jp {
  font-size: 0.88rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.genre-name {
  font-family: 'Cinzel', serif;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 0.7rem;
  display: block;
}

.genre-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* ===== キャストグリッド ===== */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cast-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-navy);
}

.cast-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.45s;
  will-change: transform;
}

.cast-card:hover img { transform: scale(1.04); }

.cast-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(10,10,15,0.94), transparent);
}

.cast-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.cast-age { font-size: 0.73rem; color: var(--text-muted); }

/* ===== お客様の声 ===== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.voice-card {
  background: rgba(30,58,95,0.1);
  border-left: 2px solid var(--gold);
  padding: 1.7rem;
}

.voice-text {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
  color: var(--text);
}

.voice-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.75rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  margin-bottom: 1.3rem;
  padding: 1.4rem;
  background: rgba(30,58,95,0.1);
  border-left: 2px solid var(--gold);
}

.faq-q {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.faq-a { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }

/* ===== 周辺エリア ===== */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.nearby-item {
  display: block;
  padding: 1.4rem;
  background: rgba(30,58,95,0.1);
  border: 1px solid rgba(201,162,39,0.1);
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.nearby-item:hover {
  border-color: var(--gold);
  background: rgba(30,58,95,0.2);
}

.nearby-name {
  font-family: 'Cinzel', serif;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.nearby-distance { font-size: 0.73rem; color: var(--text-muted); }

/* ===== 導入文 ===== */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content p {
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 2;
}

.intro-content strong { color: var(--text); font-weight: 600; }
.intro-content .highlight { color: var(--gold); }

/* ===== エリアタグ ===== */
.area-tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  max-width: 800px;
  margin: 0 auto;
}

.area-tag {
  padding: 0.7rem 1.3rem;
  background: rgba(30,58,95,0.2);
  border: 1px solid rgba(201,162,39,0.2);
  font-size: 0.88rem;
  color: var(--text);
  transition: background 0.25s, border-color 0.25s;
}

.area-tag:hover {
  background: var(--sapphire);
  border-color: var(--gold);
}

/* ===== 24h強調 ===== */
.highlight-section {
  text-align: center;
  background: linear-gradient(135deg, var(--sapphire) 0%, var(--bg-navy) 100%);
  padding: 5rem 4%;
}

.highlight-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  line-height: 1;
  margin: 0.8rem 0;
}

.highlight-label {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 5rem 4%;
}

.cta-tel {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 5.5vw, 3.2rem);
  color: var(--gold);
  margin: 1.2rem 0;
  letter-spacing: 0.1em;
}

/* ===== フッター ===== */
footer {
  padding: 3.5rem 4%;
  text-align: center;
  border-top: 1px solid rgba(201,162,39,0.1);
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: inline-block;
}

.footer-tel { font-size: 1rem; color: var(--text); margin-bottom: 0.3rem; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-note { font-size: 0.7rem; color: var(--text-muted); margin-top: 1.5rem; }

/* ===== 固定電話ボタン（スマホ） ===== */
.fixed-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--sapphire) 0%, var(--bg-dark) 100%);
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--gold);
  z-index: 1000;
}

.fixed-call-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fixed-call-text { text-align: left; }

.fixed-call-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.fixed-call-number {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
}

@media (min-width: 768px) { .fixed-call { display: none; } }

/* ===== ユーティリティ ===== */
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

/* ===== フィーチャーグリッド ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  padding: 2.2rem 1.8rem;
  background: rgba(30,58,95,0.1);
  border: 1px solid rgba(201,162,39,0.1);
}

.feature-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.feature-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ===== ノートボックス ===== */
.note-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.8rem;
  background: rgba(90,138,106,0.05);
  border: 1px solid rgba(90,138,106,0.2);
}

.note-title {
  font-family: 'Cinzel', serif;
  color: var(--accent-green);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  text-align: center;
}

.note-list { list-style: none; font-size: 0.88rem; color: var(--text-muted); }

.note-list li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
}

.note-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-green);
}

/* ===== 関連リンク ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.related-item {
  display: block;
  padding: 1.4rem;
  background: rgba(30,58,95,0.1);
  border: 1px solid rgba(201,162,39,0.1);
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.related-item:hover {
  border-color: var(--gold);
  background: rgba(30,58,95,0.2);
}

.related-name {
  font-family: 'Cinzel', serif;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.related-name-jp { font-size: 0.78rem; color: var(--gold); }

/* ===== キャストタグ ===== */
.cast-tag {
  display: inline-block;
  background: var(--accent-green);
  color: var(--text);
  font-size: 0.63rem;
  padding: 0.18rem 0.55rem;
  margin-top: 0.4rem;
}

.cast-detail { font-size: 0.73rem; color: var(--text-muted); }

/* ===== ヒーローバッジ ===== */
.hero-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--text);
  padding: 0.45rem 1.3rem;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}

/* ===== スクロールインジケーター ===== */
.scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ===== レスポンシブ ===== */
@media (max-width: 600px) {
  section { padding: 3.5rem 4%; }
  .hero { padding: 4.5rem 4% 3rem; }
  .hero-sub { padding: 4.5rem 4% 2.5rem; }
  .price-grid { grid-template-columns: 1fr; }
  .cast-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   後方互換クラス（既存サブページ用）
=================================================== */

/* セクション背景クラス */
.intro-section { background: var(--bg-navy); position: relative; }
.genre-section { background: var(--bg-navy); }
.price-section { background: var(--bg-navy); position: relative; }
.cast-section { background: var(--bg-dark); }
.voice-section { background: var(--bg-navy); }
.nearby-section { background: var(--bg-dark); }
.faq-section { background: var(--bg-dark); }
.area-tag-section { background: var(--bg-dark); }
.highlight-section { background: linear-gradient(135deg, var(--sapphire) 0%, var(--bg-navy) 100%); }
.related-section { background: var(--bg-navy); }

/* エリアカード（袋井・掛川用） */
.area-grid .area-card {
  background: rgba(30,58,95,0.15);
  border: 1px solid rgba(201,162,39,0.12);
  padding: 2rem;
  text-align: center;
}

.area-card .area-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.area-card .area-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.area-card .area-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ロケーショングリッド（島田用） */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
}

.location-item {
  padding: 1.8rem;
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.1);
  text-align: center;
}

.location-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.location-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.location-desc { font-size: 0.78rem; color: var(--text-muted); }

/* デュアルエリアグリッド（御前崎・牧之原、菊川・湖西用） */
.dual-area-section { background: var(--bg-dark); }
.dual-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.dual-area-item {
  padding: 2.2rem;
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.12);
  text-align: center;
}

.dual-area-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.dual-area-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.dual-area-name-jp { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.dual-area-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* スポットタグ（菊川・湖西用） */
.spot-section { background: var(--bg-dark); }
.spot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  max-width: 800px;
  margin: 0 auto;
}

.spot-tag {
  padding: 0.7rem 1.3rem;
  background: rgba(30,58,95,0.2);
  border: 1px solid rgba(201,162,39,0.2);
  font-size: 0.88rem;
  color: var(--text);
}

/* デュアルカード（藤枝・焼津用） */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.dual-card {
  padding: 2.2rem;
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.12);
  text-align: center;
}

.dual-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.dual-name-jp { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.dual-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* intro-content .highlight（サブページ用） */
.intro-content .highlight { color: var(--gold); }

/* fade-in アニメーション（JS不要版：CSSのみで対応） */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* JSなしでも表示されるフォールバック */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
}

/* ===================================================
   ジャンルページ専用スタイル
=================================================== */

/* フィーチャーナンバー */
.feature-number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.6rem;
}

/* シーングリッド（深夜ページ用） */
.scene-section { background: var(--bg-navy); }
.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.scene-item {
  padding: 2rem 1.5rem;
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.1);
  text-align: center;
}

.scene-icon { font-size: 2rem; margin-bottom: 0.7rem; }
.scene-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.scene-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

/* フローグリッド（深夜ページ用） */
.flow-section { background: var(--bg-dark); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: flow-counter;
}

.flow-item {
  padding: 1.8rem 1.5rem;
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.1);
  position: relative;
  counter-increment: flow-counter;
}

.flow-item::before {
  content: counter(flow-counter, decimal-leading-zero);
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}

.flow-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.flow-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }

/* タイムバッジ（深夜ページ用） */
.time-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30,58,95,0.5);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  margin-bottom: 1.2rem;
}

.time-badge .label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.time-badge .time {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ===================================================
   求人ページ専用スタイル
=================================================== */

.appeal-section { background: var(--bg-navy); }
.target-section { background: var(--bg-dark); }
.work-section { background: var(--bg-navy); }
.merit-section { background: var(--bg-dark); }

.appeal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.appeal-item {
  padding: 2rem 1.5rem;
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.12);
  text-align: center;
}

.appeal-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.appeal-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.appeal-highlight {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.appeal-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
}

.target-item {
  padding: 1.8rem;
  background: rgba(30,58,95,0.1);
  border: 1px solid rgba(201,162,39,0.1);
}

.target-title {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.target-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

.work-list { max-width: 800px; margin: 0 auto; }

.work-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: flex-start;
}

.work-num {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  width: 2.5rem;
}

.work-content h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.work-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.merit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.merit-item {
  padding: 1.5rem;
  background: rgba(30,58,95,0.1);
  border: 1px solid rgba(201,162,39,0.1);
  text-align: center;
}

.merit-check {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.merit-title { font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; font-weight: 600; }
.merit-desc { font-size: 0.75rem; color: var(--text-muted); }

.hero-income {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold);
  margin: 0.8rem 0;
  line-height: 1;
}
.hero-income span { font-size: 0.5em; color: var(--text-muted); }

.btn-large { padding: 1.3rem 3rem; font-size: 1.1rem; }

.cta-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.8;
}

/* ===================================================
   利用規約ページ専用スタイル
=================================================== */

.page-header {
  padding: 6rem 4% 3rem;
  text-align: center;
  background: var(--bg-navy);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}

.page-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.page-subtitle { font-size: 0.88rem; color: var(--text-muted); }

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 4%;
}

.toc {
  background: rgba(30,58,95,0.12);
  border: 1px solid rgba(201,162,39,0.12);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.toc-title {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.toc-list { list-style: none; }
.toc-list li { padding: 0.3rem 0; }
.toc-list a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.toc-list a:hover { color: var(--gold); }

.article { margin-bottom: 2.5rem; }

.article-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.article-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 0.8rem; }
.article-content ol, .article-content ul { padding-left: 1.5rem; }
.article-content li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 0.3rem; }
.article-content strong { color: var(--text); }

.warning-box {
  background: rgba(180,50,50,0.1);
  border: 1px solid rgba(180,50,50,0.3);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.warning-title { color: #e05050; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.warning-text { font-size: 0.85rem; color: var(--text-muted); }

.contact-section {
  text-align: center;
  padding: 3rem 4%;
  background: var(--bg-navy);
  border-top: 1px solid rgba(201,162,39,0.1);
}

.contact-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.contact-tel {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-note { font-size: 0.82rem; color: var(--text-muted); }
