/* ============================================
   LORINZA NAMBA — Official Site
   Primary: Black / Accent: Silver
   ============================================ */
:root {
  --black: #000000;
  --black-2: #08090b;
  --black-3: #0e1013;
  --panel: #14161a;
  --panel-2: #1b1e23;

  --silver: #c2c9d2;
  --silver-lt: #eef1f6;
  --silver-dp: #737a85;
  --silver-grad: linear-gradient(135deg, #f4f7fb 0%, #c2c9d2 42%, #8e959f 72%, #6c737e 100%);
  /* 文字の塗りつぶし用。斜めグラデだと右下が暗くなり読みにくいため縦方向・明るめ */
  --silver-text: linear-gradient(180deg, #ffffff 0%, #e3e8ef 52%, #a7aeb9 100%);

  --white: #ffffff;
  --ink: #f2f3f5;
  --gray: #9aa0aa;
  --gray-dk: #6d737d;
  --line: rgba(255, 255, 255, .11);
  --line-2: rgba(255, 255, 255, .06);

  --font-en: 'Cinzel', serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-serif-ja: 'Noto Serif JP', serif;

  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-ja);
  color: var(--ink);
  background: var(--black);
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(58px + env(safe-area-inset-bottom));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--silver); color: #000; }

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  transition: background .35s, box-shadow .35s, padding .35s;
}
.header.is-scrolled {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-2);
  padding: 12px 26px;
}
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__name {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .16em;
  background: var(--silver-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.header__name i {
  font-family: var(--font-serif-ja);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-right: 8px;
}
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--ink);
  position: relative;
  transition: color .25s;
}
.header__nav a:hover { color: var(--silver-lt); }
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__toggle {
  display: none;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.header__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.header.is-open .header__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header.is-open .header__toggle span:nth-child(2) { opacity: 0; }
.header.is-open .header__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  background: #000;
  transition: opacity .7s ease .15s, visibility .7s ease .15s;
}
.loader__mark {
  font-family: var(--font-en);
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 700;
  letter-spacing: .2em;
  background: var(--silver-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: loaderMark 1.1s cubic-bezier(.16,1,.3,1) .1s forwards;
}
.loader__mark i {
  font-family: var(--font-serif-ja);
  font-style: normal;
  font-size: .78em;
  margin-right: .3em;
}
@keyframes loaderMark {
  from { opacity: 0; letter-spacing: .5em; filter: blur(6px); }
  to   { opacity: 1; letter-spacing: .2em; filter: blur(0); }
}
.loader__bar {
  display: block;
  width: min(180px, 44vw);
  height: 1px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--silver-grad);
  transform-origin: left;
  animation: loaderBar 1.25s cubic-bezier(.6,.05,.2,1) .15s forwards;
}
@keyframes loaderBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

body.is-loaded .loader { opacity: 0; visibility: hidden; }
body.is-loading { overflow: hidden; }

/* ===== Overlays（グレイン／スクロール進捗） ===== */
.grain {
  position: fixed;
  inset: -120px;
  z-index: 150;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 800ms steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-14px, 8px); }
  50%  { transform: translate(10px, -12px); }
  75%  { transform: translate(-6px, -6px); }
  100% { transform: translate(0, 0); }
}

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 160;
  pointer-events: none;
  background: rgba(255, 255, 255, .05);
}
.progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--silver-grad);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  /* 下部固定バー（58px）の分を差し引き、SCROLL表示が隠れないようにする */
  min-height: calc(100svh - 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 116px 24px 56px;
  overflow: hidden;
}
/* 斜めに走る光の帯 */
.hero__beam {
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent);
  transform: rotate(18deg);
  animation: beamSweep 9s ease-in-out 2s infinite;
}
@keyframes beamSweep {
  0%   { left: -40%; opacity: 0; }
  15%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(198, 206, 218, .16), transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgba(198, 206, 218, .08), transparent 60%),
    linear-gradient(180deg, #000 0%, #0a0a0c 60%, #000 100%);
}
/* グリッド */
.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(198, 206, 218, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 206, 218, .09) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask: radial-gradient(ellipse 78% 62% at 50% 40%, #000 18%, transparent 74%);
  mask: radial-gradient(ellipse 78% 62% at 50% 40%, #000 18%, transparent 74%);
  animation: gridDrift 16s linear infinite;
  pointer-events: none;
  z-index: 1;
}
/* スキャンライン */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 40%;
  top: -40%;
  background: linear-gradient(180deg, transparent, rgba(235, 240, 247, .07), transparent);
  animation: heroScan 8s ease-in-out 1.6s infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes gridDrift { to { background-position: 52px 52px; } }
@keyframes heroScan {
  0%   { top: -40%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 118%; opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  width: 100%;
}

/* ヒーロー要素のスタッガード表示（ローダー明け） */
.rise {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
}
body.is-loaded .rise {
  animation: riseIn 1s cubic-bezier(.16,1,.3,1) var(--d, 0s) forwards;
}
@keyframes riseIn {
  to { opacity: 1; transform: none; filter: blur(0); }
}

.hero__group {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .42em;
  color: var(--silver);
  margin-bottom: 18px;
}
.hero__copy {
  font-family: var(--font-serif-ja);
  font-size: clamp(14px, 3.4vw, 19px);
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--silver-lt);
  margin-top: 16px;
}
.hero__line {
  width: 54px; height: 1px;
  margin: 0 auto 22px;
  background: var(--silver-grad);
}
.hero__title {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(30px, 7.6vw, 72px);
  line-height: 1.14;
  letter-spacing: .08em;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 0%, #d9dee6 52%, #8b929d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ロゴを定期的に横切る金属の光沢 */
.hero__sheen {
  position: absolute;
  inset: -10% -6%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .85) 50%, transparent 62%);
  mix-blend-mode: overlay;
  transform: translateX(-130%);
  animation: sheen 6.5s ease-in-out 2.6s infinite;
}
@keyframes sheen {
  0%   { transform: translateX(-130%); }
  22%  { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}
.hero__title-ja {
  font-family: var(--font-serif-ja);
  font-weight: 700;
  font-size: .82em;
  letter-spacing: .1em;
  margin-right: .34em;
}
.hero__cat {
  font-size: clamp(12px, 3vw, 14px);
  letter-spacing: .2em;
  color: var(--gray);
  margin-top: 16px;
}

.hero__open {
  margin: 34px auto 0;
  max-width: 380px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(198, 206, 218, .38);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(198, 206, 218, .12), rgba(0, 0, 0, .3));
  box-shadow: 0 0 60px rgba(198, 206, 218, .12) inset;
}
.hero__open-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--silver-lt);
  line-height: 1;
}
.hero__open-date {
  font-family: var(--font-serif-ja);
  margin-top: 10px;
  line-height: 1;
  color: var(--white);
}
.hero__open-date b { font-size: clamp(42px, 11vw, 60px); font-weight: 700; letter-spacing: .02em; }
.hero__open-date span { font-size: clamp(18px, 4.4vw, 24px); font-weight: 500; margin: 0 2px 0 3px; }
.hero__open-sub {
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--silver-lt);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.tag {
  font-size: 11px;
  letter-spacing: .12em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray);
  background: rgba(255, 255, 255, .02);
}
.tag--accent {
  color: #0a0a0a;
  background: var(--silver-grad);
  border-color: transparent;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 14px 26px;
  border-radius: 3px;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .7s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.btn:hover::after { left: 135%; }
.btn--primary {
  background: var(--silver-grad);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(198, 206, 218, .22);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(198, 206, 218, .34); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--silver); color: var(--silver-lt); }

/* 通常フローに置くことで、固定バーやボタンと重ならない */
.hero__scroll {
  display: block;
  margin-top: 40px;
  font-family: var(--font-en);
  font-size: 9.5px;
  letter-spacing: .4em;
  color: var(--gray-dk);
  transition: color .3s;
}
.hero__scroll:hover { color: var(--silver); }
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 40px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--silver), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .35; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-2);
  background: var(--black-2);
  padding: 13px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-en);
  font-size: 11.5px;
  letter-spacing: .3em;
  color: rgba(198, 206, 218, .55);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Section base ===== */
.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 96px 24px;
}
.section--tint {
  max-width: none;
  background: linear-gradient(180deg, var(--black-2), var(--black-3));
  border-block: 1px solid var(--line-2);
}
.section--tint > * { max-width: var(--wrap); margin-inline: auto; }

.section__head { text-align: center; margin-bottom: 46px; }
.section__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .44em;
  color: var(--silver);
  transition: letter-spacing 1.1s cubic-bezier(.16,1,.3,1);
}
.fade .section__en,
.section__head.fade .section__en { letter-spacing: .8em; }
.section__head.fade.is-visible .section__en { letter-spacing: .44em; }
.section__ja {
  font-family: var(--font-serif-ja);
  font-size: clamp(23px, 5.2vw, 32px);
  font-weight: 600;
  letter-spacing: .1em;
  margin-top: 10px;
  color: var(--white);
}
.section__ja::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  margin: 18px auto 0;
  background: var(--silver-grad);
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(.16,1,.3,1) .25s;
}
.section__head.is-visible .section__ja::after { transform: scaleX(1); }
.section__lead {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--gray);
  letter-spacing: .06em;
}

/* スクロール表示アニメーション */
.fade {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition:
    opacity .9s cubic-bezier(.16,1,.3,1) var(--d, 0s),
    transform .9s cubic-bezier(.16,1,.3,1) var(--d, 0s),
    filter .9s cubic-bezier(.16,1,.3,1) var(--d, 0s);
  will-change: opacity, transform;
}
.fade.is-visible { opacity: 1; transform: none; filter: blur(0); }

/* カード共通：ホバー時に走る光沢 */
.info-card, .faq-item, .pnote__item {
  position: relative;
  overflow: hidden;
}
.info-card::after, .pnote__item::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .07), transparent);
  transform: skewX(-18deg);
  transition: left .75s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.info-card:hover::after, .pnote__item:hover::after { left: 130%; }

/* ===== Info ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  padding: 30px 22px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.info-card:hover { border-color: rgba(198, 206, 218, .45); transform: translateY(-3px); }
.info-card__label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .38em;
  color: var(--silver);
}
.info-card__main {
  font-family: var(--font-serif-ja);
  font-size: clamp(21px, 4.4vw, 27px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  margin-top: 12px;
  line-height: 1.4;
}
.info-card__sub { font-size: 12.5px; color: var(--gray); margin-top: 8px; letter-spacing: .04em; }

/* ===== Poster ===== */
.poster-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}
.poster {
  position: relative;
  display: block;
  justify-self: end;
  max-width: 440px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .7);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.poster:hover { transform: translateY(-6px) scale(1.012); }
.poster img {
  width: 100%;
  height: auto;
  transform: translateY(var(--py, 0px)) scale(1.06);
  transition: transform .1s linear;
}
.poster__gloss {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .16) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: posterGloss 7s ease-in-out 3s infinite;
}
@keyframes posterGloss {
  0%   { transform: translateX(-120%); }
  26%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.poster__frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 206, 218, .34);
  border-radius: 4px;
  pointer-events: none;
}
.poster-copy { max-width: 400px; }
.poster-copy__lead {
  font-family: var(--font-serif-ja);
  font-size: clamp(19px, 4.2vw, 26px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .08em;
  color: var(--gray);
}
.poster-copy__lead b {
  display: block;
  margin-top: 6px;
  font-size: 1.1em;
  font-weight: 700;
  background: var(--silver-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.poster-copy__sub {
  margin-top: 14px;
  font-family: var(--font-serif-ja);
  font-size: 15px;
  letter-spacing: .18em;
  color: var(--silver-lt);
}
.poster-copy__list {
  list-style: none;
  margin-top: 22px;
  border-top: 1px solid var(--line-2);
}
.poster-copy__list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--line-2);
  font-size: 13.5px;
  letter-spacing: .04em;
  position: relative;
}
.poster-copy__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 21px;
  width: 8px; height: 1px;
  background: var(--silver);
}
.poster-copy__credit {
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .32em;
  color: var(--silver-dp);
  text-align: right;
}

/* ===== System ===== */
.sys { max-width: 940px; margin-inline: auto; }

.sys__statement { text-align: center; }
.sys__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5em;
  color: var(--silver-dp);
  padding-bottom: 18px;
}
.sys__ttl {
  font-family: var(--font-serif-ja);
  font-size: clamp(30px, 8.4vw, 62px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: .04em;
  color: var(--white);
}
.sys__ttl em {
  font-style: normal;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #d3d9e1 46%, #868d97 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sys__ttl em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.1em;
  height: 2px;
  background: var(--silver-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.16,1,.3,1) .3s;
}
.sys__statement.is-visible .sys__ttl em::after { transform: scaleX(1); }

/* 11:00 → 24:00 の時間軸 */
.sys__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  margin-top: clamp(34px, 6vw, 54px);
}
.sys__time {
  font-family: var(--font-en);
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.sys__time b { font-size: clamp(30px, 7vw, 52px); font-weight: 600; letter-spacing: .02em; }
.sys__time i {
  font-style: normal;
  font-size: clamp(13px, 2.4vw, 19px);
  color: var(--silver-dp);
  letter-spacing: .04em;
}
.sys__rail {
  flex: 1;
  max-width: 320px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  position: relative;
}
.sys__rail i {
  position: absolute;
  inset: 0;
  background: var(--silver-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1) .2s;
}
.sys__clock.is-visible .sys__rail i { transform: scaleX(1); }
.sys__rail::after {
  content: "";
  position: absolute;
  right: -3px; top: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--silver-lt);
  opacity: 0;
  transition: opacity .4s ease 1.4s;
}
.sys__clock.is-visible .sys__rail::after { opacity: 1; }

/* 3つのポイント（罫線のみ・箱にしない） */
.sys__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(40px, 7vw, 64px);
  border-top: 1px solid var(--line-2);
}
.sys__points li {
  padding: 30px 26px 6px;
  border-bottom: 1px solid var(--line-2);
  border-right: 1px solid var(--line-2);
}
.sys__points li:last-child { border-right: 0; }
.sys__num {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--silver-dp);
}
.sys__points h4 {
  margin-top: 12px;
  font-family: var(--font-serif-ja);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1.6;
}
.sys__points p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.95;
  color: var(--gray);
  text-align: justify;
}

/* ===== Price ===== */
.ptable {
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.ptable__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ptable__row::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(198, 206, 218, .05), transparent 55%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.ptable__row:hover::before { opacity: 1; }

.ptable__en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .38em;
  color: var(--silver-dp);
}
.ptable__ja {
  margin-top: 8px;
  font-family: var(--font-serif-ja);
  font-size: clamp(19px, 4.4vw, 25px);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--white);
  line-height: 1.3;
}
.ptable__note { margin-top: 7px; font-size: 12px; color: var(--gray-dk); letter-spacing: .04em; }

.ptable__fig {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex: none;
  font-family: var(--font-serif-ja);
  color: var(--white);
  line-height: 1;
}
.ptable__num {
  font-size: clamp(38px, 10vw, 62px);
  font-weight: 700;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.ptable__yen { font-size: clamp(14px, 3vw, 19px); font-weight: 500; }
.ptable__pk {
  align-self: center;
  margin-left: 10px;
  font-family: var(--font-ja);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--silver-lt);
  border: 1px solid rgba(198, 206, 218, .38);
  border-radius: 2px;
  padding: 4px 9px;
  line-height: 1;
  white-space: nowrap;
}

/* 単独女性の行だけ強調 */
.ptable__row--free {
  background: linear-gradient(90deg, rgba(198, 206, 218, .09), transparent 62%);
}
.ptable__row--free .ptable__en,
.ptable__row--free .ptable__note { color: var(--silver); }
.ptable__free {
  font-size: clamp(28px, 7.4vw, 46px);
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--silver-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptable__pk--free {
  font-family: var(--font-en);
  letter-spacing: .22em;
  color: #0a0a0a;
  background: var(--silver-grad);
  border-color: transparent;
}

.pnote {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 860px;
  margin: 26px auto 0;
  background: var(--line-2);
}
.pnote__item { background: var(--black); padding: 22px 20px; }
.pnote__en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .34em;
  color: var(--silver-dp);
}
.pnote__txt {
  margin-top: 9px;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
}
.pnote__txt b {
  font-family: var(--font-serif-ja);
  font-size: 1.32em;
  font-weight: 700;
  background: var(--silver-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== BBS（来店予告掲示板） ===== */
.bbs {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin-inline: auto;
  padding: 38px 34px;
  border-left: 2px solid var(--silver);
  background: linear-gradient(90deg, rgba(198, 206, 218, .07), rgba(255, 255, 255, .01) 70%);
}
.bbs__lead {
  font-family: var(--font-serif-ja);
  font-size: clamp(20px, 4.6vw, 28px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .04em;
  color: var(--white);
}
.bbs__desc {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 2;
  color: var(--gray);
  letter-spacing: .03em;
}
.bbs__action { text-align: center; flex: none; }
.bbs__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
  background: var(--silver-grad);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(198, 206, 218, .2);
  transition: transform .25s, box-shadow .25s;
}
.bbs__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(198, 206, 218, .34); }
.bbs__note { margin-top: 12px; font-size: 11.5px; color: var(--gray-dk); letter-spacing: .06em; }
.sp-br { display: none; }


/* ===== Entry ===== */
.entry-box {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  padding: 38px 32px;
  max-width: 780px;
  margin-inline: auto;
}
.entry-notice {
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
  text-align: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-2);
}
.entry-notice b { color: var(--silver-lt); }
.entry-list { list-style: none; margin-top: 26px; display: grid; gap: 20px; }
.entry-list li { display: flex; gap: 16px; align-items: flex-start; }
.entry-list__num {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--silver-grad);
  color: #0a0a0a;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  margin-top: 5px;
}
.entry-list__title { font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: .06em; }
.entry-list__note { font-size: 12.5px; color: var(--gray); margin-top: 2px; }
.entry-box__caption {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
  font-size: 12.5px;
  color: var(--gray);
}

/* ===== Rules ===== */
.rules-box {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  padding: 36px 32px;
  max-width: 840px;
  margin-inline: auto;
}
.rules-list { list-style: none; display: grid; gap: 13px; }
.rules-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: .03em;
  line-height: 1.85;
}
.rules-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silver);
}

/* ===== Access ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}
.access-map {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  min-height: 380px;
  filter: grayscale(.35) contrast(1.05);
}
.access-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.access-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  padding: 32px 28px;
}
.access-card__label { font-family: var(--font-en); font-size: 10px; letter-spacing: .36em; color: var(--silver); }
.access-card__spot {
  font-family: var(--font-serif-ja);
  font-size: clamp(19px, 4.2vw, 25px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  margin-top: 10px;
}
.access-card__landmark { font-size: 13px; color: var(--silver-lt); margin-top: 6px; letter-spacing: .06em; }

.access-flow { list-style: none; margin-top: 24px; display: grid; gap: 14px; }
.access-flow li { display: flex; gap: 13px; align-items: flex-start; }
.access-flow__num {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(198, 206, 218, .5);
  color: var(--silver-lt);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
}
.access-flow__txt { font-size: 13.5px; color: var(--ink); }

.access-info { margin-top: 24px; border-top: 1px solid var(--line-2); }
.access-info > div {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13.5px;
}
.access-info dt { flex: none; width: 84px; color: var(--gray); letter-spacing: .08em; }
.access-info dd { color: var(--ink); }
.access-info dd a { color: var(--silver-lt); }

.access-actions { display: grid; gap: 10px; margin-top: 24px; }
.access-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .25s, box-shadow .25s, border-color .25s, color .25s;
}
.access-btn b { font-weight: 700; letter-spacing: .05em; }
.access-btn--call { background: var(--silver-grad); color: #0a0a0a; }
.access-btn--call:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(198, 206, 218, .3); }
.access-btn--map { border: 1px solid var(--line); color: var(--ink); }
.access-btn--map:hover { border-color: var(--silver); color: var(--silver-lt); }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; margin-inline: auto; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(198, 206, 218, .42); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 52px 19px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .03em;
  position: relative;
  line-height: 1.7;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -6px;
  border-right: 1.5px solid var(--silver);
  border-bottom: 1.5px solid var(--silver);
  transform: rotate(45deg);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item p {
  padding: 0 22px 22px;
  font-size: 13.5px;
  color: var(--gray);
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
  margin-top: -1px;
}
.faq-item p a { color: var(--silver-lt); text-decoration: underline; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line-2);
  background: var(--black-2);
  text-align: center;
  padding: 56px 24px 40px;
}
.footer__logo {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .18em;
  background: var(--silver-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.footer__logo i {
  font-family: var(--font-serif-ja);
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-right: 10px;
}
.footer__logo small {
  display: block;
  font-size: 9px;
  letter-spacing: .55em;
  color: var(--gray);
  -webkit-text-fill-color: var(--gray);
  font-weight: 400;
  margin-top: 6px;
}
.footer__place { font-size: 12.5px; color: var(--gray); margin-top: 18px; letter-spacing: .06em; }
.footer__tel { margin-top: 8px; }
.footer__tel a {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--silver-lt);
}
.footer__link { margin-top: 14px; }
.footer__link a {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--silver-lt);
  border-bottom: 1px solid rgba(198, 206, 218, .4);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.footer__link a:hover { color: var(--white); border-color: var(--white); }
.footer__seo {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 11.5px;
  line-height: 2;
  color: var(--gray-dk);
}
.footer__copy {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-size: 11px;
  color: var(--gray-dk);
  letter-spacing: .04em;
}

/* ===== Fixed bottom bar ===== */
.fixed-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.fixed-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 58px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
}
.fixed-bar__btn svg { flex: none; }
.fixed-bar__btn--tel { background: var(--silver-grad); color: #0a0a0a; }
.fixed-bar__btn--bbs { background: #16191d; color: var(--silver-lt); }
.fixed-bar__btn--bbs:hover { background: #1d2126; }
.fixed-bar__btn--price { background: #101215; color: var(--ink); }
.fixed-bar__btn--price:hover { color: var(--silver-lt); }

@media (max-width: 400px) {
  .fixed-bar__btn { font-size: 11.5px; gap: 5px; letter-spacing: .02em; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .access-grid { grid-template-columns: 1fr; }
  .access-map, .access-map iframe { min-height: 300px; }
}

@media (max-width: 780px) {
  .header { padding: 14px 18px; }
  .header.is-scrolled { padding: 10px 18px; }
  .header__toggle { display: flex; }
  .header__nav {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 76px 0 20px;
    background: rgba(0, 0, 0, .96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-102%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    z-index: -1;
  }
  .header.is-open .header__nav { transform: none; }
  .header__nav a { padding: 14px 26px; font-size: 13px; }
  .header__nav a::after { display: none; }

  .poster-wrap { grid-template-columns: 1fr; gap: 28px; }
  .poster { justify-self: center; max-width: 380px; }
  .poster-copy { max-width: none; text-align: center; }
  .poster-copy__list li { text-align: left; }
  .poster-copy__credit { text-align: center; }

  .section { padding: 70px 20px; }
  .info-grid { grid-template-columns: 1fr; }

  /* System */
  .sys__points { grid-template-columns: 1fr; }
  .sys__points li { padding: 24px 0 20px; border-right: 0; }
  .sys__points p { text-align: left; }
  .sys__rail { max-width: none; }

  /* Price */
  .ptable__row { padding: 24px 4px; gap: 12px; }
  .ptable__fig { flex-wrap: wrap; justify-content: flex-end; row-gap: 8px; }
  .ptable__pk { margin-left: 8px; }
  .pnote { grid-template-columns: 1fr; }
  .pnote__item { padding: 20px 4px; }

  /* BBS */
  .bbs {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 22px;
  }
  .bbs__action { text-align: left; }
  .bbs__btn { width: 100%; justify-content: center; }
  .bbs__note { text-align: center; }
  .sp-br { display: inline; }
  .entry-box, .rules-box { padding: 28px 20px; }
  .access-card { padding: 26px 20px; }
  .hero { padding: 96px 20px 36px; }
  .hero__copy { margin-top: 12px; }
  .hero__cat { margin-top: 12px; }
  .hero__open { margin-top: 24px; padding: 18px 18px 14px; }
  .hero__tags { margin-top: 18px; }
  .hero__actions { margin-top: 22px; }
  .hero__scroll { margin-top: 22px; }
  .hero__scroll::after { height: 26px; margin-top: 8px; }
  .hero__beam { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade, .rise { opacity: 1 !important; transform: none !important; filter: none !important; }
  .section__en { letter-spacing: .44em !important; }
  .section__ja::after { transform: scaleX(1) !important; }
  .poster img { transform: none !important; }
  .grain, .hero__beam, .hero__sheen, .poster__gloss { display: none; }
  .loader { display: none; }
  html { scroll-behavior: auto; }
}
