/* ============================================
   Chura - 白 × 水色 × 金 デザインシステム v2
   沖縄ブランド: 海 (水色) × 太陽 (金) × 清潔感 (白)
   ============================================ */

:root {
  /* === COLORS - Base & Surface === */
  --c-bg:           #FAFBFC;        /* ページ背景 (純白を避け柔らかい) */
  --c-surface:      #FFFFFF;        /* カード・モーダル */
  --c-surface-2:    #F1F5F9;        /* セクション帯 */
  --c-surface-3:    #E2E8F0;        /* hover */

  --c-line:         #CBD5E1;        /* 罫線 */
  --c-line-soft:    #E2E8F0;

  /* === COLORS - 水色 (沖縄の海) === */
  --c-cyan:         #0EA5E9;        /* メインアクセント */
  --c-cyan-deep:    #0369A1;        /* ディープ・hover */
  --c-cyan-light:   #BAE6FD;        /* ハイライト */
  --c-cyan-50:      #E0F2FE;        /* 背景帯 */
  --c-cyan-shadow:  rgba(14, 165, 233, 0.18);

  /* === COLORS - 金 (沖縄の太陽) === */
  --c-gold:         #C9A961;        /* 金縁メイン */
  --c-gold-bright:  #E8D49A;        /* ハイライト */
  --c-gold-deep:    #A16207;        /* CTA (WCAG 適合) */
  --c-gold-shadow:  rgba(201, 169, 97, 0.25);

  /* === COLORS - 強調 (限定使用) === */
  --c-red:          #DC2626;        /* 即予約・緊急 */
  --c-red-bright:   #EF4444;
  --c-green:        #10B981;        /* 待機中ステータス */
  --c-green-light:  #D1FAE5;
  --c-amber:        #F59E0B;        /* 出勤中・接客中 */

  /* === COLORS - Text === */
  --c-text:         #0F172A;        /* 本文 (深紺、純黒避け) */
  --c-text-muted:   #475569;
  --c-text-faint:   #94A3B8;
  --c-text-on-cyan: #FFFFFF;
  --c-text-on-gold: #FFFFFF;

  /* === TYPOGRAPHY === */
  --f-mincho:  'Shippori Mincho B1', '游明朝', 'Yu Mincho', 'YuMincho', serif;
  --f-cinzel:  'Cinzel', 'Bodoni Moda', 'Times New Roman', serif;
  --f-sans:    'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;
  --f-display: 'Aoboshi One', 'Shippori Mincho B1', serif;

  --fs-xs: 0.75rem; --fs-sm: 0.875rem; --fs-base: 1rem; --fs-lg: 1.125rem;
  --fs-xl: 1.25rem; --fs-2xl: 1.5rem; --fs-3xl: 2rem; --fs-4xl: 2.75rem;
  --fs-5xl: 3.75rem; --fs-6xl: 5rem;

  /* === SPACING === */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem;  --sp-8: 2rem;   --sp-12: 3rem;  --sp-16: 4rem;
  --sp-20: 5rem;   --sp-24: 6rem;

  --container: 1240px;
  --container-narrow: 880px;

  /* === EFFECTS === */
  --gold-grad:    linear-gradient(135deg, #A16207 0%, #C9A961 35%, #E8D49A 50%, #C9A961 65%, #A16207 100%);
  --gold-grad-v:  linear-gradient(180deg, #C9A961 0%, #A16207 100%);
  --cyan-grad:    linear-gradient(135deg, #0369A1 0%, #0EA5E9 50%, #38BDF8 100%);
  --cyan-grad-soft: linear-gradient(180deg, #E0F2FE 0%, #FFFFFF 100%);
  --hero-grad:    linear-gradient(135deg, #E0F2FE 0%, #FFFFFF 50%, #FEF3C7 100%);

  --shadow-sm:    0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md:    0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg:    0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-cyan:  0 8px 24px var(--c-cyan-shadow);
  --shadow-gold:  0 8px 24px var(--c-gold-shadow);

  --t-fast:   200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.chura-locked { overflow: hidden; }

body {
  background: var(--c-bg); color: var(--c-text);
  font-family: var(--f-sans); font-size: var(--fs-base); line-height: 1.7;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-cyan-deep); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-cyan); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ===== Layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-24) 0; position: relative; }
.section-tight { padding: var(--sp-16) 0; }
.section-alt { background: var(--c-surface-2); }
.section-cyan { background: var(--cyan-grad-soft); }

.section-title {
  font-family: var(--f-mincho); font-weight: 800; font-size: var(--fs-4xl);
  text-align: center; color: var(--c-text);
  margin-bottom: var(--sp-3); letter-spacing: 0.08em;
}
.section-subtitle {
  font-family: var(--f-cinzel); font-weight: 700; font-style: italic;
  font-size: var(--fs-sm); text-align: center; color: var(--c-gold-deep);
  letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: var(--sp-12);
}
.section-subtitle::before, .section-subtitle::after {
  content: ""; display: inline-block; width: 30px; height: 1px;
  background: var(--c-gold); vertical-align: middle; margin: 0 var(--sp-4);
}

.gold-divider { display: flex; align-items: center; justify-content: center; margin: var(--sp-8) 0; }
.gold-divider::before, .gold-divider::after {
  content: ""; flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.gold-divider span {
  width: 12px; height: 12px; margin: 0 var(--sp-4);
  background: var(--gold-grad); transform: rotate(45deg);
  box-shadow: var(--shadow-gold);
}

/* ===== Header ===== */
.chura-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--sp-4) 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
}
.chura-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--c-line-soft);
  box-shadow: var(--shadow-sm);
}
.chura-header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); }

.chura-logo {
  font-family: var(--f-mincho); font-weight: 800; font-size: var(--fs-2xl);
  color: var(--c-text); letter-spacing: 0.15em; line-height: 1;
  display: inline-flex; flex-direction: column; gap: 2px;
}
.chura-logo small {
  font-family: var(--f-cinzel); font-weight: 700;
  font-size: 0.6rem; color: var(--c-gold-deep); letter-spacing: 0.4em;
  margin-top: 4px;
}

.chura-nav { display: flex; align-items: center; gap: var(--sp-6); }
.chura-nav a {
  font-family: var(--f-mincho); font-weight: 500; font-size: var(--fs-sm);
  color: var(--c-text); letter-spacing: 0.12em;
  position: relative; padding: var(--sp-2) 0;
  white-space: nowrap;
}
.chura-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -4px; width: 0; height: 2px;
  background: var(--c-cyan); transition: all var(--t-base); transform: translateX(-50%);
}
.chura-nav a:hover { color: var(--c-cyan-deep); }
.chura-nav a:hover::after { width: 100%; }

.chura-nav .nav-special {
  background: var(--c-cyan-50); padding: var(--sp-1) var(--sp-3); border-radius: 9999px;
  color: var(--c-cyan-deep);
}

.chura-cta-tel {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5); border: 1px solid var(--c-gold);
  font-family: var(--f-cinzel); font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: 0.1em; color: var(--c-gold-deep);
  background: var(--c-surface);
  transition: all var(--t-base);
}
.chura-cta-tel:hover {
  background: var(--c-gold-deep); color: #fff; box-shadow: var(--shadow-gold);
}

.chura-nav-toggle { display: none; }

/* ===== Hero ===== */
.chura-hero {
  min-height: 92vh; min-height: 92dvh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: var(--sp-24) var(--sp-6);
  background: var(--hero-grad);
}
.chura-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--c-cyan-light) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(232, 212, 154, 0.4) 0%, transparent 40%);
  opacity: 0.6;
}
.chura-hero::after {
  content: ""; position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--c-cyan));
}
.chura-hero-inner { position: relative; z-index: 2; max-width: 760px; }

.chura-hero-frame {
  border: 1px solid var(--c-gold);
  padding: var(--sp-16) var(--sp-12); position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.chura-hero-frame::before, .chura-hero-frame::after {
  content: ""; position: absolute; width: 32px; height: 32px;
}
.chura-hero-frame::before {
  top: -8px; left: -8px;
  border-top: 2px solid var(--c-gold-bright); border-left: 2px solid var(--c-gold-bright);
}
.chura-hero-frame::after {
  bottom: -8px; right: -8px;
  border-bottom: 2px solid var(--c-gold-bright); border-right: 2px solid var(--c-gold-bright);
}

.chura-hero-eyebrow {
  font-family: var(--f-cinzel); font-weight: 700; font-style: italic;
  font-size: var(--fs-sm); color: var(--c-gold-deep);
  letter-spacing: 0.5em; text-transform: uppercase; margin-bottom: var(--sp-6);
}
.chura-hero-title {
  font-family: var(--f-mincho); font-weight: 800;
  font-size: clamp(3.5rem, 12vw, 7rem); line-height: 1;
  letter-spacing: 0.2em; margin-bottom: var(--sp-3);
  color: var(--c-text);
}
.chura-hero-title .gold {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.chura-hero-title-en {
  font-family: var(--f-cinzel); font-weight: 700; font-size: var(--fs-xl);
  letter-spacing: 0.6em; color: var(--c-cyan-deep); margin-bottom: var(--sp-8);
}
.chura-hero-tagline {
  font-family: var(--f-mincho); font-size: var(--fs-lg);
  color: var(--c-text); line-height: 2; margin: var(--sp-8) 0;
  letter-spacing: 0.1em;
}
.chura-hero-cta { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-8); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-base);
  letter-spacing: 0.15em; line-height: 1; cursor: pointer;
  border: 1px solid transparent; transition: all var(--t-base); position: relative;
}
.btn-cyan { background: var(--cyan-grad); color: #fff; border-color: var(--c-cyan-deep); }
.btn-cyan:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-cyan); }
.btn-gold { background: var(--gold-grad-v); color: #fff; border-color: var(--c-gold-deep); }
.btn-gold:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--c-cyan-deep); border-color: var(--c-cyan); }
.btn-outline:hover { background: var(--c-cyan); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--c-gold-deep); border-color: var(--c-gold); }
.btn-outline-gold:hover { background: var(--c-gold-deep); color: #fff; }
.btn-red { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn-red:hover { background: var(--c-red-bright); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3); }
.btn-large { padding: var(--sp-6) var(--sp-12); font-size: var(--fs-lg); }

/* ===== Categories ===== */
.chura-categories { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.chura-cat {
  font-family: var(--f-mincho); font-weight: 500; font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-6); border: 1px solid var(--c-line);
  color: var(--c-text); background: var(--c-surface);
  letter-spacing: 0.15em; transition: all var(--t-base);
  border-radius: 4px;
}
.chura-cat:hover { border-color: var(--c-cyan); color: var(--c-cyan-deep); background: var(--c-cyan-50); }
.chura-cat.is-premium { border-color: var(--c-gold); color: var(--c-gold-deep); background: #FEFCE8; }

/* ===== Cast Grid ===== */
.cast-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.cast-card {
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  overflow: hidden; transition: all var(--t-base); position: relative;
  display: flex; flex-direction: column;
  border-radius: 8px;
}
.cast-card:hover { border-color: var(--c-cyan); transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.cast-card-photo { aspect-ratio: 4 / 5; background: var(--c-surface-3); position: relative; overflow: hidden; }
.cast-card-photo img { width: 100%; height: 100%; object-fit: cover; }

.cast-card-shift {
  position: absolute; top: var(--sp-3); right: var(--sp-3); z-index: 2;
  background: var(--c-surface); border: 1px solid var(--c-cyan);
  color: var(--c-cyan-deep); padding: 4px var(--sp-2);
  font-family: var(--f-cinzel); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: 0.1em; border-radius: 9999px;
}
.cast-card-shift.is-now { background: var(--c-green); color: #fff; border-color: var(--c-green); }
.cast-card-shift.is-busy { background: var(--c-amber); color: #fff; border-color: var(--c-amber); }
.cast-card-shift.is-off { background: var(--c-text-faint); color: #fff; border-color: var(--c-text-faint); }

.cast-card-newface-badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 2;
  background: var(--c-red); color: #fff; padding: 4px var(--sp-2);
  font-family: var(--f-cinzel); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: 0.15em; border-radius: 4px;
}

.cast-card-body { padding: var(--sp-4) var(--sp-5) var(--sp-6); }
.cast-card-name {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-xl);
  color: var(--c-text); letter-spacing: 0.1em; margin-bottom: var(--sp-1);
}
.cast-card-meta {
  font-family: var(--f-cinzel); font-weight: 500; font-size: var(--fs-sm); color: var(--c-cyan-deep);
  letter-spacing: 0.15em; margin-bottom: var(--sp-2);
}
.cast-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--sp-3); }
.cast-tag {
  font-size: var(--fs-xs); padding: 2px 8px; border: 1px solid var(--c-line);
  color: var(--c-text-muted); letter-spacing: 0.08em; border-radius: 3px;
}
.cast-tag.tag-pure    { color: var(--c-cyan-deep); border-color: var(--c-cyan-light); background: var(--c-cyan-50); }
.cast-tag.tag-cute    { color: #BE185D; border-color: #FBCFE8; background: #FCE7F3; }
.cast-tag.tag-loli    { color: #92400E; border-color: #FDE68A; background: #FEF3C7; }
.cast-tag.tag-bust    { color: #991B1B; border-color: #FCA5A5; background: #FEE2E2; }
.cast-tag.tag-mature  { color: #6B21A8; border-color: #D8B4FE; background: #F3E8FF; }
.cast-tag.tag-premium { color: var(--c-gold-deep); border-color: var(--c-gold); background: #FEFCE8; }
.cast-tag.tag-slim    { color: #047857; border-color: #6EE7B7; background: #D1FAE5; }
.cast-tag.tag-wild    { color: var(--c-red); border-color: #FECACA; background: #FEE2E2; }
.cast-tag.tag-okinawa { color: #155E75; border-color: #67E8F9; background: #CFFAFE; }

/* ===== Pricing Table ===== */
.pricing-block { margin-bottom: var(--sp-12); }
.pricing-block-title {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-2xl);
  color: var(--c-text); letter-spacing: 0.15em;
  border-left: 3px solid var(--c-cyan); padding-left: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.pricing-block.is-premium .pricing-block-title { border-left-color: var(--c-gold); color: var(--c-gold-deep); }
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  border-radius: 8px; overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: var(--sp-4) var(--sp-6); border-bottom: 1px solid var(--c-line-soft);
  font-family: var(--f-sans); text-align: left;
}
.pricing-table th {
  background: var(--c-cyan-50); color: var(--c-cyan-deep);
  font-family: var(--f-mincho); font-weight: 700; letter-spacing: 0.15em;
  font-size: var(--fs-sm);
}
.pricing-table td.price-normal {
  color: var(--c-text-faint); text-decoration: line-through; font-family: var(--f-cinzel);
}
.pricing-table td.price-net {
  color: var(--c-cyan-deep); font-family: var(--f-cinzel); font-weight: 700; font-size: var(--fs-lg);
}
.pricing-table tr:last-child td { border-bottom: none; }

.options-grid { display: grid; gap: var(--sp-2); grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.option-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) var(--sp-4); background: var(--c-surface);
  border: 1px solid var(--c-line-soft); border-radius: 4px;
}
.option-item-name { font-size: var(--fs-sm); }
.option-item-price { font-family: var(--f-cinzel); font-weight: 700; color: var(--c-cyan-deep); }

/* ===== Schedule (時間スロット表) ===== */
.schedule-table {
  width: 100%; border-collapse: collapse;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: 8px; overflow: hidden;
  font-size: var(--fs-sm);
}
.schedule-table th, .schedule-table td {
  padding: var(--sp-2) var(--sp-3); text-align: center;
  border-right: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.schedule-table th {
  background: var(--c-cyan-50); color: var(--c-cyan-deep);
  font-family: var(--f-cinzel); font-weight: 700; letter-spacing: 0.1em;
  font-size: var(--fs-xs);
}
.schedule-table th.cast-col { text-align: left; padding-left: var(--sp-4); min-width: 140px; }
.schedule-table td.cast-name {
  font-family: var(--f-mincho); font-weight: 700; text-align: left;
  padding-left: var(--sp-4); color: var(--c-text);
}
.schedule-cell { background: var(--c-surface); }
.schedule-cell.is-on { background: var(--c-cyan-light); color: var(--c-cyan-deep); }
.schedule-cell.is-off { background: var(--c-surface-2); color: var(--c-text-faint); }

/* ===== Events ===== */
.events-grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.event-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  padding: var(--sp-8) var(--sp-6); position: relative;
  text-align: center; transition: all var(--t-base);
  border-radius: 8px;
}
.event-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--cyan-grad); border-top-left-radius: 8px; border-top-right-radius: 8px; }
.event-card.is-special::before { background: var(--gold-grad); }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.event-card.is-special:hover { box-shadow: var(--shadow-gold); }
.event-name {
  font-family: var(--f-mincho); font-weight: 800; font-size: var(--fs-2xl);
  color: var(--c-text); margin-bottom: var(--sp-2); letter-spacing: 0.1em;
}
.event-name-en {
  font-family: var(--f-cinzel); font-weight: 700; font-style: italic;
  font-size: var(--fs-sm); color: var(--c-gold-deep);
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.event-period { font-family: var(--f-cinzel); font-size: var(--fs-sm); color: var(--c-text-muted); letter-spacing: 0.2em; margin-bottom: var(--sp-4); }
.event-discount {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-xl); color: var(--c-cyan-deep);
  margin-bottom: var(--sp-3);
}
.event-card.is-special .event-discount { color: var(--c-gold-deep); }
.event-description { color: var(--c-text-muted); font-size: var(--fs-sm); line-height: 1.8; }

/* ===== News List ===== */
.news-list { display: grid; gap: var(--sp-4); }
.news-item {
  display: grid; grid-template-columns: auto auto 1fr; gap: var(--sp-6);
  align-items: baseline; padding: var(--sp-6); background: var(--c-surface);
  border: 1px solid var(--c-line-soft); border-radius: 8px;
  transition: all var(--t-base);
}
.news-item:hover { border-color: var(--c-cyan); box-shadow: var(--shadow-md); }
.news-date { font-family: var(--f-cinzel); font-weight: 500; color: var(--c-text-muted); font-size: var(--fs-sm); white-space: nowrap; }
.news-cat {
  display: inline-block; padding: 2px var(--sp-3); border-radius: 9999px;
  background: var(--c-cyan-50); color: var(--c-cyan-deep);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em;
  white-space: nowrap;
}
.news-cat.cat-event { background: #FEFCE8; color: var(--c-gold-deep); }
.news-cat.cat-newface { background: #FEE2E2; color: var(--c-red); }
.news-title { font-family: var(--f-mincho); font-weight: 700; color: var(--c-text); }

/* ===== Waiting / Status Indicator ===== */
.status-pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: 0.1em; border-radius: 9999px;
}
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.status-available { background: var(--c-green-light); color: #047857; }
.status-available::before { background: var(--c-green); animation: pulse 2s ease-in-out infinite; }
.status-busy { background: #FEF3C7; color: #92400E; }
.status-busy::before { background: var(--c-amber); }
.status-off { background: var(--c-surface-2); color: var(--c-text-muted); }
.status-off::before { background: var(--c-text-faint); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== Info Block ===== */
.info-grid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: var(--c-line-soft); border-radius: 8px; overflow: hidden;
}
.info-item { padding: var(--sp-6); background: var(--c-surface); }
.info-item-label {
  font-family: var(--f-cinzel); font-size: var(--fs-xs); color: var(--c-gold-deep);
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.info-item-value {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-xl);
  color: var(--c-text); letter-spacing: 0.05em;
}
.info-item-value a { color: var(--c-cyan-deep); }

/* ===== Footer ===== */
.chura-footer {
  background: var(--c-surface-2); padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid var(--c-line); margin-top: var(--sp-24);
}
.chura-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-12); margin-bottom: var(--sp-12);
}
.chura-footer-brand .chura-logo { font-size: var(--fs-3xl); }
.chura-footer-brand p { margin-top: var(--sp-4); color: var(--c-text-muted); line-height: 2; font-size: var(--fs-sm); }
.chura-footer h4 {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-base);
  color: var(--c-cyan-deep); letter-spacing: 0.2em; margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2); border-bottom: 1px solid var(--c-line);
}
.chura-footer ul li { margin-bottom: var(--sp-2); }
.chura-footer ul li a { color: var(--c-text); font-size: var(--fs-sm); }
.chura-footer ul li a:hover { color: var(--c-cyan-deep); }
.chura-footer-legal {
  border-top: 1px solid var(--c-line); padding-top: var(--sp-6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4);
  font-size: var(--fs-xs); color: var(--c-text-muted);
}
.chura-footer-legal nav { display: flex; gap: var(--sp-6); }
.chura-footer-legal a { color: var(--c-text-muted); }

.chura-footer-r18 {
  display: inline-block; padding: 2px var(--sp-2); border: 1px solid var(--c-red);
  color: var(--c-red); font-family: var(--f-cinzel); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: 0.2em; margin-right: var(--sp-2); border-radius: 3px;
}

/* ===== Floating TEL ===== */
.chura-float-tel {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  background: var(--c-red); color: #fff;
  font-family: var(--f-cinzel); font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: 0.1em; border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  transition: all var(--t-base);
}
.chura-float-tel:hover { color: #fff; transform: translateY(-2px) scale(1.05); }

/* ===== Age Gate ===== */
.chura-age-gate[hidden] { display: none; }
.chura-age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-6); animation: fadeIn 600ms ease;
}
.chura-age-gate-inner {
  max-width: 540px; text-align: center;
  border: 1px solid var(--c-gold);
  padding: var(--sp-12) var(--sp-8); position: relative;
  background: var(--c-surface);
  border-radius: 8px; box-shadow: var(--shadow-lg);
}
.chura-age-gate-inner::before, .chura-age-gate-inner::after { content: ""; position: absolute; width: 24px; height: 24px; }
.chura-age-gate-inner::before { top: -6px; left: -6px; border-top: 2px solid var(--c-gold-bright); border-left: 2px solid var(--c-gold-bright); }
.chura-age-gate-inner::after  { bottom: -6px; right: -6px; border-bottom: 2px solid var(--c-gold-bright); border-right: 2px solid var(--c-gold-bright); }
.chura-age-gate .chura-logo { font-size: var(--fs-4xl); margin-bottom: var(--sp-2); }
.chura-age-gate h2 {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-2xl);
  color: var(--c-text); margin: var(--sp-6) 0 var(--sp-4); letter-spacing: 0.1em;
}
.chura-age-gate p { color: var(--c-text-muted); font-size: var(--fs-sm); line-height: 2; margin-bottom: var(--sp-8); }
.chura-age-gate-buttons { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity var(--t-slow), transform var(--t-slow); }
.fade-in.is-in { opacity: 1; transform: translateY(0); }

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

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .chura-nav { gap: var(--sp-4); }
  .chura-nav a { font-size: var(--fs-xs); }
}

@media (max-width: 960px) {
  .chura-footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--sp-16) 0; }
  .section-title { font-size: var(--fs-3xl); }
}

@media (max-width: 820px) {
  .chura-nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    padding: var(--sp-2); border: 1px solid var(--c-cyan); border-radius: 4px;
    background: var(--c-surface);
  }
  .chura-nav-toggle span { width: 22px; height: 2px; background: var(--c-cyan); display: block; }
  .chura-nav {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100vh;
    background: var(--c-surface); padding: var(--sp-20) var(--sp-8);
    flex-direction: column; align-items: stretch; gap: var(--sp-3);
    transition: right var(--t-base); border-left: 1px solid var(--c-cyan);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
  }
  .chura-nav.is-open { right: 0; }
  .chura-nav a { font-size: var(--fs-base); padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-line-soft); }
  .chura-cta-tel { margin-top: var(--sp-4); justify-content: center; }

  .chura-hero-frame { padding: var(--sp-12) var(--sp-6); }
  .chura-hero-tagline { font-size: var(--fs-base); }
  .chura-footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .info-item { border: 1px solid var(--c-line-soft); margin-bottom: 1px; }
  .pricing-table { font-size: var(--fs-sm); }
  .pricing-table th, .pricing-table td { padding: var(--sp-3) var(--sp-4); }
  .news-item { grid-template-columns: 1fr; gap: var(--sp-2); }

  .chura-float-tel { bottom: 16px; right: 16px; padding: var(--sp-3) var(--sp-4); font-size: var(--fs-xs); }
}

/* ============================================
   v2.1 追加: カルーセル / バナー / 見出しバナー / UX 修正
   ============================================ */

/* === カルーセル (横スライド) === */
.cast-carousel { position: relative; }
.cast-carousel-track {
  display: flex; gap: var(--sp-4);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--sp-6);
  scrollbar-width: none; -ms-overflow-style: none;
  padding: var(--sp-2) var(--sp-2) var(--sp-6);
}
.cast-carousel-track::-webkit-scrollbar { display: none; }
.cast-carousel-track .cast-card {
  flex: 0 0 auto;
  width: calc((100% - var(--sp-4) * 4) / 5);
  min-width: 220px;
  max-width: 260px;
  scroll-snap-align: start;
}

/* カルーセルナビゲーションボタン */
.cast-carousel-nav {
  display: flex; gap: var(--sp-3); justify-content: center;
  margin-top: var(--sp-4);
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-surface); border: 1px solid var(--c-cyan);
  color: var(--c-cyan-deep); font-size: var(--fs-xl);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t-fast);
  font-family: var(--f-cinzel);
}
.carousel-btn:hover { background: var(--c-cyan); color: #fff; transform: scale(1.05); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

/* グリッド版を縮約 (max 3 表示) */
.cast-grid-compact {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) {
  .cast-grid-compact { grid-template-columns: 1fr 1fr; }
}

/* === 見出しバナー (セクションタイトル新版) === */
.section-banner {
  position: relative;
  padding: var(--sp-16) var(--sp-6);
  margin-bottom: var(--sp-12);
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(14,165,233,0.08), rgba(201,169,97,0.08)),
    var(--cyan-grad-soft);
  border: 1px solid var(--c-cyan-light);
}
.section-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(14,165,233,0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201,169,97,0.12), transparent 40%);
  pointer-events: none;
}
.section-banner::after {
  content: ""; position: absolute; left: 50%; bottom: var(--sp-3); transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.section-banner-eyebrow {
  font-family: var(--f-cinzel); font-weight: 700; font-style: italic;
  font-size: var(--fs-sm); color: var(--c-gold-deep);
  letter-spacing: 0.5em; text-transform: uppercase;
  margin-bottom: var(--sp-3); position: relative; z-index: 2;
}
.section-banner-title {
  font-family: var(--f-mincho); font-weight: 800;
  font-size: clamp(2rem, 5vw, var(--fs-4xl));
  letter-spacing: 0.12em; color: var(--c-text);
  position: relative; z-index: 2;
  margin: 0;
}
.section-banner-tagline {
  margin-top: var(--sp-3); color: var(--c-text-muted); font-size: var(--fs-sm);
  position: relative; z-index: 2;
}

/* バナーバリアント (背景イメージ違い) */
.section-banner.variant-cast {
  background:
    linear-gradient(135deg, rgba(14,165,233,0.10), rgba(255,255,255,0)),
    radial-gradient(ellipse at 30% 50%, rgba(186,230,253,0.6), transparent 60%),
    var(--c-surface);
}
.section-banner.variant-event {
  background:
    linear-gradient(135deg, rgba(201,169,97,0.12), rgba(255,255,255,0)),
    radial-gradient(ellipse at 70% 50%, rgba(232,212,154,0.5), transparent 60%),
    var(--c-surface);
  border-color: var(--c-gold-bright);
}
.section-banner.variant-event::after {
  background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
}
.section-banner.variant-pricing {
  background:
    linear-gradient(135deg, rgba(14,165,233,0.05), rgba(201,169,97,0.05)),
    var(--c-surface-2);
}
.section-banner.variant-news {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(224,242,254,0.5)),
    var(--c-surface);
}

/* === ヒーロースライダー === */
.hero-slider {
  position: relative;
  min-height: 92vh; min-height: 92dvh;
  overflow: hidden;
}
.hero-slides {
  position: relative; height: 100%;
  min-height: 60vh; min-height: 60dvh;   /* 92vh → 60vh に縮小 (大きすぎ修正) */
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 1.2s ease;
  padding: 0;                            /* テキストオーバーレイ消したので余白不要 */
  background: var(--hero-grad);
}
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;                            /* v0.6.0: 0.18 → 1 (画像をはっきり見せる) */
}
/* v0.6.0: 用途別の背景フィット (front-page hero_banners.fit に対応) */
.hero-slide-bg-cover   { background-size: cover; }
.hero-slide-bg-contain {
  /* v0.6.2: ロゴが小さい (約 3.5KB の透過 PNG) ので大きめに表示 */
  background-size: auto 60%;             /* ヒーロー高さの 60% で表示 (中央) */
  background-color: #FAFBFC;
}

/* スマホでヒーローを更にコンパクトに */
@media (max-width: 768px) {
  .hero-slides { min-height: 50vh; min-height: 50dvh; }
}
.hero-slider-dots {
  position: absolute; left: 0; right: 0; bottom: 24px; z-index: 10;
  display: flex; justify-content: center; gap: var(--sp-2);
}
.hero-slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(15,23,42,0.2); border: 1px solid var(--c-text-faint);
  cursor: pointer; transition: all var(--t-fast);
}
.hero-slider-dot.is-active { background: var(--c-cyan-deep); border-color: var(--c-cyan-deep); width: 30px; border-radius: 5px; }

/* === バナー挿入箇所 (ウィジェット領域) === */
.chura-banner-area {
  padding: var(--sp-12) 0;
}
.chura-banner-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6);
}
.chura-banner-item {
  position: relative; overflow: hidden; border-radius: 8px;
  border: 1px solid var(--c-line-soft);
  background: var(--c-surface);
  aspect-ratio: 21 / 9;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.chura-banner-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.chura-banner-item img { width: 100%; height: 100%; object-fit: cover; }
.chura-banner-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, var(--c-cyan-50), var(--c-surface) 50%, #FEFCE8);
  color: var(--c-text-muted); font-size: var(--fs-sm); padding: var(--sp-8);
  font-family: var(--f-mincho); letter-spacing: 0.1em;
}
.chura-banner-placeholder small { color: var(--c-text-faint); margin-top: var(--sp-2); font-family: var(--f-sans); }

/* バナースライダー (Banner Slider) */
.banner-slider {
  position: relative; max-width: var(--container); margin: 0 auto var(--sp-12);
  padding: 0 var(--sp-6); overflow: hidden;
}
.banner-slider-track {
  display: flex; gap: var(--sp-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--sp-4);
}
.banner-slider-track::-webkit-scrollbar { display: none; }
.banner-slider-track > * {
  flex: 0 0 90%; scroll-snap-align: center;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 21 / 9;
}
@media (min-width: 720px) {
  .banner-slider-track > * { flex: 0 0 calc(50% - var(--sp-2)); }
}
@media (min-width: 1024px) {
  .banner-slider-track > * { flex: 0 0 calc(33.333% - var(--sp-3)); }
}

/* === UX 修正: モバイルメニュー内 TEL の下ライン === */
@media (max-width: 820px) {
  .chura-nav .chura-cta-tel {
    border-bottom: 1px solid var(--c-line-soft);
    border-left: none; border-right: none; border-top: none;
    border-radius: 0;
    padding: var(--sp-3) 0;
    margin-top: 0;
    background: transparent;
    color: var(--c-gold-deep);
    width: 100%;
  }
  .chura-nav .chura-cta-tel:hover {
    background: var(--c-cyan-50); color: var(--c-cyan-deep); box-shadow: none;
  }

  /* モバイルメニュー時の overlay (外側クリック検知) */
  .chura-nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.5); z-index: 99;
    backdrop-filter: blur(2px);
  }
  .chura-nav-overlay.is-open { display: block; animation: fadeIn 200ms ease; }
}


/* ============================================
   v2.2 修正: コンパクト化 + 横線タイトルバー
   ============================================ */

/* === セクション間隔を縮小 === */
.section { padding: var(--sp-12) 0; }
.section-tight { padding: var(--sp-8) 0; }

/* === ヒーロー縮小 === */
.chura-hero { min-height: 60vh; min-height: 60dvh; padding: var(--sp-12) var(--sp-6); }
.hero-slider, .hero-slides { min-height: 60vh; min-height: 60dvh; }
.chura-hero-frame { padding: var(--sp-10) var(--sp-8); }
@media (min-width: 720px) {
  .chura-hero-frame { padding: var(--sp-12) var(--sp-10); }
}
.chura-hero-title { font-size: clamp(2.5rem, 8vw, 4.5rem); }
.chura-hero-tagline { font-size: var(--fs-base); margin: var(--sp-6) 0; }
.chura-hero-cta { margin-top: var(--sp-6); }

/* === 横線タイトルバー (コンパクト) === */
.section-bar {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-3) 0;
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-cyan-light);
  position: relative;
}
.section-bar::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 60px; height: 2px; background: var(--c-cyan-deep);
}
.section-bar-eyebrow {
  font-family: var(--f-cinzel);
  font-weight: 700; font-style: italic;
  font-size: var(--fs-xs);
  color: var(--c-gold-deep);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 4px var(--sp-3);
  border: 1px solid var(--c-gold);
  border-radius: 3px;
  white-space: nowrap;
  background: #FEFCE8;
}
.section-bar-title {
  font-family: var(--f-mincho);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--c-text);
  letter-spacing: 0.1em;
  margin: 0;
  white-space: nowrap;
}
.section-bar-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--c-cyan-light) 0%, transparent 100%);
  min-width: 30px;
}
.section-bar-link {
  font-family: var(--f-cinzel);
  font-weight: 500; font-size: var(--fs-sm);
  color: var(--c-cyan-deep);
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.section-bar-link:hover { color: var(--c-gold-deep); }

@media (max-width: 540px) {
  .section-bar-eyebrow { font-size: 0.65rem; letter-spacing: 0.25em; padding: 2px var(--sp-2); }
  .section-bar-title { font-size: var(--fs-base); }
  .section-bar-link { display: none; }
}

/* バリエーション */
.section-bar.variant-event::after { background: var(--c-gold-deep); }
.section-bar.variant-event { border-bottom-color: var(--c-gold-bright); }
.section-bar.variant-news::after { background: var(--c-cyan); }

/* === キャストカード縮小 === */
.cast-carousel-track .cast-card {
  width: calc((100% - var(--sp-3) * 4) / 5);
  min-width: 175px;
  max-width: 220px;
}
.cast-carousel-track { gap: var(--sp-3); }
.cast-card-body { padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.cast-card-name { font-size: var(--fs-base); margin-bottom: 2px; }
.cast-card-meta { font-size: var(--fs-xs); margin-bottom: var(--sp-1); }

/* === イベント簡易カード (タイトルのみ) === */
.events-simple {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.event-link-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-left: 3px solid var(--c-cyan);
  border-radius: 4px;
  transition: all var(--t-fast);
  text-decoration: none;
  color: var(--c-text);
}
.event-link-card.is-special { border-left-color: var(--c-gold-deep); background: #FEFCE8; }
.event-link-card:hover {
  transform: translateX(4px); border-color: var(--c-cyan);
  box-shadow: var(--shadow-sm); color: var(--c-text);
}
.event-link-card-name {
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-base);
  letter-spacing: 0.05em;
}
.event-link-card-arrow {
  font-family: var(--f-cinzel); color: var(--c-cyan-deep);
  font-size: var(--fs-lg); margin-left: var(--sp-3);
}

/* === info-grid 縮小 === */
.info-item { padding: var(--sp-4); }
.info-item-value { font-size: var(--fs-base); }

/* === 全体フォントサイズ微調整 (デフォルト 16px → 15px 体感) === */
@media (max-width: 720px) {
  body { font-size: 15px; }
  .section { padding: var(--sp-10) 0; }
  .chura-hero { min-height: 55vh; }
  .hero-slider, .hero-slides { min-height: 55vh; }
}

/* ============================================
   v0.5 - 全面リライト指示の対応
   - タイトルバー: 全幅塗り潰し・濃水色 bg image
   - サイズ縮小 (1/3 系)
   - 写メ日記グリッド
   - 新人縦並び
   - ヘブンロゴ
   ============================================ */

/* === タイトルバー (塗り潰し版) - 旧 .section-bar 上書き === */
.section-bar {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  margin: 0 auto var(--sp-6);
  border: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    /* 微細な水玉パターン (波紋) */
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.08) 1px, transparent 2px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.06) 1px, transparent 2px),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.08) 1px, transparent 2px),
    /* 金光のスポット */
    radial-gradient(ellipse at 95% 50%, rgba(232,212,154,0.15), transparent 40%),
    /* メイン: 濃い水色グラデ */
    linear-gradient(135deg, #075985 0%, #0369A1 40%, #0284C7 70%, #0EA5E9 100%);
  background-size: 24px 24px, 32px 32px, 28px 28px, 36px 36px, 100% 100%, 100% 100%;
  box-shadow: 0 2px 8px rgba(3, 105, 161, 0.25);
}
.section-bar::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--gold-grad-v);
}
.section-bar::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(90deg, transparent, rgba(232,212,154,0.2));
  pointer-events: none;
}
.section-bar-eyebrow {
  font-family: var(--f-cinzel);
  font-weight: 700; font-style: italic;
  font-size: var(--fs-xs);
  color: var(--c-gold-bright);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 3px var(--sp-3);
  border: 1px solid var(--c-gold-bright);
  border-radius: 3px;
  white-space: nowrap;
  background: rgba(0,0,0,0.15);
}
.section-bar-title {
  font-family: var(--f-mincho);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.section-bar-line { display: none; }
.section-bar-link {
  margin-left: auto;
  font-family: var(--f-cinzel);
  font-weight: 700; font-size: var(--fs-xs);
  color: var(--c-gold-bright);
  letter-spacing: 0.2em;
  white-space: nowrap;
  padding: 4px var(--sp-3);
  border: 1px solid var(--c-gold);
  border-radius: 3px;
  background: rgba(0,0,0,0.15);
  position: relative; z-index: 2;
}
.section-bar-link:hover { background: var(--c-gold-deep); color: #fff; border-color: var(--c-gold-deep); }

/* バリエーション (イベント=金、ニュース=明水色) */
.section-bar.variant-event {
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 1px, transparent 2px),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 1px, transparent 2px),
    radial-gradient(ellipse at 95% 50%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(135deg, #92400E 0%, #A16207 40%, #C9A961 100%);
  background-size: 28px 28px, 36px 36px, 100% 100%, 100% 100%;
}
.section-bar.variant-news {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.07) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.07) 1px, transparent 2px),
    linear-gradient(135deg, #0369A1 0%, #0EA5E9 50%, #38BDF8 100%);
  background-size: 32px 32px, 28px 28px, 100% 100%;
}

@media (max-width: 540px) {
  .section-bar { padding: var(--sp-2) var(--sp-3); }
  .section-bar-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; padding: 2px var(--sp-2); }
  .section-bar-title { font-size: var(--fs-base); }
  .section-bar-link { font-size: 0.6rem; padding: 2px var(--sp-2); letter-spacing: 0.1em; }
}

/* === セクション縮小 (1/3 系) === */
.section-compact { padding: var(--sp-6) 0; }
.section-mini { padding: var(--sp-4) 0; }

/* キャストカード (本日のキャスト等で更に縮小) === */
.cast-carousel-track.is-mini .cast-card { min-width: 130px; max-width: 160px; }
.cast-carousel-track.is-mini .cast-card-name { font-size: var(--fs-sm); }
.cast-carousel-track.is-mini .cast-card-meta { font-size: 0.7rem; }
.cast-carousel-track.is-mini .cast-card-body { padding: var(--sp-2) var(--sp-3); }

/* === 新人キャスト 縦並び (1/2 size) === */
.cast-vertical-list {
  display: flex; flex-direction: column; gap: var(--sp-3);
  max-width: 600px; margin: 0 auto;
}
.cast-vertical-list .cast-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 0;
  align-items: stretch;
}
.cast-vertical-list .cast-card-photo { aspect-ratio: 1 / 1; }
.cast-vertical-list .cast-card-body { padding: var(--sp-3) var(--sp-4); }
.cast-vertical-list .cast-card-name { font-size: var(--fs-base); }

/* === 写メ日記 3x3 グリッド === */
.diary-grid {
  display: grid; gap: var(--sp-2);
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px; margin: 0 auto;
}
.diary-item {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 4px; background: var(--c-surface-3);
  border: 1px solid var(--c-line-soft);
  transition: transform var(--t-fast);
  display: block;
}
.diary-item:hover { transform: scale(1.03); border-color: var(--c-cyan); z-index: 2; }
.diary-item img { width: 100%; height: 100%; object-fit: cover; }
.diary-item-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--sp-2);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: #fff; font-size: var(--fs-xs); line-height: 1.3;
}
.diary-item-cast { font-family: var(--f-mincho); font-weight: 700; }
.diary-item-title { color: rgba(255,255,255,0.85); font-size: 0.65rem; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 540px) {
  .diary-grid { gap: 4px; }
  .diary-item-overlay { padding: 4px; }
}

/* === ヘッダーロゴ = ヘブンの実画像 === */
.chura-logo-img { height: 40px; width: auto; display: block; }
.chura-header.is-scrolled .chura-logo-img { height: 32px; }
@media (max-width: 720px) {
  .chura-logo-img { height: 32px; }
}

/* === ヒーローのバナー差し替え (画像 fullbleed + 文字オーバーレイ下げ) === */
.chura-hero.has-banner-bg { padding: 0; min-height: auto; }
.chura-hero.has-banner-bg .hero-slider, .chura-hero.has-banner-bg .hero-slides { min-height: 70vh; min-height: 70dvh; }
.chura-hero.has-banner-bg .hero-slide {
  background: #000; padding: 0;
  align-items: flex-end; /* 文字下寄せ */
}
.chura-hero.has-banner-bg .hero-slide-bg {
  opacity: 1;
  background-size: cover;
  background-position: center;
}
.chura-hero.has-banner-bg .chura-hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  padding: var(--sp-12) var(--sp-6) var(--sp-16);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
  text-align: center;
}
.chura-hero.has-banner-bg .chura-hero-frame {
  border: none; padding: 0; background: transparent; box-shadow: none;
  margin-top: var(--sp-12);
}
.chura-hero.has-banner-bg .chura-hero-frame::before, .chura-hero.has-banner-bg .chura-hero-frame::after { display: none; }
.chura-hero.has-banner-bg .chura-hero-eyebrow {
  color: var(--c-gold-bright);
  margin-bottom: var(--sp-4);
}
.chura-hero.has-banner-bg .chura-hero-title { color: #fff; }
.chura-hero.has-banner-bg .chura-hero-title-en { color: var(--c-gold-bright); }
.chura-hero.has-banner-bg .chura-hero-tagline { color: rgba(255,255,255,0.95); }

/* === Reservation 3 ボタン === */
.reserve-options {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 720px; margin: var(--sp-6) auto 0;
}
.reserve-btn {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--f-mincho); font-weight: 700; font-size: var(--fs-base);
  letter-spacing: 0.1em; border-radius: 6px;
  transition: all var(--t-base); border: 1px solid transparent;
}
.reserve-btn-tel  { background: #DC2626; color: #fff; }
.reserve-btn-tel:hover  { background: #EF4444; color: #fff; transform: translateY(-2px); }
.reserve-btn-line { background: #06C755; color: #fff; }
.reserve-btn-line:hover { background: #00B900; color: #fff; transform: translateY(-2px); }
.reserve-btn-net  { background: var(--cyan-grad); color: #fff; }
.reserve-btn-net:hover  { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-cyan); }


/* ============================================
   v0.6 - 極小化指示の対応
   - 営業情報・アクセスマップ・フッターをさらにコンパクト
   ============================================ */

/* === section-mini を更に縮小 === */
.section-mini { padding: var(--sp-3) 0; }
.section-mini .section-bar {
  padding: 4px var(--sp-3);
  margin-bottom: var(--sp-2);
}
.section-mini .section-bar-eyebrow {
  font-size: 0.55rem; padding: 1px 6px; letter-spacing: 0.2em;
}
.section-mini .section-bar-title {
  font-size: var(--fs-sm);
}
.section-mini .section-bar-link {
  font-size: 0.55rem; padding: 1px 6px;
}
.section-mini .info-grid { gap: 1px; }
.section-mini .info-item { padding: var(--sp-2) var(--sp-3); }
.section-mini .info-item-label { font-size: 0.55rem; letter-spacing: 0.25em; margin-bottom: 0; }
.section-mini .info-item-value { font-size: var(--fs-sm); font-weight: 500; }

/* マップ部分極小 */
.section-mini > .container > div[style*="aspect-ratio"] {
  aspect-ratio: 24/4 !important;
  font-size: var(--fs-xs) !important;
  padding: var(--sp-3) !important;
}

/* === Footer 極小化 === */
.chura-footer {
  padding: var(--sp-6) 0 var(--sp-3);
  margin-top: var(--sp-6);
}
.chura-footer-grid {
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.chura-footer-brand .chura-logo,
.chura-footer-brand .chura-logo-img {
  height: 28px; width: auto;
  font-size: var(--fs-base);
}
.chura-footer-brand p {
  margin-top: var(--sp-2);
  font-size: 0.7rem;
  line-height: 1.6;
}
.chura-footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-2);
  padding-bottom: 4px;
}
.chura-footer ul li {
  margin-bottom: 4px;
  font-size: 0.7rem;
}
.chura-footer ul li a {
  font-size: 0.75rem;
}
.chura-footer-legal {
  padding-top: var(--sp-3);
  font-size: 0.65rem;
  gap: var(--sp-2);
}
.chura-footer-legal nav { gap: var(--sp-3); }
.chura-footer-r18 {
  padding: 1px 4px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

@media (max-width: 720px) {
  .chura-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .chura-footer h4 { font-size: 0.65rem; }
}

/* ============================================
   v0.7 - ヒーロー内ロゴ + プレミアム嬢ストリップ
   ============================================ */

/* === ヒーロー 1 枚目内 中央ロゴ === */
.hero-slide-logo {
  position: absolute; left: 50%; top: 28%;
  transform: translate(-50%, 0);
  max-width: 60%; max-height: 32vh;
  height: auto; width: auto;
  z-index: 4;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}
@media (max-width: 720px) {
  .hero-slide-logo { max-width: 80%; top: 22%; }
}

/* === Premium 嬢ストリップ (バナー枠位置に差し込み) === */
.premium-strip {
  background:
    radial-gradient(circle at 10% 50%, rgba(232,212,154,0.15), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(232,212,154,0.15), transparent 40%),
    linear-gradient(135deg, #1A1614 0%, #2A2218 50%, #1A1614 100%);
  padding: var(--sp-4) 0;
  border-top: 2px solid var(--c-gold);
  border-bottom: 2px solid var(--c-gold);
  position: relative;
  overflow: hidden;
}
.premium-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(232,212,154,0.04) 1px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(232,212,154,0.04) 1px, transparent 2px);
  background-size: 30px 30px, 36px 36px;
  pointer-events: none;
}
.premium-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative; z-index: 2;
}
.premium-strip-header {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.premium-strip-eyebrow {
  font-family: var(--f-cinzel); font-weight: 700; font-style: italic;
  color: var(--c-gold-bright); letter-spacing: 0.5em;
  font-size: var(--fs-xs); text-transform: uppercase;
  padding: 3px var(--sp-3);
  border: 1px solid var(--c-gold);
  border-radius: 3px;
  background: rgba(0,0,0,0.3);
}
.premium-strip-title {
  font-family: var(--f-mincho); font-weight: 700;
  font-size: var(--fs-base); color: #fff; letter-spacing: 0.15em; margin: 0;
}
.premium-strip-link {
  margin-left: auto;
  font-family: var(--f-cinzel); font-weight: 700; font-size: 0.65rem;
  color: var(--c-gold-bright); letter-spacing: 0.2em;
  padding: 3px var(--sp-3);
  border: 1px solid var(--c-gold);
  border-radius: 3px; background: rgba(0,0,0,0.3);
}
.premium-strip-link:hover { background: var(--c-gold-deep); color: #fff; }

/* プレミアム用カードスタイル (黒背景に白) */
.premium-strip .cast-card {
  background: rgba(255,255,255,0.05);
  border-color: var(--c-gold);
}
.premium-strip .cast-card-name {
  color: var(--c-gold-bright);
}
.premium-strip .cast-card-meta {
  color: var(--c-gold);
}
.premium-strip .cast-carousel-track .cast-card {
  min-width: 130px; max-width: 160px;
}
.premium-strip .cast-card-body { padding: var(--sp-2) var(--sp-3); }
.premium-strip .carousel-btn {
  background: rgba(0,0,0,0.4);
  border-color: var(--c-gold);
  color: var(--c-gold-bright);
}
.premium-strip .carousel-btn:hover { background: var(--c-gold-deep); color: #fff; }


/* ==========================================
 * Phase 2: cast-detail (HEAVEN 同等 個別プロフ)
 * ========================================== */

.chura-breadcrumb {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}
.chura-breadcrumb a { color: var(--c-text-muted); text-decoration: none; }
.chura-breadcrumb a:hover { color: var(--c-primary); }
.chura-breadcrumb span { color: var(--c-text); font-weight: 700; }

/* cast hero */
.cast-hero {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  gap: var(--sp-6);
  align-items: start;
  margin-bottom: var(--sp-8);
}
@media (max-width: 720px) {
  .cast-hero { grid-template-columns: 1fr; }
}
.cast-hero-h1 {
  font-family: var(--f-mincho, 'Shippori Mincho B1', serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin: 0 0 var(--sp-2);
  line-height: 1.2;
}
.cast-hero-sub {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3);
}
.cast-hero-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-right: var(--sp-2);
}
.cast-hero-status.status-available { background: #e8f5e9; color: #2e7d32; }
.cast-hero-status.status-busy      { background: #fff3e0; color: #e65100; }
.cast-hero-status.status-off       { background: #f5f5f5; color: #616161; }
.cast-hero-shift {
  font-size: var(--fs-sm);
  color: var(--c-text);
}

.cast-catchcopy {
  background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
  border-left: 4px solid var(--c-primary, #e23a7a);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 8px;
  margin: var(--sp-4) 0;
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.7;
}

/* gallery */
.cast-gallery-main {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: var(--sp-3);
  cursor: zoom-in;
}
.cast-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}
.cast-gallery-thumb {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
  position: relative;
}
.cast-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.cast-gallery-thumb:hover img { transform: scale(1.05); }

/* prof table */
.cast-prof-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0;
  font-size: var(--fs-sm);
}
.cast-prof-table th, .cast-prof-table td {
  padding: var(--sp-2) var(--sp-3);
  text-align: left;
  border-bottom: 1px solid var(--c-line-soft, #f0e6e9);
}
.cast-prof-table th {
  width: 30%;
  color: var(--c-text-muted);
  font-weight: 500;
  background: var(--c-surface-alt, #fafafa);
}

/* sections */
.cast-section { margin: var(--sp-8) 0; }
.cast-section-title {
  font-family: var(--f-mincho, 'Shippori Mincho B1', serif);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  margin: 0 0 var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--c-primary, #e23a7a);
  display: inline-block;
}

.cast-self-intro-body, .cast-staff-comment-body {
  white-space: pre-line;
  line-height: 1.9;
  font-size: var(--fs-base);
  color: var(--c-text);
}
.cast-staff-comment {
  background: var(--c-surface-alt, #fdfaf3);
  border-radius: 8px;
  padding: var(--sp-5);
  border-left: 4px solid var(--c-gold, #c9a55a);
}
.cast-staff-comment .cast-section-title {
  color: var(--c-gold-deep, #8a6e2e);
  border-bottom-color: var(--c-gold, #c9a55a);
  font-size: var(--fs-base);
}

/* play features */
.cast-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
}
.cast-features-group {
  background: var(--c-surface-alt, #fafafa);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 8px;
}
.cast-features-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.cast-features-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.cast-features-tag {
  font-size: var(--fs-xs);
  padding: 3px 10px;
  background: #fff;
  border: 1px solid var(--c-line-soft, #f0e6e9);
  border-radius: 999px;
}

/* HEAVEN buttons block */
.cast-heaven-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}
.cast-heaven-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
  border: 2px solid var(--c-primary, #e23a7a);
  border-radius: 12px;
  color: var(--c-primary, #e23a7a);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all .2s;
}
.cast-heaven-button:hover {
  background: var(--c-primary, #e23a7a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226,58,122,0.25);
}

/* qa */
.cast-qa-item {
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px dashed var(--c-line-soft, #f0e6e9);
}
.cast-qa-q {
  font-weight: 700;
  color: var(--c-primary, #e23a7a);
  margin-bottom: var(--sp-2);
}
.cast-qa-q::before { content: 'Q. '; }
.cast-qa-a {
  color: var(--c-text);
  line-height: 1.8;
}
.cast-qa-a::before { content: 'A. '; color: var(--c-gold-deep, #8a6e2e); font-weight: 700; }

/* neighbor nav */
.cast-neighbor-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5);
  margin: var(--sp-8) 0 var(--sp-4);
  background: var(--c-surface-alt, #fafafa);
  border-radius: 8px;
  flex-wrap: wrap;
}
.cast-neighbor-nav a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-sm);
}
.cast-neighbor-nav a:hover { color: var(--c-primary, #e23a7a); }

/* ==========================================
 * Phase 2: lightbox
 * ========================================== */
.chura-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.chura-lightbox.is-open { display: flex; }
.chura-lightbox-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.chura-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
}
.chura-lightbox-caption {
  color: #fff;
  font-size: var(--fs-sm);
  text-align: center;
  max-width: 600px;
}
.chura-lightbox-close, .chura-lightbox-prev, .chura-lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 10;
}
.chura-lightbox-close:hover, .chura-lightbox-prev:hover, .chura-lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}
.chura-lightbox-close { top: 16px; right: 16px; }
.chura-lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.chura-lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .chura-lightbox-prev, .chura-lightbox-next { width: 40px; height: 40px; font-size: 20px; }
  .chura-lightbox-close { width: 40px; height: 40px; }
}

/* diary-grid: 既存定義 (line 1112-) を維持。 Phase 2 で追加した重複定義は削除済 */

/* ==========================================
 * Phase 4.5: Hero slide が <a> リンクになった対応
 * ========================================== */
.hero-slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.hero-slide-link:hover .hero-slide-bg {
  filter: brightness(1.05);
  transition: filter .25s ease;
}
.hero-slide-link:focus-visible {
  outline: 3px solid var(--c-gold, #c9a55a);
  outline-offset: -3px;
}

/* ==========================================
 * Phase 4.6: HEAVEN diarylist の iframe クリップ表示
 * ========================================== */
.diary-iframe-frame {
  margin-top: var(--sp-4);
}
.diary-iframe-wrap {
  position: relative;
  width: 100%;
  height: 460px;            /* 横スライド 1 行分 (画像 + キャスト名等) */
  overflow: hidden;
  border: 1px solid var(--c-border, #ffd6e0);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.diary-iframe {
  position: absolute;
  top: -1320px;             /* HEAVEN top の「投稿写メ日記」セクションまで上に隠す */
  left: 0;
  width: 100%;
  height: 4000px;
  border: none;
  pointer-events: auto;
}
.diary-iframe-hint {
  text-align: center;
  color: var(--c-text-muted);
  font-size: var(--fs-xs);
  margin: var(--sp-2) 0 0;
}

/* タブレット (768-1024px) */
@media (max-width: 1024px) {
  .diary-iframe { top: -1280px; }
}

/* スマホ (768px 以下、 モバイル版 HEAVEN レイアウト) */
@media (max-width: 768px) {
  .diary-iframe-wrap { height: 420px; }
  .diary-iframe { top: -1100px; height: 3500px; }
}

/* 細いスマホ (480px 以下) */
@media (max-width: 480px) {
  .diary-iframe-wrap { height: 380px; }
  .diary-iframe { top: -950px; height: 3200px; }
}

/* ==========================================
 * Phase 5: HEAVEN プロキシ Widget (横スライド + scroll-snap)
 * 写メ日記 + 待機中 共通の card slide
 * ========================================== */

/* ----- 共通: 横スライドラッパ ----- */
.heaven-diary-slide,
.heaven-waiting-slide {
  position: relative;
  margin-top: var(--sp-4);
}
.heaven-diary-slide-track,
.heaven-waiting-slide-track {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--sp-4);
  -webkit-overflow-scrolling: touch;
  padding: var(--sp-2) var(--sp-4);
  scrollbar-width: thin;
  scrollbar-color: var(--c-primary, #e23a7a) transparent;
}
.heaven-diary-slide-track::-webkit-scrollbar,
.heaven-waiting-slide-track::-webkit-scrollbar {
  height: 6px;
}
.heaven-diary-slide-track::-webkit-scrollbar-thumb,
.heaven-waiting-slide-track::-webkit-scrollbar-thumb {
  background: var(--c-primary, #e23a7a);
  border-radius: 3px;
}

.heaven-diary-slide-arrow,
.heaven-waiting-slide-arrow {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-border, #ffd6e0);
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-primary, #e23a7a);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform .15s, background .15s;
}
.heaven-diary-slide-arrow:hover,
.heaven-waiting-slide-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--c-primary, #e23a7a);
  color: #fff;
}
.heaven-diary-slide-arrow.is-prev,
.heaven-waiting-slide-arrow.is-prev { left: -8px; }
.heaven-diary-slide-arrow.is-next,
.heaven-waiting-slide-arrow.is-next { right: -8px; }

/* スマホでは矢印非表示 (スワイプで操作) */
@media (max-width: 600px) {
  .heaven-diary-slide-arrow,
  .heaven-waiting-slide-arrow { display: none; }
}

/* ----- 写メ日記 card ----- */
.heaven-diary-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line-soft, #f0e6e9);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.heaven-diary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(226, 58, 122, 0.15);
}
.heaven-diary-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-surface-alt, #fafafa);
}
.heaven-diary-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heaven-diary-card-title {
  padding: var(--sp-3) var(--sp-3) 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 2.8em;
}
.heaven-diary-card-cast {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
  border-top: 1px solid var(--c-line-soft, #f0e6e9);
  margin-top: var(--sp-2);
}
.heaven-diary-card-cast-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--c-border, #ffd6e0);
}
.heaven-diary-card-cast-text { flex: 1; min-width: 0; }
.heaven-diary-card-cast-name {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heaven-diary-card-cast-meta {
  font-size: 11px;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heaven-diary-slide-cta,
.heaven-waiting-slide-cta {
  text-align: center;
  margin-top: var(--sp-4);
}

/* ----- 待機中 card (ほぼ同じだが status バッジ付き) ----- */
.heaven-waiting-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line-soft, #f0e6e9);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.heaven-waiting-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(226, 58, 122, 0.15);
}
.heaven-waiting-card.is-busy { opacity: 0.7; }
.heaven-waiting-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-surface-alt, #fafafa);
}
.heaven-waiting-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heaven-waiting-card-status {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
}
.heaven-waiting-card-status.status-red    { color: #e23a7a; }
.heaven-waiting-card-status.status-green  { color: #2e7d32; }
.heaven-waiting-card-status.status-blue   { color: #1565c0; }
.heaven-waiting-card-body {
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
}
.heaven-waiting-card-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.heaven-waiting-card-age {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: 400;
}
.heaven-waiting-card-sizes {
  font-size: 11px;
  color: var(--c-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================
 * Phase 6.1: section-bar eyebrow 大型化 (title 削除に伴う調整)
 * ========================================== */
.section-bar-eyebrow-large {
  font-family: var(--f-cinzel);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 3vw, 26px) !important;  /* 旧 fs-xs から大幅拡大 */
  color: var(--c-gold-deep);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px var(--sp-4) !important;
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  background: #FEFCE8;
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
}

/* ==========================================
 * Phase 6.3: カードサイズ半分 + 横スライド (premium / today / waiting / diary)
 *
 * - cast-carousel mini を更に半分に
 * - heaven-diary-card に is-quarter モード (1/4 サイズ、 12 件 1 view)
 * - heaven-waiting-card サイズ半分 (6 件 1 view)
 * - cast-card の name フォントサイズと catchcopy 用調整
 * ========================================== */

/* cast-carousel mini を縮小 (元 130-160 → 90-110) */
.cast-carousel-track.is-mini .cast-card {
  min-width: 95px !important;
  max-width: 130px !important;
}
.cast-carousel-track.is-mini .cast-card-name {
  font-size: var(--fs-xs) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-carousel-track.is-mini .cast-card-meta {
  font-size: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-carousel-track.is-mini .cast-card-body {
  padding: var(--sp-2) var(--sp-2) var(--sp-3) !important;
}

/* HEAVEN 写メ日記 1/4 サイズ (12 件 1 view 想定) */
.heaven-diary-card-quarter {
  flex: 0 0 110px !important;
}
.heaven-diary-card-quarter .heaven-diary-card-title {
  padding: 6px 8px 0 !important;
  font-size: 11px !important;
  -webkit-line-clamp: 1 !important;
  min-height: auto !important;
  line-height: 1.3 !important;
}
.heaven-diary-card-quarter .heaven-diary-card-cast {
  padding: 4px 8px 6px !important;
  margin-top: 4px !important;
  border-top: none !important;
  gap: 0 !important;
}
.heaven-diary-card-quarter .heaven-diary-card-cast-name {
  font-size: 10px !important;
}
.heaven-diary-card-quarter .heaven-diary-card-cast-meta {
  font-size: 9px !important;
}
.heaven-diary-card-quarter .heaven-diary-card-img {
  aspect-ratio: 3 / 4 !important;
}

/* HEAVEN 待機中 1/2 サイズ (6 件 1 view 想定) */
.heaven-waiting-card {
  flex: 0 0 130px !important;  /* 元 180 → 130 */
}
.heaven-waiting-card-name {
  font-size: var(--fs-xs) !important;
}
.heaven-waiting-card-sizes {
  font-size: 9px !important;
}
.heaven-waiting-card-status {
  font-size: 9px !important;
  padding: 2px 6px !important;
}

/* キャッチコピー (newface 一覧用) */
.cast-card-catchcopy {
  font-size: var(--fs-xs);
  color: var(--c-gold-deep, #8a6e2e);
  margin-top: var(--sp-2);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================
 * Phase 7: newface 専用レイアウト統一 (cast-vertical-list 1/2 size)
 * 元 100px の写真サイズを 1/2 (50px) → 横並びの 1/2 サイズ統一
 * Catchcopy 表示対応
 * ========================================== */
.cast-vertical-list .cast-card {
  grid-template-columns: 80px 1fr !important;
  align-items: center !important;
  border: 1px solid var(--c-line-soft, #f0e6e9) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: var(--c-surface, #fff) !important;
  transition: transform .15s, box-shadow .15s !important;
}
.cast-vertical-list .cast-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(226,58,122,0.12) !important;
}
.cast-vertical-list .cast-card-photo {
  aspect-ratio: 4 / 5 !important;
  width: 80px !important;
  height: auto !important;
}
.cast-vertical-list .cast-card-body {
  padding: var(--sp-2) var(--sp-3) !important;
}
.cast-vertical-list .cast-card-name {
  font-size: var(--fs-sm) !important;
  font-weight: 700;
  margin-bottom: 2px;
}
.cast-vertical-list .cast-card-meta {
  font-size: 11px !important;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}
.cast-vertical-list .cast-card-catchcopy {
  font-size: 11px !important;
  -webkit-line-clamp: 2 !important;
}

/* ==========================================
 * Phase 6.1+6.3: premium-strip 大型 eyebrow + 茶色枠半分 + cast-card 半分
 * ========================================== */
.premium-strip-eyebrow-large {
  font-size: clamp(16px, 2.5vw, 22px) !important;
  letter-spacing: 0.35em;
  padding: 5px var(--sp-4) !important;
}
/* premium-strip 内 cast-card を半分サイズに (元 130-160 → 80-100) */
.premium-strip .cast-carousel-track .cast-card {
  min-width: 85px !important;
  max-width: 110px !important;
}
.premium-strip .cast-carousel-track {
  gap: var(--sp-2) !important;
}
.premium-strip .cast-card-body {
  padding: var(--sp-1) var(--sp-2) var(--sp-2) !important;
}
.premium-strip .cast-card-name {
  font-size: 11px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.premium-strip .cast-card-meta {
  font-size: 9px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 全体 padding 半分にして枠サイズ縮小 */
.premium-strip {
  padding: var(--sp-2) 0 !important;
}
.premium-strip-header {
  margin-bottom: var(--sp-2) !important;
}

/* ==========================================
 * Phase 12.1: dual-banner (コスプレ + 求人) サイズ統一
 * 求人がコスプレと同じ高さ・aspect ratio で揃うように
 * ========================================== */
.dual-banner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  align-items: stretch;
}
.dual-banner-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .15s;
  text-decoration: none;
  color: inherit;
  background: #1a1614;
}
/* v0.6.2: 個別サイズ — コスプレは元の縦長 8/15 に戻す、 求人は現状の固定高さ */
.dual-banner-cosplay {
  aspect-ratio: 8 / 15;   /* 元のコスプレサイズ */
  height: auto;
}
.dual-banner-card:not(.dual-banner-cosplay) {
  height: 320px;
}
@media (max-width: 768px) {
  .dual-banner-card:not(.dual-banner-cosplay) { height: 240px; }
}
@media (max-width: 480px) {
  .dual-banner-card:not(.dual-banner-cosplay) { height: 180px; }
}
.dual-banner-card:hover {
  transform: translateY(-2px);
}
.dual-banner-card img {
  width: 100%;
  height: 100%;
  display: block;
  /* v0.6.1: cover → contain に変更 (求人画像 16:9 のドアップ問題を解消、 全体表示) */
  object-fit: contain;
  object-position: center;
}
/* コスプレ側 (縦長 8:15) は cover でも違和感なく見える、 image natural ratio で表示 */
.dual-banner-cosplay img {
  object-fit: cover;
}

/* 求人バナー (テキスト装飾): コスプレと同じ aspect-ratio で内部レイアウト */
.dual-banner-recruit {
  background: linear-gradient(135deg, #c9a55a 0%, #8a6e2e 100%);
  color: #fff;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  box-shadow: 0 2px 8px rgba(138, 110, 46, 0.3) !important;
}
.dual-banner-recruit-eyebrow {
  font-family: var(--f-cinzel);
  font-size: clamp(11px, 1.8vw, 16px);
  font-weight: 700;
  letter-spacing: 0.25em;
}
.dual-banner-recruit-title {
  font-family: var(--f-mincho);
  font-size: clamp(13px, 2.3vw, 19px);
  font-weight: 700;
  margin-top: 2px;
}
.dual-banner-recruit-desc {
  font-size: clamp(10px, 1.5vw, 13px);
  opacity: 0.95;
  line-height: 1.6;
  margin-top: var(--sp-2);
}
.dual-banner-recruit-cta {
  font-size: 11px;
  margin-top: var(--sp-2);
  opacity: 0.9;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: var(--sp-2);
  width: 80%;
}

/* スマホ: 上下並びで両方とも幅 100% */
@media (max-width: 600px) {
  .dual-banner-wrap {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ==========================================
 * Phase 12.2: 注意事項・禁止事項バナー (HEAVEN 風、 黒背景 + ピンク見出し)
 * ========================================== */
.notice-banner {
  display: block;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0d12 100%);
  color: #fff;
  border: 2px solid #e23a7a;
  border-radius: 12px;
  padding: var(--sp-6) var(--sp-5);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 16px rgba(226, 58, 122, 0.25);
  transition: transform .15s, box-shadow .15s;
}
.notice-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 58, 122, 0.4);
}
.notice-banner-title {
  font-family: var(--f-mincho);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  color: #fff;
  letter-spacing: 0.1em;
}
.notice-banner-headline {
  background: #e23a7a;
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 16px);
  display: inline-block;
  margin-bottom: var(--sp-4);
}
.notice-banner-body {
  font-size: clamp(13px, 1.7vw, 15px);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
  color: #ddd;
}
.notice-banner-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-3) 0 var(--sp-4);
  text-align: left;
  display: inline-block;
}
.notice-banner-list li {
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.9;
  color: #ccc;
  padding-left: var(--sp-4);
  position: relative;
}
.notice-banner-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #e23a7a;
}
.notice-banner-cta {
  margin-top: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  display: inline-block;
  border: 1px solid #e23a7a;
  border-radius: 999px;
  font-size: var(--fs-sm);
  color: #e23a7a;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(226, 58, 122, 0.1);
}
.notice-banner:hover .notice-banner-cta {
  background: #e23a7a;
  color: #fff;
}
.notice-banner-sub {
  display: inline-block;
  font-size: 0.85em;
  color: #999;
  padding-left: var(--sp-3);
  margin-top: 2px;
  line-height: 1.6;
}

/* ==========================================
 * v0.7.0: ヒーロー新規実装 (chura-mega-slider)
 * 既存 .hero-slider / .hero-slide が反映されない問題のため、
 * 完全に新クラス名で作り直し。 古い CSS の影響を一切受けない。
 * ========================================== */
.chura-mega-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 720px;
  overflow: hidden;
  background: #1a1614;
}
@media (max-width: 768px) {
  .chura-mega-slider { height: 50vh; min-height: 300px; }
}
@media (max-width: 480px) {
  .chura-mega-slider { height: 42vh; min-height: 260px; }
}
.mega-slide-stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.mega-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity .8s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  z-index: 1;
}
.mega-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.mega-slide.fit-contain {
  background-size: contain;             /* v0.7.1: 全体表示 (cover で zoom in されて大きく見えていた問題を解消) */
  background-color: #1a1614;            /* 余白は黒系 (背景画像と馴染ませる) */
}
/* ロゴ (1 枚目) は更に小さく中央に */
.mega-slide.fit-logo {
  background-size: auto 38%;            /* v0.7.1: ロゴ画像が大きすぎる問題、 高さ 38% に縮小 */
  background-color: #FAFBFC;
}
.mega-slide:focus-visible {
  outline: 3px solid var(--c-gold, #c9a55a);
  outline-offset: -3px;
}
.mega-slide-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.mega-slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  transition: background .15s, transform .15s;
}
.mega-slide-dot.is-active {
  background: var(--c-gold, #c9a55a);
  transform: scale(1.3);
}

/* ==========================================
 * v0.7.2: 全ページ統一の背景画像 (青夜空+山+星空、 SS 99 左側 crop)
 * 背景画像を主役にして、 セクションの白被せを薄くする
 * ========================================== */
body {
  background-image: url('../img/bg/site-bg.png');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0a1a3a;             /* 背景画像のダーク青に近づける */
}
/* v0.7.2: セクションの白被せを 92% → 60% に下げ、 背景画像が透けて見えるように */
.section {
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* container 系を背景の上に明示的に配置 */
.container,
.container-narrow {
  position: relative;
  z-index: 1;
}
/* ヒーロー / プレミアムストリップ / ヘッダー / フッターは元の暗背景維持 */
.chura-mega-slider,
.premium-strip,
.chura-footer,
.chura-header {
  background-color: #1a1614;
}
.chura-mega-slider { background: #1a1614; }
