:root{
  --bg:#000;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --accent:#FFD800;

  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.09);
  --border: rgba(255,255,255,.14);

  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 14px;

  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(1100px 600px at 14% -10%, rgba(255,216,0,.10), transparent 60%),
    radial-gradient(900px 520px at 100% 12%, rgba(255,216,0,.06), transparent 55%),
    linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.28)),
    url("bg-dark-texture.jpg") center center / cover fixed,
    var(--bg);
  color:var(--text);
  font-family:'Noto Sans JP', system-ui, -apple-system, Segoe UI, sans-serif;
  overflow-x:hidden;
}

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

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

header{
  position:fixed;
  inset:0 0 auto 0;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  z-index:9999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition: background .25s ease, height .25s ease, border-color .25s ease;
}
header.scrolled{
  height:72px;
  background: rgba(0,0,0,.78);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:74px;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55));
}
.brand .name{
  display:none;
  font-weight:900;
  letter-spacing:.06em;
}

.menuBtn{
  width:44px;height:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.menuBtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16);}
.menuBtn:active{transform: translateY(0);}
.bars{width:20px}
.bars div{
  height:2px; margin:5px 0;
  background: var(--accent);
  border-radius:999px;
  transition: transform .25s ease, opacity .2s ease;
}
body.menu-open .bars div:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.menu-open .bars div:nth-child(2){ opacity:0; }
body.menu-open .bars div:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.62);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:10000;
}
.overlay.show{opacity:1; pointer-events:auto;}

.drawer{
  position:fixed;
  top:0; right:-110%;
  width:min(440px, 88vw);
  height:100%;
  padding:96px 22px 28px;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  transition: right .35s cubic-bezier(.2,.9,.2,1);
  z-index:10002;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.drawer.open{right:0}
.drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none;
  font-size:18px;
  padding:14px 14px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.drawer a:hover{transform: translateX(-2px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14);}
.drawer a span{color: var(--accent); font-weight:900;}
.drawer .hint{
  margin-top:auto;
  color: var(--muted);
  font-size: 12px;
  line-height:1.7;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  width:100%;
  height: clamp(440px, 62vh, 760px);
  margin-top:78px;
  overflow:hidden;
}
.hero img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: contrast(1.04) saturate(1.05);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55) 38%, rgba(0,0,0,.88)),
    radial-gradient(900px 420px at 12% 18%, rgba(255,216,0,.16), transparent 62%);
  pointer-events:none;
}
.hero-inner{
  position:absolute;
  inset:auto 0 0 0;
  padding: 0 18px 26px;
}
.hero-wrap{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.12em;
  font-size:12px;
  color: rgba(255,255,255,.88);
}
.kicker::before{content:""; width:34px; height:1px; background: rgba(255,216,0,.9);}
.hero h1{
  margin:10px 0 8px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:.04em;
  text-shadow: 0 18px 44px rgba(0,0,0,.65);
}
.hero p{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height:1.7;
  max-width: 46ch;
}

.cta{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18);}
.btn strong{color: var(--accent); font-weight:900;}
.btn.accent{
  background: rgba(255,216,0,.12);
  border-color: rgba(255,216,0,.30);
}
.btn.accent:hover{background: rgba(255,216,0,.16); border-color: rgba(255,216,0,.42);}

/* ===== Sections ===== */
section{padding: 84px 0;}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 22px;
}
h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight:900;
  letter-spacing:.02em;
  display:flex;
  align-items:center;
  gap:12px;
}
h2::before{
  content:"";
  width:10px;
  height:28px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(255,216,0,.22);
}
.sub{
  margin:0;
  color: var(--muted);
  font-size: 13px;
}

.panel{
  background: linear-gradient(180deg, var(--glass2), var(--glass));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

/* ===== News ===== */
.newsBox{padding: 18px;}
.newsItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}
.newsItem + .newsItem{margin-top:10px;}
.newsDate{
  color: var(--accent);
  font-weight: 900;
  min-width: 92px;
}
.badge{
  margin-left:8px;
  background: rgba(255,0,0,.92);
  color:#fff;
  font-size:11px;
  padding:2px 8px;
  border-radius:999px;
  position:relative;
  top:-1px;
}

/* ===== Embeds ===== */
.embed{overflow:hidden; border-radius: var(--radius);}
.embed iframe{width:100%; border:0; display:block;}
.embed.calendar iframe{height:520px;}
.embed.map iframe{height:420px;}

/* ===== Menu grid ===== */
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.card{
  overflow:hidden;
  border-radius: var(--radius);
}
.thumb{
  position:relative;
  aspect-ratio: 4 / 5;
  overflow:hidden;
}
.thumb img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform .35s ease;
  filter: contrast(1.03);
}
.card:hover .thumb img{transform: scale(1.06);}
.cardBody{
  padding: 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.cardBody h3{margin:0; font-size:18px; font-weight:900;}
.price{margin:0; font-size:20px; font-weight:900; color: var(--accent);}

.note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.7;
}

/* ===== Story / Image sections ===== */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:stretch;
}
.box{padding:18px;}
.lines{margin:0; padding:0; list-style:none;}
.lines li{
  display:flex; gap:12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lines li:last-child{border-bottom:none}
.key{min-width:84px; color: var(--muted); font-weight:700;}
.val{color: var(--text); line-height:1.7;}

.banner{
  overflow:hidden;
  border-radius: var(--radius);
}
.banner img{
  width:100%;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
  filter: contrast(1.02) saturate(1.04);
}
.banner:hover img{transform: scale(1.03); filter: contrast(1.05) saturate(1.06);}

/* ===== Footer ===== */
footer{
  padding: 56px 18px;
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
}
.footerInner{
  max-width: var(--max);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 16px;
}
.sns{
  display:flex; gap:10px;
  flex-wrap:wrap; justify-content:center;
}
.sns a{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.sns a:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16);}
.sns img{width:28px; height:28px;}
.handle{
  color: var(--accent);
  font-weight: 900;
  letter-spacing:.06em;
  font-size: 12px;
}

/* ===== Reveal ===== */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 880px){
  .hero-wrap{flex-direction:column; align-items:flex-start;}
  .cta{justify-content:flex-start;}
  .grid2{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr;}
  .embed.calendar iframe{height:560px;}
}

/* ===== Hero layered ===== */
.hero-layer{
  position:relative;
  overflow:hidden;
}
.hero-layer .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
  filter: contrast(1.04) saturate(1.05);
  z-index:0;
}
.hero-layer::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55) 38%, rgba(0,0,0,.88)),
    radial-gradient(900px 420px at 12% 18%, rgba(255,216,0,.16), transparent 62%);
  z-index:1;
  pointer-events:none;
}
.hero-layer .hero-inner{
  position:relative;
  z-index:3;
  padding-right: min(560px, 42vw);
}
.hero-layer .hero-left{
  max-width: 560px;
}
.hero-layer .hero-cta{
  justify-content:flex-start;
  margin-top: 16px;
}
.hero-layer .hero-ramen{
  position:absolute;
  right: clamp(-40px, -2vw, 0px);
  top: 52%;
  width: min(720px, 48vw);
  height:auto;
  z-index:2;
  opacity:0;
  transform: translateY(calc(-50% + 18px)) scale(.98);
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.65));
  transition: opacity .9s ease, transform .9s ease;
  pointer-events:none;
}
.hero-layer.is-loaded .hero-ramen{
  opacity:1;
  transform: translateY(-50%) scale(1);
}

/* ===== PC: お知らせと左端を揃える ===== */
@media (min-width: 900px){
  .hero-layer .hero-wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-layer .hero-left{
    margin-left: 0;
    margin-top: 0;
    max-width: 720px;
  }
}

/* ===== Site Form ===== */
.siteForm .formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.siteForm .field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.siteForm .field.full{ grid-column: 1 / -1; }
.siteForm .label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing:.04em;
}
.siteForm input,
.siteForm select,
.siteForm textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
.siteForm input::placeholder,
.siteForm textarea::placeholder{ color: rgba(255,255,255,.45); }
.siteForm textarea{ resize: vertical; min-height: 130px; }
.siteForm input:focus,
.siteForm select:focus,
.siteForm textarea:focus{
  border-color: rgba(255,216,0,.45);
  box-shadow: 0 0 0 3px rgba(255,216,0,.14);
}
.siteForm option{ color:#000; }
.formActions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 14px;
}

@media (min-width: 1024px){
  .hero-layer .hero-left{
    margin-left: 0;
    margin-top: 0;
    max-width: 720px;
  }

  .hero-layer .hero-left h1{
    font-size: clamp(56px, 5.2vw, 92px);
    line-height: 1.05;
    letter-spacing: .03em;
  }

  .hero-layer .hero-left p{
    font-size: 18px;
    line-height: 1.8;
  }

  .hero-layer .hero-left .kicker{
    font-size: 14px;
    letter-spacing: .12em;
  }

  .hero-layer .hero-cta .btn{
    font-size: 14px;
  }
}

.hero-home .hero-ramen{
  opacity:.72;
  width:min(620px, 50vw);
}
.hero-home.is-loaded .hero-ramen{
  opacity:.9;
}
.infoGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.infoCard,.promoCard{
  padding:20px;
}
.infoCard h3,.promoCard h3{
  margin:0 0 12px;
  font-size:20px;
}
.bulletLines{margin:0; padding-left:1.2em; color:rgba(255,255,255,.86); line-height:1.9;}
.promoLead{font-size:28px; font-weight:900; margin:0 0 10px;}
.promoButtons{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
.singleColumn{grid-template-columns:1fr;}
.compact{padding:18px;}
.xEmbedPanel{padding:0; overflow:hidden; min-height:560px;}
.xEmbedPanel iframe{display:block; width:100%;}
.split-stack-mobile{align-items:start;}

@media (max-width: 880px){
  .infoGrid{grid-template-columns:1fr;}
}

@media (max-width: 760px){
  .siteForm .formGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  body{background-attachment:scroll, scroll, scroll, scroll, scroll;}

  .hero-layer .hero-inner{
    padding-right: 0;
  }

  .hero-layer .hero-ramen{
    width: min(480px, 86vw);
    right: -18px;
    top: auto;
    bottom: -10px;
    transform: translateY(18px) scale(.98);
  }

  .hero-layer.is-loaded .hero-ramen{
    transform: translateY(0) scale(1);
  }

  .hero-home .hero-ramen{
    width:min(440px, 88vw);
    right:-12px;
    bottom:-8px;
    opacity:.58;
  }

  .hero-home.is-loaded .hero-ramen{
    opacity:.74;
  }

  .hero-home h1{max-width:8.2em;}
  .hero-home p{max-width:18em;}
  .drawer{padding-top:88px;}
}


/* ===== Calendar fitting / visitor ===== */
@media (min-width: 921px){
  #calendar .container{
    max-width: 1180px;
  }
}

/* ===== Sub pages: index visual / usability alignment ===== */
.subpage{
  --bg:#050505;
  --warm:#ff6a32;
  min-height:100%;
  background:
    radial-gradient(900px 520px at 96% 4%,rgba(136,50,8,.16),transparent 64%),
    radial-gradient(760px 420px at 5% 18%,rgba(255,216,0,.08),transparent 66%),
    linear-gradient(180deg,#030303 0%,#080808 48%,#050505 100%);
}

.subpage .container{max-width:1280px;padding:0 24px;}
.subpage a:focus-visible,
.subpage button:focus-visible,
.subpage input:focus-visible,
.subpage select:focus-visible,
.subpage textarea:focus-visible{
  outline:3px solid rgba(255,216,0,.9);
  outline-offset:3px;
}
.subpage section[id]{scroll-margin-top:88px;}

.subpage header{
  height:82px;
  padding:0 clamp(20px,3vw,44px);
  background:linear-gradient(90deg,rgba(8,8,6,.94),rgba(0,0,0,.86));
  border-bottom:1px solid rgba(255,255,255,.09);
  box-shadow:0 10px 34px rgba(0,0,0,.26);
}
.subpage header.scrolled{height:72px;background:rgba(3,3,3,.94);}
.subpage .brand a{display:flex;align-items:center;gap:12px;text-decoration:none;}
.subpage .brand img{width:70px;height:70px;object-fit:contain;}
.subpage .brandText{display:flex;flex-direction:column;line-height:1.02;}
.subpage .brandText strong{font-size:15px;font-weight:900;letter-spacing:.04em;color:#fff;white-space:nowrap;}
.subpage .brandText small{margin-top:4px;font-size:9px;font-weight:900;letter-spacing:.22em;color:rgba(255,255,255,.56);}
.subpage .headerActions{display:flex;align-items:center;gap:14px;}
.subpage .desktopNav{display:none;align-items:center;gap:6px;}
.subpage .desktopNav a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:12px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:12px;
  font-weight:900;
  transition:color .2s ease,background .2s ease,transform .2s ease;
}
.subpage .desktopNav a:hover{color:#fff;background:rgba(255,255,255,.06);transform:translateY(-1px);}
.subpage .desktopNav .navAccent{color:#111;background:var(--accent);padding-inline:15px;}
.subpage .desktopNav .navAccent:hover{color:#111;background:#ffe43d;}
.subpage .menuBtn{width:50px;height:50px;border-radius:16px;background:rgba(255,255,255,.045);}
.subpage .bars{display:block;width:24px;}
.subpage .bars span{display:block;height:3px;margin:5px 0;border-radius:999px;background:var(--accent);transition:transform .25s ease,opacity .2s ease;}
.subpage.menu-open .bars span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.subpage.menu-open .bars span:nth-child(2){opacity:0;}
.subpage.menu-open .bars span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

.subpage .drawer{padding-top:max(94px,calc(env(safe-area-inset-top) + 78px));gap:10px;}
.subpage .drawerTop{display:flex;align-items:center;justify-content:space-between;margin-bottom:2px;}
.subpage .drawerTitle{font-size:13px;font-weight:900;letter-spacing:.12em;color:rgba(255,255,255,.64);}
.subpage .drawerClose{
  width:40px;height:40px;border-radius:12px;border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);color:#fff;cursor:pointer;font-size:22px;line-height:1;
}
.subpage .drawer a{font-size:15px;padding:12px 14px;}
.subpage .drawer a[aria-current="page"]{border-color:rgba(255,216,0,.34);background:rgba(255,216,0,.10);}

.subpage .hero{
  min-height:460px;
  height:clamp(460px,58vh,590px);
  margin-top:82px;
  padding:0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.subpage .hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:112px;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(to bottom,transparent,#050505 96%);
}
.subpage .hero-layer .hero-bg{filter:contrast(1.06) saturate(1.04) brightness(.82);}
.subpage .hero-layer::before{
  background:
    linear-gradient(90deg,rgba(0,0,0,.84) 0%,rgba(0,0,0,.55) 44%,rgba(0,0,0,.10) 78%),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.20) 55%,rgba(0,0,0,.72)),
    radial-gradient(880px 500px at 72% 48%,rgba(145,54,7,.32),transparent 66%),
    radial-gradient(720px 420px at 12% 24%,rgba(255,216,0,.18),transparent 66%);
}
.subpage .hero-layer .hero-inner{
  position:absolute;
  inset:0;
  z-index:4;
  display:flex;
  align-items:center;
  padding:0 28px;
}
.subpage .hero-layer .hero-wrap{
  width:100%;
  max-width:1280px;
  height:100%;
  margin:0 auto;
  padding:0;
  align-items:center;
}
.subpage .hero-layer .hero-left{
  position:relative;
  width:min(650px,51vw);
  max-width:650px;
  margin:0;
}
.subpage .hero-layer .hero-left::before{
  content:"";
  position:absolute;
  left:-18px;
  top:-24px;
  width:72px;
  height:5px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent),var(--warm));
  box-shadow:0 0 24px rgba(255,216,0,.34);
}
.subpage .kicker{font-size:13px;letter-spacing:.12em;}
.subpage .hero h1{margin:12px 0 10px;font-size:clamp(50px,5vw,80px);line-height:1.05;letter-spacing:.02em;}
.subpage .hero p{max-width:38em;font-size:clamp(14px,1.2vw,18px);font-weight:700;line-height:1.65;}
.subpage .hero-layer .hero-ramen{
  right:clamp(-90px,-3vw,-28px);
  top:53%;
  width:min(900px,53vw);
  max-width:none;
  aspect-ratio:1.25 / 1;
  object-fit:contain;
  opacity:0;
  transform:translateY(calc(-50% + 14px)) scale(.98);
  filter:drop-shadow(0 34px 72px rgba(0,0,0,.58));
}
.subpage .hero-layer.is-loaded .hero-ramen{opacity:.94;transform:translateY(-50%) scale(1);}
.subpage .hero-cta{display:flex;gap:9px;margin-top:18px;}
.subpage .hero-cta .btn{min-height:46px;justify-content:center;padding:10px 15px;font-size:12px;}
.story-page .hero h1{font-size:clamp(39px,4vw,64px);max-width:11em;line-height:1.12;}

.subpage section{position:relative;padding:clamp(56px,6vw,76px) 0;}
.subpage section.hero{padding:0;}
.subpage section:not(.hero):nth-of-type(odd)::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.018),transparent);
}
.subpage .sectionHead{align-items:center;margin-bottom:24px;}
.subpage .sectionHead .sub{padding-left:22px;}
.subpage h2{font-size:clamp(25px,2.5vw,36px);}
.subpage h2::before{height:34px;}
.subpage .panel{
  background:linear-gradient(155deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border-color:rgba(255,255,255,.13);
  backdrop-filter:blur(10px);
}
.subpage .box{padding:clamp(20px,2.5vw,30px);}
.subpage .btn{min-height:46px;justify-content:center;}
.subpage .card,.subpage .promoCard{transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;}
.subpage .card:hover,.subpage .promoCard:hover{transform:translateY(-4px);border-color:rgba(255,216,0,.28);box-shadow:0 22px 60px rgba(0,0,0,.52);}
.subpage .infoGrid{gap:14px;}
.subpage .promoCard{position:relative;display:flex;flex-direction:column;min-height:230px;padding:24px;overflow:hidden;}
.subpage .promoCard::after{content:"";position:absolute;right:-36px;bottom:-52px;width:150px;height:150px;border-radius:50%;background:rgba(255,216,0,.06);}
.subpage .promoCard .btn{position:relative;z-index:1;margin-top:auto;align-self:flex-start;}
.subpage .promoCard p{margin:0 0 24px;color:rgba(255,255,255,.72);line-height:1.75;}
.subpage .promoMark{display:grid;place-items:center;width:46px;height:46px;margin-bottom:18px;border-radius:14px;background:rgba(255,216,0,.12);color:var(--accent);font-size:14px;font-weight:900;letter-spacing:.04em;}
.subpage .promoHeroCard{position:relative;overflow:hidden;padding:clamp(24px,3vw,38px);}
.subpage .promoHeroCard::after{content:"PLAY";position:absolute;right:22px;top:50%;transform:translateY(-50%);color:rgba(255,255,255,.04);font-size:clamp(70px,10vw,150px);font-weight:900;letter-spacing:-.06em;pointer-events:none;}
.subpage .promoLead{position:relative;z-index:1;font-size:clamp(25px,3vw,42px);}
.subpage .promoButtons{position:relative;z-index:1;}

.story-page .split{grid-template-columns:minmax(300px,.86fr) minmax(0,1.14fr);align-items:start;}
.story-page .storyImage{position:sticky;top:100px;margin:0;}
.story-page .storyImage img{width:100%;height:auto;min-height:430px;object-fit:cover;}
.story-page .storyCopy{padding:clamp(22px,3vw,34px);}
.story-page .storyCopy p{margin:0 0 18px;color:rgba(255,255,255,.84);font-size:14px;line-height:2;}
.story-page .storyCopy p:first-child{font-size:17px;font-weight:800;color:#fff;}
.story-page .storyCopy p:last-of-type{margin-bottom:0;}
.story-page .storyActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px;padding-top:20px;border-top:1px solid rgba(255,255,255,.09);}

.seimen-page .introText{margin:0;color:rgba(255,255,255,.84);font-size:14px;line-height:2;}
.seimen-page .introActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px;}
.seimen-page .grid2{gap:16px;}
.seimen-page .thumb{aspect-ratio:16 / 10;}
.seimen-page .cardBody{padding:18px 20px;}
.seimen-page .siteForm .formGrid{gap:16px;}
.seimen-page .siteForm .label{font-size:12px;font-weight:900;color:rgba(255,255,255,.76);}
.seimen-page .siteForm input,
.seimen-page .siteForm select,
.seimen-page .siteForm textarea{min-height:48px;background:rgba(0,0,0,.26);font:inherit;}
.seimen-page .siteForm textarea{min-height:140px;}
.seimen-page .formActions{margin-top:20px;padding-top:18px;border-top:1px solid rgba(255,255,255,.09);}
.seimen-page .formActions .btn{border:0;cursor:pointer;font:inherit;}
.seimen-page .formActions .btn:disabled{cursor:wait;opacity:.65;}

.subpage footer{padding-bottom:max(64px,calc(38px + env(safe-area-inset-bottom)));}
.subpage .footerNav{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;}
.subpage .footerNav a{padding:5px;color:rgba(255,255,255,.62);font-size:11px;font-weight:800;text-decoration:none;}
.subpage .footerNav a:hover,.subpage .footerNav a[aria-current="page"]{color:var(--accent);}
.subpage .backToTop{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:8000;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.16);
  color:#111;
  background:var(--accent);
  box-shadow:0 14px 36px rgba(0,0,0,.44);
  font-size:20px;
  font-weight:900;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.2s ease;
}
.subpage .backToTop.show{opacity:1;visibility:visible;transform:translateY(0);}
.subpage .mobileDock{display:none;}
.subpage img.isMissing,.subpage .hero-layer img.isMissing{opacity:0!important;}
.subpage .imageFallback{min-height:220px;background:radial-gradient(circle at 50% 28%,rgba(255,216,0,.17),transparent 46%),linear-gradient(145deg,#1d1d1d,#070707);}

@media (min-width:980px){
  .subpage .desktopNav{display:flex;}
  .subpage .menuBtn{display:none;}
}

@media (max-width:760px){
  body.subpage{padding-bottom:calc(68px + env(safe-area-inset-bottom));}
  .subpage header,.subpage header.scrolled{height:68px;padding:0 14px;}
  .subpage .brand img,.subpage header.scrolled .brand img{width:55px;height:55px;}
  .subpage .brandText strong{font-size:12px;}
  .subpage .brandText small{font-size:8px;}
  .subpage .menuBtn{width:46px;height:46px;border-radius:15px;}
  .subpage .drawer{padding-top:max(82px,calc(env(safe-area-inset-top) + 72px));}
  .subpage .hero{
    margin-top:68px;
    min-height:390px;
    height:clamp(390px,46svh,420px);
    max-height:420px;
  }
  .subpage .hero-layer::before{
    background:
      linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.40) 60%,rgba(0,0,0,.12)),
      linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.34) 56%,rgba(0,0,0,.74) 96%),
      radial-gradient(520px 360px at 78% 58%,rgba(142,54,7,.30),transparent 68%),
      radial-gradient(620px 360px at 8% 20%,rgba(255,216,0,.17),transparent 62%);
  }
  .subpage .hero-layer .hero-inner{align-items:flex-start;padding:44px 18px 18px;}
  .subpage .hero-layer .hero-wrap{width:100%;height:auto;padding:0;align-items:flex-start;}
  .subpage .hero-layer .hero-left{width:100%;max-width:none;margin:0;}
  .subpage .hero-layer .hero-left::before{left:0;top:-18px;width:58px;height:4px;}
  .subpage .kicker{font-size:10px;}
  .subpage .hero h1{max-width:none;font-size:clamp(34px,10.2vw,42px);letter-spacing:0;line-height:1.08;white-space:nowrap;}
  .subpage .hero p{max-width:29em;font-size:11px;line-height:1.58;}
  .subpage .hero-cta{display:grid;grid-template-columns:1fr 1fr;width:min(100%,340px);margin-top:12px;gap:8px;}
  .subpage .hero-cta .btn{min-height:43px;padding:9px 8px;font-size:10px;}
  .subpage .hero-layer .hero-ramen{
    top:58px;
    right:-116px;
    bottom:auto;
    width:min(390px,103vw);
    max-width:none;
    z-index:2;
    opacity:0;
    transform:translateX(12px) scale(.97);
    filter:brightness(.76) saturate(1.04) drop-shadow(0 24px 48px rgba(0,0,0,.62));
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.68) 22%,#000 44%);
    mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.68) 22%,#000 44%);
  }
  .subpage .hero-layer.is-loaded .hero-ramen{opacity:.84;transform:translateX(0) scale(1);}
  .story-page .hero{min-height:420px;height:clamp(420px,50svh,450px);max-height:450px;}
  .story-page .hero h1{max-width:9.8em;font-size:clamp(30px,8.8vw,37px);line-height:1.14;white-space:normal;}
  .seimen-page .hero h1{font-size:clamp(32px,9.4vw,39px);}
  .seimen-page .hero-cta .btn:first-child{grid-column:1 / -1;}
  .subpage .container{padding:0 18px;}
  .subpage section{padding:50px 0;}
  .subpage section.hero{padding:0;}
  .subpage .sectionHead{align-items:flex-start;flex-direction:column;gap:5px;margin-bottom:20px;}
  .subpage .sectionHead .sub{padding-left:22px;}
  .subpage h2{font-size:24px;}
  .subpage h2::before{height:30px;}
  .subpage .box{padding:18px;}
  .subpage .promoHeroCard::after{right:8px;font-size:74px;}
  .subpage .promoCard{min-height:0;padding:20px;}
  .subpage .promoCard .btn{align-self:stretch;}
  .story-page .split{grid-template-columns:1fr;}
  .story-page .storyImage{position:relative;top:auto;}
  .story-page .storyImage img{min-height:0;max-height:420px;object-fit:cover;}
  .story-page .storyCopy p{font-size:13px;line-height:1.9;}
  .story-page .storyCopy p:first-child{font-size:15px;}
  .seimen-page .thumb{aspect-ratio:16 / 10;}
  .seimen-page .formActions{align-items:stretch;flex-direction:column;}
  .seimen-page .formActions .btn{width:100%;}
  .subpage .backToTop{right:14px;bottom:calc(82px + env(safe-area-inset-bottom));width:42px;height:42px;}
  .subpage .mobileDock{
    position:fixed;
    left:10px;
    right:10px;
    bottom:max(8px,env(safe-area-inset-bottom));
    z-index:9000;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    min-height:58px;
    padding:5px;
    border-radius:18px;
    background:rgba(8,8,8,.9);
    border:1px solid rgba(255,255,255,.13);
    box-shadow:0 18px 48px rgba(0,0,0,.58);
    backdrop-filter:blur(16px);
  }
  .subpage .mobileDock a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;border-radius:13px;color:rgba(255,255,255,.76);text-decoration:none;font-size:9px;font-weight:900;}
  .subpage .mobileDock a:active,.subpage .mobileDock a[aria-current="page"]{background:rgba(255,216,0,.12);color:var(--accent);}
  .subpage .mobileDock span{font-size:17px;line-height:1;}
}

@media (max-width:390px){
  .subpage .hero h1{font-size:clamp(31px,9.7vw,38px);}
  .subpage .hero-layer .hero-ramen{top:62px;right:-122px;width:390px;}
  .story-page .hero h1{font-size:clamp(29px,8.5vw,35px);}
  .subpage .hero-cta .btn{font-size:9px;}
}

@media (prefers-reduced-motion:reduce){
  .subpage .hero-ramen,.subpage .card,.subpage .promoCard{transition:none!important;}
}
