:root{
  /* warm & pop izakaya theme */
  --bg:#0b0f14;
  --text:#fffaf2;
  --muted:rgba(255,250,242,.78);
  --line:rgba(255,255,255,.14);

  --accent:#ffb703;   /* lantern amber */
  --accent2:#fb7185;  /* pop salmon */
  --accent3:#34d399;  /* mint */

  --panel: rgba(255,255,255,.07);
  --shadow: 0 14px 46px rgba(0,0,0,.42);

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Noto Sans", sans-serif;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(255,183,3,.18), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(251,113,133,.14), transparent 62%),
    radial-gradient(900px 520px at 50% 110%, rgba(52,211,153,.10), transparent 58%),
    var(--bg);
  color:var(--text);
  line-height:1.65;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.srOnly{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  border:0;
}

.skipLink{
  position:absolute; left:-9999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
  z-index:9999;
}
.skipLink:focus{ left:10px; }

.siteHeader{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.62);
  border-bottom:1px solid rgba(255,255,255,.10);
  z-index:50;
}

.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; min-width:240px; }
.brandText{ min-width:0; }
.brandName{ font-weight:900; letter-spacing:.01em; }
.brandTag{ color:var(--muted); font-size:12.5px; margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width: 520px; }

.brandLogo{
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px;
}

.headerActions{ display:flex; align-items:center; gap:12px; }
.langSelect{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  border-radius:999px;
  padding:10px 12px;
  outline:none;
}
.langSelect option{ background:#111826; }

.headerBtns{ display:flex; gap:10px; flex-wrap:wrap; }

/* Buttons: soft & pop */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  user-select:none;
  text-decoration:none !important;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btnPrimary{
  color:#1a1208;
  background:
    radial-gradient(20px 20px at 30% 30%, rgba(255,255,255,.45), transparent 55%),
    linear-gradient(135deg, rgba(255,183,3,.98), rgba(251,113,133,.92));
  box-shadow:
    0 16px 38px rgba(0,0,0,.38),
    0 0 0 6px rgba(255,183,3,.10);
}
.btnPrimary:hover{ filter:brightness(1.05); transform: translateY(-1px); }

.btnGhost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color:var(--text);
}
.btnGhost:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }

/* Desktop nav */
.topNav{ border-top:1px solid rgba(255,255,255,.08); }
.navInner{
  display:flex; gap:12px;
  overflow:auto;
  padding:10px 0 12px;
}
.navLink{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,250,242,.80);
  white-space:nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.navLink:hover{
  text-decoration:none;
  background: rgba(255,183,3,.12);
  border-color: rgba(255,183,3,.30);
  color: var(--text);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger{
  display:none;
  width:46px;
  height:46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.hamburger:hover{ background: rgba(255,255,255,.10); }

.hamburgerLines{
  position:relative;
  width:18px;
  height:12px;
  display:block;
}
.hamburgerLines::before,
.hamburgerLines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  border-radius:999px;
  background: rgba(255,250,242,.92);
}
.hamburgerLines::before{ top:0; box-shadow: 0 6px 0 rgba(255,250,242,.92); }
.hamburgerLines::after{ bottom:0; }

/* Drawer */
.drawerOverlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 80;
}
.drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(360px, 86vw);
  background: rgba(11,15,20,.92);
  border-left: 1px solid rgba(255,255,255,.14);
  z-index: 90;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  transform: translateX(110%);
  transition: transform 220ms ease;
  display:flex;
  flex-direction:column;
}
.drawer.isOpen{ transform: translateX(0); }
.drawerHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.drawerTitle{
  font-weight: 900;
  letter-spacing:.06em;
  color: rgba(255,250,242,.88);
}
.drawerClose{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.drawerClose:hover{ background: rgba(255,255,255,.10); }
.drawerBody{
  padding: 12px 16px 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  overflow:auto;
}
.drawerLink{
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,250,242,.90);
  font-weight: 900;
  text-decoration:none !important;
}
.drawerLink:hover{
  background: rgba(255,183,3,.12);
  border-color: rgba(255,183,3,.30);
}
.drawerCtas{ display:grid; gap:10px; margin-top:10px; }
.drawerCtas .btn{ width:100%; }

body.isLocked{ overflow:hidden; }

/* Sections */
.section{ padding:68px 0; }
.sectionAlt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.sectionTitle{
  font-size: clamp(22px, 2.6vw, 34px);
  margin:0 0 10px;
}
.sectionLead{
  color:var(--muted);
  margin:0 0 22px;
  max-width: 860px;
}

/* Hero slider */
.heroSlider{
  position:relative;
  padding: 86px 0 74px;
  min-height: 74vh;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.heroSlides{ position:absolute; inset:0; z-index:0; }
.heroSlide{
  position:absolute; inset:-2px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1600ms ease, filter 1600ms ease;
  filter: saturate(1.08) contrast(1.06);
}
.heroSlide.isActive{
  opacity:1;
  transform: scale(1.0);
  filter: saturate(1.10) contrast(1.08);
}
.heroOverlay{
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(0,0,0,.20), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(0,0,0,.35), transparent 62%),
    linear-gradient(180deg, rgba(11,15,20,.40), rgba(11,15,20,.78));
}
.heroFront{ position:relative; z-index:2; }
.heroCopyWide{ max-width: 760px; }

.pill{
  display:inline-flex;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,183,3,.35);
  background: rgba(255,183,3,.12);
  color: rgba(255,250,242,.88);
  font-weight:900;
  font-size:12.5px;
}

.heroTitle{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.12;
  text-shadow: 0 18px 42px rgba(0,0,0,.58);
}
.heroLead{
  margin:0 0 18px;
  color: rgba(255,250,242,.82);
  font-size: 16px;
  max-width: 620px;
  text-shadow: 0 14px 30px rgba(0,0,0,.45);
}
.heroCTA{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }

.heroInfoCard{
  background: rgba(11,15,20,.55);
  border:1px solid rgba(255,255,255,.16);
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: var(--shadow);
}
.infoRow{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.infoRow:last-child{ border-bottom:none; }
.infoK{ color:var(--muted); font-weight:900; }
.infoV{ color:var(--text); }

.heroControls{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
.heroBtn{
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(11,15,20,.45);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
  backdrop-filter: blur(10px);
}
.heroBtn:hover{ background: rgba(11,15,20,.62); }
.heroBtnSmall{ width:auto; padding:0 12px; }

.heroDots{
  display:flex;
  gap:8px;
  align-items:center;
  padding: 6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(11,15,20,.40);
  backdrop-filter: blur(10px);
}
.heroDot{
  width:10px; height:10px;
  border-radius:999px;
  border:0;
  background: rgba(255,255,255,.35);
  cursor:pointer;
}
.heroDot.isActive{ background: var(--accent); }

.heroHint{
  margin-top:10px;
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  max-width: 720px;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
}

/* Cards & grids */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); }

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.big{ font-size:18px; margin:0 0 12px; }

.checkList{ margin:0; padding-left: 18px; }
.checkList li{ margin:8px 0; color: var(--text); }

.callout{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.callout.subtle{ background: rgba(255,255,255,.05); }
.muted{ color: var(--muted); }

.steps{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.step{
  display:flex; gap:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: var(--shadow);
}
.stepNo{
  width:36px; height:36px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,183,3,.16);
  border:1px solid rgba(255,183,3,.30);
  font-weight:900;
}
.stepT{ font-weight:900; margin-bottom:2px; }
.stepP{ color:var(--muted); font-size:14px; }

.noticeBar{
  display:flex; gap:10px; align-items:center;
  background: rgba(255,183,3,.08);
  border:1px solid rgba(255,183,3,.22);
  border-radius: var(--radius2);
  padding:12px 14px;
  margin: 12px 0 18px;
  color: var(--muted);
}
.noticeDot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(251,113,133,.16);
}

/* Accordion & menu cards */
.accordion{ display:grid; gap:10px; }
.accItem{
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.accBtn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border:0;
  background:transparent;
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.accBtn:hover{ background: rgba(255,255,255,.04); }
.accChevron{
  width:34px; height:34px;
  border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(255,183,3,.35);
  background: rgba(255,183,3,.12);
}
.accPanel{ padding: 0 16px 16px; display:none; }
.accPanel.open{ display:block; }

.menuGrid{
  display:grid;
  grid-template-columns: 1fr; /* mobile-first */
  gap:10px;
  margin-top:8px;
}
.menuItem{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(18px 18px at 25% 15%, rgba(255,255,255,.10), transparent 55%),
    rgba(0,0,0,.18);
  display:grid;
  grid-template-columns: 92px 1fr;
  gap:12px;
  align-items:stretch;
  overflow:hidden;
}
.menuThumb{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(36px 36px at 30% 30%, rgba(255,183,3,.22), transparent 60%),
    radial-gradient(44px 44px at 70% 70%, rgba(251,113,133,.18), transparent 60%),
    rgba(255,255,255,.05);
  position:relative;
  min-height: 72px;
}
.menuThumb::after{
  content:"PHOTO";
  position:absolute;
  left:10px; bottom:8px;
  font-size:10px;
  letter-spacing:.14em;
  color: rgba(255,250,242,.78);
  background: rgba(11,15,20,.55);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 4px 8px;
}
.menuThumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.menuBody{ padding: 2px 0; }
.menuItemTop{ display:flex; justify-content:space-between; gap:10px; }
.menuName{ font-weight:900; }
.menuPrice{ color: rgba(255,183,3,.98); font-weight:900; white-space:nowrap; }
.menuDesc{ margin-top:6px; color:var(--muted); font-size:13.5px; }

.menuFoot{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.miniCard{
  padding:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.miniT{ font-weight:900; margin-bottom:6px; }
.miniP{ color:var(--muted); font-size:14px; }

.guideGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

/* Photo placeholders for sections */
.photoGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.photoRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-bottom: 14px;
}
.accessPhotos{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.phCard{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.phBlock{
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(60px 60px at 25% 25%, rgba(255,183,3,.18), transparent 60%),
    radial-gradient(80px 80px at 70% 70%, rgba(251,113,133,.14), transparent 60%),
    rgba(0,0,0,.18);
  position:relative;
}
.phText{
  position:absolute;
  left:12px; bottom:10px;
  font-size:12px;
  font-weight:900;
  color: rgba(255,250,242,.86);
  background: rgba(11,15,20,.55);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px 10px;
}

/* Tables */
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
}
.table th, .table td{
  padding:10px 10px;
  border-bottom:1px solid rgba(255,255,255,.10);
  text-align:left;
  vertical-align:top;
}
.table th{
  background: rgba(255,255,255,.06);
  font-weight:900;
}
.table tr:last-child td{ border-bottom:none; }

.badgeRow{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.badge{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight:900;
  font-size:12px;
}

.dl{ margin:0; }
.dlRow{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dlRow:last-child{ border-bottom:none; }
.dl dt{ color:var(--muted); font-weight:900; }
.dl dd{ margin:0; }

.miniActions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

.routeBox{
  margin-top:14px;
  border-radius: var(--radius2);
  padding:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.routeBox h4{ margin:0 0 8px; }
.route{ margin:0; padding-left: 18px; color: var(--muted); }
.route li{ margin:6px 0; }

.mapCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.mapCard iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}
.mapHint{
  padding:10px 12px;
  color: var(--muted);
  border-top:1px solid rgba(255,255,255,.10);
}

.dotList{ margin:0; padding-left: 18px; }
.dotList li{ margin:7px 0; color: var(--muted); }

.siteFooter{
  border-top:1px solid rgba(255,255,255,.10);
  padding:26px 0;
  background: rgba(0,0,0,.12);
}
.footGrid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.footBrand{ font-weight:900; margin-bottom:6px; }
.footMeta{ color: var(--muted); }
.footLinks{ display:flex; gap:14px; flex-wrap:wrap; margin-top:10px; color: var(--muted); }
.footSmall{ min-width: 280px; text-align:right; }
.copy{ margin-top:10px; color: rgba(255,255,255,.45); font-size:12px; }

/* Responsive */
@media (max-width: 980px){
  .hamburger{ display:inline-flex; }
  .topNav{ display:none; }

  .container{ width: calc(100% - 32px); }
  .brand{ min-width: 0; }
  .brandTag{ max-width: 260px; }
  .heroSlider{ min-height: 78vh; padding: 72px 0 56px; }
  .heroTitle{ font-size: clamp(28px, 8vw, 42px); }
  .heroLead{ font-size: 15.5px; }
  .infoRow{ grid-template-columns: 92px 1fr; }

  .cards3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .menuFoot{ grid-template-columns: 1fr; }
  .guideGrid{ grid-template-columns: 1fr; }
  .photoRow{ grid-template-columns: 1fr; }
  .photoGrid{ grid-template-columns: 1fr; }
  .accessPhotos{ grid-template-columns: 1fr; }

  .footSmall{ text-align:left; }
}
@media (min-width: 981px){
  .menuGrid{ grid-template-columns: 1fr 1fr; }
  .menuItem{ grid-template-columns: 104px 1fr; }
}
@media (max-width: 520px){
  .headerInner{ padding: 12px 0; }
  .btn{ width: 100%; }
  .headerBtns .btn{ width:auto; } /* header exception */
  .heroControls{ gap:10px; }
}