:root{
  /* ===== Luxury Wafu Theme ===== */
  --bg-main: #0f0f10;            /* 墨黒 */
  --bg-sub: #171719;             /* 少し明るい黒 */
  --bg-gold: #1c170d;            /* 黒金 */

  --paper: rgba(20,20,22,.78);   /* 黒和紙 */
  --paper-strong: rgba(20,20,22,.88);

  --text-main: #f4efe6;          /* 生成り白 */
  --text-sub: rgba(244,239,230,.72);

  --gold: #c9a24d;               /* 金箔 */
  --gold-soft: rgba(201,162,77,.45);

  --line: rgba(255,255,255,.08);

  --radius: 18px;
  --shadow: 0 30px 80px rgba(0,0,0,.65);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--text-main);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.9;
  letter-spacing: .03em;

  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(201,162,77,.18), transparent 60%),
    radial-gradient(900px 500px at 20% 20%, rgba(201,162,77,.10), transparent 55%),
    linear-gradient(180deg, #0c0c0d, #151517 40%, #0f0f10 100%);
}

body.no-scroll{ overflow: hidden; }

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .9; }

.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.section{
  padding: 76px 0;
}

.section-head{
  margin-bottom: 22px;
}
.section-kicker{
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(17,17,17,.55);
  font-size: 12px;
}
.section-title,
.hero-title{
  color: var(--text-main);
  font-family: "Noto Serif JP", serif;
  letter-spacing: .12em;
}
.section-desc{
  margin: 0;
  color: rgba(17,17,17,.72);
  max-width: 60ch;
}

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
}

.card,
.hero-card{
  background: rgba(15,15,16,.72);   /* 黒和紙 */
  color: #f4efe6;
  border: 1px solid rgba(201,162,77,.25);
}
.card-pad{ padding: 22px; }
.mt-18{ margin-top: 18px; }

.card-title{
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .04em;
  font-size: 18px;
}
.card-text{ margin: 0 0 14px; color: rgba(17,17,17,.74); }

.card-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.card-title2{
  margin: 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .04em;
  font-size: 18px;
}
.card-sub{
  margin: 0;
  color: rgba(17,17,17,.55);
  font-size: 12px;
}

.hint{
  margin: 10px 0 0;
  color: rgba(17,17,17,.55);
  font-size: 12px;
}

.chip-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(176,137,87,.35);
  background: rgba(176,137,87,.10);
  font-size: 12px;
  font-weight: 700;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246,241,231,.65);
  border-bottom: 1px solid rgba(17,17,17,.06);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled{
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  background: #fff;
}
.brand-text{ min-width: 0; }
.brand-name{
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub{
  font-size: 12px;
  color: rgba(17,17,17,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav{
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a{
  color: var(--text-sub);
}

.nav-toggle{
  display: none;
  border: 1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
}

.mobile-nav{
  display: none;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(17,17,17,.06);
}
.mobile-nav a{
  display: block;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: .02em;
}
.mobile-nav.open{ display: block; }

@media (max-width: 900px){
  .nav{ display: none; }
  .nav-toggle{ display: inline-flex; align-items: center; }
  .mobile-nav{ display: none; }
}

/* ===== Hero ===== */
.hero{
  padding-top: calc(var(--header-h) + 12px);
}

.hero-bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}

/* 背景：同じ画像を cover で敷いてぼかす（余白埋め） */
.hero-bg::before{
  content:"";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(1400px 900px at 50% 40%, rgba(232,221,200,.22), rgba(15,15,15,.34)),
    url("kuusui3.jpeg") center / cover no-repeat;
  filter: blur(34px) saturate(1.08) contrast(1.06);
  transform: scale(1.22);
  opacity: 1;
}

/* 前面：画像を contain で“全体表示”（切れない） */
.hero-bg::after{
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,.38), rgba(232,221,200,.94)),
    url("kuusui3.jpeg") center / contain no-repeat;
  animation: breathe2 14s ease-in-out infinite;
}

@keyframes breathe2{
  0%,100%{ filter: saturate(1.02) contrast(1.03) brightness(1.00); }
  50%{    filter: saturate(1.06) contrast(1.03) brightness(1.02); }
}
.hero-inner{
  display: grid;
  grid-template-columns: 1fr min(520px, 44%);
  gap: 24px;
  align-items: end;          /* 下寄せ */
}
.hero-card{
  max-width: none;           /* 既存の720pxを解除 */
  width: 100%;
  padding: 22px;
  border-radius: 20px;

  /* 料亭っぽい和紙 */
  background: rgba(239,228,207,.78);
  border: 1px solid rgba(20,20,20,.12);
  box-shadow: 0 18px 54px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);

  /* ちょい右下へ（背景をより見せる） */
  transform: translateY(10px);
}
.hero-eyebrow{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 12px;
  color: rgba(17,17,17,.6);
}
.hero-title{
  color: #f4efe6;
}
@media (min-width: 901px){
  .hero-lead{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-meta{
  grid-template-columns: 1fr;
}
@media (max-width: 900px){
  .hero{ padding-top: 64px; }
  .hero-meta{ grid-template-columns: 1fr; }
}
.meta-item{
  background: rgba(176,137,87,.10);
  border: 1px solid rgba(176,137,87,.25);
  border-radius: 16px;
  padding: 12px;
}
.meta-k{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(17,17,17,.55);
}
.meta-v{
  margin-top: 4px;
  font-weight: 800;
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 13px;
  border: 1px solid rgba(17,17,17,.12);
  cursor: pointer;
  user-select: none;
}
.btn.primary{
  background: linear-gradient(135deg, #0f0f10, #1a1a1c);
  color: var(--gold);
  border: 1px solid rgba(201,162,77,.4);
  box-shadow: 0 0 0 1px rgba(201,162,77,.15),
              0 10px 30px rgba(0,0,0,.6);
}

.btn.primary:hover{
  filter: brightness(1.1);
}
.btn.ghost{
  background: rgba(255,255,255,.75);
}
.btn-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* ===== Photo grid ===== */
.photo-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.photo{
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.photo img,
.menu-shot img{
  filter: contrast(1.05) saturate(0.95);
}

.photo:hover img,
.menu-shot:hover img{
  filter: contrast(1.12) saturate(1.05);
}

/* ===== Menu grid ===== */
.menu-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.menu-grid.two{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
  .menu-grid.two{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .menu-grid{ grid-template-columns: 1fr; }
}
.menu-shot{
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  position: relative;
}
.menu-shot img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .25s ease;
}
.menu-shot:hover img{ transform: scale(1.04); }
@media (max-width: 520px){
  .menu-shot img{ height: 360px; }
}

/* ===== DL ===== */
.dl{ margin: 0; }
.dl-row{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,.06);
}
.dl-row:last-child{ border-bottom: 0; }
.dl dt{
  font-weight: 900;
  color: rgba(17,17,17,.65);
}
.dl dd{
  margin: 0;
  color: rgba(17,17,17,.78);
}

/* ===== Map ===== */
.map{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}
.map iframe{
  width: 100%;
  height: 320px;
  border: 0;
}

/* ===== Reserve ===== */
.reserve{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
@media (max-width: 900px){
  .reserve{ grid-template-columns: 1fr; }
}
.reserve-note{
  background: rgba(176,137,87,.10);
  border: 1px solid rgba(176,137,87,.25);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
}
.note-title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(17,17,17,.55);
}
.note-body{
  margin-top: 6px;
  font-weight: 900;
}

/* ===== Footer ===== */
.footer{
  padding: 26px 0 40px;
  border-top: 1px solid rgba(17,17,17,.06);
  background: rgba(246,241,231,.6);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-left{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  background: #fff;
}
.footer-name{
  font-weight: 900;
}
.footer-sub{
  color: rgba(17,17,17,.55);
  font-size: 12px;
}
.footer-right{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
  color: rgba(17,17,17,.75);
}

/* ===== Floating button ===== */
.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: var(--shadow2);
}
.fab span{
  color: var(--accent);
  margin-left: 6px;
}

/* ===== Modal ===== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.modal.open{ display: block; }
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}
.modal-content{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}
.modal-img{
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  background: #111;
}
.modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,17,17,.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
/* ==========================
   WAFU MOTION (上品和風)
   ========================== */

/* スクロールで出現 */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .7s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* カードは“浮かせすぎない”上品ホバー */
.card{
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(0,0,0,.10);
}

/* 見出しに墨の下線（筆っぽい） */
.section-title{
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-title::after{
  content:"";
  display:block;
  margin-top: 10px;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold),
    transparent
  );
  opacity: .85;
}
@keyframes brush{
  0%,100%{ transform: scaleX(.62); opacity: .72; }
  50%{ transform: scaleX(.86); opacity: 1; }
}

/* 生成り背景に “和紙っぽい” うっすい質感 */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.03), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(0,0,0,.02), transparent 45%),
    radial-gradient(circle at 45% 80%, rgba(0,0,0,.02), transparent 50%);
  mix-blend-mode: multiply;
  opacity: .45;
}



/* ボタン：金茶が“すっ…”と流れる */
.btn.primary{
  position: relative;
  overflow: hidden;
}
.btn.primary::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(120deg,
    rgba(176,137,87,0) 40%,
    rgba(176,137,87,.35) 50%,
    rgba(176,137,87,0) 60%);
  transform: translateX(-40%);
  animation: sheen 3.8s ease-in-out infinite;
}
@keyframes sheen{
  0%,65%{ transform: translateX(-45%); opacity: .0; }
  70%{ opacity: .8; }
  100%{ transform: translateX(45%); opacity: 0; }
}

/* 写真：ホバーで“ふわっ”＋ほんの少し明るく */
.photo img, .menu-shot img{
  transition: transform .28s ease, filter .28s ease;
}
.photo:hover img, .menu-shot:hover img{
  filter: brightness(1.04) contrast(1.02);
}

/* モーダルの出現も和風に（ぬるっと） */
.modal.open .modal-img{
  animation: pop .22s ease-out;
}
@keyframes pop{
  from{ transform: translateY(10px) scale(.98); opacity: .0; }
  to{ transform: translateY(0) scale(1); opacity: 1; }
}

/* 右下の予約ボタン：さりげなく“鼓動” */
.fab{
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-2px); }
}

/* 動きを減らす設定の人には止める */
@media (prefers-reduced-motion: reduce){
  .reveal, .hero-bg, .fab, .btn.primary::after, .section-title::after{
    animation: none !important;
    transition: none !important;
  }
}
/* ヘッダーを白から“生成り＋墨”に */
.site-header{
  background: rgba(10,10,11,.88);
  border-bottom: 1px solid rgba(201,162,77,.18);
  backdrop-filter: blur(10px);
}

/* CTA（予約）を墨×金茶にして和の高級感 */
.nav-cta{
  background: var(--ink);
  color: #fff !important;
  box-shadow: var(--shadow2);
}

/* primaryボタン：墨ベース＋金茶ライン */
.btn.primary{
  background: var(--ink);
  border-color: rgba(176,137,87,.35);
}
.btn.ghost{
  background: rgba(251,246,238,.65); /* 明るい和紙 */
  border-color: rgba(26,26,26,.14);
}

/* チップも和色に */
.chip{
  border: 1px solid rgba(176,137,87,.35);
  background: rgba(176,137,87,.10);
}

/* 見出し下線を少し“渋く” */
.section-title::after{
  opacity: .85;
  filter: blur(.25px);
}
/* ヘッダーも白すぎない生成りに */
.site-header{
  background: rgba(232,221,200,.72);
  border-bottom: 1px solid var(--line);
}

/* CTAは墨＋金茶 */
.nav-cta{
  background: var(--ink);
  color: #fff !important;
  box-shadow: var(--shadow2);
}

/* 予約ボタンも料亭トーン */
.fab{
  background: var(--ink);
}
.fab span{
  color: var(--gold);
}

/* 見出し下線を“渋金”に */
.section-title::after{
  opacity: .9;
  background: linear-gradient(90deg,
    rgba(176,137,87,0),
    rgba(176,137,87,.34),
    rgba(176,137,87,.18),
    rgba(176,137,87,0)
  );
}
@media (max-width: 900px){
  .hero{ min-height: 68vh; padding-top: 64px; }
  .hero-inner{
    grid-template-columns: 1fr;
    align-items: center;
  }
  .hero-card{
    transform: none;
    background: rgba(239,228,207,.86);
  }
}
@media (min-width: 901px){
  .hero-actions .ghost{ display:none; }
}
@media (min-width: 901px){
  .meta-item{ padding: 10px; }
  .meta-v{ font-size: 13px; }
}
.hero{
  padding-top: 84px;   /* ヘッダー分 */
}
/* ヒーロー：背景を見せたいので余白多め */
.hero{
  min-height: 84vh;
  padding-top: 96px; /* ヘッダー分 */
  padding-bottom: 48px;
}

/* PCではカードを“右下”に寄せる */
.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;     /* 右寄せ */
  align-items: end;       /* 下寄せ */
}

/* カードを小さく・薄く・上品に */
.hero-card{
  width: min(420px, 44vw);   /* 小さく */
  max-width: 420px;
  padding: 18px;
  border-radius: 18px;

  background: rgba(239,228,207,.64);  /* もっと透ける */
  border: 1px solid rgba(20,20,20,.10);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);

  transform: translate(-18px, -18px); /* 少し内側に */
}

/* タイトルも少し抑える */
.hero-title{
  font-size: clamp(20px, 2.0vw, 30px);
  line-height: 1.25;
  margin-bottom: 8px;
}

/* 文章は短く（邪魔にならない） */
.hero-lead,
.hero-eyebrow{
  color: rgba(244,239,230,.75);
}

/* メタ情報（営業時間/定休日/TEL）を“縦3段”→“1段だけ”に畳む */
.hero-meta{
  display: none; /* まず消す（写真を見せる優先） */
}

/* スマホは下に積む（読みやすく） */
@media (max-width: 900px){
  .hero{
    min-height: 70vh;
    padding-top: 78px;
  }
  .hero-inner{
    justify-items: center;
    align-items: end;
  }
  .hero-card{
    width: min(560px, 92vw);
    transform: none;
    background: rgba(239,228,207,.78);
  }
}
/* ===== ABOUT(雰囲気) を締める ===== */

/* まずカード全体の余白を少し減らす */
#about .card{
  padding: 18px;
}

/* 見出しを少し小さく、間を詰める */
#about .card-title{
  font-size: 16px;
  margin-bottom: 8px;
}

/* 本文の余白と行間を締めて“でかさ”を消す */
#about .card-text{
  margin: 0 0 10px;
  line-height: 1.75;
  color: rgba(20,20,20,.68);
}

/* チップが縦に伸びるのを抑える */
#about .chip-row{
  gap: 6px;
}
#about .chip{
  padding: 6px 9px;
  font-size: 11px;
}

/* ABOUTの2カラムの高さを揃えたい場合（片方だけデカい感を減らす） */
@media (min-width: 901px){
  #about .grid-2{
    align-items: start;
  }
}
/* ===== WASHOKU VIBE（和紙・墨・金茶） ===== */

/* 和紙の粒感（うっすら） */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.04) 1px, transparent 2px),
    radial-gradient(circle at 70% 20%, rgba(0,0,0,.03) 1px, transparent 2px),
    radial-gradient(circle at 45% 80%, rgba(0,0,0,.03) 1px, transparent 2px);
  background-size: 220px 220px, 260px 260px, 240px 240px;
  mix-blend-mode: multiply;
  opacity: .18;
}

/* 見出し：墨のにじみっぽい影 */
.section-title, .hero-title{
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

/* 区切り線：細い“箔” */
.section{
  position: relative;
}
.section::before{
  content:"";
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: min(520px, 78vw);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(176,137,87,0),
    rgba(176,137,87,.30),
    rgba(176,137,87,0)
  );
  opacity: .65;
}
/* ===== 筆の一筆アニメ（セクション見出し） ===== */
.brush{
  position: relative;
}
.brush::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width: 180px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(176,137,87,0),
    rgba(176,137,87,.40),
    rgba(176,137,87,.12),
    rgba(176,137,87,0)
  );
  filter: blur(.3px);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

/* revealで出現したタイミングで“一筆” */
.brush.is-in::after{
  animation: brushline .9s ease-out forwards;
}
@keyframes brushline{
  0%{ transform: scaleX(0); opacity: 0; }
  30%{ opacity: 1; }
  100%{ transform: scaleX(1); opacity: .85; }
}
/* ===== 墨だまりホバー（上品） ===== */
.card{
  position: relative;
  overflow: hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.10), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,.06), transparent 58%);
  transform: scale(.92);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.card:hover::after{
  opacity: .25;
  transform: scale(1);
}
/* ===== 提灯っぽい光 ===== */
.hero-bg::before{
  /* 既存のbeforeがあるなら「下の2行だけ」追加でもOK */
  box-shadow: inset 0 -140px 180px rgba(232,221,200,.55);
}
.hero-bg::after{
  /* ほんのり暖色のゆらぎ */
  animation: breathe2 14s ease-in-out infinite, lantern 6.2s ease-in-out infinite;
}

@keyframes lantern{
  0%,100%{ opacity: 1; }
  50%{ opacity: .94; }
}
/* ===== 提灯っぽい光 ===== */
.hero-bg::before{
  /* 既存のbeforeがあるなら「下の2行だけ」追加でもOK */
  box-shadow: inset 0 -140px 180px rgba(232,221,200,.55);
}
.hero-bg::after{
  /* ほんのり暖色のゆらぎ */
  animation: breathe2 14s ease-in-out infinite, lantern 6.2s ease-in-out infinite;
}

@keyframes lantern{
  0%,100%{ opacity: 1; }
  50%{ opacity: .94; }
}
.card-title2{
  position: relative;
  padding-left: 12px;
}
.card-title2::before{
  content:"";
  position:absolute;
  left:0;
  top: 6px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: rgba(176,137,87,.65);
}
/* ===== Momiji (落ち葉) overlay ===== */
.hero{ position: relative; overflow: hidden; }

#momiji{
  position: absolute;
  inset: 0;
  z-index: 1;              /* hero-bgより上、hero-cardより下にする */
  pointer-events: none;
  opacity: .55;            /* 強いなら .35 に */
}

/* hero-cardを最前面に */
.hero-inner{ position: relative; z-index: 2; }

/* 動きを減らす設定の人には出さない */
@media (prefers-reduced-motion: reduce){
  #momiji{ display:none !important; }
}
/* ===== HEADER 最終決定版 ===== */
.site-header{
  background: rgba(12,12,13,.92);   /* 墨黒 */
  border-bottom: 1px solid rgba(201,162,77,.25);
  backdrop-filter: blur(10px);
}

.brand-name,
.brand-sub,
.nav a{
  color: #f4efe6;   /* 文字を読める色に */
}
/* =========================
   FINAL: 読める・高級（黒×金）
   ※必ず style.css の一番最後に置く
   ========================= */

/* 全体の文字色を生成り白に寄せる */
body{
  color: #f4efe6;
}

/* セクションの見出し周り（今ここが黒文字で死んでる） */
.section-kicker{
  color: rgba(244,239,230,.70) !important;
}
.section-desc{
  color: rgba(244,239,230,.78) !important;
}
.card-text,
.hint,
.card-sub,
.footer-sub{
  color: rgba(244,239,230,.72) !important;
}

/* カード内の文字も白系に統一（dl も含む） */
.card,
.hero-card{
  color: #f4efe6 !important;
}
.dl dt{ color: rgba(244,239,230,.70) !important; }
.dl dd{ color: rgba(244,239,230,.82) !important; }

/* リンクは金茶で視認性UP */
a{
  color: rgba(244,239,230,.92);
}
a:hover{
  color: #c9a24d;
}

/* ヘッダー：黒背景＋白文字固定 */
.site-header{
  background: rgba(12,12,13,.92) !important;
  border-bottom: 1px solid rgba(201,162,77,.25) !important;
}
.brand-name,
.brand-sub,
.nav a{
  color: rgba(244,239,230,.92) !important;
}
.brand-sub{ opacity: .85; }

/* ヒーロー：背景が明るいので、上に暗幕を足して文字を確実に読む */
.hero-bg::after{
  background:
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.30)),
    url("kuusui3.jpeg") center / contain no-repeat !important;
}

/* ヒーローカード：黒和紙に固定（今ベージュに上書きされてるのを潰す） */
.hero-card{
  background: rgba(16,16,18,.72) !important;
  border: 1px solid rgba(201,162,77,.26) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.55) !important;
}
.hero-eyebrow{ color: rgba(244,239,230,.70) !important; }
.hero-lead{ color: rgba(244,239,230,.82) !important; }
/* =========================
   FINAL LUX: 読める＆高級（黒×金）
   ※style.css の一番最後に置く
   ========================= */

/* 全体ベース：文字を明るく */
body{ color: #f4efe6 !important; }

/* セクション見出し周り（ここが暗くて読めない） */
.section-kicker{
  color: rgba(244,239,230,.62) !important;
}
.section-title{
  color: rgba(244,239,230,.98) !important;
}
.section-desc{
  color: rgba(244,239,230,.78) !important;
}

/* カード：地の黒と同化してダサい → “黒和紙＋金の縁＋立体感” */
.card,
.hero-card{
  background: linear-gradient(180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.025)
  ) !important;
  border: 1px solid rgba(201,162,77,.22) !important;
  box-shadow: 0 22px 70px rgba(0,0,0,.58) !important;
  backdrop-filter: blur(12px) !important;
  color: rgba(244,239,230,.92) !important;
}

/* カード内テキスト（全部これで“読める”に固定） */
.card-title,
.card-title2{
  color: rgba(244,239,230,.98) !important;
}
.card-text,
.hint{
  color: rgba(244,239,230,.76) !important;
}

/* INFOの基本情報（dt/dd）が暗くて死んでる → ここが最重要 */
.dl dt{
  color: rgba(244,239,230,.70) !important;
  font-weight: 800 !important;
}
.dl dd{
  color: rgba(244,239,230,.92) !important;
}

/* Googleマップ枠も“高級フレーム”に */
.map{
  border: 1px solid rgba(201,162,77,.22) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.55) !important;
}

/* ボタン：Instagramの灰色がダサい → 金×黒で統一 */
.btn.primary,
.nav-cta,
.fab{
  background: linear-gradient(135deg, rgba(201,162,77,.95), rgba(150,112,38,.95)) !important;
  color: #0f0f10 !important;
  border: 1px solid rgba(201,162,77,.55) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.55) !important;
}
.btn.primary:hover,
.nav-cta:hover{
  filter: brightness(1.06) !important;
}

/* サブボタン（ghost/Instagram系）：金のアウトラインに */
.btn.ghost{
  background: rgba(0,0,0,.18) !important;
  color: rgba(201,162,77,.95) !important;
  border: 1px solid rgba(201,162,77,.45) !important;
}
.btn.ghost:hover{
  background: rgba(201,162,77,.10) !important;
}

/* リンク */
a{ color: rgba(244,239,230,.92) !important; }
a:hover{ color: rgba(201,162,77,.95) !important; }

/* 余白の“黒いムラ”が気になる時用（上品に均す） */
.section{
  background: transparent !important;
}
/* ===== Balance Fix: 全体を中央寄せ＆2カラムを均等に ===== */

/* セクションの中身を「最大幅」で中央寄せ */
.container{
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

/* セクション自体の左右余白をちょい増やして“高級感” */
.section{
  padding-left: 24px;
  padding-right: 24px;
}

/* ABOUT の2カラムを“均等に伸びる”グリッドに */
#about .grid-2{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* カードをちゃんと横に伸ばす（右だけ大きい問題を潰す） */
#about .grid-2 > .card{
  width: 100%;
}

/* 写真グリッドがカード内で変に寄らないように */
.photo-grid{
  width: 100%;
}

/* 上の文章（導入文）が間延びするのを防ぐ */
#about .section-desc,
#about .section-head{
  max-width: 760px;
}

/* 大画面のときは、少しだけ余白を攻めて“間延び”を防ぐ */
@media (min-width: 1300px){
  .container{ max-width: 1160px; }
}

/* スマホは自然に1カラム */
@media (max-width: 900px){
  #about .grid-2{
    grid-template-columns: 1fr;
  }
  .section{
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* ===== 雰囲気カードの余白に画像を入れる ===== */
#about .grid-2 > .card:first-child{
  display: flex;
  flex-direction: column;
}

#about .grid-2 > .card:first-child .chip-row{
  margin-bottom: 12px;
}

/* 余白部分＝画像エリア */
.ambience-media{
  flex: 1;
  min-height: 220px;               /* 高さは好みで調整OK */
  border-radius: 14px;
  border: 1px solid rgba(201,162,77,.18);
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.10)),
    url("gazou4.jpeg") center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  opacity: .95;
}
/* ===== 写真カードを2枚だけに最適化 ===== */
.photo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-grid .photo{
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;      /* 2枚が揃って綺麗 */
}

.photo-grid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== ABOUT: 左右のカード高さを揃える ===== */
#about .grid-2{
  align-items: stretch;
}

/* 左右カードを同じ高さにするため、カードを縦レイアウトに */
#about .grid-2 > .card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ===== 左：雰囲気の画像を“固定サイズ”にして伸びすぎ防止 ===== */
.ambience-media{
  flex: 0 0 auto;         /* 余白を食わない */
  height: 220px;          /* ← ここが「前みたいなサイズ感」になる値（好みで調整） */
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
}

/* 背景画像ならこれ（div背景のままの人向け） */
.ambience-media{
  background-size: cover;
  background-position: center;
}

/* もし img を入れる方式に変えてるならこれも効く */
.ambience-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== 右：写真カードの中身が少なくても高さを合わせる ===== */
#about .grid-2 > .card:last-child{
  min-height: 360px;   /* 左と釣り合う最低高さ。必要なら 320〜420で調整 */
}
.photo-grid .photo{
  aspect-ratio: 16 / 10;   /* 上品な横長 */
}
/* =========================
   ABOUT 最終Fix（左右同じ高さ + 左画像は固定）
   ========================= */

/* 左右カードを同じ高さにする（この行が効けば100%揃う） */
#about .grid-2{
  align-items: stretch !important;
}

/* 2枚とも“縦フレックス”にして、余白の扱いを安定させる */
#about .grid-2 > .card{
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 360px; /* ここで左右の基準高さを決める（340〜420で好み調整） */
}

/* 左：雰囲気カードの画像は「固定サイズ」で止める（でかくならない） */
#about .ambience-media{
  flex: 0 0 auto !important;   /* ← ここが最重要。絶対伸びない */
  height: 200px !important;    /* “余白があった時のサイズ感”にしたい高さ（180〜240で調整） */
  margin-top: 12px !important;
  border-radius: 14px !important;
  overflow: hidden !important;

  /* 背景divのままでも綺麗に見える */
  background-size: cover !important;
  background-position: center !important;
}

/* 右：写真カードは内容が少なくても“下まで伸びたように”見せる */
#about .grid-2 > .card:nth-child(2) .photo-grid{
  flex: 1 1 auto !important;      /* 写真エリアを伸ばして高さを稼ぐ */
  align-content: start !important; /* 上から詰める */
}

/* 右：2枚を同じ比率で気持ちよく揃える（横長すぎるなら 4/3 に戻してOK） */
#about .photo-grid .photo{
  aspect-ratio: 4 / 3 !important;  /* 16/10が微妙ならここが原因 */
}

/* 右：下の注釈（※タップで…）は一番下に落とすとバランス良い */
#about .grid-2 > .card:nth-child(2) .hint{
  margin-top: auto !important;
}
/* =========================
   ABOUT（雰囲気×写真）最終FIX
   左右の高さを揃える + 左画像がデカくならない + 右がスカスカにならない
   ========================= */

#about .grid-2{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

/* 左右カードを同じ“箱”にする */
#about .grid-2 > .card{
  display: flex !important;
  flex-direction: column !important;
  min-height: 420px !important;   /* ←左右の基準高さ（380〜480で好み調整） */
  height: 100% !important;
}

/* 左：雰囲気カードの画像（ご飯と酒）を「固定サイズ」で止める */
#about .ambience-media{
  flex: 0 0 auto !important;      /* ← これが最重要。伸びない */
  height: 220px !important;       /* ← “さっきの余白がある時のサイズ感” */
  margin-top: 12px !important;
  border-radius: 14px !important;
  overflow: hidden !important;

  /* 背景に“ご飯と酒”系の画像を表示（今は gazou4.jpeg 想定） */
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.10)),
    url("gazou4.jpeg") center / cover no-repeat !important;

  border: 1px solid rgba(201,162,77,.22) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.45) !important;
}

/* 右：写真は2枚だけ。高さを伸ばして左と揃える */
#about .grid-2 > .card:nth-child(2) .photo-grid{
  flex: 1 1 auto !important;      /* 右の写真エリアを“伸ばして”高さを稼ぐ */
  height: 100% !important;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 1fr !important;  /* 1行をカード高さに追従させる */
  gap: 12px !important;
  align-content: stretch !important;
}

#about .grid-2 > .card:nth-child(2) .photo{
  height: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

#about .grid-2 > .card:nth-child(2) .photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* 注釈は一番下に落とす（バランス良くなる） */
#about .grid-2 > .card:nth-child(2) .hint{
  margin-top: auto !important;
}
/* =========================
   ABOUT（雰囲気 / 写真）最終FIX
   ========================= */

#about .grid-2{
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

#about .grid-2 > .card{
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 420px !important; /* 左右の箱を揃える基準 */
}

/* 左：雰囲気の画像を“固定サイズ”にする（伸びすぎ防止） */
#about .ambience-media{
  flex: 0 0 auto !important;
  height: 220px !important;      /* ←ここが「余白ある時のサイズ感」 */
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;

  background-size: cover !important;
  background-position: center !important;
}

/* 右：写真2枚も“同じ固定サイズ”にする（巨大ズーム防止） */
#about .photo-grid{
  margin-top: 12px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  height: 220px !important;      /* ←左と揃える */
}

#about .photo{
  height: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

#about .photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* 注釈は一番下に落としてバランス取る */
#about .hint{
  margin-top: auto !important;
  padding-top: 10px !important;
}
/* =========================
   ABOUT（雰囲気 / 写真）最終FIX
   ========================= */

#about .grid-2{
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

#about .grid-2 > .card{
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 420px !important; /* 左右の箱を揃える基準 */
}

/* 左：雰囲気の画像を“固定サイズ”にする（伸びすぎ防止） */
#about .ambience-media{
  flex: 0 0 auto !important;
  height: 220px !important;      /* ←ここが「余白ある時のサイズ感」 */
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;

  background-size: cover !important;
  background-position: center !important;
}

/* 右：写真2枚も“同じ固定サイズ”にする（巨大ズーム防止） */
#about .photo-grid{
  margin-top: 12px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  height: 220px !important;      /* ←左と揃える */
}

#about .photo{
  height: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

#about .photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* 注釈は一番下に落としてバランス取る */
#about .hint{
  margin-top: auto !important;
  padding-top: 10px !important;
}
/* ABOUTの左右カードを同じ高さにする */
#about .grid-2{
  align-items: stretch;
}

/* 左右カード：縦並びにして高さ揃え */
#about .grid-2 > .card{
  display: flex;
  flex-direction: column;
  min-height: 420px; /* “この時のボックスサイズ”に近い基準。好みで 380-480 */
}

/* 左：余白に入れる1枚の高さ（右の写真と同じ高さにする） */
#about .ambience-media{
  height: 240px;           /* ←ここが見た目のキモ */
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(201,162,77,.22);
}

/* 右：写真2枚を同じ高さに固定 */
#about .photo-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#about .photo img{
  width: 100%;
  height: 240px;           /* ←左の ambience-media と同じ高さ */
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* 注釈を下に寄せる（見た目安定） */
#about .hint{
  margin-top: auto;
  padding-top: 10px;
}
/* =========================
   ABOUT 最終FIX（写真が重なる問題を強制解決）
   ========================= */

/* 2カラムのカードは同じ高さに */
#about .grid-2{
  align-items: stretch !important;
}

/* カードを縦フレックスにして、下に伸びても崩れない */
#about .grid-2 > .card{
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* 右：写真グリッドを完全に作り直す（重なり防止） */
#about .photo-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 12px !important;
}

/* button.photo を“箱”として固定（これが超重要） */
#about .photo{
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;

  border-radius: 16px !important;
  overflow: hidden !important;

  /* ここで高さを決める＝絶対重ならない */
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
}

/* 画像を箱いっぱいに“必ず”収める */
#about .photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  transform: none !important;
}

/* 左：雰囲気の画像（背景div）もサイズ固定で統一感 */
#about .ambience-media{
  width: 100% !important;
  height: 260px !important;      /* ←好みで 220〜320 */
  margin-top: 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
}

/* 注釈は一番下へ */
#about .hint{
  margin-top: auto !important;
  padding-top: 10px !important;
}
/* =========================
   ABOUT（雰囲気 × 写真）最終FIX
   - 左右カードの高さを揃える
   - 左は画像1枚を“余白の高さ分”で表示
   - 右は写真2枚だけ表示（3枚目以降は非表示）
   ========================= */

#about .grid-2{
  align-items: stretch; /* 左右の高さを揃える */
}

#about .grid-2 > .card{
  display: flex;
  flex-direction: column;
  min-height: 520px; /* ここで箱の高さ基準を作る（好みで 480〜600） */
}

#about .card-pad{
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 左カード：チップの下の“余白”を画像で埋める */
#about .ambience-media{
  margin-top: 14px;
  flex: 1;                 /* 余白を全部ここに渡す */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,162,77,.18);
}

#about .ambience-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 余白を綺麗に埋める（見切れは上品に） */
  object-position: center;
  display: block;
  filter: contrast(1.05) saturate(.95);
}

/* 右カード：写真2枚だけにする（2カラム） */
#about .photo-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* 写真の箱を揃える（縦横比固定） */
#about .photo-grid .photo{
  aspect-ratio: 4 / 3;      /* 好みで 1/1 や 3/2 でもOK */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,162,77,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

#about .photo-grid .photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右は2枚だけ表示（3枚目以降は消す） */
#about .photo-grid .photo:nth-child(n+3){
  display: none;
}

/* スマホは縦並び（自然に） */
@media (max-width: 900px){
  #about .grid-2 > .card{
    min-height: auto;
  }
  #about .ambience-media{
    min-height: 240px;
  }
}
/* =========================
   ABOUT: 右だけ直す（色・テーマは触らない）
   ========================= */

/* 左右カードの高さを揃える（色に影響なし） */
#about .grid-2 > .card{
  min-height: 760px !important;
}

/* 右：写真を縦1列にする（細い問題の根本解決） */
#about .photo-grid{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin-top: 16px !important;
}

/* 右：写真枠を大きめに */
#about .photo{
  height: 340px !important;  /* 好みで 300〜420 */
  overflow: hidden !important;
}

/* 右：全体を映す（切らない） */
#about .photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

/* 右は2枚だけ */
#about .photo-grid .photo:nth-child(n+3){
  display: none !important;
}


/* =========================
   PATCH: 角丸/余白/読みやすさ + 予約ボタン黄色除去 + ABOUTレイアウト安定
   （既存テーマはそのまま、上書きだけ）
   ========================= */

/* 予約(CTA)の黄色を消して黒×金に */
.nav-cta{
  background: rgba(15,15,16,.72) !important;
  color: #f4efe6 !important;
  border: 1px solid rgba(201,162,77,.45) !important;
  box-shadow: none !important;
}
.nav-cta:hover{
  background: rgba(25,25,27,.82) !important;
  border-color: rgba(201,162,77,.65) !important;
}

/* カード共通：角丸/余白/文字の視認性を少し上げる */
.card,
.hero-card{
  border-radius: 18px !important;
}
.card-pad{ padding: 26px !important; }
.card-title{ margin-bottom: 12px !important; }
.card-text{
  color: rgba(244,239,230,.80) !important;
  line-height: 1.9 !important;
}

/* セクション説明など暗すぎる文字を明るく */
.section-desc{
  color: rgba(244,239,230,.78) !important;
}

/* ABOUT：以前入った min-height:760 が原因で左が真っ黒余白になるので無効化 */
#about .grid-2 > .card{
  min-height: unset !important;
  height: auto !important;
}

/* ABOUT 左：画像エリアは「余白なく気持ちよく」見えるように高さを確保 */
#about .ambience-media{
  min-height: 340px !important;
  border-radius: 16px !important;
}

/* ABOUT 右：細くならない（縦1列）＋全部映す（contain） */
#about .photo-grid{
  grid-template-columns: 1fr !important; /* 2列をやめる */
  gap: 16px !important;
}
#about .photo-grid .photo{
  aspect-ratio: auto !important;
  height: 320px !important;          /* ここで見た目を安定させる */
  border-radius: 16px !important;
}
#about .photo-grid img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;     /* 切らない */
  background: rgba(0,0,0,.25) !important; /* 余白が出ても自然に */
}

/* 営業時間/定休日/TEL の “見出しっぽい薄い文字” を読みやすく */
.meta dt,
.meta .label,
.kv small{
  color: rgba(244,239,230,.72) !important;
}
.meta dd,
.meta .value{
  color: rgba(244,239,230,.92) !important;
}

/* 枠と文字の余白（詰まり）を全体的に少しだけ解消 */
.card,
.hero-card{
  padding-top: 28px;
  padding-bottom: 28px;
}
/* === Spacing & readability patch (reserve + info) === */

/* 予約ボタンの“黄色”を消す（黒×金に） */


/* カードの角丸を統一して“丸み”を戻す */
.card,
.hero-card{
  border-radius: var(--radius) !important;
}

/* 店舗情報（INFO）のカード内余白を増やす */
#info .grid-2 > .card{
  padding: 28px 30px !important;
}

/* DL（住所/営業時間…）を読みやすく：余白・行間・区切り線 */
#info .dl-row{
  grid-template-columns: 110px 1fr !important;
  gap: 14px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(201,162,77,.18) !important;
}
#info .dl-row dt{
  color: rgba(244,239,230,.72) !important;
  letter-spacing: .02em;
}
#info .dl-row dd{
  margin: 0 !important;
  color: rgba(244,239,230,.92) !important;
  line-height: 1.85;
}
#info .dl-row a{
  color: rgba(244,239,230,.95) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,77,.35);
}
#info .dl-row a:hover{
  border-bottom-color: rgba(201,162,77,.7);
}

/* 予約（RESERVE）の大枠カードに余白を付ける */
#reserve .card.reserve{
  padding: 28px 30px !important;
}

/* 予約の右側メモ（営業時間/定休日/住所）を“薄くて見づらい”→読みやすく */
#reserve .reserve-note{
  background: rgba(15,15,16,.72) !important; /* 黄色をやめる */
  border: 1px solid rgba(201,162,77,.22) !important;
  border-radius: 16px !important;
  padding: 16px 16px !important;
}
#reserve .note-title{
  color: rgba(244,239,230,.68) !important;
  font-weight: 800 !important;
}
#reserve .note-body{
  color: rgba(244,239,230,.92) !important;
  line-height: 1.7;
}

/* モバイル：DLのラベル幅を縮める */
@media (max-width: 520px){
  #info .dl-row{ grid-template-columns: 88px 1fr !important; }
  #info .grid-2 > .card{ padding: 22px 20px !important; }
  #reserve .card.reserve{ padding: 22px 20px !important; }
}
/* ヘッダー右上「予約」だけ金枠を消す（強制上書き） */
.site-header .nav a.nav-cta{
  border-color: transparent !important;
  outline: none !important;
}

/* hover/focusでも枠が復活しないように */
.site-header .nav a.nav-cta:hover,
.site-header .nav a.nav-cta:focus,
.site-header .nav a.nav-cta:focus-visible{
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
/* =========================
   iPhone対策：ABOUTの縦長防止
   ========================= */
@media (max-width: 768px){

  /* 雰囲気・写真カードの高さ固定を解除 */
  #about .grid-2 > .card{
    min-height: auto !important;
    height: auto !important;
  }

  /* 左：雰囲気の画像を自然な比率に */
  #about .ambience-media{
    height: auto !important;
    aspect-ratio: 4 / 3;   /* 横長で上品 */
  }

  /* 右：写真も自然な比率に */
  #about .photo-grid .photo{
    height: auto !important;
    aspect-ratio: 4 / 3;
  }
}
/* =========================
   ABOUT：iPhone表示 修正
   ========================= */
@media (max-width: 768px){

  /* 雰囲気＋写真 → 縦並び */
  #about .grid-2{
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* 各カードを画面幅いっぱい使う */
  #about .card{
    width: 100%;
    max-width: 100%;
  }
}
 /* =========================
   FIX: iPhoneでABOUTが細くなる問題
   ========================= */

/* 980px問題・iPad狭幅もまとめて潰すため少し広めに判定 */
@media (max-width: 1100px){

  /* 雰囲気 + 写真 を縦並び1カラムに固定 */
  #about .grid-2{
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  /* 写真カード内の2枚も縦に並べて、細切れ防止 */
  #about .photo-grid{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 写真は「全部見える」表示（切れない） */
  #about .photo img{
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* ついでにカードの横幅はみ出し防止 */
  #about .card{
    min-width: 0 !important;
  }
}
/* =========================
   FINAL FIX: iPhone / SP ABOUT 崩れ完全修正
   ========================= */
@media (max-width: 768px){

  /* ABOUT 全体を1カラムに固定 */
  #about .grid-2{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
/* =========================
   iPhoneだけ：ABOUT（雰囲気×写真）を縦長にしない最小パッチ
   ※style.css の一番最後に追記
   ========================= */
@media (max-width: 520px){

  /* iPhoneは左右カードを縦に積む（念のため強制） */
  #about .grid-2{
    grid-template-columns: 1fr !important;
  }

  /* “カードが縦に長すぎる”原因（min-height固定）をiPhoneだけ解除 */
  #about .grid-2 > .card{
    min-height: auto !important;
  }

  /* 右の写真が縦1列にされて縦長になるのを、iPhoneだけ2列に戻す */
  #about .photo-grid{
    grid-template-columns: 1fr 1fr !important;
    height: 220px !important;          /* 左の雰囲気画像と同じ高さに揃える */
  }

  #about .photo{
    height: 100% !important;
  }

  #about .photo img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;      /* 2枚が自然に埋まる */
  }
}

