/* =========================================
   KINGYŌ WHITE — style.css
   ========================================= */

:root {
  --bg:          #faf9f7;
  --bg-2:        #f4f2ef;
  --bg-3:        #eeecea;
  --black:       #080808;
  --text:        #1a1a1a;
  --text-dim:    rgba(26,26,26,0.65);
  --text-faint:  rgba(26,26,26,0.35);
  --gold:        #c9a84c;
  --gold-light:  #e2c472;
  --gold-dark:   #9a7b30;
  --gold-faint:  rgba(201,168,76,0.12);
  --white:       #ffffff;
  --gray:        #888880;
  --gray-light:  #aaa;

  --font-en:     'Cormorant Garamond', 'Times New Roman', serif;
  --font-label:  'Montserrat', sans-serif;
  --font-ja:     'Noto Serif JP', serif;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --hdr-h:       80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ja);
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* =========================================
   カスタムカーソル
   ========================================= */
@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-dot { pointer-events: none; position: fixed; z-index: 9998; border-radius: 50%; }
  .cursor {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s, border-color 0.3s;
  }
  .cursor-dot {
    width: 5px; height: 5px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
  }
  .cursor.is-hover {
    width: 64px; height: 64px;
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
  }
}

/* =========================================
   ヘッダー
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  transition: background 0.5s var(--ease), height 0.5s var(--ease), box-shadow 0.5s;
}

.header.is-scrolled {
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
  height: 64px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo, .footer-logo { display: flex; align-items: center; line-height: 1; }

.header-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* 白バージョン: ロゴをゴールドトーンに */
  filter: brightness(0) saturate(1) invert(62%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(0.85);
  transition: filter 0.4s;
}
.header-logo:hover .header-logo-img {
  filter: brightness(0) saturate(1) invert(62%) sepia(40%) saturate(800%) hue-rotate(5deg) brightness(1);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(1) invert(62%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(0.8);
  opacity: 0.9;
}

.header-nav ul { display: flex; align-items: center; gap: 40px; }

.header-nav a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { width: 100%; }

.header-nav .nav-reserve {
  padding: 10px 24px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.header-nav .nav-reserve::after { display: none; }
.header-nav .nav-reserve:hover { background: var(--gold); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px 0;
  z-index: 1001;
}

.hb-line {
  display: block;
  height: 1px;
  background: var(--gold-dark);
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.4s var(--ease);
}
.hb-line--top { width: 100%; }
.hb-line--mid { width: 65%; }
.hb-line--btm { width: 80%; }

.hamburger.is-active .hb-line--top { transform: translateY(7px) rotate(45deg); width: 100%; }
.hamburger.is-active .hb-line--mid { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hb-line--btm { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* =========================================
   モバイルメニュー
   ========================================= */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 56px) 40px);
  transition: clip-path 0.7s var(--ease-out);
  pointer-events: none;
}

.sp-menu.is-open {
  clip-path: circle(150% at calc(100% - 56px) 40px);
  pointer-events: all;
}

.sp-menu-inner { text-align: center; width: 100%; padding: 40px; }
.sp-nav ul { display: flex; flex-direction: column; gap: 8px; }
.sp-nav-item { overflow: hidden; }

.sp-nav-link {
  font-family: var(--font-en);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out), color 0.3s;
}

.sp-menu.is-open .sp-nav-link { transform: translateY(0); opacity: 1; }
.sp-menu.is-open .sp-nav-item:nth-child(1) .sp-nav-link { transition-delay: 0.15s; }
.sp-menu.is-open .sp-nav-item:nth-child(2) .sp-nav-link { transition-delay: 0.2s; }
.sp-menu.is-open .sp-nav-item:nth-child(3) .sp-nav-link { transition-delay: 0.25s; }
.sp-menu.is-open .sp-nav-item:nth-child(4) .sp-nav-link { transition-delay: 0.3s; }
.sp-menu.is-open .sp-nav-item:nth-child(5) .sp-nav-link { transition-delay: 0.35s; }
.sp-menu.is-open .sp-nav-item:nth-child(6) .sp-nav-link { transition-delay: 0.4s; }

.sp-nav-link:hover { color: var(--gold); }

.sp-menu-info {
  margin-top: 48px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray);
  line-height: 2;
}

.sp-line-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 36px;
  border: 1px solid var(--gold);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.sp-line-btn:hover { background: var(--gold); color: var(--white); }

/* =========================================
   ヒーロー スライダー
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* =========================================
   スマホ: 上下分割レイアウト
   ========================================= */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-slider {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: 60svh;
    flex-shrink: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-position: center top !important;
  }

  .hero-bg-overlay {
    display: none;
  }

  /* 下パネル */
  .hero-content {
    position: relative !important;
    z-index: 4;
    background: var(--black);
    width: 100% !important;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 100px !important;
    text-align: center !important;
    min-height: 40svh;
    overflow: visible;
    margin: 0 !important;
    align-self: auto !important;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero-cta {
    padding: 14px 36px;
  }

  .hero-side-text { display: none; }

  /* スライダーナビは写真の下端に */
  .hero-slider-nav {
    position: absolute;
    bottom: 40svh;
    transform: translateX(-50%) translateY(50%);
    z-index: 10;
  }

  /* スクロールインジケーター */
  .hero-scroll-indicator {
    position: absolute;
    bottom: 16px;
    right: 24px;
  }
}

/* スライダー本体 */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

/* PC: 写真を右寄せ */
@media (min-width: 769px) {
  .hero {
    background: #faf9f7;
  }

  .hero-slide {
    left: 25% !important;
    background-position: center top;
  }

  /* 左端は背景色で塗りつぶして写真に向かってフェード */
  .hero::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 70%;
    z-index: 3;
    background: linear-gradient(to right,
      #faf9f7 0%,
      #faf9f7 25%,
      rgba(250,249,247,0.0) 100%);
    pointer-events: none;
  }

  /* テキストは白背景の上なので色を変える */
  .hero-eyebrow { color: var(--gold-dark); }
  .hero-tagline { color: var(--text-dim); }
  .hero-title-char {
    background: linear-gradient(160deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .hero-cta { color: var(--gold-dark); }
  .cta-border { border-color: rgba(201,168,76,0.6); }
}



.hero-slide.is-active { opacity: 1; }

/* キャスト名 右下 */
.hero-slide-name {
  position: absolute;
  right: 40px;
  bottom: 100px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.25) 0%,
      rgba(8,8,8,0.05) 35%,
      rgba(8,8,8,0.05) 60%,
      rgba(8,8,8,0.65) 100%);
  pointer-events: none;
}

/* PC: オーバーレイはPCでは非表示 */
@media (min-width: 769px) {
  .hero-bg-overlay { display: none; }
}

/* 縦書き装飾 */
.hero-side-text {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  z-index: 3;
}

/* コンテンツ */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: left;
  padding: 0 0 0 max(60px, calc((100vw - 1200px)/2 + 60px));
  width: 55%;
  align-self: center;
  margin-right: auto;
}

.hero-eyebrow {
  font-family: var(--font-ja);
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s var(--ease) 0.3s both;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.eyebrow-line + .eyebrow-line {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 0.9;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.hero-title-char {
  display: inline-block;
  color: transparent;
  background: linear-gradient(160deg, var(--gold-dark) 0%, var(--gold-light) 40%, #f5e6c0 55%, var(--gold-light) 70%, var(--gold-dark) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: heroCharIn 0.8s var(--ease-out) both, goldShimmer 5s ease-in-out infinite;
}
.hero-title-char:nth-child(1) { animation-delay: 0.5s, 0s; }
.hero-title-char:nth-child(2) { animation-delay: 0.6s, 0.2s; }
.hero-title-char:nth-child(3) { animation-delay: 0.7s, 0.4s; }
.hero-title-char:nth-child(4) { animation-delay: 0.8s, 0.6s; }
.hero-title-char:nth-child(5) { animation-delay: 0.9s, 0.8s; }
.hero-title-char:nth-child(6) { animation-delay: 1.0s, 1.0s; }

.hero-tagline {
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 56px;
  animation: heroFadeUp 1s var(--ease) 1.2s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  padding: 18px 48px;
  animation: heroFadeUp 0.8s var(--ease) 1.5s both;
}

.cta-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.5);
  transition: border-color 0.4s;
}
.cta-border::before, .cta-border::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
  transition: all 0.4s var(--ease);
}
.cta-border::before { top: -1px; left: -1px; width: 12px; height: 1px; }
.cta-border::after  { bottom: -1px; right: -1px; width: 12px; height: 1px; }
.hero-cta:hover .cta-border { border-color: rgba(201,168,76,0.9); }
.hero-cta:hover .cta-border::before { width: 100%; }
.hero-cta:hover .cta-border::after  { width: 100%; }
.cta-icon svg { transition: transform 0.4s var(--ease); }
.hero-cta:hover .cta-icon svg { transform: translateX(4px); }

/* スライダーナビ */
.hero-slider-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hsl-prev, .hsl-next {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: pointer;
}
.hsl-prev:hover, .hsl-next:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

.hsl-dots { display: flex; gap: 8px; align-items: center; }

.hsl-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.hsl-dot.is-active {
  background: var(--gold-light);
  width: 48px;
}

/* スクロールインジケーター */
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: heroFadeUp 0.8s var(--ease) 2s both;
}

.scroll-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.4);
}

.scroll-bar {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.scroll-progress {
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollBar 1.8s ease-in-out infinite;
}

/* =========================================
   セクション共通
   ========================================= */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

/* セクション共通見出し */
.sec-label-wrap {
  overflow: hidden;
  margin-bottom: -24px;
  position: relative;
  z-index: 0;
}

.sec-label {
  font-family: var(--font-label);
  font-size: clamp(56px, 10vw, 100px);
  font-weight: 200;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  pointer-events: none;
  padding-left: max(40px, calc((100% - 1200px)/2));
}

.sec-title {
  font-family: var(--font-ja);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #1a1a1a;
  padding-left: max(40px, calc((100% - 1200px)/2));
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  transform: none !important;
}
.sec-title--center { padding-left: 0; text-align: center; }

.gold-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px 0 40px max(40px, calc((100% - 1200px)/2));
  position: relative;
  z-index: 2;
}
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* =========================================
   スクロールアニメーション
   ========================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* sec-titleはアニメーション前でも見えるように */
.sec-title.reveal-up,
.gold-divider.reveal-up {
  opacity: 1;
  transform: none;
}

.reveal-img {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-img.is-visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }
.delay-5 { transition-delay: 0.75s !important; }

/* =========================================
   コンセプト
   ========================================= */
.concept-section { background: var(--bg); }

.concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.concept-image-col { position: relative; }

.concept-img-main {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.concept-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.9);
  transition: transform 0.8s var(--ease), filter 0.6s;
}
.concept-img-main:hover img { transform: scale(1.03); filter: brightness(1) saturate(1); }

.concept-text-col { padding: 20px 0; }
.concept-text-col .sec-title { padding-left: 0; }
.concept-text-col .gold-divider { margin-left: 0; }

.concept-lead {
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  line-height: 1.7;
  margin-bottom: 28px;
}

.concept-body {
  font-family: var(--font-ja);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 2.2;
  margin-bottom: 20px;
}

.concept-en-deco {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(201,168,76,0.4);
  margin-top: 32px;
}

/* =========================================
   パラックス背景ウィンドウ
   ========================================= */
.parallax-bg {
  position: relative;
  height: 55vh;
  min-height: 320px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/* 白バージョン: やや明るめオーバーレイ */
.parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250,249,247,0.30);
  z-index: 1;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(250,249,247,0.85) 0%,
    rgba(250,249,247,0.0)  18%,
    rgba(250,249,247,0.0)  82%,
    rgba(250,249,247,0.85) 100%
  );
}

.parallax-bg-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pbg-num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.4);
  line-height: 1;
}

.pbg-sep {
  display: block;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto;
  opacity: 0.6;
}

.pbg-text {
  display: block;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.55em;
  color: rgba(201,168,76,0.6);
}

@media (max-width: 1024px) { .parallax-bg { background-attachment: scroll; } }
@supports (-webkit-touch-callout: none) { .parallax-bg { background-attachment: scroll; } }

/* =========================================
   キャスト
   ========================================= */
.cast-section {
  background: var(--bg-2);
  overflow: hidden;
}

.cast-desc {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-align: center;
  margin-bottom: 56px;
}

.cast-slider-wrap { width: 100%; overflow: hidden; padding: 0 0 20px; }

.cast-track {
  display: flex;
  gap: 24px;
  padding: 0 max(40px, calc((100vw - 1200px)/2));
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.cast-card {
  flex: 0 0 calc((100vw - max(80px, (100vw - 1200px))) / 3.3);
  min-width: 240px;
  cursor: pointer;
}

.cast-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-3);
}

.cast-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}
.cast-card:hover .cast-img-wrap img { transform: scale(1.06); }

.cast-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cast-card:hover .cast-overlay { opacity: 1; }

.cast-overlay-text {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 4px;
}

.cast-info { padding: 16px 0 0; }

.cast-name {
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text);
}

.cast-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.cast-btn {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.cast-btn:hover { background: var(--gold-faint); border-color: var(--gold); transform: scale(1.1); }

.cast-dots { display: flex; gap: 8px; }

.cast-dot {
  width: 24px; height: 2px;
  background: rgba(201,168,76,0.2);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.cast-dot.is-active { background: var(--gold); width: 40px; }

/* =========================================
   イベント
   ========================================= */
.event-section { padding: 100px 0; background: var(--bg); }

.event-desc {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.event-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.event-card-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-img img { transform: scale(1.05); }

.event-card-body { padding: 24px; }

.event-date {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.event-title {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.event-text { font-size: 0.82rem; color: var(--gray); line-height: 1.8; }

/* =========================================
   システム
   ========================================= */
.system-section { background: var(--bg-2); }

.system-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.sys-block {
  padding: 32px 0 36px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.sys-block:nth-child(odd)  { border-right: 1px solid rgba(201,168,76,0.12); padding-right: 60px; }
.sys-block:nth-child(even) { padding-left: 0; }
.sys-block:nth-last-child(-n+2) { border-bottom: none; }

.sys-block-title {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold-dark);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.sys-table { border-top: 1px solid rgba(201,168,76,0.12); }

.sys-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 14px 0;
  align-items: baseline;
  transition: background 0.3s;
}
.sys-row:hover { background: rgba(201,168,76,0.03); }

.sys-key {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}

.sys-val {
  font-family: var(--font-en);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
}

.sys-table--vip .sys-row { grid-template-columns: 110px 1fr 1fr; }
.sys-row--header { border-bottom: 1px solid rgba(201,168,76,0.15); }

.sys-val--head {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  opacity: 0.7;
}

.sys-row--sub .sys-key { opacity: 0.65; }
.sys-key--sub { font-size: 9px; letter-spacing: 0.15em; padding-left: 8px; }

.sys-note {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-top: 20px;
  line-height: 1.8;
}

.sys-note-small {
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.9;
}

/* =========================================
   アクセス
   ========================================= */
.access-section { background: var(--bg); }

.access-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.access-list { display: flex; flex-direction: column; gap: 0; }

.access-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  gap: 20px;
  align-items: baseline;
}
.access-row:first-child { border-top: 1px solid rgba(201,168,76,0.12); }

.access-row dt {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  white-space: nowrap;
}

.access-row dd {
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

.tel-link {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  transition: color 0.3s;
}
.tel-link:hover { color: var(--gold); }

.line-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 36px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: opacity 0.3s, transform 0.3s;
}
.line-reserve-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
}

/* =========================================
   予約CTA
   ========================================= */
.reservation-section {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 20px;
  text-align: center;
  background: var(--text);
}

.rsv-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 59px, rgba(201,168,76,0.04) 60px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 59px, rgba(201,168,76,0.025) 60px);
}

.rsv-content { position: relative; z-index: 1; }

.rsv-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 16px;
}

.rsv-title {
  font-family: var(--font-ja);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 24px;
}

.rsv-text {
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.rsv-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.rsv-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.25em;
  transition: all 0.4s var(--ease);
}

.rsv-btn--tel {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  background: transparent;
}
.rsv-btn--tel:hover { background: var(--gold); color: var(--text); border-color: var(--gold); transform: translateY(-3px); }

.rsv-btn--line { background: #06C755; color: #fff; border: 1px solid transparent; }
.rsv-btn--line:hover { opacity: 0.85; transform: translateY(-3px); }

/* =========================================
   インドアビュー
   ========================================= */
.indoor-section { padding: 80px 0; background: var(--bg-2); }

.indoor-desc {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.indoor-map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  border: 1px solid rgba(201,168,76,0.15);
}

.indoor-map-wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  filter: saturate(0.9) contrast(1.05);
}

/* =========================================
   フッター
   ========================================= */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 40px 40px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }

.footer-nav a {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-mid {
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.footer-btm { text-align: center; }

.footer-copy {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
}

/* =========================================
   キーフレーム
   ========================================= */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCharIn {
  from { opacity: 0; transform: translateY(60px) skewY(4deg); }
  to   { opacity: 1; transform: none; }
}
@keyframes goldShimmer {
  0%   { background-position: 200% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes scrollBar {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* =========================================
   レスポンシブ
   ========================================= */
@media (max-width: 1024px) {
  .concept-inner { grid-template-columns: 1fr; gap: 60px; }
  .concept-text-col .sec-title { padding-left: 0; }
  .concept-text-col .gold-divider { margin-left: 0; }
  .access-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-side-text { display: none; }
  .hero-slide-name { right: 16px; bottom: 16px; font-size: 11px; }

  .hero-eyebrow { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 14px; justify-content: center; }
  .hero-title { font-size: clamp(52px, 16vw, 80px); margin-bottom: 16px; justify-content: center; }
  .hero-scroll-indicator { right: 16px; bottom: 12px; }

  .cast-slider-wrap { overflow: visible; }
  .cast-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 20px;
    transform: none !important;
    transition: none;
  }
  .cast-card { flex: none; width: 100%; min-width: 0; cursor: default; }
  .cast-controls { display: none; }
  .cast-name { font-size: 13px; letter-spacing: 0.15em; }
  .cast-info { padding: 10px 0 0; }

  .parallax-bg { min-height: 220px; height: 40vh; }

  .header-inner { padding: 0 24px; }
  .section { padding: clamp(60px, 10vw, 100px) 0; }
  .sec-label { padding-left: 24px; }
  .sec-title { padding-left: 24px; }
  .gold-divider { margin-left: 24px; }
  .concept-inner { padding: 0 24px; }

  .system-inner { padding: 0 24px; grid-template-columns: 1fr; gap: 0; }
  .sys-block:nth-child(odd) { border-right: none; padding-right: 0; }
  .sys-block:nth-last-child(-n+2) { border-bottom: 1px solid rgba(201,168,76,0.12); }
  .sys-block:last-child { border-bottom: none; }
  .sys-row { grid-template-columns: 110px 1fr; }
  .sys-table--vip .sys-row { grid-template-columns: 100px 1fr 1fr; }

  .access-inner { padding: 0 24px; gap: 40px; }
  .rsv-btns { flex-direction: column; align-items: center; }
  .rsv-btn { width: 100%; max-width: 300px; justify-content: center; }
  .indoor-map-wrap iframe { height: 300px; }
  .footer { padding: 48px 24px 32px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { gap: 20px; }
}

@media (max-width: 560px) {
  .event-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cast-track { gap: 8px; padding: 0 16px; }
  .cast-name { font-size: 12px; }
  .sys-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .sys-key { font-size: 9px; }
}
