/* =========================
  Base
========================= */
:root{
  --bg: #f5f0e6;
  --paper: #f7f2e9;
  --ink: #1d1b16;
  --muted: rgba(29, 27, 22, .70);
  --line: rgba(29, 27, 22, .12);
  --gold: #c58a2b;
  --gold-dark: #a36f20;

  --container: 1120px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 26px rgba(0,0,0,.10);

  --serif: "Noto Serif JP", serif;
  --display: "Playfair Display", serif;
  --script: "Great Vibes", "Playfair Display", serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.8;
  letter-spacing: .02em;
  background: var(--bg);
}

/* 横スクロール対策（重要） */
.page{
  overflow-x: clip; /* modern */
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container{
  width: min(var(--container), 100% - 40px);
  margin: 0 auto;
}

/* Paper-ish subtle texture */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(1000px 700px at 80% 30%, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(0,0,0,0));
  mix-blend-mode: soft-light;
  opacity: .9;
}

/* =========================
  Buttons
========================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:active{ transform: translateY(0); box-shadow: none; }

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

.btn--outline{
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn--outline:hover{
  background: rgba(197,138,43,.08);
}

.btn--reserve{
  background: var(--gold);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--display);
  letter-spacing: .05em;
}
.btn__sub{
  margin-left: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .10em;
  opacity: .95;
}
.btn__icon{
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}



/* =========================
   Header (reference style)
========================= */

/* 横スクロール対策（右上の丸ボタンで出やすい） */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 色・余白の基準 */
:root{
  --bg: #f3ede6;         /* ヘッダー背景の生成り */
  --ink: #6a4a2f;        /* 文字（ブラウン） */
  --gold: #c49336;       /* 予約ボタンの金 */
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* コンテナ（既存にあれば不要、合わせるだけ） */
.container{
  width: min(1100px, 100% - 48px);
  margin: 0 auto;
}

/* ヘッダー全体 */
.site-header{
  position: relative;
  background: var(--bg);
  padding: 18px 0;
  overflow-x: clip; /* 対応ブラウザではみ出しをクリップ */
}

/* 左ナビ｜中央ロゴ｜右ナビ の3分割 */
.header-inner{
  position: relative;
}
.header-inner--split{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding-right: 140px; /* 右上丸ボタンの分、被らないよう余白確保 */
}

/* ナビ */
.gnav{
  display: flex;
  gap: 44px;
  align-items: center;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.gnav a{
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  transition: opacity .2s ease;
}
.gnav a:hover{ opacity: .7; }

.gnav--left{ justify-content: flex-start; }
.gnav--right{ justify-content: flex-end; }

/* ロゴ（中央） */
.logo{
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.logo--center{
  justify-self: center;
  text-align: center;
}
.logo__en{
  display: inline-block;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;     /* 画像に寄せて大きめ */
  font-weight: 600;
  letter-spacing: .02em;
}

/* 右上の丸い予約ボタン */
.reserve-badge{
  position: absolute;
  right: 8px;
  top: -10px;                 /* 少し上に浮かせる */
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px 10px 16px;
  /* box-shadow: var(--shadow); */
  z-index: 5;
}
.reserve-badge__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.reserve-badge__icon svg{
  color: var(--white);
}
.reserve-badge__main{
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;         /* 14→12くらいが安定 */
  letter-spacing: .08em;   /* つめる（.12〜.14だと溢れやすい） */
  font-weight: 700;
}
.reserve-badge__sub{
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .95;
}


/* ロゴ：文字の後ろにアイコン（国旗） */
.logo--center{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px; /* 背面アイコンの余白 */
}

.logo__mark{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%); /* 少し上にするとバランス良い */
  width: 52px;
  height: 34px;

  background: url("assets/koki.gif") center / cover no-repeat;
  opacity: .18;        /* 透け感 */
  z-index: 0;

  pointer-events: none; /* クリック邪魔しない */
}

.logo__en{
  position: relative;
  z-index: 1;          /* 文字を前面へ */
}

/* ロゴ文字を“崩し字（カリグラフィ）”風に */
.logo__en{
  font-family: "Italianno", serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;

  /* ほんの少しだけ傾けると雰囲気UP */
  transform: translateY(1px) skewX(-4deg);

  /* 画面で綺麗に見えるように */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 980px){
  .logo__en{ font-size: 42px; }
}


/* 右ナビを少し左へ（PCのみ） */
@media (min-width: 981px){
  .gnav--right{
    padding-right: 40px;   /* ← これを増やすほど左へ寄る（例：30〜80px） */
  }
}


/* 予約ボタン：内側リング＋左右に切れ目（空き） */
.reserve-badge{
  position: absolute;        /* 既にabsoluteならOK */
  isolation: isolate;        /* 擬似要素の重なりを安定 */
}

/* 内側の白い〇線 */
.reserve-badge::before{
  content:"";
  position:absolute;
  inset: 3px;              /* 内側リングの位置（好みで 12〜16px） */
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 50%;
  pointer-events:none;
  z-index: 0;
}

/* 左右の“空き”を作る（リングの上をボタン背景色で消す） */
.reserve-badge::after{
  content:"";
  position:absolute;
  inset: 3px;              /* ::before と同じにする */
  border-radius: 50%;
  pointer-events:none;
  z-index: 1;
}

/* ボタン中身はリングより前面へ */
.reserve-badge > *{
  position: relative;
  z-index: 2;
}


/* 予約ボタン：内側リング＋左右の切れ目（調整しやすい版） */
.reserve-badge{
  isolation: isolate;
  --ring-inset: 3px;     /* ← 内側線の“余白”(外周からの距離)。広げたいなら 6px, 10px… */
  --gap-width: 64px;     /* ← 左右の“空き”の横幅。広げたいなら 72px, 80px… */
  --gap-height: 10px;    /* ← 空きの太さ（消しゴムの高さ） */
}

/* 内側の白い〇線 */
.reserve-badge::before{
  content:"";
  position: absolute;
  inset: var(--ring-inset);
  border: 1px solid rgba(255,255,255,);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* 左右の“空き”を作る（リングの上をボタン背景色で消す） */
.reserve-badge::after{
  content:"";
  position: absolute;
  inset: var(--ring-inset);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
    background:
    linear-gradient(var(--gold, #c49336), var(--gold, #c49336)) left 50% / 100px 34px no-repeat,
    linear-gradient(var(--gold, #c49336), var(--gold, #c49336)) right 50% / 100px 34px no-repeat;
}

/* ボタン中身はリングより前面へ */
.reserve-badge > *{
  position: relative;
  z-index: 2;
}


/* 左右の空きを広げる（最終上書き） */
.site-header .reserve-badge{
  --gap-width: 20px;   /* ここを 72 / 80 / 90 / 100…で調整 */
}


/* ロゴを“本当の中央”に戻す（PC） */
@media (min-width: 981px){
  /* 右の余白はロゴではなく右ナビ側で吸収する */
  .header-inner--split{
    padding-right: 0 !important;
  }

  /* 予約ボタンと被らないよう、右ナビだけ左へ寄せる */
  .gnav--right{
    padding-right: 170px; /* 160〜200pxで好み調整 */
  }

  /* ロゴをグリッドの中央に固定 */
  .logo--center{
    justify-self: center;
    text-align: center;
  }
}


/* PC：左ナビをロゴ側に寄せて、右ナビと同じ“間隔感”にする */
@media (min-width: 981px){
  .gnav--left{
    padding-left: 170px;  /* ← 右ナビの padding-right と同じ値にする */
  }
}


/* ロゴを1行固定（改行させない） */
.logo--center,
.logo__en{
  white-space: nowrap;
}

/* PC：ナビの寄せ方を padding → transform に変更（ロゴが折り返されない） */
@media (min-width: 981px){
  /* 以前入れた padding は無効化 */
  .gnav--left{  padding-left: 0 !important;  }
  .gnav--right{ padding-right: 0 !important; }

  /* 見た目だけ内側に寄せる（数値は好みで微調整） */
  .gnav--left{  transform: translateX(80px); }   /* ＋で右へ */
  .gnav--right{ transform: translateX(-80px); }  /* －で左へ */
}


/* 予約ボタンをもっと右へ */
@media (min-width: 981px){
  .reserve-badge{
    right: 30px;   /* まず 0 で確認。もっと右なら -10px など */
  }
}

/* SP側も必要なら */
@media (max-width: 980px){
  .reserve-badge{
    right: 10px;  /* 好みで調整 */
  }
}



/* PC：左右ナビを“ロゴ基準で左右対称”にする */
@media (min-width: 981px){
  /* 以前のpadding/transform調整が残ってても影響しないようにリセット */
  .gnav--left,
  .gnav--right{
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
  }

  /* 左：右端（ロゴ側）に寄せる */
  .gnav--left{
    justify-content: flex-end;
  }

  /* 右：左端（ロゴ側）に寄せる */
  .gnav--right{
    justify-content: flex-start;
  }
}





/* =========================
   Mobile menu (hamburger)
========================= */
.nav-toggle{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.burger{
  display: none; /* PCは非表示 */
  position: absolute;
  right: 12px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  cursor: pointer;
  z-index: 10;
}
.burger span{
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .25s ease, top .25s ease, opacity .25s ease;
}
.burger span:nth-child(1){ top: 14px; }
.burger span:nth-child(2){ top: 21px; }
.burger span:nth-child(3){ top: 28px; }

/* ドロワー */
.nav-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  background: #fff;
  transform: translateX(105%);
  transition: transform .28s ease;
  padding: 92px 22px 24px;
  /* box-shadow: -12px 0 30px rgba(0,0,0,.12); */
  z-index: 9;
}
.nav-drawer a{
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--ink);
  text-decoration: none;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: .12em;
}

/* 開いた状態 */
.nav-toggle:checked ~ .nav-drawer{
  transform: translateX(0);
}
.nav-toggle:checked + .burger span:nth-child(1){
  top: 21px; transform: rotate(45deg);
}
.nav-toggle:checked + .burger span:nth-child(2){
  opacity: 0;
}
.nav-toggle:checked + .burger span:nth-child(3){
  top: 21px; transform: rotate(-45deg);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .header-inner--split{
    grid-template-columns: 1fr auto;
    padding-right: 0;
    gap: 14px;
    min-height: 64px;
  }

  /* 左右ナビは隠す */
  .gnav--left,
  .gnav--right{
    display: none;
  }

  /* ハンバーガー表示 */
  .burger{ display: block; }

  /* ロゴ少し小さく */
  .logo__en{ font-size: 28px; }

  /* 予約ボタンはモバイルでは小さめ＆邪魔にならない位置へ */
  .reserve-badge{
    width: 108px;
    height: 108px;
    top: 6px;
    right: 62px; /* ハンバーガーと被らない */
    border-width: 5px;
    padding: 14px 8px 12px;
  }
}




/* =========================
  Hero
========================= */
.hero{
  position: relative;
  padding: 18px 0 34px;
}
.hero__bg{
  width: min(1480px, 100% - 40px);
  margin: 0 auto;
  height: clamp(620px, 46vw, 840px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("assets/TOPパスタ.jpg") center/cover no-repeat;
  /* box-shadow: var(--shadow); */
}
.hero__inner{
  position: relative;
  margin-top: -240px;
  padding-bottom: 28px;
}
.hero__copy{
  width: min(520px, 92%);
  margin-inline: auto;
  text-align: center;
  color: #fff;
  padding: 22px 18px 26px;
}
.hero__kicker{
  margin: 0 0 10px;
  letter-spacing: .16em;
  font-weight: 700;
  opacity: .95;
}
.hero__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.35;
  letter-spacing: .08em;
}
.hero__lead{
  margin: 0;
  font-size: 14px;
  opacity: .92;
}


/* =========================
   Hero画像幅：参考画像っぽくワイドに
========================= */
.hero__bg{
  /* PC：最大幅を広げつつ、左右に余白を確保 */
  width: min(1800px, calc(100% - 160px)); /* ← 160px = 左右合計の余白（80pxずつ） */
}

/* 画面が狭い時は余白を段階的に縮める */
@media (max-width: 1200px){
  .hero__bg{ width: calc(100% - 80px); }  /* 左右40pxずつ */
}
@media (max-width: 720px){
  .hero__bg{ width: calc(100% - 40px); }  /* 左右20pxずつ（今と同じ感覚） */
}



/* hero背景の中にピザを重ねるため、基準を作る */
.hero__bg{
  position: relative;   /* ←追加 */
  overflow: hidden;     /* 角丸の内側に収めたい場合 */
}

/* 左側に重なるピザ */
.hero__pizza{
  position: absolute;
  left: clamp(14px, 3vw, 40px);
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: clamp(160px, 26vw, 360px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.18));
  opacity: .98;
}

/* 画面が狭い時は小さくする or 消す */
@media (max-width: 980px){
  .hero__pizza{
    width: clamp(120px, 34vw, 240px);
  }
}



/* 皿（ピザ）を左にドーンと置くための土台 */
.hero__bg{
  position: relative;
  overflow: visible; /* ← 角丸で切らずに、外にはみ出せる */
}

/* 左側にドーン！皿置き（参考画像の左パスタ風） */
.hero__pizza{
  position: absolute;
  left: clamp(-520px, -30vw, -220px); /* ← 左へ大きくはみ出す */
  top: 54%;
  transform: translateY(-50%) rotate(-10deg);
  width: clamp(560px, 72vw, 980px);  /* ← デカく */
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.22));
}

/* 文字はピザより手前に（安全） */
.hero__inner{
  position: relative;
  z-index: 3;
}

/* 画面が狭い時は控えめに */
@media (max-width: 980px){
  .hero__pizza{
    left: -180px;
    width: min(680px, 92vw);
    top: 56%;
  }
}
@media (max-width: 720px){
  .hero__pizza{
    left: -90px;
    width: min(480px, 92vw);
    top: 56%;
  }
}







/* =========================
  About (Spaciousness)
========================= */
.about{
  position: relative;
  padding: 66px 0 86px;
}
.about__inner{
  position: relative;
  min-height: 620px;
  background: rgba(247,242,233,.70);
  border-radius: var(--radius-lg);
  padding: 58px 18px 64px;
}
.about__bgword{
  position: absolute;
  inset: 26px 20px auto;
  font-family: var(--display);
  font-size: clamp(54px, 8.5vw, 110px);
  font-style: italic;
  letter-spacing: .06em;
  color: rgba(29,27,22,.06);
  transform: translateY(10px);
  user-select: none;
  pointer-events: none;
}
.about__center{
  position: relative;
  width: min(520px, 92%);
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.section-title{
  margin: 0 0 14px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.45;
  letter-spacing: .10em;
}
.section-title--center{
  text-align: center;
}
.about__text{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* scattered photos */
.about__shot{
  position: absolute;
  width: min(240px, 42vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
  z-index: 1;
}
.about__shot img{ width:100%; height:100%; object-fit: cover; }

.shot--a{ left: 32px; top: 96px; width: min(260px, 44vw); }
.shot--b{ right: 38px; top: 92px; width: min(220px, 40vw); }
.shot--c{ left: 92px; bottom: 72px; width: min(210px, 38vw); }
.shot--d{ right: 92px; bottom: 62px; width: min(220px, 40vw); }

.deco{
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(197,138,43,.32), transparent 55%);
  filter: blur(.2px);
  opacity: .75;
  z-index: 0;
}
.deco--olive{ left: 18px; bottom: 24px; }
.deco--garlic{ right: 22px; top: 28px; }


/* Aboutボックスを横に広げる（全体） */
/* Aboutだけコンテナ幅を広げる */
.about .container{
  width: min(1480px, 100% - 40px);
}


/* 内側の余白も少し増やす（文字が潰れにくい） */
.about__inner{
  padding: 58px 40px 64px; /* 左右18px → 40px */
}

/* 中央テキストの幅を広げる（見えるように） */
.about__center{
  width: min(720px, 92%);  /* 520px → 720px */
}


/* 写真を左右へ少しだけ外に逃がして、文字を見せる */
.shot--a{ left: 18px; }
.shot--b{ right: 18px; }
.shot--c{ left: 58px; }
.shot--d{ right: 58px; }



/* Spaciousness を写真より上に配置（重なり回避） */
.about__bgword{
  inset: 16px 40px auto;   /* 上に寄せる（左右も少し余裕） */
  transform: none;         /* 余計なズラしを消す */
  line-height: 1;
  z-index: 0;              /* 背景文字として扱う（写真より下層） */
  pointer-events: none;
}

/* 上側の写真を少し下へ（bgword の領域を空ける） */
.shot--a{ top: 140px; }
.shot--b{ top: 136px; }



/* ボックス上部を突き抜ける “Spaciousness” */
.about__inner{
  position: relative;
  overflow: visible;          /* ここ重要：はみ出しを見せる */
  padding-top: 88px;          /* 文字が上に来る分、内側は少し下げる（好みで調整） */
}

.about__bgword{
  position: absolute;
  top: -66px;                 /* ← 突き抜け量（-30〜-70で調整） */
  left: 40px;
  right: 40px;
  transform: none;
  line-height: 1;
  z-index: 3;                 /* ボックスより前に出す */
  /* opacity: .12;               薄さは好みで */
}

/* スマホは控えめに */
@media (max-width: 720px){
  .about__inner{ padding-top: 72px; }
  .about__bgword{ top: -34px; left: 18px; right: 18px; }
}



/* =========================
 ピザだらけ
========================= */
/* ヒーロー直下：ピザ柄の画像だけセクション */
.pizza-strip{
  height: 80px;                 /* セクションの高さ（80〜160で調整） */
  margin-top: 0px;              /* ヒーローとの間（不要なら0） */
  border-radius: 18px;           /* 角丸（いらなければ削除） */
  background-image: url("assets/1ピザ大量.png"); /* ←ここを画像パスに */
  background-repeat: repeat;
  background-size: 320px auto;   /* ← “小ささ”はここで決まる（200〜420） */
  background-position: left center;
  opacity: .95;
}

/* スマホは少し小さめ＆高さ控えめ */
@media (max-width: 720px){
  .pizza-strip{
    height: 86px;
    background-size: 240px auto;
    border-radius: 14px;
  }
}

.pizza-strip{
  position: relative;
  overflow: hidden;
}
.pizza-strip::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.25); /* 0.15〜0.35で調整 */
  pointer-events:none;
}



/* =========================
  Special time
========================= */
.special{
  padding: 24px 0 64px;
}
.special__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}
.special__media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.special__media img{
  width: 100%;
  height: min(420px, 62vw);
  object-fit: cover;
  filter: contrast(1.02) saturate(1.02);
}
.special__word{
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--script);
  font-size: clamp(48px, 6.2vw, 84px);
  color: rgba(255,255,255,.92);
  pointer-events: none;
  user-select: none;
  box-shadow: 20px;
}
.special__title{
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: .10em;
}
.special__text p{
  margin: 0;
  color: var(--muted);
}

.special__word{
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--script);
  font-size: clamp(48px, 6.2vw, 84px);
  color: rgba(255,255,255,.92);
  pointer-events: none;
  user-select: none;

  /* ふわっと浮かす */
  opacity: .9;
  text-shadow:
    0 2px 10px rgba(0,0,0,.28),
    0 0 18px rgba(255,255,255,.22);
}



/* =========================
  Chef（左：写真 / 右：ブラウン帯）
========================= */
.chef{
  position: relative;
  padding: 0;
  margin: 80px 0;     /* 前後の余白。不要なら0でもOK */
  overflow: hidden;
  border-radius: 0;   /* 帯なら0。角丸にしたいなら入れてOK */
}

/* 背景：右はブラウン、左は写真（境目はふわっとグラデ） */
.chef__bg{
  position: absolute;
  inset: 0;
  background:
    /* 境目のフェード + 右のブラウン */
    linear-gradient(90deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,0) 38%,
      rgba(0,0,0,0) 50%,
      rgba(74,56,28,.92) 62%,
      rgba(74,56,28,.92) 100%
    ),
    /* 左側だけ写真を敷く（サイズ指定がポイント） */
    url("assets/5.jpg") left center / 30% 100% no-repeat,
    /* 写真のない右側のベース色 */
    linear-gradient(#4a381c,#4a381c);
}

/* 中身：右側にテキストを寄せる */
.chef__inner{
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  min-height: clamp(360px, 38vw, 520px);
}

/* 右のブラウン帯に直接文字を置く（カード感は消す） */
.chef__card{
  grid-column: 2;
  width: min(660px, 100%);
  margin-left: auto;
  padding: clamp(26px, 3vw, 56px);
  color: rgba(255,255,255,.92);

  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.chef__label{
  margin: 0 0 10px;
  letter-spacing: .20em;
  font-weight: 600;
  opacity: .9;
}

.chef__name{
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: .10em;
}

.chef__desc{
  margin: 0;
  line-height: 1.95;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

/* SP：縦積み（上が写真、下がブラウン帯） */
@media (max-width: 860px){
  .chef{
    margin: 56px 0;
  }
  .chef__bg{
    background:
      linear-gradient(180deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,0) 40%,
        rgba(74,56,28,.92) 58%,
        rgba(74,56,28,.92) 100%
      ),
      url("assets/5.jpg") center/cover no-repeat;
  }
  .chef__inner{
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 520px;
    padding: 28px 0 42px;
  }
  .chef__card{
    grid-column: 1;
    width: min(620px, 92%);
    margin: 0 auto;
  }
}


/* =========================
  Chef：写真を「右テキストの左側（container基準）」へ寄せる＋比率維持
========================= */
@media (min-width: 861px){
  .chef{
    /* containerが max 1100px 前提（あなたの .container 設計に合わせる） */
    --chefHalf: 550px;
  }

  /* 右帯のベース色 */
  .chef__bg{
    background: #4a381c;
  }

  /* 左：写真（container左に揃える / coverで比率維持） */
  .chef__bg::before{
    content:"";
    position:absolute;
    top:0; bottom:0;
    left: max(24px, calc(50% - var(--chefHalf)));
    width: min(var(--chefHalf), calc(50% - 24px));
    background: url("assets/5.jpg") center / cover no-repeat;
  }

  /* 写真→ブラウンの境目をふわっと */
  .chef__bg::after{
    content:"";
    position:absolute;
    top:0; bottom:0;
    left: max(24px, calc(50% - var(--chefHalf)));
    width: min(var(--chefHalf), calc(50% - 24px));
    background: linear-gradient(90deg,
      rgba(0,0,0,0) 55%,
      rgba(74,56,28,0.92) 100%
    );
    pointer-events:none;
  }
}

/* SPは既存の縦積み背景（center/cover）を優先して、疑似要素は消す */
@media (max-width: 860px){
  .chef__bg::before,
  .chef__bg::after{
    content:none;
  }
}








/* =========================
  Menu
========================= */
.menu{
  padding: 70px 0 76px;
  background: rgba(247,242,233,.72);
}
.menu__head{
  text-align: center;
  margin-bottom: 34px;
}
.menu__mark{
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  margin-bottom: 10px;
  opacity: .85;
}

.menu__grid{
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 28px;
  align-items: start;
}

.menu__thumbs{
  display: grid;
  gap: 16px;
}
.thumb{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
}
.thumb img{ width:100%; height: 120px; object-fit: cover; }

.menu__tables-inner{
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
}

.menu-table + .menu-table{ margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }

.menu-table__title{
  margin: 0 0 10px;
  font-family: var(--display);
  letter-spacing: .10em;
  font-size: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menu-table__title span{
  font-family: var(--serif);
  font-size: 12px;
  opacity: .75;
  letter-spacing: .12em;
}
.price-list{
  margin: 0;
  display: grid;
  gap: 10px;
}
.price-list > div{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  border-bottom: 1px dashed rgba(0,0,0,.12);
  padding-bottom: 6px;
}
.price-list dt{ font-weight: 700; color: rgba(0,0,0,.78); }
.price-list dd{ margin: 0; font-family: var(--display); letter-spacing: .06em; opacity: .85; }

.menu__note{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.menu__note-title{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: .10em;
}
.menu__note p{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.menu__mini-shots{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.menu__mini-shots figure{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}
.menu__mini-shots img{ width:100%; height: 74px; object-fit: cover; }

.menu__main{
  display: grid;
  justify-items: end;
}
.menu__circle{
  margin: 0;
  width: min(320px, 68vw);
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
   /* border: 10px solid rgba(255,255,255,.55); */
}
.menu__circle img{ width:100%; height:100%; object-fit: cover; }




/* =========================
  Menu：背景にフレーム画像
========================= */
.menu{
  position: relative;
  overflow: hidden; /* はみ出し防止 */
}

/* 背景フレーム（上に被さらないように疑似要素で背面へ） */
.menu::before{
  content: "";
  position: absolute;
  inset: -14px; /* 端ギリギリなら 0、少し外へ出すなら -10〜-20 */
  background: url("assets/背景の枠.png") center / 100% 100% no-repeat;

  pointer-events: none;
  z-index: 0;
}

/* 中身はフレームより前面に */
.menu > .container{
  position: relative;
  z-index: 1;
}

/* スマホは少し薄く＆余白を少し詰める */
@media (max-width: 720px){
  .menu::before{
    inset: -8px;
    opacity: .22;
  }
}


.menu{
  position: relative;
  overflow: hidden;
  background: #f6f0e8; /* blend-mode効かせるために明示（任意） */
}

.menu::before{
  content: "";
  position: absolute;
  inset: -14px;
  background: url("assets/背景の枠.png") center / contain no-repeat;
  opacity: .65; /* 0.55〜0.80 */
  filter: saturate(1.6) contrast(1.35) brightness(.82); /* 濃さ調整 */
  mix-blend-mode: multiply; /* 背景と合成して線が見えやすくなる */
  pointer-events: none;
  z-index: 0;
}

.menu > .container{
  position: relative;
  z-index: 1;
}

@media (max-width: 720px){
  .menu::before{
    inset: -8px;
    opacity: .55;
    filter: saturate(1.5) contrast(1.25) brightness(.86);
  }
}






/* =========================
  News
========================= */
.news{
  padding: 64px 0 70px;
}
.news__list{
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.news-item{
  display: grid;
  grid-template-columns: 130px 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
}
.news-item__date{
  font-family: var(--display);
  letter-spacing: .08em;
  opacity: .78;
}
.news-item__tag{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold-dark);
}
.news-item__title{
  margin: 0;
  font-weight: 700;
  letter-spacing: .06em;
}


/* =========================
  NEWS：ボックス下部に「続きがある」矢印（疑似）
========================= */
.news__list{
  position: relative;
  padding-bottom: 56px; /* 矢印分の余白 */
}

/* 下部をうっすらフェードさせて “続く感” */
.news__list::before{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:72px;
  pointer-events:none;
  /* 背景色は必要なら調整（白/薄ベージュなど） */
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.92) 75%,
    rgba(255,255,255,1) 100%
  );
  border-radius: inherit; /* ボックスが角丸なら馴染む */
}

/* 下向きの矢印（中央） */
.news__list::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:14px;
  width:12px;
  height:12px;
  border-right:2px solid rgba(90,70,45,.55);
  border-bottom:2px solid rgba(90,70,45,.55);
  transform: translateX(-50%) rotate(45deg);
  pointer-events:none;
  animation: newsHint 1.6s ease-in-out infinite;
}

@keyframes newsHint{
  0%,100%{ transform: translate(-50%, 0) rotate(45deg); opacity:.35; }
  50%     { transform: translate(-50%, 6px) rotate(45deg); opacity:.85; }
}



/* =========================
  Info & Access
========================= */
.info-access{
  padding: 10px 0 84px;
}
.info-access__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.card{
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
}
.card__title{
  margin: 0 0 12px;
  font-family: var(--display);
  letter-spacing: .14em;
}
.card__media{
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}
.card__media img{ width: 100%; height: 180px; object-fit: cover; }

.info-list{
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.info-list > div{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0,0,0,.12);
}
.info-list dt{ font-weight: 700; opacity: .85; }
.info-list dd{ margin: 0; color: var(--muted); }

.card__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.card__map{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 14px;
}
.map-dummy{
  height: 220px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.02)),
    repeating-linear-gradient(90deg, rgba(0,0,0,.05) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.05) 0 1px, transparent 1px 16px);
}


.card__map{
  overflow: hidden;        /* 角丸のときに必須 */
  border-radius: 16px;     /* 好みで */
}

.card__map .map-embed{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;       /* 必要なら調整 */
  border: 0;
}


.card__media,
.card__map{
  height: clamp(240px, 24vw, 320px); /* ← 両方同じサイズになる */
}

.card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-embed{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* =========================
  NEWS / INFO-ACCESS：背景に「パスタ達」
========================= */

/* 背景を敷きたいセクション本体 */
.news,
.info-access{
  position: relative;
  overflow: hidden;
  background: url("assets/パスタ達.jpg") center / cover no-repeat;
  background-color: #f7f2e9; /* 保険 */
}

/* 写真の上に薄いベージュの膜（文字の可読性UP） */
.news::before,
.info-access::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(247,242,233,.86); /* ←濃さ：0.78〜0.92で調整 */
  pointer-events: none;
  z-index: 0;
}

/* 中身は前面に */
.news > .container,
.info-access > .container{
  position: relative;
  z-index: 1;
}

/* 写真の見せたい位置（黒い余白が気になる場合におすすめ） */
.news,
.info-access{
  background-position: center top; /* center / top / など好みで */
}

/* スマホはもう少し膜を濃くして読みやすく */
@media (max-width: 720px){
  .news::before,
  .info-access::before{
    background: rgba(247,242,233,.90);
  }
}

/* =========================
  NEWS〜INFO/ACCESS：背景を1枚で貫通
========================= */
.pasta-bg{
  position: relative;
  overflow: hidden;
  background: url("assets/パスタ達.jpg") center 20% / cover no-repeat;
  background-color: #f7f2e9;
}

/* 文字が読めるように薄い膜（ここで濃さ調整） */
.pasta-bg::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(247,242,233,.86); /* ← 0.78〜0.92で調整 */
  pointer-events: none;
  z-index: 0;
}

/* 中身は膜より前 */
.pasta-bg > section{
  position: relative;
  z-index: 1;
}

/* 以前の「各セクションに貼った背景」を無効化（残っててもOKにする） */
.news,
.info-access{
  background: transparent !important;
}
.news::before,
.info-access::before{
  content: none !important;
}

/* スマホは膜を少し濃くして読みやすく */
@media (max-width: 720px){
  .pasta-bg::before{
    background: rgba(247,242,233,.90);
  }
}


/* =========================
  Footer
========================= */
.footer{
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75)),
    url("assets/footer.jpg") center/cover no-repeat;
  color: rgba(255,255,255,.92);
  padding: 48px 0 24px;
  overflow: hidden;
}
.footer__inner{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: start;
}
.footer__logo{
  margin: 0 0 6px;
  font-family: var(--script);
  font-size: 34px;
}
.footer__small{
  margin: 0;
  opacity: .85;
  font-size: 13px;
}
.footer__nav{
  display: grid;
  gap: 8px;
  font-family: var(--display);
  letter-spacing: .10em;
  font-weight: 700;
  font-size: 13px;
}
.footer__nav a{ opacity: .88; }
.footer__nav a:hover{ opacity: 1; text-decoration: underline; }

.footer__sns{
  display: grid;
  gap: 8px;
  font-size: 13px;
  opacity: .90;
}
.footer__copy{
  text-align: center;
  margin: 26px 0 0;
  font-size: 12px;
  opacity: .75;
  letter-spacing: .14em;
}

.to-top{
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(197,138,43,.92);
  color: #fff;
  font-family: var(--display);
  letter-spacing: .10em;
}
.to-top:hover{ filter: brightness(1.02); }

/* =========================
  Responsive
========================= */
@media (max-width: 980px){
  .header-inner{ grid-template-columns: 1fr auto auto; }
  .gnav{ display:none; }
  .burger{ display:flex; }

  /* メニュー展開 */
  .nav-toggle:checked ~ .gnav{
    display: grid;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    gap: 10px;
    padding: 14px 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 16px;
    /* box-shadow: var(--shadow-soft); */
  }

  .special__inner{ grid-template-columns: 1fr; }
  .menu__grid{ grid-template-columns: 1fr; }
  .menu__main{ justify-items: center; order: 1; }
  .menu__tables{ order: 2; }
  .menu__thumbs{
    grid-template-columns: repeat(3, 1fr);
    order: 3;
  }
  .thumb img{ height: 92px; }

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

@media (max-width: 720px){
  .hero__inner{ margin-top: -210px; }
  .about__inner{
    padding: 48px 16px 26px;
  }

  /* SPは散らし写真を通常フローに戻す */
  .about__shot{
    position: static;
    width: 100%;
    margin: 14px auto 0;
  }
  .about__inner{ min-height: auto; }
  .about__bgword{ inset: 22px 16px auto; }

  .news-item{
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }
}





/* =========================
  SP：予約バッジを左側へ
========================= */
@media (max-width: 720px){
  .reserve-badge{
    left: 12px;     /* 好みで 8〜18px */
    right: auto;    /* ← これが重要（右固定を解除） */
    top: 16px;     /* 既存と同じでOK。気になるなら 0〜8px へ */
  }
}





/* =========================
  SP：予約バッジ（丸）の中身を綺麗に整列
========================= */
@media (max-width: 720px){

  /* 位置（左に寄せたい場合）＋ 中身をflexで中央揃え */
  .reserve-badge{
    left: 12px;          /* ←左側に配置 */
    right: auto;
    top: 10px;

    width: 118px;        /* ←好みで 110〜130 */
    height: 118px;
    border-radius: 999px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;            /* アイコンと文字の間 */
    padding: 0;
    text-align: center;
    line-height: 1;
  }

  /* アイコンを“箱”で中央に（svgのズレ防止） */
  .reserve-badge__icon{
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin: 0;
    flex: 0 0 auto;
  }
  .reserve-badge__icon svg{
    display: block;
    width: 18px;
    height: 18px;
  }

  /* 文字の行間を詰めて中心を安定 */
  .reserve-badge__main{
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.05;
    margin: 0;
    white-space: nowrap;
  }
  .reserve-badge__sub{
    display: block;
    font-size: 12px;
    line-height: 1.05;
    margin: 0;
    white-space: nowrap;
  }
}


@media (max-width: 720px){

  /* ヒーロー自体の上下余白を圧縮（特に下） */
  .hero{
    margin-bottom: -60px;
  }
}


/* =========================
  SP：Aboutの文字サイズを少し小さく
========================= */
@media (max-width: 720px){
  .about .section-title{
    font-size: 17px;      /* 好みで 17〜20 */
    line-height: 1.45;
  }

  .about__text{
    font-size: 13px;      /* 好みで 12〜14 */
    line-height: 1.9;     /* 読みやすさ維持 */
  }
}




@media (max-width: 720px){
  .hero__pizza{
    left: -140px;                 /* 小さくすると左に寄りすぎるので少し戻す */
    top: 48%;                    /* 56% → 48% で上へ */
    width: clamp(240px, 62vw, 380px); /* 480px → 最大380px程度に */
  }
}




@media (max-width: 980px){
  .logo--center{
    left: 50%;
    top: 50%;
    transform: translate(-130%, -50%) translateX(6px); /* ← ここで微調整 */
  }
}


/* SP：Aboutの散らし写真を2カラムで並べる */
@media (max-width: 720px){
  .about__inner{
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px; /* 写真の間隔 */
  }

  /* テキストは2列分使う */
  .about__center{
    grid-column: 1 / -1;
  }

  /* 写真：absolute解除してグリッドに乗せる */
  .about__shot{
    position: relative;
    inset: auto;       /* left/right/top/bottom打ち消し */
    width: 100%;
    aspect-ratio: 4 / 3; /* 好みで 1/1 や 3/2 でもOK */
  }
  .about__shot img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* 個別配置の指定を無効化 */
  .shot--a, .shot--b, .shot--c, .shot--d{
    left: auto; right: auto; top: auto; bottom: auto;
  }
}


@media (max-width: 720px){
  .pizza-strip{
    height: 56px; /* ← ここを小さく（例：80→56みたいに） */
  }
}


/* CTA（オンラインで予約）を常に中央配置 */
#reserve{
  display: flex;           /* block化して中央寄せしやすく */
  width: fit-content;      /* ボタン幅を中身に合わせる */
  margin: 18px auto 0;     /* 左右autoで中央 */
}



/* SP：Menu 左サムネ（.menu__thumbs）を“ズレ重ね”にする */
@media (max-width: 720px){
  .menu__thumbs{
    position: relative;
    display: block !important;          /* gridを潰す */
    width: min(360px, 86vw);
    height: clamp(160px, 44vw, 220px);  /* 重ねの土台高さ */
    margin: 10px auto 18px;
  }

  .menu__thumbs .thumb{
    position: absolute !important;
    margin: 0;
    width: 78%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;

    /* “写真重ね”っぽさ */
    border: 8px solid rgba(255,255,255,.92);
  
    background: #fff;
  }

  .menu__thumbs .thumb img{
    width: 100%;
    height: 100% !important;            /* 92px固定を解除して全面表示 */
    object-fit: cover;
    display: block;
  }

  /* 3枚をズラして重ねる */
  .menu__thumbs .thumb:nth-child(1){
    left: 0%;
    top: 18%;
    transform: rotate(-7deg);
    z-index: 1;
  }
  .menu__thumbs .thumb:nth-child(2){
    left: 14%;
    top: 0%;
    transform: rotate(2deg);
    z-index: 2;
  }
  .menu__thumbs .thumb:nth-child(3){
    left: 28%;
    top: 22%;
    transform: rotate(8deg);
    z-index: 3;
  }
}


@media (max-width: 720px){
  /* ① 画像サイズを少し小さくして、見える面積を増やす */
  .menu__thumbs .thumb{
    width: 64%; /* 78% → 64% */
  }

  /* ② left を広げて、重なりを“離す” */
  .menu__thumbs .thumb:nth-child(1){
    left: -30%;
    top: 22%;
    transform: rotate(-6deg);
  }
  .menu__thumbs .thumb:nth-child(2){
    left: 20%;
    top: 4%;
    transform: rotate(2deg);
  }
  .menu__thumbs .thumb:nth-child(3){
    left: 70%;
    top: 26%;
    transform: rotate(7deg);
  }
}



/* SP：枠（背景の枠.png）を section.menu ではなく container 基準で配置 */
@media (max-width: 720px){

  /* ① 既存の menu::before はSPでは無効化 */
  .menu::before{
    content: none !important;
  }

  /* ② container を基準にして枠を貼る */
  .menu > .container{
    position: relative;
  }
  .menu > .container::before{
    content: "";
    position: absolute;
    inset: -8px; /* 余白：-6〜-12 で好み調整 */
    background: url("assets/背景の枠.png") center / 100% 100% no-repeat; /* ここがズレに強い */
    opacity: .55;
    filter: saturate(1.5) contrast(1.25) brightness(.86);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
  }

  /* ③ 中身は枠より前に */
  .menu > .container > *{
    position: relative;
    z-index: 1;
  }
}


/* =========================
   スクショ用：軽量化モード
   URLに ?capture=1 で有効
========================= */
html.capture body::before{
  display: none !important; /* 画面全体の blend オーバーレイを止める */
}

/* drop-shadow はスクショ時に激重になりやすい */
html.capture .hero__pizza{
  filter: none !important;
}

/* 枠の mix-blend / filter も止める（SPで特に重い） */
html.capture .menu::before,
html.capture .menu > .container::before{
  mix-blend-mode: normal !important;
  filter: none !important;
  opacity: .6 !important;
}

/* GoogleMap iframe を止める（真っ白でもOKならこれだけでOK） */
html.capture .map-embed{
  display: none !important;
}

/* 全体のアニメ・トランジションも停止（念のため） */
html.capture *{
  animation: none !important;
  transition: none !important;
}


/* スクショ用：さらに軽く（最終手段） */
html.capture .pizza-strip{
  display: none !important;
}

/* 背景画像が重い場合は一旦切る（必要なら） */
html.capture .pasta-bg,
html.capture .footer{
  background: none !important;
}
html.capture .pasta-bg::before,
html.capture .footer::before{
  content: none !important;
}


/* ==========================================================
   SP レスポンシブ修正（トップ周り中心）
   ========================================================== */

/* --- タブレット（981px以下） --- */
@media (max-width: 980px){

  /* ロゴ：transformによる中央寄せを解除し、grid中央に任せる */
  .logo--center{
    position: static;
    transform: none;
    justify-self: start;    /* 左寄せ（バッジと被らない） */
    padding-left: 8px;
  }

  /* 予約バッジ：右上固定・少し小さく */
  .reserve-badge{
    width: 90px;
    height: 90px;
    top: 8px;
    right: 60px;             /* ハンバーガーの左隣 */
    padding: 10px 6px 8px;
  }
  .reserve-badge__icon{ width: 24px; height: 24px; }
  .reserve-badge__icon svg{ width: 14px; height: 14px; }
  .reserve-badge__main{ font-size: 10px; letter-spacing: .06em; }
  .reserve-badge__sub{ font-size: 10px; }
}

/* --- スマホ（720px以下） --- */
@media (max-width: 720px){

  /* ■ ヘッダー */
  .header-inner--split{
    min-height: 56px;
    gap: 8px;
  }
  .logo__en{
    font-size: 24px;
  }

  /* 予約バッジ：左配置＋コンパクト化 */
  .reserve-badge{
    left: 8px;
    right: auto;
    top: 6px;
    width: 80px;
    height: 80px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }
  .reserve-badge__icon{ width: 22px; height: 22px; }
  .reserve-badge__icon svg{ width: 14px; height: 14px; }
  .reserve-badge__main{ font-size: 9px; letter-spacing: .04em; }
  .reserve-badge__sub{ font-size: 9px; }

  /* ロゴを中央に戻す（バッジが小さくなったので可能） */
  .logo--center{
    justify-self: center;
    padding-left: 0;
  }

  /* ■ Hero：背景高さをSP向けに縮小 */
  .hero__bg{
    height: clamp(380px, 60vw, 480px);
  }

  /* テキストオーバーレイの位置を背景に合わせる */
  .hero__inner{
    margin-top: -200px;
    padding-bottom: 16px;
  }
  .hero__copy{
    width: min(420px, 94%);
    padding: 16px 14px 20px;
  }
  .hero__kicker{
    font-size: 13px;
    letter-spacing: .10em;
    margin-bottom: 6px;
  }
  .hero__title{
    font-size: 20px;
    margin-bottom: 8px;
  }
  .hero__lead{
    font-size: 12px;
    line-height: 1.7;
  }

  /* Hero下のネガティブマージンを抑える */
  .hero{
    margin-bottom: -30px;
  }

  /* ■ ピザ画像：小さめに＆はみ出し量を控えめに */
  .hero__pizza{
    left: -80px;
    top: 50%;
    width: clamp(200px, 52vw, 300px);
  }

  /* ■ Special time：縦積み時のテキスト余白 */
  .special__inner{
    gap: 18px;
  }
  .special__title{
    font-size: 18px;
  }
  .special__text p{
    font-size: 13px;
  }

  /* ■ Footer：縦積み時の余白 */
  .footer{
    padding: 32px 0 20px;
  }
  .footer__logo{
    font-size: 26px;
  }
  .footer__inner{
    gap: 20px;
  }
}

/* --- PC狭め（981〜1100px）：右ナビと予約バッジの重なり防止 --- */
@media (min-width: 981px){
  .header-inner--split{
    padding-right: 160px !important; /* バッジ幅132px + right30px 分を確保 */
  }
}
