/* start-global */
/* Top-page foundation */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  padding: 0;
  color: #2b2b2b;
  background: #f4f1ec;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

body.hide-scroll::-webkit-scrollbar {
  display: none;
}

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

p {
  margin-block: 0 1em;
  color: #515151;
  font-family: inherit;
  line-height: 2;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* loader */
.no-scroll {
  overflow: hidden;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f9f6f2;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.loader-container.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container[hidden] {
  display: none;
}

.loader-dots {
  grid-area: 1 / 1;
  display: flex;
  gap: 10px;
  margin: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.loader-dots.is-finished {
  opacity: 0;
}

.loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: dot-bounce 1.5s infinite ease-in-out;
  transform-origin: center;
}

.loader-dot:nth-child(1) { background-color: #2c3e50; animation-delay: 0s; }
.loader-dot:nth-child(2) { background-color: #34495e; animation-delay: 0.1s; }
.loader-dot:nth-child(3) { background-color: #3b5870; animation-delay: 0.2s; }
.loader-dot:nth-child(4) { background-color: #476278; animation-delay: 0.3s; }
.loader-dot:nth-child(5) { background-color: #536c81; animation-delay: 0.4s; }
.loader-dot:nth-child(6) { background-color: #5f7689; animation-delay: 0.5s; }
.loader-dot:nth-child(7) { background-color: #6b8092; animation-delay: 0.6s; }
.loader-dot:nth-child(8) { background-color: #778a9a; animation-delay: 0.7s; }
.loader-dot:nth-child(9) { background-color: #8394a3; animation-delay: 0.8s; }
.loader-dot:nth-child(10) { background-color: #8f9eac; animation-delay: 0.9s; }

@keyframes dot-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

.welcome-message {
  grid-area: 1 / 1;
  font-family: 'Yu Mincho', serif;
  font-size: 28px;
  color: #2c3e50;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  pointer-events: none;
}

.welcome-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ローダーが完全に消えるまで、背面の環坂ロゴを見せない */
body.is-loading .header-logo-center {
  opacity: 0;
}

/* footer */
/* ===============================
   Footer + Copyright (Refactored)
   - フォント固定: "Noto Serif JP","Hiragino Mincho ProN",serif
   - 太字を使わない / 全体少し小さめ
   - 左寄せ / h2白
   - 二重縦スクロール対策
   - 矢印は FontAwesome のみ（□×対策含む）
================================ */

:root{
  --k-footer-bg:#1e1e1f;
  --k-copy-bg:#262526;
  --k-text:#f3f4f6;
  --k-sub:#e5e7eb;
  --k-border:rgba(255,255,255,.08);
  --k-max:1200px;

  --k-font:"Noto Serif JP","Hiragino Mincho ProN",serif;

  /* 少し小さめ */
  --k-fs-base:13px;
  --k-fs-p:13px;
  --k-fs-h2:19px;
  --k-fs-btn:13px;
}

/* コンポーネント内はフォント固定（ホームCSSの影響を受けにくくする） */
.site-footer,
.site-footer *,
.copyright,
.copyright *{
  font-family: var(--k-font) !important;
  box-sizing: border-box;
}

/* ===== Footer ===== */
.site-footer{
  position: relative;
  margin-top: 48px;
  padding: 44px 20px 34px;
  color: var(--k-text);

  font-size: var(--k-fs-base);
  line-height: 1.85;
  letter-spacing: .02em;

  text-align: left;
}

/* 背景だけフルブリード */
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--k-footer-bg);
  border-top: 1px solid var(--k-border);
  z-index:-1;

  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.site-footer__inner{
  max-width: var(--k-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.site-footer__col{ text-align:left; }

/* 見出し：白 / 太字なし */
.site-footer__heading{
  margin: 0 0 12px;
  padding: 0 0 8px;
  color:#fff;

  font-weight: 400; /* 太字なし */
  font-size: var(--k-fs-h2);
  line-height: 1.2;
  letter-spacing: .03em;

  border-bottom: 2px solid rgba(255,255,255,.18);
}

.site-footer p{
  margin: 0 0 8px;
  color: var(--k-sub);

  font-weight: 400; /* 太字なし */
  font-size: var(--k-fs-p);
  line-height: 1.85;
}

.site-footer__link{
  color: var(--k-sub);
  text-decoration:none;
}
.site-footer__link:hover{ text-decoration:underline; }

/* ボタン：太字なし */
.site-footer__btn{
  display:inline-block;
  margin: 12px 10px 0 0;
  padding: 10px 18px;
  border-radius: 10px;

  font-size: var(--k-fs-btn);
  font-weight: 400; /* 太字なし */

  color: var(--k-text);
  background: transparent;
  border: 1px solid rgba(255,255,255,.20);
  text-decoration:none;

  transition: background .2s ease, border-color .2s ease, transform .06s ease;
}
.site-footer__btn:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
}
.site-footer__btn:active{ transform: translateY(1px); }

.site-footer__btn--outline{
  border-color: rgba(255,255,255,.26);
}

/* PC 3カラム */
@media (min-width: 900px){
  .site-footer{ padding-left: 60px; padding-right: 60px; }
  .site-footer__inner{
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 36px;
    align-items: start;
  }
  .site-footer__col:nth-child(2){ justify-self:start; }
}

/* ===== Copyright（波 + ↑） ===== */
.copyright{
  position: relative;
  padding: 0 20px 22px;

  /* 二重縦スクロール対策 */
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* 背景だけフルブリード */
.copyright::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--k-copy-bg);
  z-index:-1;

  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* svgは中央（クリック邪魔しない） */
.copyright .svg-up{
  display:block;
  margin: 0 auto;
  vertical-align: bottom;
  pointer-events: none;
}

/* 上に戻るボタン（FontAwesomeのみ） */
.copyright__toTop{
  appearance:none;
  border:none;
  background: transparent;
  cursor:pointer;

  display:grid;
  place-items:center;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  margin: -18px auto 0;
  color: rgba(255,255,255,.92);
}
.copyright__toTop:hover{
  background: rgba(255,255,255,.06);
}

/* 矢印の見た目 */
.copyright__toTop .arrow-up{
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}


.copyright__toTop{
  appearance:none;
  border:none;
  background: transparent;
  cursor:pointer;

  display:grid;
  place-items:center;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  margin: -18px auto 0;
  color: rgba(255,255,255,.92);
}
.copyright__toTop:hover{ background: rgba(255,255,255,.06); }

.copyright__toTop .toTopIcon{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* instagram */
/* Instagram */
.instagram-section {
  padding: 40px 0;
  text-align: center;
  background: #fff;
}

.instagram-title {
  margin: 0 0 20px;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
}

/* PC・タブレットは4枚を横一列で表示 */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1200px);
  margin: 0 auto;
  gap: 0;
}

.insta-item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}

.insta-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.insta-item:hover img,
.insta-item:focus-visible img {
  transform: scale(1.04);
  opacity: 0.88;
}

.insta-item:focus-visible {
  z-index: 1;
  outline: 3px solid #2c3e50;
  outline-offset: -3px;
}

@media (max-width: 767px) {
  .instagram-section {
    padding: 32px 0 0;
  }

  .instagram-title {
    margin-bottom: 16px;
    font-size: 1.45rem;
  }

  /* スマホは正方形の写真を2枚×2段で表示 */
  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .insta-item img {
    transition: none;
  }
}

/* luxury-theme */
:root {
  --lux-ink: #20231e;
  --lux-deep: #172018;
  --lux-green: #263428;
  --lux-ivory: #f4f0e7;
  --lux-paper: #faf8f2;
  --lux-gold: #9b7b46;
  --lux-gold-light: #c7ad7c;
  --lux-muted: #6c6a62;
  --lux-line: rgba(93, 73, 41, 0.2);
  --lux-shadow: 0 28px 70px rgba(28, 31, 25, 0.14);
  --lux-serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
  --lux-max: 1240px;
}

html {
  scroll-behavior: smooth;
  background: var(--lux-ivory);
}

body {
  padding-top: 0 !important;
  width: 100%;
  overflow-x: hidden;
  color: var(--lux-ink);
  background:
    linear-gradient(rgba(155, 123, 70, 0.025) 1px, transparent 1px),
    var(--lux-ivory);
  background-size: 100% 48px;
  font-family: var(--lux-serif);
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  overflow: clip;
}

img {
  max-width: 100%;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--lux-gold);
  font-family: "Cabin", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.4;
}

.section-kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading {
  margin: 0 0 30px;
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

/* Hero */
.header {
  isolation: isolate;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100svh;
  min-height: 680px;
  padding: 0;
  background: #172018;
  overflow: hidden;
}

.header::before {
  position: absolute;
  z-index: -2;
  inset: -4%;
  background: url("../images/top.jpg") center bottom / cover no-repeat;
  content: "";
  transform: translateZ(0) scale(1.075);
  backface-visibility: hidden;
  will-change: transform;
}

.header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    /* 中央下：暖かい光を柔らかく残す */
    radial-gradient(ellipse 38% 24% at 50% 100%, rgba(236, 210, 165, 0.23) 0%, rgba(188, 145, 100, 0.1) 42%, transparent 78%),
    /* 左右の下：ほんの少し引き締める */
    radial-gradient(ellipse 42% 38% at 0% 100%, rgba(0, 0, 0, 0.18) 0%, transparent 76%),
    radial-gradient(ellipse 42% 38% at 100% 100%, rgba(0, 0, 0, 0.18) 0%, transparent 76%),
    /* 中央：ロゴの背面をなだらかに濃くする */
    radial-gradient(ellipse 38% 44% at 50% 52%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.11) 46%, transparent 82%),
    /* 上部：ナビゲーションが読みやすい程度に暗くする */
    linear-gradient(180deg, rgba(0, 0, 0, 0.17) 0%, rgba(0, 0, 0, 0.05) 32%, transparent 56%),
    /* ワインレッドは薄いニュアンスだけ残す */
    linear-gradient(120deg, rgba(43, 5, 17, 0.08), transparent 46%, rgba(55, 8, 20, 0.06)),
    /* 全体の黒ベース */
    linear-gradient(180deg, rgba(2, 3, 4, 0.23) 0%, rgba(7, 5, 6, 0.15) 48%, rgba(1, 2, 3, 0.21) 100%);
  content: "";
}

body.hero-motion-ready .header::before {
  animation: hero-breathe 11s cubic-bezier(0.2, 0.65, 0.35, 1) both;
}

@keyframes hero-breathe {
  from { transform: translateZ(0) scale(1.075); }
  to { transform: translateZ(0) scale(1.025); }
}

.header-logo-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: auto;
  left: 50%;
  width: min(680px, 90vw);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.35);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body:not(.is-loading) .header-logo-center {
  animation: hero-copy-in 1.4s 0.15s ease backwards;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translate(-50%, -43%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.kansaka-logo-img {
  width: clamp(220px, 27vw, 390px);
  max-width: 72vw;
  margin: 0 auto;
  filter:
    drop-shadow(0 2px 5px rgba(0, 0, 0, 0.48))
    drop-shadow(0 5px 16px rgba(0, 0, 0, 0.32));
}

.header.scrolled .header-logo-center {
  opacity: 0;
  transform: translate(-50%, -54%);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.scroll-cue span {
  font-family: "Cabin", sans-serif;
  font-size: 8px;
  letter-spacing: 0.3em;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: #fff;
  content: "";
  animation: scroll-line 2.1s infinite ease-in-out;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  55%, 100% { transform: translateY(200%); }
}

/* Navigation */
.header-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.header-nav.scrolled,
.header.scrolled .header-nav {
  border-bottom-color: rgba(61, 59, 51, 0.1);
  background: rgba(249, 247, 241, 0.94);
  box-shadow: 0 8px 30px rgba(28, 31, 25, 0.06);
  backdrop-filter: blur(12px);
}

.nav-logo {
  min-width: 150px;
  min-height: 46px;
}

.nav-logo-link {
  display: block;
}

.nav-logo-image {
  position: absolute;
  top: 14px;
  left: clamp(22px, 4vw, 64px);
  height: 46px;
  width: auto;
  transition: opacity 0.35s ease;
}

.logo-default {
  opacity: 1;
}

.logo-scrolled {
  opacity: 0;
}

.header-nav.scrolled .logo-default {
  opacity: 0;
}

.header-nav.scrolled .logo-scrolled {
  opacity: 1;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: #fff;
  font-family: "Noto Serif JP", var(--lux-serif);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.48);
  transition: color 0.3s ease;
}

.header-nav.scrolled .nav-link {
  color: var(--lux-ink);
  text-shadow: none;
}

.underline {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 4px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-link:hover .underline,
.nav-link:focus-visible .underline {
  width: 100%;
}

.kansaka-header {
  display: none;
  border-bottom: 1px solid rgba(155, 123, 70, 0.18);
  background: rgba(248, 246, 239, 0.94);
  box-shadow: 0 8px 30px rgba(28, 31, 25, 0.05);
  backdrop-filter: blur(14px);
}

.kansaka-header-inner {
  min-height: 66px;
}

.kansaka-nav a {
  color: #30342e;
  font-size: clamp(11px, 3.1vw, 14px);
  letter-spacing: 0.06em;
}

.kansaka-nav a::after {
  height: 1px;
  background: var(--lux-gold);
}

/* Reservation / place */
.reservation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  width: min(var(--lux-max), calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(110px, 13vw, 190px) 0;
}

.reservation::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -18vw;
  width: 48vw;
  height: 76%;
  border: 1px solid var(--lux-line);
  content: "";
}

.reservation .image-container {
  position: relative;
  box-shadow: var(--lux-shadow);
}

.reservation .image-container::before {
  position: absolute;
  z-index: 2;
  inset: 18px -18px -18px 18px;
  border-right: 1px solid var(--lux-gold-light);
  border-bottom: 1px solid var(--lux-gold-light);
  content: "";
  pointer-events: none;
}

.reservation .image-container,
.reservation .image,
.reservation img {
  width: 100%;
}

.reservation img {
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.reservation .text_above {
  max-width: 500px;
  padding: 0;
  text-align: left;
}

.reservation .text_above p {
  margin: 0;
  color: var(--lux-muted);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.35;
}

/* Full-bleed image interludes */
.recipes,
.fixed-image {
  isolation: isolate;
  position: relative;
  height: clamp(520px, 72vh, 780px);
  overflow: hidden;
  background: var(--lux-deep);
}

.recipes .image,
.fixed-image {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.recipes .image {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  background-image: url("../images/permanent_background.jpg");
}

.recipes::before,
.fixed-image::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 20, 14, 0.7), rgba(13, 20, 14, 0.14) 62%, rgba(13, 20, 14, 0.22));
  content: "";
}

.recipes::after,
.fixed-image::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  content: "";
  pointer-events: none;
}

.interlude-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(8vw, calc((100vw - var(--lux-max)) / 2));
  color: #fff;
  transform: translateY(-50%);
}

.interlude-copy .section-kicker {
  color: var(--lux-gold-light);
}

.interlude-copy p {
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Six-seat story */
.after-left {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
  padding: clamp(110px, 13vw, 180px) max(40px, calc((100vw - var(--lux-max)) / 2));
  background: var(--lux-paper);
}

.after-left::after {
  position: absolute;
  z-index: 0;
  right: 4vw;
  bottom: 3%;
  color: rgba(155, 123, 70, 0.055);
  content: "六";
  font-size: min(28vw, 380px);
  line-height: 1;
  pointer-events: none;
}

.after-left .after-meal-images {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  align-items: start;
  gap: clamp(14px, 2vw, 28px);
  overflow: visible;
}

.after-left .main-photo-s {
  max-width: none;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(24, 29, 23, 0.16);
}

.after-left .main-photo-s:nth-child(2) {
  margin-top: 28%;
}

.after-left .main-photo-s img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.after-left .main-photo-s:first-child img {
  object-position: 50% center;
}

.after-left .main-photo-s:hover img {
  transform: scale(1.025);
}

.after-left .text_above_1 {
  position: relative;
  z-index: 1;
  max-width: 470px;
  padding: 0;
  text-align: left;
}

.after-left .text_above_1 p {
  margin: 0;
  color: var(--lux-muted);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.3;
}

.after-left .text_above_1 strong,
.after-meal-text strong {
  font-weight: 400;
}

/* Terrace */
.after-meal {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
  padding: clamp(105px, 12vw, 175px) max(40px, calc((100vw - var(--lux-max)) / 2));
  background: var(--lux-ivory);
  overflow: visible;
}

.after-meal-text {
  min-width: 0;
  text-align: left;
}

.after-meal-text p {
  margin: 0;
  color: var(--lux-muted);
  font-size: clamp(14px, 1.25vw, 17px);
  letter-spacing: 0.06em;
  line-height: 2.3;
}

.after-meal .after-meal-images {
  position: relative;
  display: block;
  overflow: visible;
}

.after-meal .after-meal-images::before {
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 1px solid var(--lux-gold-light);
  content: "";
}

.after-meal .after-meal-images .main-photo {
  position: relative;
  max-width: none;
  overflow: hidden;
  box-shadow: var(--lux-shadow);
}

.after-meal .main-photo img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.recipes,
.fixed-image {
  height: clamp(480px, 64vh, 720px);
}

.fixed-image {
  background-image: url("../images/12_2.png");
}

.fixed-image__sticky {
  position: relative;
  width: 100%;
  height: 100%;
}

.fixed-image__visual {
  display: none;
}

.fixed-image::before {
  background: linear-gradient(90deg, rgba(13, 20, 14, 0.62), rgba(13, 20, 14, 0.08) 70%);
}

/* Information */
.about-us {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--lux-deep);
}

.about-us .text {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(75px, 9vw, 130px) clamp(30px, 4vw, 60px)
    clamp(75px, 9vw, 130px) clamp(70px, 10vw, 150px);
  color: #f5f1e7;
  text-align: left;
}

.about-us .image-container {
  order: 2;
  min-height: 760px;
  overflow: hidden;
}

.about-us .image,
.about-us .image-container img {
  width: 100%;
  height: 100%;
}

.about-us .image-container img {
  object-fit: cover;
}

.about-us .section-kicker {
  color: var(--lux-gold-light);
}

.about-us .kaien {
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.about-us .section-title {
  margin: 34px 0 10px;
  color: var(--lux-gold-light);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.about-us .about-subtitle {
  margin: 32px 0 8px;
  color: var(--lux-gold-light);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.about-us .about-text,
.about-us .text p {
  margin: 0;
  color: rgba(245, 241, 231, 0.78);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}

/* Instagram */
.instagram-section {
  --instagram-max: 1440px;
  padding: clamp(90px, 10vw, 140px) max(24px, calc((100vw - var(--instagram-max)) / 2));
  background: var(--lux-paper);
}

.instagram-section .section-kicker {
  justify-content: center;
}

.instagram-title {
  margin: 0;
  color: var(--lux-ink);
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.instagram-lead {
  margin: 25px 0 45px;
  color: var(--lux-muted);
  font-size: 14px;
  letter-spacing: 0.14em;
}

.insta-grid {
  width: 100%;
  max-width: var(--instagram-max);
  gap: clamp(5px, 0.7vw, 10px);
}

.insta-item {
  background: var(--lux-ink);
}

.insta-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.insta-item:hover::after,
.insta-item:focus-visible::after {
  opacity: 1;
  transform: scale(0.9);
}

/* CTA */
.fixed-reserve-button {
  position: fixed;
  z-index: 2100;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 0;
  border: 1px solid rgba(214, 181, 128, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(74, 40, 22, 0.96);
  box-shadow: 0 14px 36px rgba(48, 24, 12, 0.34);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.fixed-reserve-button:hover,
.fixed-reserve-button:focus-visible {
  color: #fff;
  background: #6b3f24;
  transform: translateY(-4px) scale(1.03);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2000;
  isolation: isolate;
  margin-top: 0;
  padding: 78px max(28px, calc((100vw - var(--lux-max)) / 2)) 62px;
  background: #111713;
}

.site-footer::before {
  display: none;
}

.site-footer__inner {
  gap: clamp(36px, 6vw, 90px);
}

.site-footer__heading {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(199, 173, 124, 0.32);
  color: var(--lux-gold-light);
  font-size: 16px;
  letter-spacing: 0.15em;
}

.site-footer p {
  color: rgba(245, 241, 231, 0.68);
  line-height: 2;
}

.site-footer__btn {
  border-radius: 0;
  border-color: rgba(199, 173, 124, 0.44);
  letter-spacing: 0.1em;
}

.copyright {
  position: relative;
  z-index: 2001;
  isolation: isolate;
  padding: 0 20px 28px;
  background: #111713;
}

.copyright::before {
  display: none;
}

.copyright__toTop {
  border: 1px solid rgba(199, 173, 124, 0.35);
}

/* Loading screen */
.loader-container {
  background:
    radial-gradient(circle at 50% 48%, rgba(155, 123, 70, 0.08), transparent 28%),
    var(--lux-ivory);
}

.loader-dot {
  width: 14px;
  height: 14px;
}

.loader-dot:nth-child(n) {
  background: var(--lux-gold);
}

.welcome-message {
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: 0.18em;
  line-height: 1.4;
}

/* Scroll reveal */
.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1s ease var(--reveal-delay, 0ms),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.motion-ready .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .reservation,
  .after-left,
  .after-meal {
    gap: 54px;
  }

  .reservation {
    width: min(920px, calc(100% - 64px));
    grid-template-columns: 1fr 0.85fr;
  }

  .after-left {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .after-meal {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .about-us {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-us .image-container {
    min-height: 680px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 100svh;
    min-height: 560px;
  }

  .header::before {
    background-position: 48% center;
  }

  .header-logo-center {
    top: 52%;
  }

  .kansaka-logo-img {
    width: min(250px, 68vw);
  }

  .scroll-cue {
    bottom: 18px;
  }

  #mainNav {
    display: none;
  }

  .kansaka-header {
    position: fixed;
    z-index: 1300;
    top: 0;
    right: 0;
    left: 0;
    display: block;
  }

  .kansaka-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 12px;
    gap: 8px;
  }

  .kansaka-logo {
    flex: 0 0 auto;
  }

  .kansaka-logo img {
    height: 34px;
    width: auto;
  }

  .kansaka-nav {
    min-width: 0;
    margin-left: auto;
  }

  .kansaka-nav .nav-home {
    display: none;
  }

  .kansaka-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 2.5vw, 14px);
    white-space: nowrap;
  }

  .kansaka-nav a {
    position: relative;
    display: inline-block;
    padding: 6px 1px;
  }

  .kansaka-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--lux-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }

  .kansaka-nav a:hover::after,
  .kansaka-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .section-heading {
    margin-bottom: 23px;
    font-size: clamp(26px, 8vw, 36px);
    letter-spacing: 0.1em;
  }

  .reservation {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 92px 24px 105px;
    gap: 68px;
  }

  .reservation::before {
    top: 5%;
    right: -42vw;
    width: 80vw;
  }

  .reservation .image-container::before {
    inset: 11px -11px -11px 11px;
  }

  .reservation img {
    aspect-ratio: 1.3 / 1;
  }

  .reservation .text_above {
    width: 100%;
    text-align: left;
  }

  .reservation .text_above p,
  .after-left .text_above_1 p,
  .after-meal-text p {
    font-size: 14px;
    line-height: 2.15;
  }

  .recipes,
  .fixed-image {
    height: 74svh;
    min-height: 540px;
    background-attachment: scroll;
  }

  .recipes .image {
    /* iOS Safariでは fixed 背景が拡大表示されるため、スマホは通常スクロール */
    background-attachment: scroll;
    background-position: 54% center;
  }

  .recipes::after,
  .fixed-image::after {
    inset: 13px;
  }

  .interlude-copy {
    right: 34px;
    left: 34px;
  }

  .interlude-copy p {
    font-size: clamp(25px, 7.4vw, 34px);
  }

  .recipes .interlude-copy p {
    font-size: clamp(21px, 5.8vw, 25px);
    letter-spacing: 0.08em;
    line-height: 1.8;
    white-space: nowrap;
  }

  .after-left {
    display: flex;
    flex-direction: column;
    padding: 96px 24px 110px;
    gap: 72px;
  }

  .after-left .after-meal-images {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr 0.8fr;
    align-items: start;
    gap: 10px;
    transform: none;
  }

  .after-left .main-photo-s {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 16px 36px rgba(24, 29, 23, 0.16);
    transform: none;
  }

  .after-left .main-photo-s:nth-child(1) {
    transform: none;
  }

  .after-left .main-photo-s:nth-child(2) {
    margin-top: 42%;
    transform: none;
  }

  .after-left .main-photo-s img {
    aspect-ratio: 3 / 4;
  }

  .after-left .text_above_1 {
    width: 100%;
  }

  .after-meal {
    display: flex;
    flex-direction: column-reverse;
    padding: 100px 24px 110px;
    gap: 70px;
  }

  .after-meal .after-meal-images {
    width: 100%;
  }

  .after-meal .after-meal-images::before {
    inset: -12px 12px 12px -12px;
  }

  .after-meal .main-photo img {
    aspect-ratio: 1.05 / 1;
  }

  .after-meal-text {
    width: 100%;
  }

  .recipes,
  .fixed-image {
    height: 65svh;
    min-height: 360px;
  }

  .fixed-image {
    overflow: hidden;
    background: none;
  }

  .fixed-image::before,
  .fixed-image::after {
    content: none;
  }

  .fixed-image__sticky {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .fixed-image__visual {
    position: absolute;
    display: block;
    inset: -2px;
    background-image: url("../images/2026_1_18/20260118_122949.jpg");
    /* PC版だけ固定し、スマホでは画像もページと一緒に動かす */
    background-attachment: scroll;
    background-position: 50% 58%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .fixed-image__visual::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(8, 10, 8, 0.2), rgba(8, 10, 8, 0.08) 45%, rgba(8, 10, 8, 0.34)),
      linear-gradient(90deg, rgba(13, 20, 14, 0.48), rgba(13, 20, 14, 0.06) 82%);
    content: "";
  }

  .fixed-image__sticky::after {
    position: absolute;
    z-index: 1;
    inset: 13px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    content: "";
    pointer-events: none;
  }

  .fixed-image .interlude-copy {
    z-index: 2;
    top: 0;
    right: 32px;
    bottom: 0;
    left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: none;
  }

  .fixed-image .interlude-copy p {
    font-size: clamp(22px, 5.8vw, 25px);
    letter-spacing: 0.08em;
    line-height: 1.8;
  }

  .about-us {
    display: flex;
    flex-direction: column;
  }

  .about-us .image-container {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .about-us .image-container img {
    border-radius: 0;
  }

  .about-us .text {
    order: 2;
    width: 100%;
    padding: 75px 28px 90px;
  }

  .about-us .kaien {
    margin-bottom: 28px;
    font-size: 32px;
  }

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

  .instagram-lead {
    margin: 20px 0 34px;
    font-size: 12px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }

  .fixed-reserve-button {
    right: 14px;
    bottom: 16px;
    width: 68px;
    height: 68px;
    font-size: 11px;
  }

  .site-footer {
    padding: 62px 26px 48px;
  }
}

@media (max-width: 390px) {
  .kansaka-header-inner {
    padding-inline: 9px;
    gap: 6px;
  }

  .kansaka-nav a {
    font-size: 9.5px;
    letter-spacing: 0.02em;
  }

  .kansaka-nav ul {
    gap: 6px;
  }

  .kansaka-logo img {
    height: 27px;
  }

}

/* 横向きiPhoneやiPadを含むタッチ端末では fixed 背景を使わない */
@media (hover: none), (pointer: coarse) {
  .recipes .image,
  .fixed-image,
  .fixed-image__visual {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header::before,
  .header-logo-center,
  .scroll-cue i::after {
    animation: none !important;
  }

  .motion-ready .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
