/* ===== リセット & ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory: #f4efe6;
  --ivory2: #faf7f1;
  --ink: #16100a;
  --espresso: #1c140c;
  --walnut: #32261a;
  --mocha: #6f6052;
  --gold: #b08d57;
  --gold-light: #cfae7b;
  --gold-deep: #8f6f3f;
  --white: #fff;
  --border: rgba(50,38,26,0.12);
  --border-gold: rgba(176,141,87,0.3);
  --hairline-dark: rgba(255,255,255,.08);
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--ivory);
  color: var(--walnut);
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: #fff; }

/* ===== ノイズテクスチャ ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}

/* ===== ナビ ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, height 0.4s ease;
}

.nav.scrolled {
  background: rgba(22,16,10,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline-dark);
  height: 60px;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(244,239,230,0.92);
  letter-spacing: .18em;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-logo:hover { color: var(--gold-light); }

.nav-logo-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 44px;
}

.nav-links a {
  position: relative;
  font-size: .72rem;
  letter-spacing: .26em;
  color: rgba(244,239,230,0.62);
  transition: color 0.25s;
  font-weight: 400;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(244,239,230,0.66);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s;
}

.nav-social-link:hover {
  color: var(--gold-light);
  background: rgba(176,141,87,0.12);
}

.nav-reserve {
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--ivory);
  border: 1px solid rgba(207,174,123,.55);
  padding: 10px 26px;
  font-weight: 400;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.nav-reserve:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ===== ヒーロー ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 64px 110px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(22,16,10,0.55) 0%, transparent 60%),
    linear-gradient(165deg, rgba(22,16,10,0.88) 0%, rgba(22,16,10,0.55) 55%, rgba(22,16,10,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroIn 1.4s cubic-bezier(.22,1,.36,1) both;
  animation-delay: .15s;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
  font-size: .68rem;
  letter-spacing: .52em;
  color: var(--gold-light);
  font-weight: 400;
}

.line {
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-light), transparent);
  opacity: .65;
}

.hero-eyebrow .line:first-child {
  background: linear-gradient(to left, var(--gold-light), transparent);
}

.hero-title {
  margin-bottom: 30px;
}

.hero-title-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.hero-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 17vw, 13.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: .85;
  letter-spacing: -.025em;
  text-shadow: 0 4px 60px rgba(0,0,0,.35);
}

.hero-yen {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  padding-bottom: 16px;
}

.hero-sub {
  display: block;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(.9rem, 1.9vw, 1.15rem);
  color: rgba(244,239,230,0.78);
  letter-spacing: .48em;
  margin-top: 26px;
  font-weight: 400;
}

.hero-place {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  color: rgba(207,174,123,.85);
  letter-spacing: .3em;
  margin-top: 18px;
}

.hero-place::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(207,174,123,.5);
}

.hero-scroll {
  position: absolute;
  bottom: 110px;
  right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: .62rem;
  letter-spacing: .4em;
  color: rgba(207,174,123,.75);
  writing-mode: vertical-rl;
  z-index: 2;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-side {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-side-text {
  font-family: 'Shippori Mincho', serif;
  font-size: .7rem;
  letter-spacing: .52em;
  color: rgba(244,239,230,0.2);
  writing-mode: vertical-rl;
}

/* ===== ティッカー ===== */
.ticker {
  background: var(--espresso);
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  font-size: .7rem;
  letter-spacing: .34em;
  color: rgba(207,174,123,.8);
  font-weight: 400;
  padding: 0 32px;
}

.ticker-track .dot { padding: 0; opacity: .4; color: var(--gold-light); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== フォトストリップ ===== */
.photo-strip {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.ps-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--walnut);
}

.ps-item.ps-large {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}

.ps-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s ease;
  filter: brightness(0.86) saturate(0.96);
}

.ps-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.05);
}

.ps-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(22,16,10,0.82));
  color: var(--ivory);
  font-size: .74rem;
  letter-spacing: .18em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}

.ps-item:hover .ps-label { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .photo-strip-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ps-item.ps-large {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
  .ps-label { opacity: 1; transform: none; }
}

/* ===== セクション共通 ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .66rem;
  letter-spacing: .46em;
  color: var(--gold);
  margin-bottom: 44px;
  font-weight: 400;
  white-space: nowrap;
}

.section-label::after {
  content: '';
  display: block;
  width: 64px;
  min-width: 16px;
  height: 1px;
  background: var(--border-gold);
}

section { padding: 130px 0; }

/* ===== ABOUTセクション ===== */
.about { background: var(--ivory2); position: relative; }

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
}

.about-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.75;
  letter-spacing: .04em;
  margin-bottom: 32px;
}

.about-title em {
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 600;
}

.about-text {
  font-size: .88rem;
  color: var(--mocha);
  line-height: 2.4;
  letter-spacing: .03em;
  margin-bottom: 80px;
  padding-left: 24px;
  border-left: 1px solid var(--border-gold);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feature {
  padding: 34px 28px 36px;
  background: transparent;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .4s ease;
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .45s ease;
}

.feature:hover { background: rgba(255,255,255,.65); }
.feature:hover::before { width: 100%; }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.feature h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: .06em;
}

.feature p {
  font-size: .78rem;
  color: var(--mocha);
  line-height: 2;
  letter-spacing: .02em;
}

/* ===== メニューセクション ===== */
.menu { background: var(--espresso); position: relative; }

.menu::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: .6;
}

.menu-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

.menu-inner .section-label { color: var(--gold-light); }
.menu-inner .section-label::after { background: rgba(207,174,123,.3); }

.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 10px;
}

.menu-title em {
  font-style: italic;
  color: var(--gold-light);
}

.menu-subtitle {
  font-size: .72rem;
  letter-spacing: .32em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 80px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 56px;
  margin-bottom: 72px;
}

.menu-divider { background: var(--hairline-dark); }

.menu-col-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--gold-light);
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(207,174,123,.22);
}

.menu-col ul { display: flex; flex-direction: column; }

.menu-col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(255,255,255,.1);
  font-size: .82rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: .04em;
  transition: padding-left .3s ease;
}

.menu-col li:hover { padding-left: 6px; }

.menu-col li small {
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  letter-spacing: .03em;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-left: 16px;
  letter-spacing: .04em;
}

.menu-lunch-note {
  font-size: .68rem;
  color: rgba(255,255,255,0.46);
  margin-top: 20px;
  letter-spacing: .06em;
  line-height: 1.9;
}

/* ===== ランチ別枠 ===== */
.menu-lunch-section {
  border-top: 1px solid rgba(207,174,123,.18);
  padding-top: 48px;
  margin-bottom: 64px;
}

.menu-lunch-section-header {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-bottom: 28px;
}

.menu-lunch-section-header .menu-col-label {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.menu-lunch-hours {
  font-size: .7rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.5);
}

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

.menu-lunch-card {
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(207,174,123,.14);
  transition: border-color .35s ease, transform .35s ease;
}

.menu-lunch-card:hover {
  border-color: rgba(207,174,123,.4);
  transform: translateY(-3px);
}

.menu-lunch-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter .4s ease, transform .8s cubic-bezier(.22,1,.36,1);
}

.menu-lunch-card:hover img {
  filter: brightness(1);
  transform: scale(1.04);
}

.menu-lunch-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(207,174,123,.12);
}

.menu-lunch-card-name {
  font-family: 'Shippori Mincho', serif;
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .08em;
}

.menu-lunch-more {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dotted rgba(207,174,123,.18);
}

.menu-lunch-more-label {
  font-size: .66rem;
  letter-spacing: .4em;
  color: var(--gold-light);
  white-space: nowrap;
}

.menu-lunch-more ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.menu-lunch-more li {
  font-size: .8rem;
  color: rgba(255,255,255,.78);
  letter-spacing: .06em;
}

/* ===== menu-footer ===== */
.menu-footer {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 34px;
}

.menu-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  letter-spacing: .2em;
  color: var(--gold-light);
  transition: gap .3s ease, opacity .3s ease;
}

.menu-footer a:hover { gap: 16px; opacity: .85; }

/* ===== ギャラリー ===== */
.gallery { background: var(--ivory); padding: 130px 0; }

.gallery-header {
  max-width: 1400px;
  margin: 0 auto 56px;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
}

.gallery-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.gallery-sub {
  font-size: .8rem;
  color: var(--mocha);
  letter-spacing: .24em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--walnut);
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,16,10,0);
  transition: background .4s ease;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.22,1,.36,1), filter .5s ease;
  filter: brightness(0.94) saturate(1.02);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.02) saturate(1.08);
}

.gallery-more {
  text-align: center;
  margin-top: 64px;
}

.gallery-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  border: 1px solid var(--border-gold);
  color: var(--gold-deep);
  font-size: .76rem;
  letter-spacing: .2em;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.gallery-ig-btn:hover {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}

/* ===== アクセスセクション ===== */
.access { background: var(--ivory2); padding: 0; }

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.access-info {
  padding: 110px 72px;
  background: var(--ivory2);
  display: flex;
  flex-direction: column;
}

.access-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: .06em;
  margin-bottom: 52px;
}

.access-hours { margin-bottom: 22px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.hours-label {
  font-size: .66rem;
  letter-spacing: .34em;
  color: var(--gold-deep);
}

.hours-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: .1em;
}

.access-note {
  font-size: .78rem;
  color: var(--mocha);
  line-height: 2.1;
  letter-spacing: .03em;
  margin-bottom: 40px;
}

.access-location {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}

.access-address {
  font-size: .88rem;
  color: var(--ink);
  line-height: 2;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.access-tel a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-deep);
  letter-spacing: .12em;
  font-weight: 300;
  transition: opacity .25s;
}

.access-tel a:hover { opacity: .7; }

.access-transit {
  font-size: .7rem;
  color: var(--mocha);
  margin-top: 8px;
  letter-spacing: .06em;
}

.access-links {
  display: flex;
  gap: 14px;
  margin-top: auto;
}

.access-btn {
  padding: 14px 32px;
  font-size: .68rem;
  letter-spacing: .22em;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.access-btn.primary {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}

.access-btn.primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.access-btn.ghost {
  border: 1px solid var(--border);
  color: var(--walnut);
}

.access-btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.access-map { position: relative; min-height: 660px; }
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: sepia(0.25) contrast(0.92) saturate(0.75);
}

/* ===== フッター ===== */
.footer {
  background: var(--ink);
  padding: 72px 48px 32px;
  border-top: 1px solid rgba(207,174,123,.18);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 48px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--hairline-dark);
}

.footer-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: .16em;
  margin-bottom: 8px;
}

.footer-en {
  font-size: .68rem;
  letter-spacing: .36em;
  color: rgba(207,174,123,.65);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: .68rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,0.55);
  transition: color .25s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: .62rem;
  color: rgba(255,255,255,.36);
  letter-spacing: .1em;
}

/* ===== 写真ズームイン ===== */
.img-zoom-in {
  transform: scale(1.55) !important;
  transform-origin: center center;
}

.ps-item:hover .img-zoom-in,
.gallery-item:hover .img-zoom-in {
  transform: scale(1.62) !important;
}

/* ===== フェードイン ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .nav { padding: 0 16px; }
  .nav-logo { font-size: .74rem; letter-spacing: .1em; }
  .nav-links { display: none; }
  .nav-reserve { padding: 8px 18px; }
  .hero { padding: 100px 24px 80px; }
  .hero-scroll { display: none; }
  .hero-side { display: none; }
  section { padding: 96px 0; }
  .about-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }
  .about-text { margin-bottom: 56px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .feature { padding: 26px 20px 28px; }
  .menu-inner { padding: 0 24px; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-divider { display: none; }
  .menu-subtitle { margin-bottom: 56px; }
  .gallery-header { padding: 0 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .access-inner { grid-template-columns: 1fr; }
  .access-info { padding: 72px 24px; }
  .access-map { min-height: 340px; position: relative; }
  .footer { padding: 56px 24px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .menu-lunch-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
}
