:root {
  --bg: #0d0804;
  --bg-2: #160e06;
  --panel: #1c1108;
  --line: rgba(196, 160, 66, 0.2);
  --text: #ede0c4;
  --muted: rgba(237, 224, 196, 0.72);
  --accent: #c4a042;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --content-width: min(92vw, 1320px);
  --font-display: "Zen Kaku Gothic New", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  position: relative;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  font-family: var(--font-body);
  background: var(--bg);
}

/* ── Film grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='256' height='256'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='256' height='256' filter='url(%23g)'/></svg>");
  background-size: 180px 180px;
}

/* ── Cinematic vignette ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 85% at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.62) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  filter: sepia(0.18) contrast(1.04) brightness(0.97);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #f4f1eb;
  animation: loader-fade 11s ease forwards;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(74vw, 560px);
  height: auto;
  filter: contrast(1.05);
  opacity: 0;
  animation: logoSoft 3.2s cubic-bezier(0.16, 1, 0.3, 1) 5.8s forwards;
}

@keyframes logoSoft {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(1.06); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.loader-concept {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #2a1c10;
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 1.8em;
  animation: conceptFadeOut 0.6s ease 5.4s forwards;
}

@keyframes conceptFadeOut {
  to { opacity: 0; pointer-events: none; }
}

.loader-line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 2.2;
  max-height: 56vh;
}

.loader-concept .loader-line span {
  opacity: 0;
  transform: translateY(-6px);
  display: inline;
  animation: charDrop 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charDrop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-concept-rise {
  0%   { opacity: 0; }
  30%, 70% { opacity: 1; }
  100% { opacity: 0; }
}


@keyframes loader-fade {
  0%,
  74% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes logo-rise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  28%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.section-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: #110904;
  border-bottom: 1px solid rgba(196, 160, 66, 0.12);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-logo,
.site-nav,
.header-right {
  pointer-events: auto;
}

.site-logo,
.site-nav a,
.footer-nav a,
.reserve-button {
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 190px;
}

.site-logo img {
  width: 100%;
  height: auto;
  filter: invert(1) sepia(0.08) saturate(0.55) brightness(1.12);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.header-divider {
  width: 1px;
  height: 24px;
  background: rgba(240, 216, 190, 0.2);
  flex-shrink: 0;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: auto;
}

.site-nav-links a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(237, 218, 168, 0.8);
  border: 1px solid rgba(240, 216, 190, 0.22);
  background: rgba(255, 244, 226, 0.05);
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.site-nav-links a:hover {
  color: var(--text);
  background: rgba(196, 160, 66, 0.1);
  border-color: rgba(196, 160, 66, 0.45);
}

.site-nav {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(239, 226, 210, 0.9);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}


.nav-icon {
  width: 50px;
  min-height: 42px;
  padding: 0;
  color: rgba(239, 226, 210, 0.7);
  transition: color 0.22s ease;
}

.nav-icon:hover {
  color: var(--accent);
}

.nav-icon svg {
  width: 21px;
  height: 21px;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.nav-icon:hover svg {
  color: var(--accent);
  opacity: 1;
}

.hero-section {
  position: relative;
  padding-top: 0;
}

.hero-media {
  width: 100%;
  margin: 0;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 22% 24%, rgba(108, 66, 44, 0.18), transparent 18%),
    linear-gradient(135deg, #38241d 0%, #201512 44%, #120b09 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: brightness(0.58) saturate(0.78) sepia(0.22) contrast(1.06);
}

.store-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8) saturate(0.88) contrast(0.98);
}

.store-image-food {
  object-position: center center;
  transform: scale(1.28);
  transform-origin: center center;
  filter: brightness(0.72) saturate(0.82) sepia(0.1) contrast(0.98);
}

.store-image-drink {
  filter: brightness(0.58) saturate(0.62) sepia(0.14) contrast(0.94);
}

.about-image {
  object-position: center center;
}

.interior-image {
  filter: brightness(0.6) saturate(0.82) sepia(0.22) contrast(1.06);
}

.interior-image-stained {
  object-position: center center;
  transform: scale(1.02);
  transform-origin: center center;
}

.interior-image-mosaic {
  filter: brightness(0.56) saturate(0.78) sepia(0.24) contrast(1.08);
}

.interior-image-lamp {
  filter: brightness(0.54) saturate(0.76) sepia(0.26) contrast(1.08);
}

.interior-image-clock {
  filter: brightness(0.52) saturate(0.72) sepia(0.24) contrast(1.08);
}

.interior-image-soda {
  filter: brightness(0.54) saturate(0.76) sepia(0.24) contrast(1.06);
}

.photo-panel::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 232, 213, 0.06);
  content: "";
}

.photo-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
}

.photo-tag,
.section-title,
.info-grid span {
  display: inline-block;
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-copy p,
.lead-ja,
.lead-en,
.hero-en,
.info-grid p {
  line-height: 1.9;
}

.photo-copy p {
  margin-top: 10px;
  color: rgba(250, 240, 228, 0.86);
  font-size: 0.96rem;
}

.photo-panel-hero {
  min-height: 100svh;
}

/* ── Hero overlay logo ── */
.hero-overlay-logo {
  position: absolute;
  top: 28px;
  left: 36px;
  z-index: 10;
  width: 180px;
  pointer-events: none;
}

.hero-overlay-logo img {
  width: 100%;
  height: auto;
  filter: invert(1) sepia(0.08) saturate(0.55) brightness(1.12);
}

.hero-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 720px);
  text-align: center;
  transform: translate(-50%, -42%);
}

.hero-copy-inner {
  padding: 0;
}

.hero-logo {
  width: min(52vw, 560px);
  height: auto;
  margin: 0 auto 26px;
  filter: invert(1) sepia(0.08) saturate(0.55) brightness(1.12);
}

.hero-copy h1,
.section-head h2,
.store-text h3 {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.28rem, 2.15vw, 2rem);
  line-height: 1.58;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-line-small {
  font-size: 0.88em;
  letter-spacing: -0.03em;
}

.hero-en {
  margin: 14px auto 0;
  color: var(--muted);
  max-width: 24rem;
  font-size: 0.72rem;
  line-height: 1.85;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.about-section,
.store-section,
.news-section,
.info-section {
  padding-top: 128px;
}

.info-section.section-shell {
  width: 100%;
  padding-left: 4vw;
  padding-right: 4vw;
  box-sizing: border-box;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.96fr 1.04fr;
}

.photo-panel-about,
.photo-panel-dining {
  min-height: 540px;
}

.interior-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  align-items: start;
}

.interior-card {
  margin: 0;
  position: static;
  width: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.interior-card-tall {
  transform: none;
}

.interior-photo {
  min-height: 220px;
}

.interior-photo-tall {
  aspect-ratio: 1 / 1;
  min-height: auto;
}

.interior-caption {
  padding: 10px 2px 0;
}

.interior-caption h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.interior-caption p {
  margin: 6px 0 0;
  color: rgba(240, 226, 210, 0.76);
  font-size: 0.84rem;
  line-height: 1.65;
}

.interior-gallery .interior-card:nth-child(2) {
  transform: none;
}

.interior-gallery .interior-card:nth-child(3) {
  transform: none;
}

.interior-gallery .interior-card:nth-child(4) {
  transform: none;
}

.text-block {
  padding: 10px 0;
}

.section-head {
  margin-bottom: 10px;
}

.section-head.wide {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head h2 {
  font-weight: 500;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  letter-spacing: 0.02em;
}

.lead-block {
  max-width: 42rem;
}

.lead-ja {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.lead-en {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.wrap-btn {
  margin-top: 14px;
}

.float-reserve {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #1a0e0b;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.float-reserve.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-reserve:hover {
  opacity: 0.85;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: #f4e7d8;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card-list {
  margin-top: 34px;
  gap: 18px;
}

.info-link-list {
  display: grid;
  border-top: 1px solid rgba(240, 216, 190, 0.13);
}

.info-link-list button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 18px 44px 18px 0;
  border-bottom: 1px solid rgba(240, 216, 190, 0.13);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: rgba(242, 231, 218, 0.9);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  background: transparent;
  cursor: pointer;
}

.info-link-list button::after {
  position: absolute;
  right: 4px;
  top: 50%;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(242, 231, 218, 0.74);
  border-radius: 999px;
  color: rgba(242, 231, 218, 0.86);
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1;
  content: ">";
  transform: translateY(-50%);
}

.info-link-list button:hover {
  color: #fff3e4;
}

.info-link-item-plain {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 18px 44px 18px 0;
  border-bottom: 1px solid rgba(240, 216, 190, 0.13);
  color: rgba(242, 231, 218, 0.9);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  cursor: default;
  pointer-events: none;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 420px;
  padding: 0;
  border: 1px solid rgba(240, 216, 190, 0.12);
  color: inherit;
  text-align: left;
  background: rgba(34, 22, 18, 0.38);
  cursor: pointer;
  overflow: hidden;
}

.news-item::after {
  position: absolute;
  right: 4px;
  top: 50%;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(242, 231, 218, 0.74);
  border-radius: 999px;
  color: rgba(242, 231, 218, 0.86);
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1;
  content: ">";
  transform: translateY(-50%);
}

.news-item span {
  display: inline-block;
  padding: 24px 26px 0;
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 0;
  background: rgba(246, 239, 228, 0.04);
  filter: saturate(0.72) sepia(0.08) brightness(0.74) contrast(1.06);
}

.news-item p {
  padding: 16px 26px 72px;
  color: rgba(242, 231, 218, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.news-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 7, 5, 0.74);
  cursor: pointer;
}

.news-modal-frame {
  position: relative;
}

.news-modal-card {
  position: relative;
  width: min(92vw, 1080px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(240, 216, 190, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(156, 92, 50, 0.15), transparent 26%),
    linear-gradient(145deg, rgba(45, 29, 23, 0.98), rgba(18, 11, 9, 0.98));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.58);
  transform: translateY(0) scale(1);
  transition: transform 0.28s ease;
}

.news-modal[aria-hidden="true"] .news-modal-card {
  transform: translateY(18px) scale(0.96);
}

.news-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  z-index: 1;
  border: 1px solid rgba(240, 216, 190, 0.2);
  color: rgba(242, 231, 218, 0.88);
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.news-modal-hero {
  width: min(100%, 560px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(240, 216, 190, 0.14);
  filter: saturate(0.72) sepia(0.08) brightness(0.76) contrast(1.06);
}

.news-modal-card[data-layout="poster"] .news-modal-hero {
  width: min(100%, 520px);
  max-height: 62vh;
  aspect-ratio: auto;
  object-fit: contain;
  background: rgba(246, 239, 228, 0.04);
}

.news-modal-kicker {
  display: inline-block;
  margin-top: 24px;
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-modal-card h2 {
  max-width: 780px;
  margin-top: 14px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.news-modal-card > p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(240, 226, 210, 0.88);
  font-size: 0.98rem;
  line-height: 2;
  white-space: pre-line;
}

.news-modal-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.news-modal-gallery figure {
  margin: 0;
}

.news-modal-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(240, 216, 190, 0.12);
  filter: saturate(0.72) sepia(0.08) brightness(0.72) contrast(1.06);
}

.news-modal-gallery figcaption {
  padding-top: 12px;
}

.news-modal-gallery span {
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-modal-gallery p {
  margin-top: 8px;
  color: rgba(240, 226, 210, 0.82);
  font-size: 0.84rem;
  line-height: 1.75;
}

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.info-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 7, 5, 0.72);
  cursor: pointer;
}

.info-modal-frame {
  position: relative;
}

.info-modal-card {
  position: relative;
  width: min(92vw, 980px);
  max-height: min(82vh, 760px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(240, 216, 190, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(156, 92, 50, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(45, 29, 23, 0.98), rgba(18, 11, 9, 0.98));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.58);
  transform: translateY(0) scale(1);
  transition: transform 0.28s ease;
}

.info-modal[aria-hidden="true"] .info-modal-card {
  transform: translateY(18px) scale(0.96);
}

.info-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  z-index: 1;
  border: 1px solid rgba(240, 216, 190, 0.2);
  color: rgba(242, 231, 218, 0.88);
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.info-modal-kicker {
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-modal-cover {
  width: min(100%, 360px);
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  object-fit: cover;
  border: 1px solid rgba(240, 216, 190, 0.14);
  filter: saturate(0.74) sepia(0.08) brightness(0.78) contrast(1.06);
}

.info-modal-cover[hidden] {
  display: none;
}

.info-modal-poster {
  width: min(100%, 760px);
  max-height: 72vh;
  margin: 0 auto;
  object-fit: contain;
  border: 1px solid rgba(240, 216, 190, 0.14);
}

.info-modal-poster[hidden] {
  display: none;
}

.info-modal-kicker {
  display: inline-block;
}

.info-modal-card p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(240, 226, 210, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 2;
}

.info-modal-gallery {
  display: flex;
  gap: 16px;
  width: 100%;
  margin: 18px -4px 0;
  padding: 0 4px 16px;
  overflow-x: scroll;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.info-modal-gallery[hidden],
.info-modal-controls[hidden] {
  display: none;
}

.info-modal-phone {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 20px;
  padding: 0 22px;
  border: 1px solid rgba(240, 216, 190, 0.24);
  color: rgba(252, 232, 203, 0.96);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.info-modal-phone[hidden] {
  display: none;
}

.info-modal-gallery figure {
  flex: 0 0 min(58vw, 320px);
  margin: 0;
  scroll-snap-align: start;
}

.info-modal-gallery::-webkit-scrollbar {
  height: 8px;
}

.info-modal-gallery::-webkit-scrollbar-track {
  background: rgba(240, 216, 190, 0.08);
}

.info-modal-gallery::-webkit-scrollbar-thumb {
  background: rgba(240, 216, 190, 0.34);
}

.info-modal-gallery img {
  width: 100%;
  height: clamp(220px, 34vh, 310px);
  object-fit: cover;
  border: 1px solid rgba(240, 216, 190, 0.14);
  filter: saturate(0.74) sepia(0.08) brightness(0.8) contrast(1.06);
}

.info-modal-gallery figcaption {
  padding-top: 14px;
}

.info-modal-gallery figcaption span {
  display: inline-block;
  color: rgba(244, 217, 188, 0.74);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-modal-gallery figcaption p {
  margin-top: 8px;
  color: rgba(240, 226, 210, 0.86);
  font-size: 0.86rem;
  line-height: 1.75;
}

.info-modal-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.info-modal-scroll {
  min-width: 86px;
  min-height: 38px;
  border: 1px solid rgba(240, 216, 190, 0.2);
  color: rgba(242, 231, 218, 0.86);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(20, 12, 9, 0.28);
  cursor: pointer;
}

.store-heading {
  margin-bottom: 26px;
}

.store-heading h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-heading p {
  margin: 10px 0 0;
  color: rgba(240, 226, 210, 0.76);
  font-size: 0.96rem;
  line-height: 1.8;
}

.store-card {
  min-width: 0;
}

.info-card {
  min-height: 188px;
  padding: 26px 28px;
  border: 1px solid rgba(240, 216, 190, 0.1);
  background: rgba(35, 22, 18, 0.42);
}

.store-photo {
  min-height: 460px;
}

.store-text {
  padding: 18px 6px 0;
}

.info-card .store-text {
  padding: 0;
}

.store-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-description {
  color: rgba(240, 226, 210, 0.9);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.store-more {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(240, 216, 190, 0.32);
  color: rgba(244, 227, 209, 0.9);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-detail-section {
  padding-top: 110px;
}

.menu-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.menu-detail-grid div {
  min-height: 168px;
  padding: 22px 24px;
  border: 1px solid rgba(240, 216, 190, 0.08);
  background: rgba(36, 22, 18, 0.44);
}

.menu-detail-grid span {
  display: inline-block;
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-detail-grid p {
  margin-top: 16px;
  color: rgba(240, 226, 210, 0.88);
  font-size: 0.98rem;
  line-height: 1.9;
}

.food-menu-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.food-menu-card {
  min-width: 0;
}

.food-menu-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(240, 216, 190, 0.12);
  background: rgba(27, 17, 14, 0.78);
}

.food-menu-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(20, 12, 9, 0.04), rgba(20, 12, 9, 0.24));
  pointer-events: none;
}

.food-menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.1) brightness(0.78) contrast(1.06);
}

.food-menu-card figcaption {
  padding-top: 18px;
}

.food-menu-card span {
  display: inline-block;
  color: rgba(244, 217, 188, 0.72);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.food-menu-card p {
  margin-top: 10px;
  color: rgba(240, 226, 210, 0.9);
  font-size: 0.98rem;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 1.4fr 2.5fr;
  gap: 18px;
}

.info-grid div {
  min-height: 168px;
  padding: 24px;
}

.info-grid p {
  margin-top: 16px;
  color: rgba(240, 226, 210, 0.88);
  font-size: 0.98rem;
}

.info-grid a {
  color: inherit;
  text-decoration: none;
}

.info-grid a:hover {
  color: rgba(252, 232, 203, 0.98);
}

.info-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.info-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(240, 216, 190, 0.2);
  color: rgba(252, 232, 203, 0.94);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-button-row .info-button {
  margin-top: 0;
}

.instagram-section {
  padding: 80px 0 0;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.instagram-more {
  margin-top: 28px;
  text-align: center;
}

.instagram-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  min-height: 44px;
  border: 1px solid rgba(240, 216, 190, 0.2);
  color: rgba(252, 232, 203, 0.88);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.instagram-more a:hover {
  border-color: rgba(240, 216, 190, 0.45);
  color: #efe2d2;
}


/* ── Info Layout ── */
.info-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  border-top: 1px solid rgba(240, 216, 190, 0.12);
  padding-top: 40px;
}

.info-layout .info-grid {
  flex: 1;
}

/* ── Company Nav ── */
.company-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  flex-shrink: 0;
  width: 120px;
  margin-bottom: 0;
}

.company-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.company-nav-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(239, 226, 210, 0.72);
  text-decoration: none;
  padding: 6px 28px 6px 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.company-nav-link:hover {
  color: var(--text);
}

.company-nav-link + .company-nav-link {
  padding-left: 0;
}

.company-nav-sns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.company-nav-sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(239, 226, 210, 0.6);
  border: 1px solid rgba(240, 216, 190, 0.18);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.company-nav-sns-icon:hover {
  color: var(--text);
  border-color: rgba(196, 160, 66, 0.45);
  background: rgba(196, 160, 66, 0.08);
}

.company-nav-link--contact {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  padding: 6px 28px 6px 28px;
  color: rgba(239, 226, 210, 0.72);
  transition: color 0.25s ease;
}

.company-nav-link--contact:hover {
  color: var(--text);
}

.contact-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 22px;
  width: 260px;
  background: rgba(22, 14, 8, 0.96);
  border: 1px solid rgba(196, 160, 66, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
}

.contact-popup::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(196, 160, 66, 0.35);
}

.company-nav-link--contact[aria-expanded="true"] .contact-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.contact-popup-label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

.contact-popup-tel {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-popup-tel:hover {
  color: var(--accent);
}

.company-nav-divider {
  display: none;
}

/* ── Nav Reserve Popup ── */
.nav-reserve {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(239, 226, 210, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.nav-reserve:hover {
  color: var(--accent);
  background: none;
}

.nav-reserve-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
  background: rgba(22, 14, 8, 0.96);
  border: 1px solid rgba(196, 160, 66, 0.35);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  min-width: 180px;
}

.nav-reserve-popup::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(196, 160, 66, 0.35);
}

.nav-reserve[aria-expanded="true"] .nav-reserve-popup {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-reserve-popup-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.nav-reserve-popup-link:hover {
  background: rgba(196, 160, 66, 0.08);
}

.nav-reserve-popup-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-reserve-popup-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}

.company-nav-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.company-nav-logo img {
  width: min(60vw, 240px);
  height: auto;
  opacity: 0.55;
  filter: brightness(1.1) saturate(0.6);
  transition: opacity 0.3s ease;
}

.company-nav-logo img:hover {
  opacity: 0.8;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 64px 0 40px;
  color: rgba(239, 226, 210, 0.56);
}

.footer-logo {
  width: min(56vw, 280px);
  height: auto;
  /* 白色で表示 */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  gap: 22px;
  font-size: 0.74rem;
}

.site-footer p {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero-copy {
    left: 50%;
    top: 50%;
    width: min(72vw, 620px);
    transform: translate(-50%, -42%);
  }

  .split-layout,
  .split-layout.reverse,
  .section-head.wide,
  .menu-detail-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-layout {
    flex-direction: column;
    gap: 32px;
  }

  .company-nav {
    width: 100%;
  }

  .company-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
  }

  .news-item {
    min-height: 380px;
  }

  .news-list {
    grid-template-columns: 1fr 1fr;
  }

  .news-modal-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .food-menu-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .interior-gallery {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .interior-card,
  .interior-card-tall,
  .interior-gallery .interior-card:nth-child(2),
  .interior-gallery .interior-card:nth-child(3),
  .interior-gallery .interior-card:nth-child(4) {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .store-list {
    grid-template-columns: 1fr 1fr;
  }

  .store-photo {
    min-height: 420px;
  }

  .photo-panel-about,
  .photo-panel-dining {
    min-height: 420px;
  }

  .info-grid div {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .hero-overlay-logo { display: none; }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition: none !important;
  }

  .site-nav-links {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .section-shell {
    width: min(100vw - 24px, 1320px);
  }

  .hero-media {
    width: 100%;
  }

  .hero-section {
    padding-top: 0;
  }

  .photo-panel-hero {
    min-height: 65svh;
  }

  .hero-copy {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(86vw, 520px);
    margin: 0;
    padding: 0 12px;
    text-align: center;
    transform: translate(-50%, -42%);
  }

  .hero-logo {
    width: min(76vw, 420px);
  }

  .hero-copy-inner {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: 1.32rem;
    line-height: 1.58;
  }

  .about-section,
  .store-section,
  .news-section,
  .menu-detail-section,
  .info-section,
  .reserve-banner {
    padding-top: 84px;
  }

  .photo-panel-about,
  .photo-panel-dining,
  .store-photo {
    min-height: 320px;
  }

  .store-list {
    grid-template-columns: 1fr;
  }

  .food-menu-gallery {
    grid-template-columns: 1fr;
  }

  .news-item {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-modal-gallery {
    grid-template-columns: 1fr;
  }

  .info-modal,
  .news-modal {
    align-items: start;
    padding: 14px;
  }

  .info-modal-frame,
  .news-modal-frame {
    width: 100%;
  }

  .info-modal-card,
  .news-modal-card {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding-top: 72px;
  }

  .info-modal-close,
  .news-modal-close {
    top: 14px;
    right: 14px;
    background: rgba(20, 12, 9, 0.86);
    backdrop-filter: blur(8px);
  }

  .info-modal-cover,
  .info-modal-poster,
  .news-modal-hero {
    margin-top: 0;
  }

  .photo-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .lead-ja {
    font-size: 1.18rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 60px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* Contact popup: align to right edge on mobile */
  .contact-popup {
    left: auto;
    right: 0;
    transform: translateY(-6px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    white-space: normal;
    min-width: 220px;
  }
  .contact-popup::before {
    left: auto;
    right: 16px;
    transform: none;
  }
  .company-nav-link--contact[aria-expanded="true"] .contact-popup {
    transform: translateY(0);
  }

  .site-logo {
    width: 140px;
  }

  .lang-switcher-btn {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .info-layout {
    flex-direction: column;
  }

  .info-layout .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-accent,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
