@charset "UTF-8";
/* ============================================
   炭火酒場 囲 -KAKOI-  style.css
   黒 × 木目 × 炭色 × 金 の和モダン
============================================ */

:root {
  --sumi: #0e0c0a;          /* 墨黒（ベース） */
  --charcoal: #17140f;      /* 炭色（セクション） */
  --charcoal-2: #201b14;    /* 炭色（カード） */
  --wood: #35291d;          /* 木目の影 */
  --gold: #c9a063;          /* 金 */
  --gold-light: #e0c08d;
  --ivory: #f3ecdd;         /* 象牙（本文） */
  --muted: #b0a390;         /* くすみベージュ */
  --line: rgba(201, 160, 99, .25);
  --serif: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--sumi);
  color: var(--ivory);
  line-height: 1.9;
  letter-spacing: .06em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.pc { display: inline; }

/* ---- 見出し ---- */
.section-head { text-align: center; margin-bottom: 64px; }
.section-en {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ivory);
}
.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}
.section-lead { margin-top: 20px; color: var(--muted); font-size: 14px; }

/* ---- ボタン ---- */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .18em;
  padding: 15px 36px;
  border: 1px solid var(--gold);
  transition: all .4s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, #b8904f, var(--gold) 55%, #a87f42);
  color: #171105;
  font-weight: 500;
}
.btn-gold:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,160,99,.25); }
.btn-line { color: var(--gold-light); background: transparent; }
.btn-line:hover { background: rgba(201,160,99,.12); transform: translateY(-2px); }
.btn-lg { padding: 18px 56px; font-size: 15px; }

/* ============================================
   ローディング
============================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--sumi);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
  display: block;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 110px; height: 110px;
  line-height: 108px;
  margin: 0 auto 18px;
  animation: loaderPulse 1.6s ease infinite;
}
.loader-text { font-family: var(--serif); font-size: 13px; letter-spacing: .3em; color: var(--muted); }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

/* ============================================
   ヘッダー
============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .5s ease, box-shadow .5s ease;
}
.header.is-scrolled {
  background: rgba(14, 12, 10, .92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { font-family: var(--serif); font-size: 15px; letter-spacing: .12em; }
.logo-text strong { font-size: 19px; font-weight: 600; }
.logo-text small { font-size: 10px; color: var(--muted); letter-spacing: .2em; }

.gnav { display: flex; align-items: center; gap: 34px; }
.gnav ul { display: flex; gap: 30px; }
.gnav a { font-size: 13px; letter-spacing: .12em; position: relative; padding: 6px 0; }
.gnav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s ease;
}
.gnav ul a:hover::after { width: 100%; }
.gnav .gnav-reserve {
  font-family: var(--serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  line-height: 1;
  letter-spacing: .18em;
  white-space: nowrap;
  transition: background .35s, color .35s, border-color .35s;
}
.gnav .gnav-reserve:hover { background: var(--gold); color: #171105; }

.menu-btn { display: none; }

/* ============================================
   ヒーロー
============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg img { animation: heroZoom 34s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,12,10,.95) 0%, rgba(14,12,10,.25) 45%, rgba(14,12,10,.45) 100%),
    radial-gradient(ellipse at 30% 60%, transparent 30%, rgba(14,12,10,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .3em;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero-catch {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.55;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
  margin-bottom: 46px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-side {
  position: absolute; right: 34px; top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 10px; letter-spacing: .4em;
  color: rgba(243,236,221,.5);
  z-index: 2;
}
.hero-scroll {
  position: absolute; left: 34px; bottom: 0;
  font-size: 10px; letter-spacing: .3em;
  color: rgba(243,236,221,.6);
  writing-mode: vertical-rl;
  z-index: 2;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll span {
  display: block; width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================
   コンセプト
============================================ */
.concept {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,160,99,.06), transparent 60%),
    var(--sumi);
  text-align: center;
}
.concept-lead {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 32px);
  letter-spacing: .2em;
  color: var(--gold-light);
  margin-bottom: 36px;
}
.concept-text { font-size: 15px; color: var(--ivory); line-height: 2.4; }

/* ============================================
   こだわり
============================================ */
.kodawari { background: var(--charcoal); }
.kodawari-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 96px;
}
.kodawari-item:last-child { margin-bottom: 0; }
.kodawari-item:nth-child(odd) .kodawari-img { order: 2; }
.kodawari-img {
  position: relative;
  overflow: hidden;
}
.kodawari-img::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,160,99,.4);
  z-index: 2;
  pointer-events: none;
}
.kodawari-img img {
  width: 100%; height: 380px; object-fit: cover;
  transition: transform 1.2s ease;
}
.kodawari-item:hover .kodawari-img img { transform: scale(1.05); }
.kodawari-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 22px;
  letter-spacing: .3em;
}
.kodawari-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.7;
  margin-bottom: 22px;
}
.kodawari-text p { font-size: 14px; color: var(--muted); }

/* ============================================
   お品書き
============================================ */
.menu { background: var(--sumi); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,160,99,.15);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  border-color: rgba(201,160,99,.45);
}
.menu-card-img { position: relative; overflow: hidden; }
.menu-card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .8s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .2em;
  background: rgba(14,12,10,.85);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 4px 12px;
}
.menu-card-body { padding: 24px 22px 26px; }
.menu-card-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.menu-card-body p { font-size: 13px; color: var(--muted); margin-bottom: 16px; min-height: 3.4em; }
.menu-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-light);
  letter-spacing: .05em;
}
.menu-price small { font-size: 12px; color: var(--muted); margin-left: 4px; }
.menu-note { text-align: center; margin-top: 40px; font-size: 12px; color: var(--muted); }

/* ============================================
   コース・宴会
============================================ */
.course {
  background:
    linear-gradient(rgba(23,20,15,.94), rgba(14,12,10,.97)),
    url("images/kodawari-wagyu.jpg") center/cover fixed;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.course-card {
  background: rgba(32,27,20,.85);
  border: 1px solid rgba(201,160,99,.2);
  padding: 40px 30px 36px;
  text-align: center;
  position: relative;
  transition: transform .4s, border-color .4s;
}
.course-card:hover { transform: translateY(-6px); border-color: rgba(201,160,99,.55); }
.course-card.is-featured { border: 1px solid var(--gold); background: rgba(38,31,21,.92); }
.course-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 11px; letter-spacing: .2em;
  background: var(--gold); color: #171105;
  padding: 4px 18px;
  white-space: nowrap;
}
.course-card h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600;
  letter-spacing: .16em;
  margin-bottom: 18px;
}
.course-desc { font-size: 13px; color: var(--muted); text-align: left; margin-bottom: 22px; min-height: 5em; }
.course-detail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: .1em;
}
.course-price { font-family: var(--serif); font-size: 30px; color: var(--gold-light); }
.course-price small { font-size: 12px; color: var(--muted); margin: 0 6px; }
.course-cta { text-align: center; }
.course-cta p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }

/* ============================================
   店内紹介
============================================ */
.space { background: var(--charcoal); padding-bottom: 0; }
.space-head { text-align: center; margin-bottom: 60px; padding: 0 24px; }
.space-copy {
  font-family: var(--serif);
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: .18em;
  color: var(--gold-light);
  margin-top: 24px;
}
.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.space-item { position: relative; overflow: hidden; margin: 0; }
.space-item img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 1.2s ease;
}
.space-item:hover img { transform: scale(1.05); }
.space-item figcaption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,.92) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 34px;
}
.space-item h3 {
  font-family: var(--serif);
  font-size: 21px; font-weight: 600;
  letter-spacing: .16em;
  color: var(--ivory);
  margin-bottom: 8px;
}
.space-item h3::before {
  content: "―";
  color: var(--gold);
  margin-right: 12px;
}
.space-item p { font-size: 13px; color: rgba(243,236,221,.85); }

/* ============================================
   お客様の声
============================================ */
.voice { background: var(--sumi); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.voice-card {
  background: #fdfcf9;
  color: #33302b;
  border-radius: 10px;
  padding: 28px 26px 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  position: relative;
}
.voice-card::before {
  content: "G";
  position: absolute; top: 22px; right: 24px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  color: #b8b2a6;
}
.voice-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c, #8a6d3b);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.voice-name { display: block; font-weight: 500; font-size: 14px; }
.voice-stars { color: #e8a12c; font-size: 13px; letter-spacing: 2px; }
.voice-card p { font-size: 13.5px; line-height: 1.9; color: #4d483f; }
.voice-date { display: block; margin-top: 14px; font-size: 11.5px; color: #98917f; }

/* ============================================
   Instagram
============================================ */
.insta { background: var(--charcoal); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-grid a { overflow: hidden; position: relative; }
.insta-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .8s ease, filter .8s;
}
.insta-grid a:hover img { transform: scale(1.08); filter: brightness(1.1); }
.insta-cta { text-align: center; margin-top: 44px; }

/* ============================================
   お知らせ
============================================ */
.news { background: var(--sumi); }
.news-list { max-width: 820px; margin: 0 auto; display: grid; gap: 18px; }
.news-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,160,99,.15);
  padding: 26px 30px;
  transition: border-color .35s, transform .35s;
}
.news-card:hover { border-color: rgba(201,160,99,.5); transform: translateX(6px); }
.news-date {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
  margin-right: 16px;
}
.news-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 3px 12px;
  border: 1px solid;
  margin-bottom: 12px;
}
.cat-menu { color: #d8a86a; border-color: #d8a86a; }
.cat-info { color: #9fb3a5; border-color: #9fb3a5; }
.cat-event { color: #c78f8f; border-color: #c78f8f; }
.news-card h3 {
  font-family: var(--serif);
  font-size: 17px; font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.news-card p { font-size: 13px; color: var(--muted); }

/* ============================================
   アクセス
============================================ */
.access { background: var(--charcoal); }
.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.access-info dl { margin-bottom: 34px; }
.access-info dl > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(201,160,99,.15);
  font-size: 14px;
}
.access-info dt { color: var(--gold); font-family: var(--serif); letter-spacing: .14em; }
.access-info dd small { color: var(--muted); font-size: 12px; }
.tel-link { font-family: var(--serif); font-size: 20px; color: var(--gold-light); letter-spacing: .08em; }
.access-map {
  position: relative;
  height: 460px;
  background: var(--charcoal-2);
  border: 1px solid rgba(201,160,99,.2);
}
.access-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  filter: grayscale(30%) contrast(1.02);
}
.map-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .08em;
}
.map-fallback-pin { font-size: 30px; }
.map-fallback-note { font-size: 12px; color: var(--gold); }

/* ============================================
   予約
============================================ */
.reserve {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,160,99,.08), transparent 60%),
    var(--sumi);
}
.reserve-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.reserve-way {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,160,99,.25);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.reserve-way:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.reserve-way-label {
  display: block;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .18em;
  margin-bottom: 14px;
}
.reserve-way-main {
  display: block;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ivory);
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.reserve-way-note { display: block; font-size: 12px; color: var(--muted); }

.reserve-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--charcoal-2);
  border: 1px solid rgba(201,160,99,.2);
  padding: 48px 46px;
}
.reserve-form h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  margin-bottom: 34px;
}
.form-row { margin-bottom: 24px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.reserve-form label {
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  margin-bottom: 8px;
  color: var(--ivory);
}
.req {
  font-size: 10px;
  background: #8a4a3a;
  color: #fff;
  padding: 2px 8px;
  margin-left: 8px;
  letter-spacing: .1em;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  background: var(--sumi);
  border: 1px solid rgba(201,160,99,.3);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color .3s;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.reserve-form ::placeholder { color: #6b6252; }
.reserve-form button { width: 100%; cursor: pointer; margin-top: 8px; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 18px; }

/* ============================================
   フッター
============================================ */
.footer {
  background: #0a0805;
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
  text-align: center;
}
.footer-logo .logo-mark { width: 54px; height: 54px; font-size: 28px; margin-bottom: 14px; }
.footer-logo p { font-family: var(--serif); font-size: 16px; letter-spacing: .2em; margin-bottom: 20px; }
.footer-info { font-size: 12.5px; color: var(--muted); margin-bottom: 30px; }
.footer-info a { color: var(--gold-light); }
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 36px;
}
.footer-nav a { font-size: 12.5px; letter-spacing: .12em; color: var(--muted); transition: color .3s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 11px; color: #6b6252; letter-spacing: .15em; }
.footer-demo { font-size: 10.5px; color: #55503f; margin-top: 12px; }

/* ============================================
   スマホ固定CTA
============================================ */
.fixed-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: none;
  grid-template-columns: 1fr 1.2fr 1fr;
  background: rgba(10, 8, 5, .97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.fixed-cta-item {
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  padding: 15px 2px calc(15px + env(safe-area-inset-bottom, 0px));
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--ivory);
}
.cta-icon { font-size: 14px; }
.cta-reserve {
  background: linear-gradient(135deg, #b8904f, var(--gold) 55%, #a87f42);
  color: #171105;
  font-family: var(--serif);
  font-weight: 600;
}
.cta-tel, .cta-map { color: var(--gold-light); }

/* ============================================
   アニメーション（スクロールで表示）
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }

.static-mode .reveal { opacity: 1; transform: none; transition: none; }
.static-mode .loader { display: none; }
.static-mode .hero-bg img { animation: none; }
.static-mode { scroll-behavior: auto; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   レスポンシブ
============================================ */
@media (max-width: 1024px) {
  .gnav ul { gap: 20px; }
}

@media (max-width: 900px) {
  .pc { display: none; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 44px; }

  /* ナビ → ドロワー */
  .gnav {
    position: fixed; inset: 0;
    background: rgba(10, 8, 5, .97);
    flex-direction: column; justify-content: center;
    gap: 40px;
    opacity: 0; visibility: hidden;
    transition: opacity .45s ease, visibility .45s;
  }
  .gnav.is-open { opacity: 1; visibility: visible; }
  .gnav ul { flex-direction: column; text-align: center; gap: 26px; }
  .gnav a { font-family: var(--serif); font-size: 17px; letter-spacing: .2em; }
  .menu-btn {
    display: block;
    position: relative; z-index: 1001;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
  }
  .menu-btn span {
    display: block;
    width: 26px; height: 1px;
    background: var(--gold-light);
    margin: 7px auto;
    transition: transform .4s, opacity .4s;
  }
  .menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-btn.is-open span:nth-child(2) { opacity: 0; }
  .menu-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { min-height: 560px; }
  .hero-content { padding-top: 30px; }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: min(320px, calc(100vw - 48px));
    margin-left: calc((100vw - min(320px, calc(100vw - 48px))) / 2 - 24px);
    margin-right: 0;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-side { display: none; }

  .kodawari-item {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 70px;
  }
  .kodawari-item:nth-child(odd) .kodawari-img { order: 0; }
  .kodawari-img img { height: 260px; }

  .menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .menu-card-img img { height: 150px; }
  .menu-card-body { padding: 16px 14px 18px; }
  .menu-card-body h3 { font-size: 15px; }
  .menu-card-body p { font-size: 12px; min-height: 0; }
  .menu-price { font-size: 19px; }

  .course-grid { grid-template-columns: 1fr; gap: 30px; }
  .course-desc { min-height: 0; }

  .space-grid { grid-template-columns: 1fr; }
  .space-item img { height: 300px; }
  .space-item figcaption { padding: 22px 24px; }

  .voice-grid { grid-template-columns: 1fr; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }

  .access-inner { grid-template-columns: 1fr; gap: 36px; }
  .access-map { height: 320px; }
  .access-info .btn { display: block; }

  .reserve-ways { grid-template-columns: 1fr; gap: 16px; }
  .reserve-form { padding: 34px 22px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 24px; }

  /* スマホ固定CTAは非表示 */
  .fixed-cta { display: none; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 13px; }
  .logo-text strong { font-size: 16px; }
  .hero-catch { font-size: 32px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-img img { height: 200px; }
}
