@charset "UTF-8";

/* ===========================================================
   ホテル込みクラブ雪姫 — 値段が主役
   signature : 圧縮ラテン体の巨大な数字。料金を最初に置く。
   type      : Zen Maru Gothic (display) / Zen Kaku Gothic New (body)
              Oswald (numerals, tabular)  modular scale 1.333
   layout    : 左揃え。中央揃えは締めの一節だけ。
   =========================================================== */

:root {
  /* --- color ------------------------------------------ */
  --plum:     #3d0a2b;   /* 濃い地 */
  --ink:      #2b1a26;   /* 本文 */
  --ink-60:   #6f5a68;   /* 補助 */
  --magenta:  #e6007e;   /* 面。白文字を載せてよい 4.50:1 */
  --magenta-d:#a80059;
  --hot:      #ff2d92;   /* 大きな数字だけに使う 3.48:1 */
  --paper:    #ffffff;
  --paper-2:  #fdf2f8;
  --line:     #f3d9e8;

  /* --- type scale (1.333) ---------------------------- */
  --fs-2xs: .75rem;    /* 12 */
  --fs-xs:  .8125rem;  /* 13 */
  --fs-sm:  .9375rem;  /* 15 */
  --fs-md:  1rem;      /* 16 */
  --fs-lg:  1.333rem;  /* 21 */
  --fs-xl:  1.777rem;  /* 28 */
  --fs-2xl: 2.369rem;  /* 38 */
  --fs-3xl: 3.157rem;  /* 51 */

  /* --- spacing scale (4) ----------------------------- */
  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem;  --sp-10: 2.5rem;
  --sp-14: 3.5rem; --sp-20: 5rem;

  /* --- families -------------------------------------- */
  --display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --body:    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --figure:  "Oswald", "Yu Gothic", sans-serif;

  --dial-h: 3.75rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(230, 0, 126, .16);
}

html.is-gated { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: var(--dial-h);
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--magenta); }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
}

.num, .rate__num, .hero__flash-num, .hero__call-num, .callout__num, .extras__val {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.wrap {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* --- skip link ---------------------------------------- */

.skip {
  position: absolute;
  left: var(--sp-4);
  top: -4rem;
  z-index: 200;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--paper);
  background: var(--plum);
  border-radius: 999px;
  text-decoration: none;
}

.skip:focus-visible { top: var(--sp-4); }

/* ===========================================================
   年齢確認
   =========================================================== */

.agegate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  background: rgba(45, 6, 31, .95);
  overscroll-behavior: contain;
}

.agegate[hidden] { display: none; }

.agegate__card {
  width: 100%;
  max-width: 24rem;
  padding: var(--sp-10) var(--sp-6) var(--sp-6);
  background: var(--paper);
  border-radius: 1.5rem;
}

.agegate__badge {
  display: inline-block;
  margin: 0 0 var(--sp-5);
  padding: var(--sp-1) var(--sp-4);
  font-family: var(--figure);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--paper);
  background: var(--magenta);
  border-radius: 999px;
}

.agegate__title {
  margin: 0 0 var(--sp-3);
  font-family: var(--display);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .04em;
  color: var(--plum);
}

.agegate__lead {
  margin: 0 0 var(--sp-8);
  font-size: var(--fs-sm);
  color: var(--ink-60);
}

.agegate__btns { display: grid; gap: var(--sp-3); }

.agegate__note {
  margin: var(--sp-6) 0 0;
  font-size: var(--fs-2xs);
  line-height: 1.7;
  color: var(--ink-60);
}

.btn {
  display: block;
  padding: var(--sp-4);
  font-family: var(--display);
  font-size: var(--fs-md);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.btn--go { color: var(--paper); background: var(--magenta); }
.btn--go:hover { background: var(--magenta-d); }

.btn--out {
  color: var(--ink-60);
  background: transparent;
  border-color: var(--line);
  font-family: var(--body);
  font-weight: 400;
}

.btn--out:hover { color: var(--ink); border-color: var(--ink-60); }

/* ===========================================================
   hero — 看板 → キャッチ → 値段 → 電話
   =========================================================== */

.hero {
  background: var(--paper-2);
  border-bottom: 6px solid var(--magenta);
}

.hero__sign {
  max-width: 46.875rem;
  margin: 0 auto;
  line-height: 0;
}

.hero__pitch {
  max-width: 60rem;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-5) var(--sp-10);
}

.hero__catch {
  margin: 0 0 var(--sp-6);
  font-family: var(--display);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.6;
  color: var(--plum);
  text-wrap: balance;
}

.hero__flash {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-8);
  padding-bottom: var(--sp-5);
  border-bottom: 2px dashed var(--line);
}

.hero__flash-label {
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--paper);
  background: var(--magenta);
  padding: var(--sp-1) var(--sp-4);
  border-radius: 999px;
}

.hero__flash-num {
  font-family: var(--figure);
  font-size: var(--fs-3xl);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--hot);
}

.hero__flash-yen {
  font-family: var(--display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--hot);
}

.hero__call {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  text-decoration: none;
  color: var(--plum);
  background: var(--paper);
  border: 2px solid var(--magenta);
  border-radius: 999px;
  touch-action: manipulation;
  transition: background-color .16s ease, color .16s ease;
}

.hero__call:hover { color: var(--paper); background: var(--magenta); }
.hero__call:hover .hero__call-hours { color: rgba(255, 255, 255, .85); }

.hero__call-icon { flex: 0 0 auto; color: var(--magenta); }
.hero__call:hover .hero__call-icon { color: var(--paper); }

.hero__call-body { display: flex; flex-direction: column; line-height: 1.25; }

.hero__call-num {
  font-family: var(--figure);
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: .01em;
}

.hero__call-hours {
  font-size: var(--fs-2xs);
  letter-spacing: .06em;
  color: var(--ink-60);
}

/* ===========================================================
   zone
   =========================================================== */

.zone--rate  { padding: var(--sp-20) 0; }
.zone--types { padding: var(--sp-14) 0; background: var(--paper-2); }
.zone--spec  { padding: var(--sp-14) 0; }

.zone__head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.zone__title {
  position: relative;
  margin: 0;
  padding-left: var(--sp-5);
  font-family: var(--display);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
  color: var(--plum);
}

.zone__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: .55rem;
  height: .55rem;
  background: var(--magenta);
  border-radius: 2px;
}

.zone__kicker {
  margin: 0;
  font-family: var(--figure);
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
}

/* ===========================================================
   料金 — チケット
   =========================================================== */

.tickets {
  margin: 0 0 var(--sp-10);
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-5);
}

.ticket {
  padding: var(--sp-6);
  background: var(--paper);
  border: 2px solid var(--line);
}

.ticket--push {
  background: var(--plum);
  border-color: var(--plum);
}

.ticket__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-5);
  font-family: var(--display);
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--plum);
}

.ticket--push .ticket__name { color: var(--paper); }

.ticket__flag {
  padding: .1em .8em;
  font-family: var(--body);
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--plum);
  background: var(--paper);
  border-radius: 999px;
}

.rates { margin: 0; padding: 0; list-style: none; }

.rate {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
}

.rate:last-child { border-bottom: none; }

.ticket--push .rate { border-bottom-color: rgba(255, 255, 255, .16); }

.rate__time {
  font-family: var(--figure);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--ink-60);
}

.ticket--push .rate__time { color: rgba(255, 255, 255, .8); }

.rate__unit {
  margin-left: .1em;
  font-family: var(--body);
  font-size: var(--fs-2xs);
}

.rate__price { white-space: nowrap; }

/* 巨大な数字 — このページの署名 */
.rate__num {
  font-family: var(--figure);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--magenta);
}

.ticket--push .rate__num { color: var(--hot); }

.rate__yen {
  margin-left: .15em;
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-60);
}

.ticket--push .rate__yen { color: rgba(255, 255, 255, .8); }

.ticket--push .ticket__note {
  margin: var(--sp-5) 0 0;
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}

/* --- 指名料 ------------------------------------------- */

.extras {
  width: 100%;
  margin: 0 0 var(--sp-8);
  border-collapse: collapse;
}

.extras__caption {
  padding: 0 0 var(--sp-3);
  font-family: var(--display);
  font-size: var(--fs-md);
  font-weight: 700;
  text-align: left;
  color: var(--plum);
}

.extras th,
.extras td {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: var(--fs-sm);
}

.extras th { font-weight: 400; color: var(--ink-60); }

.extras__val {
  text-align: right;
  font-family: var(--figure);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
}

.extras__val--free {
  font-family: var(--display);
  font-weight: 700;
  color: var(--magenta);
}

.terms {
  margin: 0;
  padding-left: 1.1em;
  max-width: 36em;
  font-size: var(--fs-xs);
  line-height: 1.9;
  color: var(--ink-60);
}

/* ===========================================================
   在籍タイプ
   =========================================================== */

.types__text {
  margin: 0 0 var(--sp-6);
  max-width: 36em;
  font-size: var(--fs-sm);
}

.tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.tag {
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--plum);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 999px;
}

/* ===========================================================
   店舗情報
   =========================================================== */

.spec { margin: 0; }

.spec__row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
}

.spec dt {
  flex: 0 0 5.5rem;
  font-size: var(--fs-2xs);
  letter-spacing: .12em;
  color: var(--ink-60);
}

.spec dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: var(--fs-sm);
  overflow-wrap: break-word;
}

.spec a { text-underline-offset: .2em; }
.spec a:hover { color: var(--magenta-d); }

/* ===========================================================
   締め — このページで唯一の中央揃え
   =========================================================== */

.callout {
  padding: var(--sp-20) 0;
  text-align: center;
  color: var(--paper);
  background: var(--magenta);
}

.callout__title {
  margin: 0 0 var(--sp-3);
  font-family: var(--display);
  font-size: var(--fs-xl);
  font-weight: 900;
  letter-spacing: .04em;
  text-wrap: balance;
}

.callout__text {
  margin: 0 0 var(--sp-8);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .88);
}

.callout__num {
  display: inline-block;
  padding: var(--sp-3) var(--sp-8);
  font-family: var(--figure);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  color: var(--magenta);
  background: var(--paper);
  border-radius: 999px;
  touch-action: manipulation;
  transition: color .16s ease, background-color .16s ease;
}

.callout__num:hover { color: var(--paper); background: var(--plum); }
.callout__num:focus-visible { outline-color: var(--paper); }

.callout__hours {
  margin: var(--sp-5) 0 0;
  font-size: var(--fs-2xs);
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .88);
}

/* ===========================================================
   foot
   =========================================================== */

.foot {
  padding: var(--sp-10) 0;
  color: var(--paper);
  background: var(--plum);
}

.foot p { margin-block: 0; }

.foot__name {
  font-family: var(--display);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: .08em;
}

.foot__line {
  margin-block-start: var(--sp-1);
  font-size: var(--fs-2xs);
  color: rgba(255, 255, 255, .75);
}

.foot__warn {
  margin-block-start: var(--sp-5);
  font-size: var(--fs-2xs);
  color: #ffb9dd;
}

.foot__copy {
  margin-block-start: var(--sp-3);
  font-size: var(--fs-2xs);
  color: rgba(255, 255, 255, .72);
}

/* ===========================================================
   固定ダイヤル（モバイルのみ）
   =========================================================== */

.dial {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: var(--dial-h);
  padding: var(--sp-2) var(--sp-4);
  padding-bottom: calc(var(--sp-2) + env(safe-area-inset-bottom, 0px));
  text-decoration: none;
  color: var(--paper);
  background: var(--magenta);
  touch-action: manipulation;
  transition: background-color .16s ease;
}

.dial:hover { background: var(--magenta-d); }
.dial:focus-visible { outline-offset: -5px; outline-color: var(--paper); }

.dial__icon { flex: 0 0 auto; }

.dial__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: var(--fs-2xs);
  letter-spacing: .1em;
}

.dial__num {
  font-family: var(--figure);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: .02em;
}

/* ===========================================================
   広い画面 — 看板コースは全幅、残り2枚を並べる
   =========================================================== */

@media (min-width: 56rem) {
  body { padding-bottom: 0; }

  .dial { display: none; }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 46.875rem) minmax(20rem, 1fr);
    align-items: center;
    gap: var(--sp-10);
    max-width: 78rem;
    margin: 0 auto;
    padding: var(--sp-10) var(--sp-8);
  }

  .hero__pitch { padding: 0; }

  .hero__catch { font-size: var(--fs-xl); }

  .tickets { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ticket--push { grid-column: 1 / -1; padding: var(--sp-10); }

  .ticket--push .rates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--sp-10);
  }

  .ticket--push .rate:nth-last-child(2) { border-bottom: none; }

  .ticket--push .rate__num { font-size: var(--fs-3xl); }

  .extras { max-width: 34rem; }

  .zone--rate { padding-block: var(--sp-20); }
}

/* 極小画面 */
@media (max-width: 22.5rem) {
  .hero__flash-num { font-size: var(--fs-2xl); }
  .hero__call-num  { font-size: var(--fs-lg); }
  .rate__num       { font-size: var(--fs-xl); }
  .callout__num    { font-size: var(--fs-xl); padding-inline: var(--sp-5); }
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
