@charset "UTF-8";
/* ============================================
   麺屋 黒鐵 -KUROGANE-  style.css
   黒 × 赤 × ゴールド × 生成り
   男臭く、無骨に、湯気まで熱く。
============================================ */

:root {
  --black: #111111;        /* メイン */
  --brown: #2A1B16;        /* サブ（焦げ茶） */
  --red: #B21F1F;          /* アクセント */
  --gold: #D6A84F;         /* アクセント2 */
  --kinari: #F4EFE6;       /* 生成り背景 */
  --ink: #1A1A1A;          /* 濃色テキスト */
  --white: #F8F3EA;        /* 白文字 */
  --muted: #b8ab97;        /* くすみ */
  --line: rgba(214, 168, 79, .28);
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --brush: "Yuji Syuku", serif;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.9;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ざらつき（鉄板・厨房の質感） */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .05;
  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='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 840px; }
.section { padding: 104px 0; position: relative; }
.sp { display: none; }

/* ---- 見出し ---- */
.sec-head { margin-bottom: 56px; }
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-label::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
}
.sec-label.red { color: var(--red); }
.sec-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.35;
  letter-spacing: .08em;
}
.sec-title.dark { color: var(--ink); }
.sec-lead { margin-top: 18px; font-size: 15px; color: var(--muted); }
.sec-lead.dark { color: #5c5347; }

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  border: 1px solid transparent;
  transition: box-shadow .3s, background .3s, border-color .3s, transform .2s;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  box-shadow: 0 0 22px rgba(178, 31, 31, .75);
  transform: translateY(-2px);
}
.btn-frame {
  border-color: rgba(248, 243, 234, .45);
  color: var(--white);
}
.btn-frame:hover {
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(178, 31, 31, .5);
  transform: translateY(-2px);
}
.btn-lg { min-width: 320px; padding: 20px 40px; font-size: 17px; }

/* ============================================
   ヘッダー
============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, .96);
  border-bottom: 1px solid rgba(214, 168, 79, .18);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .5); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-stamp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  font-family: var(--brush);
  font-size: 15px;
  line-height: 1.05;
  text-align: center;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(248, 243, 234, .35);
}
.logo-text {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .1em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text small {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--gold);
}
.gnav ul { display: flex; gap: 22px; }
.gnav a { font-size: 13.5px; font-weight: 500; position: relative; padding: 6px 0; }
.gnav ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.gnav ul a:hover::after { transform: scaleX(1); }
.gnav { display: flex; align-items: center; gap: 26px; }
.gnav-recruit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  padding: 8px 22px;
  letter-spacing: .16em;
  transition: box-shadow .3s;
}
.gnav-recruit span { font-size: 10px; letter-spacing: .1em; color: rgba(248,243,234,.85); }
.gnav-recruit:hover { box-shadow: 0 0 18px rgba(178, 31, 31, .8); }
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* ============================================
   1. ファーストビュー
============================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(340px, 37%) 1fr;
  min-height: 100svh;
  padding-top: 68px;
}
.hero-left {
  position: relative;
  background:
    linear-gradient(160deg, rgba(42, 27, 22, .55), rgba(17, 17, 17, 0) 55%),
    var(--black);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px 44px;
  overflow: hidden;
}
.hero-left::before {
  /* 掠れた赤の刷毛ライン */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: 26px;
  width: 5px;
  background: linear-gradient(var(--red), rgba(178, 31, 31, 0) 82%);
  opacity: .8;
  z-index: 1;
}
.hero-left::after {
  /* 足元の熱気（赤の残り火） */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -70px;
  height: 240px;
  background: radial-gradient(62% 100% at 50% 100%, rgba(178, 31, 31, .16), transparent 72%);
  pointer-events: none;
}
.hero-left > .hero-en,
.hero-left > .hero-copy,
.hero-left > .hero-cta { position: relative; z-index: 2; }
.hero-sub { z-index: 2; }

/* コピー背後の湯気 */
.hero-steam {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-steam span {
  position: absolute;
  bottom: -24%;
  width: 130px;
  height: 340px;
  background: radial-gradient(ellipse 50% 44% at 50% 55%, rgba(248, 243, 234, .45), rgba(248, 243, 234, 0) 70%);
  filter: blur(15px);
  opacity: 0;
  will-change: transform, opacity;
  animation: hero-steam-drift 13s ease-in-out infinite;
}
.hero-steam span:nth-child(1) { left: -4%;  animation-delay: 0s;    animation-duration: 13s; }
.hero-steam span:nth-child(2) { left: 14%;  animation-delay: 4.5s;  animation-duration: 15s; width: 160px; }
.hero-steam span:nth-child(3) { left: 36%;  animation-delay: 2s;    animation-duration: 12s; }
.hero-steam span:nth-child(4) { left: 55%;  animation-delay: 8s;    animation-duration: 16s; width: 175px; height: 380px; }
.hero-steam span:nth-child(5) { left: 72%;  animation-delay: 6s;    animation-duration: 13.5s; }
.hero-steam span:nth-child(6) { left: 86%;  animation-delay: 10.5s; animation-duration: 14.5s; width: 150px; }
@keyframes hero-steam-drift {
  0%   { transform: translate3d(0, 14%, 0) scale(.85) rotate(-2deg); opacity: 0; }
  16%  { opacity: .85; }
  45%  { transform: translate3d(-16px, -60%, 0) scale(1.05) rotate(3deg); opacity: .48; }
  75%  { opacity: .22; }
  100% { transform: translate3d(18px, -135%, 0) scale(1.3) rotate(-4deg); opacity: 0; }
}
.hero-en {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .42em;
  color: var(--gold);
}
.hero-copy {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.28;
  letter-spacing: .12em;
  margin: 30px auto 24px;
  max-height: 560px;
}
.hero-copy span { display: block; }
.hero-copy span:last-child { padding-top: 1.5em; }
.hero-sub {
  writing-mode: vertical-rl;
  position: absolute;
  top: 110px;
  left: 34px;
  font-size: 13px;
  line-height: 2.4;
  color: var(--muted);
  height: 46%;
}
.hero-cta { display: flex; flex-direction: column; gap: 14px; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero-right::after {
  /* 下辺を黒に沈めて深夜感 */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.32), rgba(17,17,17,0) 30% 62%, rgba(17,17,17,.66));
  pointer-events: none;
}

/* 湯気 */
.steam { position: absolute; left: 34%; bottom: 34%; width: 30%; height: 46%; pointer-events: none; }
.steam span {
  position: absolute;
  bottom: 0;
  width: 52px;
  height: 130px;
  background: radial-gradient(ellipse at center, rgba(248, 243, 234, .5), rgba(248, 243, 234, 0) 68%);
  filter: blur(9px);
  opacity: 0;
  animation: steam-rise 7s ease-in-out infinite;
}
.steam span:nth-child(1) { left: 8%; }
.steam span:nth-child(2) { left: 42%; animation-delay: 2.3s; animation-duration: 8s; }
.steam span:nth-child(3) { left: 72%; animation-delay: 4.2s; animation-duration: 6.4s; }
@keyframes steam-rise {
  0%   { transform: translateY(30%) scaleX(.8) rotate(0deg); opacity: 0; }
  22%  { opacity: .75; }
  60%  { opacity: .35; }
  100% { transform: translateY(-240%) scaleX(1.5) rotate(8deg); opacity: 0; }
}

.hero-card {
  position: absolute;
  right: 26px;
  bottom: 30px;
  z-index: 2;
  background: rgba(17, 17, 17, .86);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 18px 24px;
  font-size: 12.5px;
  line-height: 2;
  backdrop-filter: blur(4px);
}
.hero-card-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .22em;
  margin-bottom: 2px;
}

/* メニュー帯 */
.marquee {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(17,17,17,.35);
  border-bottom: 1px solid rgba(17,17,17,.35);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .22em;
  padding: 12px 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   2. こだわり
============================================ */
.sec-kodawari {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(178, 31, 31, .12), transparent 65%),
    linear-gradient(180deg, #14100d, var(--black));
}
.sec-kodawari::before {
  content: "魂";
  position: absolute;
  top: 30px;
  right: 2vw;
  font-family: var(--brush);
  font-size: clamp(160px, 24vw, 340px);
  line-height: 1;
  color: rgba(248, 243, 234, .04);
  pointer-events: none;
}
.kodawari-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.kcard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #201812, #171310 60%);
  border: 1px solid var(--line);
  padding: 40px 30px 34px;
  transition: transform .35s, box-shadow .35s;
}
.kcard-photo {
  float: right;
  width: 34%;
  height: 190px;
  margin: -14px -14px 16px 22px;
  overflow: hidden;
  border-left: 1px solid rgba(214, 168, 79, .28);
  border-bottom: 1px solid rgba(214, 168, 79, .28);
}
.kcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.kcard:hover .kcard-photo img { transform: scale(1.06); }
.kcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 4px;
  background: var(--red);
}
.kcard:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(0, 0, 0, .45); }
.knum {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 58px;
  line-height: 1;
  color: var(--red);
  display: block;
  margin-bottom: 18px;
  text-shadow: 0 0 26px rgba(178, 31, 31, .4);
}
.kcard h3 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.kcard p { font-size: 14px; color: var(--muted); }

/* ============================================
   3. メニュー（券売機風）
============================================ */
.sec-menu { background: var(--kinari); color: var(--ink); }
.kenbaiki {
  background: linear-gradient(180deg, #1b1512, #121009);
  border: 8px solid #241b14;
  outline: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(26, 26, 26, .35);
  padding: 34px 34px 40px;
  color: var(--white);
}
.kenbaiki-head {
  text-align: center;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .5em;
  font-size: 14px;
  color: var(--gold);
  border-bottom: 1px dashed rgba(214, 168, 79, .4);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ticket {
  background: #211a15;
  border: 1px solid rgba(214, 168, 79, .4);
  box-shadow: inset 0 0 0 4px #17120e, 0 4px 0 #0a0806;
  padding: 8px 8px 14px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.ticket:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 4px #17120e, 0 8px 0 #0a0806, 0 14px 26px rgba(0,0,0,.4); }
.ticket-photo { position: relative; overflow: hidden; margin-bottom: 10px; }
.ticket-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.ticket:hover .ticket-photo img { transform: scale(1.07); }
.ticket-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--brush);
  font-size: 13px;
  padding: 3px 9px;
  letter-spacing: .2em;
}
.ticket-name {
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 14.5px;
  letter-spacing: .06em;
  line-height: 1.4;
  text-align: center;
  padding: 7px 6px;
  margin: 0 4px 10px;
}
.ticket-desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  padding: 0 8px;
  flex-grow: 1;
}
.ticket-price {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--gold);
  text-align: center;
  margin-top: 10px;
}
.kifuda-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px dashed rgba(214, 168, 79, .4);
}
.kifuda-item { text-align: center; }
.kifuda {
  writing-mode: vertical-rl;
  display: inline-block;
  font-family: var(--brush);
  font-size: 26px;
  letter-spacing: .3em;
  color: var(--ink);
  background: linear-gradient(175deg, #f0e2c4, #d9c49a);
  padding: 22px 12px;
  min-height: 150px;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5), inset 0 0 12px rgba(122, 90, 40, .35);
}
.kifuda-price {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 19px;
  color: var(--gold);
  margin-top: 12px;
}
.kifuda-desc { font-size: 12px; color: var(--muted); margin-top: 4px; }
.menu-note { text-align: center; font-size: 12px; color: #7d7362; margin-top: 22px; }

/* ============================================
   4. 仕込み
============================================ */
.sec-shikomi {
  background: linear-gradient(180deg, var(--black), #16110d 55%, var(--black));
}
.sec-shikomi::before {
  content: "仕込";
  position: absolute;
  bottom: 40px;
  left: 1vw;
  font-family: var(--brush);
  font-size: clamp(140px, 20vw, 300px);
  line-height: 1;
  color: rgba(248, 243, 234, .04);
  pointer-events: none;
}
.shikomi-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.shikomi-main { grid-row: 1 / 3; }
.shikomi-grid figure { position: relative; overflow: hidden; }
.shikomi-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.shikomi-grid figure:hover img { transform: scale(1.05); }
.shikomi-grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 18px 14px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .14em;
  background: linear-gradient(transparent, rgba(17, 17, 17, .85));
}
.shikomi-main img { min-height: 520px; }
.shikomi-sub img { min-height: 250px; }

/* ============================================
   5. 店内・カウンター
============================================ */
.sec-tennai { background: var(--kinari); color: var(--ink); }
.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.scene-tags li {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brown);
  border: 1px solid rgba(42, 27, 22, .35);
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.scene { overflow: hidden; background: var(--black); }
.scene img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  transition: transform .5s, opacity .5s;
}
.scene:hover img { transform: scale(1.06); opacity: .9; }
.scene figcaption {
  background: var(--black);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  padding: 10px 6px;
  border-top: 2px solid var(--red);
}

/* ============================================
   6. アルバイト募集
============================================ */
.sec-recruit {
  background:
    radial-gradient(900px 420px at 12% 8%, rgba(178, 31, 31, .16), transparent 60%),
    var(--black);
}
.sec-recruit::before {
  content: "募";
  position: absolute;
  top: 60px;
  right: 3vw;
  font-family: var(--brush);
  font-size: clamp(150px, 20vw, 300px);
  line-height: 1;
  color: rgba(178, 31, 31, .07);
  pointer-events: none;
}
.recruit-copy { margin-bottom: 48px; }
.recruit-catch {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.6;
  margin-bottom: 20px;
}
.recruit-catch span {
  background: linear-gradient(transparent 62%, rgba(178, 31, 31, .55) 62%);
  padding: 0 4px;
}
.recruit-lead { font-size: 15px; color: var(--muted); }
.recruit-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: start;
}
.recruit-box {
  background: rgba(42, 27, 22, .45);
  border: 1px solid var(--line);
  padding: 30px;
}
.recruit-box-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
}
.recruit-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 13px 4px;
  border-bottom: 1px dashed rgba(214, 168, 79, .25);
  font-size: 14px;
}
.recruit-table div:last-child { border-bottom: none; }
.recruit-table dt { font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.recruit-table dd { color: var(--white); }
.recruit-side { display: flex; flex-direction: column; gap: 26px; }
.recruit-photo { position: relative; overflow: hidden; }
.recruit-photo img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; transition: transform .5s; }
.recruit-photo:hover img { transform: scale(1.05); }
.recruit-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: .12em;
  background: linear-gradient(transparent, rgba(17, 17, 17, .88));
}
.recruit-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 14px;
  border-bottom: 1px dashed rgba(214, 168, 79, .25);
}
.recruit-list li:last-child { border-bottom: none; }
.recruit-list li::before {
  content: "○";
  position: absolute;
  left: 4px;
  color: var(--red);
  font-weight: 900;
}
.recruit-cta { text-align: center; margin-top: 52px; }
.recruit-note { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ============================================
   7. お知らせ
============================================ */
.sec-news { background: var(--kinari); color: var(--ink); padding-bottom: 60px; }
.news-list { border-top: 1px solid rgba(42, 27, 22, .25); }
.news-list li { border-bottom: 1px solid rgba(42, 27, 22, .25); }
.news-list a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 10px;
  transition: background .3s;
}
.news-list a:hover { background: rgba(255, 255, 255, .6); }
.news-list time {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  color: #6d6355;
  flex-shrink: 0;
}
.news-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--brown);
  border: 1px solid var(--brown);
  padding: 2px 12px;
}
.news-tag.red { color: var(--red); border-color: var(--red); }
.news-list p { font-size: 14.5px; font-weight: 500; }

/* ============================================
   8. 店舗情報
============================================ */
.sec-info { background: var(--kinari); color: var(--ink); padding-top: 60px; }
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-table { border-top: 1px solid rgba(42, 27, 22, .3); }
.info-table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(42, 27, 22, .3);
  font-size: 14.5px;
}
.info-table dt { font-weight: 700; letter-spacing: .12em; color: var(--brown); }
.text-link { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.map-placeholder {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, rgba(42, 27, 22, .06) 0 14px, transparent 14px 28px),
    #e6dfd2;
  border: 1px solid rgba(42, 27, 22, .3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: .18em;
  color: #857a69;
}
.map-note { font-size: 12px; color: #857a69; margin-top: 10px; }

/* ============================================
   9. FAQ
============================================ */
.sec-faq { background: var(--kinari); color: var(--ink); }
.faq-item {
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(42, 27, 22, .28);
  border-left: 4px solid var(--red);
  margin-bottom: 14px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 52px 18px 20px;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown);
  transition: transform .3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a {
  display: flex;
  gap: 14px;
  padding: 0 20px 20px;
}
.faq-a::before {
  content: "A";
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-a p { font-size: 14px; padding-top: 4px; }

/* ============================================
   10. 最後のCTA
============================================ */
.cta {
  position: relative;
  padding: 150px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 50% 100%, rgba(178, 31, 31, .3), transparent 70%),
    rgba(17, 17, 17, .72);
}
.cta-inner { position: relative; z-index: 1; }
.cta-copy {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 62px);
  letter-spacing: .12em;
  line-height: 1.5;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.cta-sub { margin: 18px 0 36px; font-size: 15px; color: rgba(248, 243, 234, .85); }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta .btn-frame { background: rgba(17, 17, 17, .45); }

/* ============================================
   フッター
============================================ */
.footer {
  background: #0c0a08;
  border-top: 1px solid rgba(214, 168, 79, .18);
  padding: 54px 0 40px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .14em;
  margin-bottom: 24px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-bottom: 30px;
}
.footer-nav a { font-size: 12.5px; color: var(--muted); transition: color .3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto 22px;
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  border: 1px solid rgba(214, 168, 79, .3);
  padding: 14px 20px;
}
.footer-copy { font-size: 11px; letter-spacing: .22em; color: #6b6152; }

/* ============================================
   アニメーション（表示時フェード）
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .steam span, .hero-steam span { animation: none; }
  .steam, .hero-steam { display: none; }
}

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

@media (max-width: 900px) {
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .shikomi-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .shikomi-main { grid-row: auto; }
  .shikomi-main img { min-height: 320px; }
  .shikomi-sub img { min-height: 220px; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .recruit-grid, .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sp { display: inline; }
  .section { padding: 72px 0; }
  .container { padding: 0 18px; }

  /* ヘッダー／モバイルメニュー */
  .menu-btn { display: flex; }
  .gnav {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    bottom: 0;
    z-index: 101;
    background: #111111;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 36px 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }
  body.nav-open .gnav { transform: translateX(0); }
  .gnav ul { display: flex; flex-direction: column; gap: 0; width: 100%; }
  .gnav ul li { border-bottom: 1px solid rgba(214, 168, 79, .18); }
  .gnav ul a { display: block; padding: 16px 4px; font-size: 16px; font-family: var(--serif); font-weight: 600; }
  .gnav-recruit { margin-top: 28px; width: 100%; padding: 16px; font-size: 16px; }
  body.nav-open .menu-btn span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  /* ファーストビュー：縦並び */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    order: 1;
    padding: 40px 22px 36px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .hero-copy {
    font-size: clamp(42px, 12vw, 58px);
    margin: 22px auto 22px;
    min-height: 300px;
  }
  .hero-sub { position: static; height: auto; writing-mode: horizontal-tb; margin: 0 auto 26px; text-align: center; line-height: 2; }
  .hero-en { text-align: center; letter-spacing: .3em; }
  .hero-left::before { right: 12px; }
  .hero-steam span { width: 100px; height: 260px; filter: blur(14px); }
  .hero-cta { max-width: 400px; width: 100%; margin: 0 auto; }
  .btn { width: 100%; min-width: 0; padding: 17px 20px; }
  .hero-right { order: 2; }
  .hero-right img { aspect-ratio: 4 / 3; height: auto; }
  .hero-card {
    position: static;
    margin: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    width: 100%;
    backdrop-filter: none;
    background: #17120e;
  }
  .steam { left: 30%; bottom: 40%; }

  .marquee-track span { font-size: 13px; }

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

  .kenbaiki { padding: 20px 14px 26px; border-width: 6px; }
  .ticket-grid { grid-template-columns: 1fr; gap: 14px; }
  .ticket-photo img { aspect-ratio: 16 / 9; }
  .kifuda-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .kifuda { font-size: 20px; min-height: 120px; padding: 16px 9px; }

  .scene-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .recruit-table div { grid-template-columns: 1fr; gap: 2px; padding: 12px 2px; }
  .recruit-table dt { font-size: 12.5px; }
  .btn-lg { min-width: 0; width: 100%; }

  .news-list a { flex-wrap: wrap; gap: 10px 14px; padding: 16px 6px; }
  .news-list p { width: 100%; }

  .info-table div { grid-template-columns: 108px 1fr; }

  .cta { padding: 96px 20px; }
  .cta-btns { flex-direction: column; align-items: stretch; max-width: 400px; margin: 0 auto; }
}
