/* =========================================================
   DJ&Bar Y's — styles.css
   ダーク基調 / ゴールドアクセント / モバイルファースト
   ========================================================= */

/* ---------- CSS変数 ---------- */
:root {
  /* color */
  --bg:          #0a0a0a;
  --surface:     #141414;
  --surface-2:   #1c1c1c;
  --gold:        #c9a857;
  --gold-soft:   #d8be78;
  --bordeaux:    #8b3a62;
  --blue:        #2d4a8a;
  --red:         #ff3b4e;   /* 差し色: 赤（ネオン） */
  --pink:        #ff5fbf;   /* 差し色: 蛍光ピンク */
  --pink-soft:   #ff8ad6;
  --text:        #f5f5f5;
  --muted:       #aaaaaa;
  --faint:       #777777;
  --line:        rgba(255, 255, 255, .08);
  --line-strong: rgba(201, 168, 87, .35);

  /* type */
  --font: "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", sans-serif;

  /* layout */
  --maxw: 1200px;
  --pad: 24px;
  --section-y: 100px;
  --radius: 4px;
  --radius-lg: 10px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; line-height: 1.3; font-weight: 700; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 共通レイアウト ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}
.section { padding-block: var(--section-y); position: relative; }

.section__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section__head .section__title { position: relative; }
.section__head .section__title::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  margin: 20px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink) 55%, var(--red));
  box-shadow: 0 0 14px rgba(255, 95, 191, .45);
}
.section__title {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .01em;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--pink);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease);
  text-align: center;
}
.btn--lg { padding: 17px 38px; font-size: 16px; }
.btn--primary {
  background: var(--gold);
  color: #1a1407;
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 10, .9);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.header__logo img { height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav__link {
  font-size: 14px;
  color: var(--text);
  letter-spacing: .03em;
  transition: color .2s var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--gold); }
.nav__link--cta {
  border: 1px solid var(--line-strong);
  padding: 8px 16px;
  border-radius: var(--radius);
}
.nav__link--cta:hover { border-color: var(--gold); }

/* ハンバーガー */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 0;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .62; filter: saturate(1.05) contrast(1.03); }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(85% 60% at 84% 8%, rgba(255, 95, 191, .12), transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,.22) 0%, rgba(10,10,10,.28) 34%, rgba(10,10,10,.74) 80%, rgba(10,10,10,.95) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 120px 90px; }
.hero__logo { width: clamp(200px, 32vw, 300px); height: auto; margin-bottom: 26px; filter: drop-shadow(0 2px 12px rgba(0,0,0,.5)); }
.hero__sub {
  font-size: 13px;
  letter-spacing: .42em;
  color: var(--gold);
  margin: 0 0 18px;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.hero__title {
  font-size: clamp(32px, 5.2vw, 58px);
  font-weight: 800;
  letter-spacing: .01em;
  margin: 0 0 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
.hero__lead { color: #eaeaea; font-size: clamp(15px, 1.6vw, 18px); margin-bottom: 36px; text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}
.hero__meta li { position: relative; padding-left: 18px; }
.hero__meta li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; z-index: 2;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: .3em; color: var(--faint);
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* =========================================================
   営業ショートバー（今夜どうなの）
   ========================================================= */
.nowbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.nowbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nowbar__hours {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
  color: var(--muted);
}
.nowbar__label {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  color: #1a1407; background: var(--gold);
  padding: 3px 10px; border-radius: 3px;
}
.nowbar__slot b { color: var(--text); font-weight: 700; }
.nowbar__closed { color: var(--faint); }
.nowbar__ig {
  font-size: 14px; font-weight: 700; color: var(--pink-soft);
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nowbar__ig:hover { color: var(--pink); }
.nowbar__ig span { margin-left: 4px; }

/* =========================================================
   特徴セクション
   ========================================================= */
.features { background: var(--surface); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.feature__icon { font-size: 26px; color: var(--gold); line-height: 1; }
.feature:nth-child(3n+2) .feature__icon { color: var(--pink); }
.feature:nth-child(3n+3) .feature__icon { color: var(--red); }
.feature__label { font-weight: 700; font-size: 15px; }
.feature__note { font-size: 12px; color: var(--faint); }

/* =========================================================
   店舗紹介
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: start;
}
.about__photo { margin: 0; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.about__photo:hover img { transform: scale(1.06); }
.about__photo--main { grid-row: 1 / 3; aspect-ratio: 1 / 1; }
.about__photo--sub { aspect-ratio: 3 / 4; margin-top: 36px; }
.about__text .eyebrow { text-align: left; }
.about__text .section__title { text-align: left; margin-bottom: 24px; }
.about__text .section__title::after {
  content: "";
  display: block;
  width: 52px; height: 3px;
  margin: 18px 0 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--pink) 60%, var(--red));
  box-shadow: 0 0 14px rgba(255, 95, 191, .4);
}
.about__text p { color: var(--muted); }

/* =========================================================
   はじめての方へ
   ========================================================= */
.first { background: var(--surface); overflow: hidden; }
.first__bg { position: absolute; inset: 0; z-index: 0; }
.first__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .07; }
.first .container { position: relative; z-index: 1; }
.first__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.first__card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.first__card:nth-child(2) { border-top-color: var(--pink); }
.first__card:nth-child(3) { border-top-color: var(--red); }
.first__card:nth-child(4) { border-top-color: var(--gold-soft); }
.first__card h3 { font-size: 17px; margin-bottom: 10px; }
.first__card p { color: var(--muted); font-size: 14px; margin: 0; }

/* =========================================================
   イベント情報
   ========================================================= */
.hours { max-width: 520px; margin: 0 auto 48px; }
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table th, .hours__table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.hours__table th { text-align: left; color: var(--gold); width: 40%; font-weight: 700; }
.hours__table td { text-align: right; letter-spacing: .03em; }
.hours__closed th, .hours__closed td { color: var(--faint); }

.events__intro { color: var(--muted); margin-top: 14px; }
.events__subhead {
  font-size: clamp(18px, 2.4vw, 22px);
  text-align: center;
  margin: 8px 0 26px;
  color: var(--text);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.event-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.event-card__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #000; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.05); }
.event-card__body { padding: 20px; }
.event-card__body h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.35; }
.event-card__date { color: var(--gold-soft); font-size: 14px; font-weight: 700; margin: 0 0 6px; }
.event-card__date span { color: var(--muted); font-weight: 400; }
.event-card__dj { color: var(--text); font-size: 13.5px; margin: 0 0 4px; }
.event-card__note { color: var(--muted); font-size: 13px; margin: 0; }

.badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 5px 11px; border-radius: 999px; color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.badge--gold { background: var(--gold); color: #1a1407; }
.badge--blue { background: var(--pink); color: #1a0714; }
.badge--bordeaux { background: var(--red); color: #fff; }

/* =========================================================
   営業日カレンダー
   ========================================================= */
.cal {
  max-width: 760px;
  margin: 0 auto 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
}
.cal__bar { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.cal__month { font-size: 26px; font-weight: 800; color: var(--gold); letter-spacing: .02em; }
.cal__month span { color: var(--faint); margin: 0 1px; }
.cal__title { font-size: 14px; color: var(--muted); letter-spacing: .04em; }
.cal__legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 14px; font-size: 12px; color: var(--muted); }
.cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--open { background: rgba(201,168,87,.5); }
.dot--event { background: var(--pink); }
.dot--closed { background: rgba(255,255,255,.14); }

.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal__head { text-align: center; font-size: 11px; color: var(--muted); padding: 4px 0; font-weight: 700; }
.cal__head--sun { color: var(--red); }
.cal__head--sat { color: var(--blue); filter: brightness(1.7); }
.cal__cell {
  min-height: 58px;
  border-radius: 6px;
  padding: 5px 5px 4px;
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  overflow: hidden;
}
.cal__cell--empty { background: transparent; border: 0; }
.cal__cell--closed { opacity: .38; }
.cal__cell--open { border-color: rgba(201,168,87,.28); }
.cal__cell--event { border-color: var(--pink); background: rgba(255,95,191,.08); }
.cal__d { font-size: 13px; font-weight: 700; color: var(--text); }
.cal__cell--closed .cal__d { color: var(--faint); }
.cal__status { font-size: 9px; color: var(--faint); letter-spacing: .06em; }
.cal__cell--open .cal__status { color: var(--gold); }
.cal__ev { font-size: 9.5px; line-height: 1.25; color: var(--pink-soft); font-weight: 700; word-break: break-word; }
.cal__note { font-size: 11.5px; color: var(--faint); margin: 14px 0 0; }
.cal__note a { color: var(--gold-soft); }

.events__cta { text-align: center; margin-top: 44px; }
.events__cta p { color: var(--muted); margin-bottom: 16px; }

/* =========================================================
   箱貸し・貸切【最重要】
   ========================================================= */
.rental { background: var(--surface); overflow: hidden; }
.rental__bg { position: absolute; inset: 0; z-index: 0; }
.rental__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.rental__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 88% 2%, rgba(255,95,191,.14), transparent 60%),
    radial-gradient(60% 50% at 6% 100%, rgba(255,59,78,.10), transparent 60%),
    linear-gradient(180deg, rgba(20,20,20,.7), rgba(20,20,20,.95));
}
.rental .container { position: relative; z-index: 1; }
.rental__intro { color: var(--muted); margin-top: 16px; }

.rental__support {
  max-width: 760px;
  margin: 0 auto 52px;
  padding: 24px 28px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  text-align: center;
}
.rental__support h3 { font-size: clamp(17px, 2.2vw, 20px); color: var(--gold-soft); margin-bottom: 10px; }
.rental__support p { color: var(--muted); font-size: 15px; margin: 0; }

.rental__spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.rental__spec li {
  text-align: center;
  padding: 28px 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}
.rental__spec-num {
  display: block;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.rental__spec-num small { font-size: .45em; font-weight: 700; }
.rental__spec-label { font-size: 13px; color: var(--muted); letter-spacing: .04em; }

.rental__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 52px;
}
.rental__cols h3 { font-size: 18px; margin-bottom: 18px; color: var(--gold-soft); }

.checklist li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  color: var(--gold); font-weight: 700;
}
.rental__note { color: var(--faint); font-size: 12.5px; line-height: 1.7; margin: 16px 0 0; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags li {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.tags li:hover { color: var(--pink); border-color: var(--pink); }

/* こんな主催者の方へ */
.rental__who {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.rental__who h3 { font-size: 18px; color: var(--gold-soft); margin-bottom: 10px; }
.rental__who > p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.who-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}
.who-list li {
  position: relative;
  padding: 12px 16px 12px 40px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}
.who-list li::before {
  content: "→";
  position: absolute; left: 16px; top: 12px;
  color: var(--gold); font-weight: 700;
}
.who-list li:last-child:nth-child(odd) { grid-column: 1 / -1; }

.rental__flow { margin-bottom: 52px; }
.rental__flow h3 { font-size: 18px; margin-bottom: 24px; color: var(--gold-soft); text-align: center; }
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: flow;
}
.flow__step {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  position: relative;
}
.flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1407;
  font-weight: 800;
  margin-bottom: 12px;
}
.flow__step strong { display: block; font-size: 15px; margin-bottom: 6px; }
.flow__step p { color: var(--muted); font-size: 13px; margin: 0; }

.rental__price {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
}
.rental__price p { color: var(--muted); margin-bottom: 24px; }
.rental__price-lead { color: var(--gold-soft); font-size: clamp(15px, 1.8vw, 17px); font-weight: 700; }
.rental__price-note { font-size: 12.5px; color: var(--faint); margin-top: -8px; }

/* =========================================================
   メニュー / システム
   ========================================================= */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.menu__col h3 {
  font-size: 18px;
  color: var(--gold-soft);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}
.menu__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.menu__list li span:last-child { color: var(--muted); white-space: nowrap; }
.menu__note { color: var(--faint); font-size: 12px; margin: 16px 0 0; }
.menu__from { font-size: 13px; font-weight: 700; color: var(--gold); margin-left: 6px; }

/* お支払い方法 */
.payment {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.payment__title {
  font-size: 18px;
  color: var(--gold-soft);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}
.payment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.payment__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.payment__label { color: var(--gold); font-size: 14px; font-weight: 700; }
.payment__detail { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* =========================================================
   アクセス
   ========================================================= */
.access { background: var(--surface); }
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.access__key { margin: 0; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); aspect-ratio: 4 / 5; }
.access__key img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.access__key:hover img { transform: scale(1.05); }

.info { margin: 0 0 26px; }
.info > div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.info dt { color: var(--gold); font-size: 13px; font-weight: 700; padding-top: 2px; }
.info dd { margin: 0; color: var(--text); font-size: 15px; }
.info a { color: var(--gold-soft); }
.access__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.access__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); line-height: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 22px; font-weight: 400;
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { content: "−"; }
.faq__body { padding: 0 22px 20px; }
.faq__body p { color: var(--muted); margin: 0; font-size: 14px; }

/* =========================================================
   お問い合わせフォーム
   ========================================================= */
.contact__intro { color: var(--muted); margin-top: 14px; }

/* お問い合わせ：電話 / LINE の2択 */
.contact__choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.contact__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__card--line { border-color: rgba(6,199,85,.4); }
.contact__icon { font-size: 34px; margin-bottom: 12px; line-height: 1; }
.contact__card h3 { font-size: 19px; margin-bottom: 10px; }
.contact__num { font-size: 20px; font-weight: 800; color: var(--gold); margin: 0 0 10px; letter-spacing: .02em; }
.contact__card--line .contact__num { color: #22c55e; font-size: 17px; }
.contact__desc { color: var(--muted); font-size: 14px; margin: 0 0 22px; flex-grow: 1; }
.contact__btn { width: 100%; }
.btn--line {
  background: #06C755;
  color: #fff;
}
.btn--line:hover { background: #05b34c; transform: translateY(-2px); }
.contact__btn-icon {
  font-weight: 800; font-size: 12px; letter-spacing: .04em;
  background: rgba(255,255,255,.22); padding: 2px 6px; border-radius: 4px; margin-right: 2px;
}
.contact__note { text-align: center; color: var(--faint); font-size: 13px; margin: 24px 0 0; }
.form { max-width: 720px; margin: 0 auto; }
.form__row { margin-bottom: 20px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__label { display: block; font-size: 14px; margin-bottom: 8px; font-weight: 700; }
.req {
  font-size: 11px; font-weight: 700; color: var(--red);
  border: 1px solid var(--red); border-radius: 3px;
  padding: 1px 6px; margin-left: 6px; vertical-align: middle;
}
.form__input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease);
}
.form__input::placeholder { color: var(--faint); }
.form__input:focus { border-color: var(--gold); outline: none; }
select.form__input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
textarea.form__input { resize: vertical; line-height: 1.7; }
.form__rental-extra { animation: fadeIn .35s var(--ease); }
.form__submit { width: 100%; margin-top: 6px; }
.form__error { color: #e08; background: rgba(139,58,98,.12); border: 1px solid var(--bordeaux); border-radius: var(--radius); padding: 12px 16px; font-size: 14px; margin: 0 0 16px; }
.form__success {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(201,168,87,.1);
  color: var(--gold-soft);
  font-size: 14px;
  text-align: center;
}

/* =========================================================
   フッター
   ========================================================= */
.footer { background: #060606; border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__logo { height: 56px; width: auto; margin-bottom: 18px; }
.footer__addr { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.footer__addr a { color: var(--gold-soft); }
.footer__hours { color: var(--faint); font-size: 13px; margin: 0; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 12px 22px; align-content: start; }
.footer__nav a { color: var(--muted); font-size: 14px; transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--gold); }
.footer__copy {
  text-align: center; color: var(--faint); font-size: 12px;
  padding: 20px var(--pad); margin: 0; border-top: 1px solid var(--line);
}

/* =========================================================
   スマホ用固定CTA
   ========================================================= */
.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -6px 20px rgba(0,0,0,.45);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.mobile-cta__btn + .mobile-cta__btn { border-left: 1px solid var(--line); }
.mobile-cta__icon { font-size: 18px; line-height: 1; }
.mobile-cta__btn--accent { background: linear-gradient(135deg, var(--pink), var(--red)); color: #fff; }
.mobile-cta__btn--line { background: #06C755; color: #fff; }

/* =========================================================
   ギャラリー（店内の雰囲気）
   ========================================================= */
.gallery__grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery__item {
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  line-height: 0;
}
.gallery__item img {
  width: 100%;
  height: auto;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

/* はじめての方へ：補足文 / DJ体験 / 主催者向け区切り */
.first__note {
  max-width: 820px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.first__note strong { color: var(--gold-soft); }

.dj-invite {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 26px 30px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius-lg);
  text-align: center;
}
.dj-invite h3 { font-size: clamp(18px, 2.4vw, 22px); color: var(--pink-soft); margin-bottom: 10px; }
.dj-invite p { color: var(--muted); font-size: 15px; margin: 0; }

/* Instagram フィード */
.insta { margin-top: 48px; }
.insta__head { text-align: center; margin-bottom: 22px; }
.insta__handle {
  display: block;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--pink) 55%, var(--red));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--pink);
  letter-spacing: .02em;
}
.insta__sub { display: block; color: var(--muted); font-size: 13px; margin-top: 8px; }
#instagram-feed { max-width: 900px; margin: 0 auto; }
.insta__cta { text-align: center; margin-top: 8px; }
.insta__cta-icon { font-size: 18px; margin-right: 2px; }

/* アクセス：行き方 */
.access__directions {
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 26px 28px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.access__directions h3 { font-size: 17px; color: var(--gold-soft); margin-bottom: 18px; text-align: center; }
.route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.route__step { margin: 0; }
.route__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,95,191,.06), transparent 60%),
    linear-gradient(135deg, var(--surface-2), #101010);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.route__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.route__num {
  position: relative; z-index: 1;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #1a1407; font-weight: 800; font-size: 19px;
}
.route__photo:has(img) { background: none; }
.route__photo:has(img) .route__num {
  position: absolute; top: 10px; left: 10px;
  width: 30px; height: 30px; font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.55);
}
.route__text { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }
.route__text strong { color: var(--text); }
.access__help { text-align: center; color: var(--faint); font-size: 13px; margin-top: 22px; }
.access__help a { color: var(--gold-soft); }

/* 主催者向け区切り */
.section-divider {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 95, 191, .06), transparent 70%),
    var(--surface);
}
.section-divider__label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--pink);
  margin-bottom: 8px;
}
.section-divider__text { color: var(--muted); font-size: 15px; margin: 0; }

/* =========================================================
   フェードイン（IntersectionObserver）
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 960px) {
  :root { --section-y: 72px; }

  /* nav -> drawer */
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: var(--surface);
    border-left: 1px solid var(--line-strong);
    padding: 92px 28px 28px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 99;
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 16px; padding: 10px 0; width: 100%; }
  .nav__link--cta { border: 1px solid var(--line-strong); padding: 12px 16px; margin-top: 8px; text-align: center; }
  .hamburger { display: block; z-index: 100; }

  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { max-width: 520px; }
  .first__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { column-count: 2; }
  .events__grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; margin-inline: auto; }
  .rental__spec { grid-template-columns: repeat(2, 1fr); }
  .rental__cols { grid-template-columns: 1fr; gap: 28px; }
  .flow { grid-template-columns: 1fr; gap: 10px; }
  .flow__step { display: flex; align-items: flex-start; gap: 16px; }
  .flow__num { margin-bottom: 0; flex-shrink: 0; }
  .menu__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .access__grid { grid-template-columns: 1fr; gap: 28px; }
  .access__key { max-width: 380px; }
  .route { grid-template-columns: repeat(2, 1fr); }
  .nowbar__inner { justify-content: center; text-align: center; }
  .nowbar__hours { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }

  .mobile-cta { display: flex; }
  main { padding-bottom: 0; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); } /* 固定CTA分の余白 */
}

@media (max-width: 600px) {
  :root { --pad: 20px; --section-y: 60px; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .first__grid { grid-template-columns: 1fr; }
  .rental__spec { grid-template-columns: repeat(2, 1fr); }
  .who-list { grid-template-columns: 1fr; }
  .about__media { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .form__grid { grid-template-columns: 1fr; }
  .payment__grid { grid-template-columns: 1fr; }
  .payment__item { grid-template-columns: 1fr; gap: 4px; }
  .hero__inner { padding-block: 110px 80px; }
  .hero__bg img { opacity: .72; }
  .hero::after {
    background:
      radial-gradient(90% 45% at 80% 6%, rgba(255,95,191,.12), transparent 55%),
      linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.24) 38%, rgba(10,10,10,.72) 78%, rgba(10,10,10,.95) 100%);
  }
  .hours__table th, .hours__table td { font-size: 14px; padding: 12px 14px; }
  .nowbar__inner { flex-direction: column; gap: 10px; }
  .nowbar__ig { white-space: normal; }
  .events__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .event-card__body { padding: 14px; }
  .event-card__body h3 { font-size: 15px; }
  .cal { padding: 16px 12px 14px; }
  .cal__grid { gap: 3px; }
  .cal__cell { min-height: 46px; padding: 4px 3px; }
  .cal__status { display: none; }
  .cal__ev { font-size: 8px; }
  .cal__d { font-size: 11px; }
  .contact__choices { grid-template-columns: 1fr; }
}

/* =========================================================
   モーション軽減
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
