:root{
  --bg: #ffffff;
  --dark: #2f2f2f;
  --dark-2: #242424;
  --text: #222;
  --muted: #6b6b6b;
  --line: rgba(0,0,0,.18);
  --white: #fff;
  --accent: #1f8a3a;
  --shadow: 0 16px 40px rgba(0,0,0,.18);

  --ff-en: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-jp: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 18px;
}

* { 
  box-sizing:border-box; 
}

html { 
  scroll-behavior:smooth; 
}

body{
  margin: 0;
  font-family: var(--ff-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

.container {
  width: min(var(--container), calc(100% - 180px));
  margin-inline: auto;
}

.sr-only {
  position: absolute; 
  width: 1px; 
  height: 1px;
  padding: 0; 
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* フル幅セクション用 */
.fullwide {
  width: 100%;
  margin: 0;
}

/* Section common */
.section {
  padding : 92px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 18px;
}

.section-title {
  margin: 0;
  font-family: var(--ff-en);
  font-size: 56px;
  letter-spacing: .02em;
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}

/* 緑の下線バー */
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--accent);
}

.section-head--dark .section-title,
.section-head--dark .section-kicker {
  color: #fff;
}
.section-head--dark {
  color: #fff;
}

.fullwide-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
}

.header-frame{
  width: 100%;
  max-width: 1440px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  margin: 0;
  padding-left: 31px;
  padding-top: 15px;
}

.brand-logo{
  height: 63px;
  width: auto;
  display: block;
}

.brand-text{
  font-family: var(--ff-en);
  font-weight: 700;
}

.global-nav{
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding-top: 37px;
  padding-bottom: 31px;
  padding-right: 71px;
  gap: 40px;
}

.nav-link{
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  opacity: .95;
}

.nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease, opacity .18s ease;
  opacity: 0;
}

.nav-link:hover{
  opacity: 1;
}
.nav-link:hover::after{
  transform: scaleX(1);
  opacity: 1;
}

/* ハンバーガー（PCでは非表示） */
.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-lines{
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 22px;
  height: 2px;
  background:#fff;
}
.nav-toggle-lines::before {
  top: -7px; 
}

.nav-toggle-lines::after {
  top: 7px; 
}

/* Hero（PC=1440基準） */
/* =========================
   Hero（正式版）
   PC：1440基準 / 右画像1080×650 / テキストを画像に重ねる
   ========================= */
.hero{
  background: var(--dark);
  padding: 0;
}

.hero-frame{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ★PCの基本：2カラムにする（これが無いと下に回ります） */
.hero-inner{
  min-height: 650px;
  position: relative;
}

/* 右画像 */
.hero-media{
  position: absolute;
  top: 0;
  right: 0;
  width: 1080px;   /* Figmaの画像枠 1080 */
  height: 650px;   /* Figmaの画像枠 650 */
  z-index: 1;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* 左テキスト（画像の上に重ねる） */
.hero-copy{
  position: relative;
  z-index: 2;
  padding-left: 198px; /* 指定 */
  padding-top: 92px;  /* 既存の雰囲気 */
  width: 700px; 
  color: #fff;
}

/* Typography（既存踏襲） */
.hero-lead{
  margin:0;
  font-family: var(--ff-en);
  font-weight:700;
  font-size: clamp(44px, 5.2vw, 88px);
  line-height: 1.03;
  letter-spacing:.01em;
}

.hero-key{
  margin: 8px 0 0;
  font-family: var(--ff-en);
  font-weight:700;
  font-size: clamp(44px, 5.2vw, 88px);
  line-height: 1.03;
}

.hero-key-accent{ color: var(--accent); }
.hero-dot{ color:#fff; opacity:.9; }

.hero-sub{
  margin: 37px 0 10px;
  font-size: 32px;
  font-weight:700;
  letter-spacing:.05em;
}

.hero-badge{
  display:inline-block;
  margin: 21px 0 0;
  padding: 9px 21px;
  background: var(--accent);
  color:#fff;
  font-weight:700;
  font-size: 32px;
  letter-spacing:.06em;
  white-space: nowrap;
}

/* Concept */
.concept{
  background: var(--dark);
  color:#fff;
  padding: 120px 0 110px;
  position: relative;
  overflow: hidden;
}

.concept-inner{
  position: relative;
  z-index: 1;
  text-align: center;
}

/* 見出し */
.concept-title{
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 30px;
  line-height: 1.5;
}

/* 本文 */
.concept-text{
  width: min(560px, 100%);
  margin: 0 auto;
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}
.concept-text p{ margin: 0 0 26px; }
.concept-text p:last-child{ margin-bottom: 0; }

/* 透かし（背面） */
.concept-watermark{
  position: absolute;
  inset: 0;
  z-index: 0;                 /* ★背面 */
  pointer-events: none;
  user-select: none;
}

.concept-watermark .wm{
  position: absolute;
  font-family: var(--ff-en);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  color: rgba(255,255,255,.14);
  white-space: nowrap;
}

.wm-big {
  font-size: 320px;
}

.wm-small {
  font-size: 240px;
}

/* 上：Garden（左から大きく） */
.concept-watermark .wm--top{
  left: -60px;      /* ★もっと左へ */
  bottom: -40px;     /* ★下に沈める */
  top: auto;
}

/* 下：Salad（右側寄り） */
.concept-watermark .wm--bottom{
  right: -280px;     /* ★もっと右へ */
  bottom: -40px;     /* ★下に沈める */
}

/* About */
.about {
  background: rgba(242, 242, 242, 1);
  padding-bottom: 150px;
}

.about-item{
  display: grid;
  grid-template-columns: 450px 563px; /* 画像450固定 */
  gap: 67px;                 /* Figmaの“余白感” */
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;             /* セクション間の間隔 */
  position: relative;
}

.about-item:last-child{ margin-bottom: 0; }

.about-item--reverse {
  grid-template-columns: 563px 450px;
}

.about-item--reverse .about-media{ order:2; }
.about-item--reverse .about-body{ order:1; }

.about-media img{
  width: 100%;
  height: 288px;       /* Figmaの箱(1080×288)に合わせる */
  object-fit: cover;
  border-radius: 0;    /* Figmaは角丸ほぼ無し */
}

.about-body{
  position: relative;
  padding: 8px 0;
  padding-right: 120px;
}

/* 透かし番号（01/02/03） */
.about-no{
  position: absolute;
  right: -10px;          /* ★少しはみ出す感じ */
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 288px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8); 
  pointer-events: none;
  user-select: none;
}

.about-title{
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.55;
  color: #222;
  position: relative;
  z-index: 1; /* 透かしより前 */
}

.about-desc{
  margin: 0;
  font-size: 18px;
  line-height: 2.0;
  color: #666;
  max-width: 560px;
  position: relative;
  z-index: 1; /* 透かしより前 */
}

/* 緑文字（既存accent） */
.accent{
  color: var(--accent);
  font-weight: 700;
}

/* Wide photo */
.wide-photo img{
  width:100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
}

/* Menu */
.menu{
  background: var(--dark);
  color:#fff;
  padding: 152px 0 72px;
}

.menu-wrap {
  position: relative;
  padding: 96px 84px 86px;
}

.menu-wrap::before,
.menu-wrap::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
}

.menu-wrap::before{
  border: 2px solid rgba(255,255,255,.9);
}

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

.menu-legend{
  margin: 26px 0 0;
  text-align:center;
  font-size: 16px;
  letter-spacing:.08em;
  opacity: .9;
}

/* でかい白の二重枠 */
.menu-frame{
  position: relative;
  margin-top: 54px;
  padding: 0; 
}

.menu-frame::before,
.menu-frame::after{
  content:none;
}

/* Featured（おすすめ） */
.menu-feature{
  position: relative;
  max-width: 980px;
  display:grid;
  grid-template-columns: 430px 1fr;
  gap: 32px;
  align-items:center;
  margin: 0 auto 72px;
}

/* 皿 + 弧文字 */
.menu-plate{
  position: relative;
  width: 450px;
  height: 450px;
  display:grid;
  place-items:center;
}
.menu-plate img{
  width: 430px;
  height: 430px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(0,0,0,.25);
}

/* カード（白枠の箱） */
.menu-card{
  position: relative;
  background: rgba(255,255,255,.94);
  color: #333;
  padding: 96px 54px 40px;
}

.menu-card::before{
  content:"";
  position:absolute;
  inset: 16px;
  border: 1px solid rgba(0,0,0,.35);
  pointer-events:none;
}
.menu-card-inner{
  text-align: center;
  position: relative;
  z-index: 1;
}

/* 緑のタブ */
.menu-badge{
  position:absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--accent);
  color:#fff;
  text-align:center;
  padding: 10px 0 12px;
}

.menu-badge-en{
  display:block;
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing:.06em;
  opacity:.95;
}
.menu-badge-jp{
  display:block;
  font-weight: 700;
  font-size: 24px;
  letter-spacing:.08em;
}

.menu-name{
  margin: 0;
  font-size: 30px;
  letter-spacing:.05em;
}

.menu-price{
  margin: 0;
  font-size: 48px;
  letter-spacing:.06em;
  font-weight: 700;
}

.menu-price span{
  font-size: 18px;
  font-weight: 700;
  letter-spacing:.06em;
}

.menu-macro{
  margin: 0;
  font-size: 24px;
  letter-spacing:.06em;
}

/* 2カラム商品 */
.menu-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin: 0 0 72px;
}

.menu-item{
  position: relative;
  display:grid;
  justify-items:center;
}

.menu-item .menu-plate{
  z-index: 2;
  margin-bottom: -50px;   /* ★これで確実に重なる（Figmaに合わせて調整） */
}

.menu-item .menu-card{
  z-index: 1;
}

.menu-card--small{
  width: 100%;
  max-width: 520px;
  padding: 56px 44px 36px;
}
.menu-card--small .menu-name{
  text-align:center;
  font-size: 30px;
  margin-bottom: 16px;
}
.menu-card--small .menu-price{
  text-align:center;
  font-size: 40px;
  margin-bottom: 24px;
}
.menu-card--small .menu-macro{
  text-align:center;
  font-size: 19px;
}

.menu-feature .menu-plate{
  z-index: 2;
  transform: none;  /* ★カード側へ少し寄せる */
}

.menu-feature .menu-card{
  z-index: 1;
  margin-left: -102px; 
}

/* Instagram枠 */
.menu-ig{
  position: relative;
  background: rgba(255,255,255,.94);
  color:#333;
  padding: 70px 64px 58px;
  text-align:center;
}

.menu-ig::before{
  content:"";
  position:absolute;
  inset: 16px;
  border: 1px solid rgba(0,0,0,.35);
  pointer-events:none;
}

.menu-ig-tab{
  position:absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: var(--accent);
  color:#fff;
  font-family: var(--ff-en);
  font-size: 26px;
  letter-spacing:.06em;
  padding: 14px 0;
}

.menu-ig-note{
  margin: 28px 0 31px;
  font-size: 16px;
  letter-spacing:.08em;
  position: relative;
  z-index: 1;
}

.menu-ig-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.menu-ig-grid img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-ig-id{
  margin: 8px 0 26px;
  letter-spacing:.08em;
  position: relative;
  z-index: 1;
}

.menu-ig-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* テキストを完全中央 */
  height: 56px;            /* Figmaっぽい高さ */
  width: 300px; /* 横長（必要なら数値調整） */
  margin: 0 auto;
  border: 2px solid rgba(0,0,0,.45);
  background: transparent;
  color:#333;
  text-decoration:none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing:.06em;
  /* 右のアイコン分だけ余白を確保（テキストが中央のまま） */
  padding: 17px 77px 16px 58px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* ラベルはそのまま中央 */
.menu-ig-btn-label{
  display: inline-block;
  white-space: nowrap;
}

/* 右端の四角アイコン */
.menu-ig-btn-icon{
  position: absolute;
  right: 28px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

/* SVGの線 */
.menu-ig-btn-svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hover（Figmaの黒塗り） */
.menu-ig-btn:hover{
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Shop */
.shop {
  background: rgba(242, 242, 242, 1);
  overflow: visible;
}

.shop .container{
  overflow: visible;
}

/* Shop map：画面幅いっぱいにする（containerの外へ） */
.shop-map{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* 枠は不要ならborder消してOK */
.shop-map-frame{
  height: 420px;          /* Figmaに合わせて調整（例） */
  border: none;
  background: #eee;
  overflow: hidden;
}

/* iframeを全面に敷く */
.shop-map-iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;

  /* 白黒＋少し薄め（好みで微調整） */
  filter: grayscale(100%) contrast(1.05) brightness(1.05);
}

/* 2カラム（左：情報 / 右：写真） */
.shop-body{
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  column-gap: 120px;
  align-items: center;
  margin-top: 56px;
  overflow: visible;

  /* 右カラムを画面右端へ届かせる */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(90px, calc((100vw - var(--container)) / 2));
  padding-right: 0;
}

/* 左ブロックは中央寄せをやめる */
.shop-info{
  max-width: 420px;
  text-align: left;
  align-self: center;
}

/* 見出し */
.shop-name{
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0 0 18px;
  font-family: var(--ff-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .02em;
}
.shop-name span{
  font-family: var(--ff-jp);
  font-size: 16px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

/* dl */
.shop-dl{
  margin: 22px 0 0;
}

/* 罫線は消して、余白で整える（Figma寄せ） */
.shop-row{
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 8px;
  padding: 6px 0;
  border-bottom: none; 
}

.shop-row.is-tight{
  grid-template-columns: auto 1fr;
  column-gap: 0;        /* ★余白なし */
}

.shop-row dt{
  margin: 0;
  font-weight: 700;
  color: #333;
}
.shop-row dd{
  margin: 0;
  color: #333;
  line-height: 1.8;
}

/* 住所ラベルは表示しない（本文のみ見せる） */
.shop-row--no-label dt{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* 住所の本文は1行で表示 */
.shop-row--no-label dd{
  white-space: nowrap;
}

/* セクション間の余白 */
.shop-row--spacer{
  padding: 10px 0;
}

.shop-row:nth-child(1),
.shop-row:nth-child(3){
  grid-template-columns: auto 1fr; /* dtは中身幅 */
  gap: 0;
}

.shop-row:nth-child(1) dd,
.shop-row:nth-child(3) dd{
  margin-left: 0;
}

/* 右の写真 */
.shop-photo{
  margin: 0;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
}

.shop-photo img{
  width: 700px;
  height: 500px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-left: auto;
}

/* Dear */
.dear{
  margin-top: 58px;
}
.dear-inner{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 1146px;
  height: 668px;
  margin-inline: auto;
  padding: 0 30px;
  position:relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.dear-stamp{
  position:absolute;
  left: -80px;
  top: -60px;
  width: 288px;
  height: 240px;
  background: url("../img/stamp.png") no-repeat center / contain;
  opacity: .7;
  pointer-events: none;
  z-index: 10;
}
.dear-photos{
  margin-top: 30px;
  margin-bottom: 27px;
  display:grid;
  grid-template-columns: 630px 450px;
  gap: 0;
  position: relative;
}
.dear-photo{
  position: relative;
  border: 1px solid rgba(0,0,0,.15);
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.dear-photo::after{
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.9);
  pointer-events: none;
  z-index: 1;
}
.dear-photo img{
  width:100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.dear-body{
  display:grid;
  grid-template-columns: 200px 640px 240px;
  gap: 0;
  align-items: end;
  margin-top: 0;
  position: relative;
}
.dear-title{
  font-family: "Satisfy", cursive;
  font-weight:400;
  font-size: 48px;
  color:#333;
  letter-spacing:.02em;
  line-height: 1.2;
  text-align: left;
  padding: 0;
  margin: 0;
  align-self: start;
}
.dear-text{
  margin-left: 53px;
  border: none;
  color:#444;
  text-align: left;
  align-self: start;
}
.dear-text p{
  margin: 0;
  border: none;
  line-height: 2.5;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,.22);
}

.dear-sign{
  margin: 0;
  margin-left: -170px;
  margin-top: 8px;
  font-family: "Satisfy", cursive;
  font-weight:400;
  color: var(--accent);
  font-size: 40px;
  transform: rotate(-4deg);
  text-align: left;
  border-bottom: 2px solid var(--accent);
  width: fit-content;
  padding-bottom: 4px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;
  white-space: nowrap;
}

/* Contact */
.contact{
  position:relative;
  padding: 90px 0;
}
.contact-bg{
  position:absolute;
  inset:0;
  background-image: url("../img/vegetable.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
}
.contact-inner{
  position:relative;
  z-index: 1;
}
.contact-card{
  width: 800px;
  max-width: 100%;
  min-height: 1032px;
  height: auto;
  margin: 0 auto;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  padding: 76px 100px 72px;
  box-shadow: var(--shadow);
}
.contact-lead{
  margin: 32px 0 34px;
  color:#333;
  text-align: center;
}

.contact .section-head{
  margin-bottom: 0;
}

.contact .form{
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Form */
.form-row{ margin-bottom: 24px; }
.form-label{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight:700;
  margin-bottom: 8px;
}
.req{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent);
  color:#fff;
  font-size: 12px;
  letter-spacing:.04em;
}
.form-input, .form-textarea{
  width:100%;
  border: 2px solid rgba(0,0,0,.18);
  background:#fff;
  padding: 16px 18px;
  font-size: 16px;
  outline:none;
}
.form-input:focus, .form-textarea:focus{
  border-color: rgba(31,138,58,.8);
  box-shadow: 0 0 0 3px rgba(31,138,58,.18);
}
.form-textarea{ resize: vertical; min-height: 140px; }

.form-check{
  margin: 30px 0 0;
}
.check{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 12px;
  user-select:none;
}

.check span{
  color: #333;
}

.check input{
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  margin: 0;
  border: 1px solid #6b6b6b;
  background: #fff;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.check input::after{
  content: "";
  width: 8px;
  height: 14px;
  border-right: 3px solid #159741;
  border-bottom: 3px solid #159741;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform .12s ease;
}

.check input:hover{
  border-color: #159741;
  box-shadow: 0 0 0 3px rgba(21,151,65,.2);
}

.check input:active{
  background: #c6ded0;
}

.check input:checked{
  border-color: #159741;
}

.check input:checked::after{
  transform: rotate(45deg) scale(1);
}

.check input:focus-visible{
  border-color: #159741;
  box-shadow: 0 0 0 3px rgba(21,151,65,.25);
}

.privacy-link{
  color: #159741;
  text-underline-offset: 3px;
}

.privacy-link:hover{
  color: #159741;
}

.btn{
  appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--ff-jp);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.btn--primary{
  background: #159741;
  border-color: #159741;
  color: #fff;
}

.btn--primary:hover{
  background: #12843a;
  color: #fff;
}

.btn--full{
  display: block;
  width: 239px;
  max-width: 100%;
  height: 56px;
  margin: 34px auto 0;
}

/* Privacy Policy Modal */
.policy-modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 40px;
}

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

.policy-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}

.policy-modal__panel{
  position: relative;
  z-index: 1;
  width: 1020px;
  max-width: calc(100% - 40px);
  max-height: 86vh;
  background: #f5f5f5;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  padding: 46px 66px 42px;
}

.policy-modal__close{
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
}

.policy-modal__head{
  text-align: center;
  margin-bottom: 28px;
}

.policy-modal__kicker{
  margin: 0 0 8px;
  color: #159741;
  font-weight: 700;
  font-size: 12px;
}

.policy-modal__title{
  margin: 0;
  font-family: var(--ff-en);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: .01em;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.policy-modal__title::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: #159741;
}

.policy-modal__body{
  overflow-y: auto;
  max-height: calc(86vh - 210px);
  padding-right: 8px;
  font-size: 16px;
  line-height: 1.85;
}

.policy-modal__body h3{
  margin: 34px 0 10px;
  font-size: 18px;
  line-height: 1.5;
}

.policy-modal__body p{
  margin: 0;
}

body.is-modal-open{
  overflow: hidden;
}

/* Footer */
.site-footer{
  background: #f2f2f2;
  padding: 54px 0 9px;
  position:relative;
}
.footer-inner{
  text-align:center;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap: 40px;
  margin-bottom: 22px;
}
.social{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #2f2f2f;
  color:#fff;
  border: 2px solid transparent;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.social i{
  font-size: 28px;
  line-height: 1;
}

.social:hover{
  background: #fff;
  color: #2f2f2f;
  border-color: #2f2f2f;
}
.footer-nav{
  display:flex;
  justify-content:center;
  gap: 40px;
  margin-bottom: 22px;
}

.footer-nav a{
  color:#333;
  text-decoration:none;
  font-family: var(--ff-en);
  font-weight:600;
  letter-spacing:.04em;
}

.footer-brand{
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-brand img{
  width: 167px;
  max-width: 100%;
  height: auto;
}
.footer-copy{
  color:#666;
}

.pagetop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  background: url("../img/btn：pagetop.png") center / contain no-repeat;
  border: 0;
  box-shadow: none;
  cursor:pointer;
  z-index: 99999;
  color: transparent;
  font-size: 0;
  line-height: 0;
  padding: 0;
}
.pagetop:hover{ transform: translateY(-1px); }
.pagetop:focus-visible{
  outline: 2px solid #159741;
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
  }

  .hero-copy{
    margin-right: 0;          /* ★重なり解除 */
    padding-left: 24px;       /* SP/タブレットは普通に */
    padding-right: 24px;
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .hero-media{
    grid-column: 1;
  }

  .hero-media img{
    width: 100%;
    height: 340px;
  }

  /*about */
  .about-item,
  .about-item--reverse{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-item--reverse .about-media{ 
    order:1; 
  }

  .about-item--reverse .about-body{ 
    order:2; 
  }

  .about-no{
    right: 10px;
    font-size: 180px;
  }

  .menu-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .instagram-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .dear-body{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px){
/* SP（メニュー開閉） */
  .container {
    min-width: 100%;
  }
  .header-frame{
    height: 88px;
    align-items: center;
    padding: 0 16px;
  }

  .brand{
    padding-left: 0;
    padding-top: 0;
  }
  .brand-logo{
    width: 180px;
    height: auto;
    object-fit: contain;
  }

  .nav-toggle{
    display: none;
  }

  .global-nav{
    position: static;
    inset: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin-left: 65px;
    border-top: 0;
  }

  .global-nav.is-open{ 
    display: flex; 
  }

  .nav-link{
    padding: 0;
    width: auto;
    font-size: 14px;
    letter-spacing: .02em;
    border-bottom: 0;
  }

  .nav-link::after{
    bottom: -6px;
  }

  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero-inner{
    min-height: auto;
    position: relative;
  }

  .hero-media{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

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

  .hero-copy{
    position: relative;
    z-index: 1;
    padding: 0 18px;
    padding-left: 0;
    width: 100%;
    color: #fff;
    margin-left: 20px;
  }

  .hero-lead{
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-key{
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
    margin: 22px 0 8px;
    font-weight: 500;
  }

  .hero-badge { 
    font-size: 14px; 
    padding: 10px 16px;
    margin: 14px 0 23px;
    font-weight: 500;
  }

  .concept { 
    padding: 70px 0; 
  }

  .concept-inner {
    width: 100%;
    padding: 0 32px;
  }

  .concept-title {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .05em;
    margin: 0 auto 20px;
  }

  .concept-text { 
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .03em;
    width: 100%;
    margin: 0 auto;
  }

  .concept br {
    display: none;
  }

  .concept-watermark .wm {
    white-space: nowrap;
    overflow: hidden;
  }

  .concept-watermark .wm-big,
  .concept-watermark .wm-small {
    font-size: 110px;
  }

  .concept-watermark .wm--top {
    left: -30px;
    top: -20px;
    bottom: auto;
  }

  .concept-watermark .wm--bottom {
    right: -20px;
    bottom: -10px;
    top: auto;
  }

  .section{ 
    padding: 64px 0; 
  }

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

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

  .section-title {
    font-size: 32px;
  }

  .about-item,
  .about-item--reverse {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
  }

  .about-item .about-body,
  .about-item--reverse .about-body {
    order: 1;
  }

  .about-item .about-media,
  .about-item--reverse .about-media {
    order: 2;
  }

  .about-media {
    width: 343px;
    margin-inline: auto;
  }

  .about-media img {
    height: 220px;
    width: 100%;
  }

  .about-body {
    padding: 0 16px;
    position: relative;
  }

  .about-no {
    position: absolute;
    right: 16px;
    top: 0px;
    transform: none;
    font-size: 180px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
  }

  .about-title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: .02em;
    margin-bottom: 12px;
    margin-top: 0;
  }

  .about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
  }

  .menu-wrap {
    padding: 80px 0 24px;
    max-width: 343px;
    margin: 0 auto;
  }

  .menu-wrap::before {
    inset: 4px 5px;
  }

  .menu,
  .menu .container,
  .menu-wrap,
  .menu-frame {
    overflow-x: clip;
  }

  .menu .section-head {
    margin-bottom: 32px;
  }

  .menu-frame {
    margin-top: 0;
  }

  .menu-feature,
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-feature {
    width: 100%;
    max-width: 343px;
    margin: 0 auto 48px;
  }

  .menu-grid {
    gap: 28px;
    margin: 0 0 40px;
  }

  .menu-item {
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }

  .menu-feature .menu-plate,
  .menu-item .menu-plate {
    order: 1;
    width: 315px;
    height: 311px;
    margin: 0 0 12px;
    transform: none;
  }

  .menu-feature .menu-plate {
    margin-bottom: -50px;
    z-index: 2;
  }

  .menu-item .menu-plate {
    margin-bottom: -40px;
    z-index: 2;
  }

  .menu-feature .menu-plate img,
  .menu-item .menu-plate img {
    width: 315px;
    height: 311px;
  }

  .menu-feature .menu-card,
  .menu-item .menu-card {
    order: 2;
    margin-left: 0;
    width: 300px;
    max-width: 300px;
  }

  .menu-feature .menu-card {
    height: 323px;
    padding: 126px 16px 22px;
    z-index: 1;
  }

  .menu-item .menu-card.menu-card--small {
    height: 223px;
    padding: 66px 14px 16px;
    z-index: 1;
  }

  .menu-feature .menu-badge {
    width: 211px;
    height: 97px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .menu-feature .menu-badge-en {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
  }

  .menu-feature .menu-badge-jp {
    font-family: var(--ff-jp);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: .02em;
  }

  .menu-feature .menu-name {
    font-size: 24px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .menu-feature .menu-price {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .menu-feature .menu-price::first-letter {
    font-family: "Reross", var(--ff-en);
    font-size: 18px;
    font-weight: 400;
  }

  .menu-feature .menu-price span {
    font-size: 12px;
    font-weight: 500;
  }

  .menu-feature .menu-macro {
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
    letter-spacing: 0;
  }

  .menu-item .menu-name {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .menu-item .menu-price {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .menu-item .menu-price::first-letter {
    font-family: "Reross", var(--ff-en);
    font-size: 18px;
    font-weight: 400;
  }

  .menu-item .menu-price span {
    font-size: 12px;
    font-weight: 500;
  }

  .menu-item .menu-macro {
    font-size: 13px;
    line-height: 1.45;
    white-space: nowrap;
    letter-spacing: 0;
  }

  .menu-ig {
    width: 300px;
    max-width: 300px;
    height: 572px;
    padding: 56px 14px 20px;
    margin: 0 auto;
  }

  .menu-ig::before {
    inset: 10px;
  }

  .menu-ig-tab {
    width: 185px;
    height: 50px;
    font-size: 24px;
    font-family: "Reross", var(--ff-en);
    font-weight: 400;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-ig-note {
    font-size: 16px;
    padding: 0;
    margin: 14px 32px 16px;
    text-align: left;
  }

  .menu-ig-grid {
    grid-template-columns: repeat(2, 125px);
    gap: 10px;
    width: 260px;
    margin: 0 auto 12px;
  }

  .menu-ig-grid img {
    width: 125px;
    height: 125px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .menu-ig-id {
    margin: 0 0 14px;
    font-size: 14px;
  }

  .menu-ig-btn {
    width: 240px;
    height: 48px;
    font-size: 14px;
  }

  .shop .container {
    padding: 0 16px;
  }

  .shop-map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .shop-map-frame {
    height: 250px;
  }

  .shop-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 32px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .shop-info {
    max-width: 100%;
    width: 100%;
  }

  .shop-name {
    justify-content: center;
    align-items: baseline;
    gap: 0;
    white-space: normal;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .shop-name .shop-name-tf {
    font-family: "Reross", var(--ff-en);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .01em;
    margin-right: 6px;
  }

  .shop-name .shop-name-main {
    font-family: "Reross", var(--ff-en);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: .01em;
    margin-right: 8px;
  }

  .shop-name span {
    font-family: var(--ff-jp);
    font-size: 14px;
    font-weight: 500;
  }

  .shop-name > span:last-child {
    font-size: 16px;
    flex-basis: 100%;
    text-align: center;
    margin-top: 4px;
  }

  .shop-row {
    grid-template-columns: 88px 1fr;
    column-gap: 6px;
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .shop-row dt,
  .shop-row dd {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
  }

  .shop-row.is-tight {
    grid-template-columns: auto 1fr;
    column-gap: 0;
  }

  .shop-row--spacer {
    padding: 6px 0;
  }

  .shop-row--no-label {
    grid-template-columns: 1fr;
  }

  .shop-row--no-label dd {
    grid-column: 1;
    white-space: nowrap;
  }

  .shop-photo {
    width: 100%;
    justify-content: center;
  }

  .shop-photo img {
    width: 100%;
    height: 220px;
    max-width: 343px;
    margin: 0 auto;
    border-radius: 0;
  }

  .dear {
    margin-top: 48px;
  }

  .dear-inner {
    width: 100%;
    height: auto;
    padding: 16px;
    border-radius: 12px;
  }

  .dear-stamp {
    width: 140px;
    height: 116px;
    left: -18px;
    top: -20px;
  }

  .dear-photos{
    margin-top: 18px;
    margin-bottom: 14px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dear-photo img{ 
    height: 200px; 
  }

  .dear-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
  }

  .dear-title {
    font-size: 30px;
    font-family: "Satisfy", cursive;
  }

  .dear-text {
    margin-left: 0;
  }

  .dear-text p {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    color: rgba(79, 79, 79, 1);
    line-height: 2.5;
    border-bottom: 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 10px;
    text-decoration-skip-ink: none;
  }

  .dear-sign {
    margin: 8px 0 0;
    margin-left: auto;
    font-size: 36px;
    justify-self: end;
    align-self: flex-end;
    text-align: right;
    font-family: "Satisfy", cursive;
  }

  .contact{
    padding: 64px 0;
  }

  .contact-inner.container {
    width: 100%;
    padding: 0 16px;
  }

  .contact-card{
    width: 100%;
    max-width: 343px;
    min-height: 0;
    height: auto;
    padding: 40px 16px 32px;
    background: rgba(255,255,255,.92);
  }

  .contact .section-head {
    margin-bottom: 0;
  }

  .contact .section-kicker {
    font-size: 14px;
  }

  .contact .section-title {
    font-size: 32px;
    padding-bottom: 16px;
  }

  .contact-lead {
    margin: 22px 0 24px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

  .contact .form{
    width: 100%;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .form-label {
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .footer-social {
    gap: 40px;
  }

  .req {
    height: 20px;
    padding: 0 8px;
    font-size: 10px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .form-input {
    height: 48px;
  }

  .form-textarea {
    min-height: 160px;
  }

  .form-check {
    margin: 20px 0 0;
  }

  .check span {
    font-size: 14px;
    line-height: 1.6;
  }

  .check{
    justify-content: flex-start;
    align-items: flex-start;
  }

  .btn--full{
    width: 312px;
    height: 56px;
    margin-top: 24px;
  }

  .policy-modal{
    padding: 16px;
  }

  .policy-modal__panel{
    width: 100%;
    max-height: 92vh;
    padding: 40px 22px 28px;
  }

  .policy-modal__close{
    top: 10px;
    right: 12px;
    font-size: 44px;
  }

  .policy-modal__kicker{
    font-size: 16px;
  }

  .policy-modal__title{
    font-size: 38px;
  }

  .policy-modal__body{
    max-height: calc(92vh - 180px);
    font-size: 18px;
    line-height: 1.9;
  }

  .policy-modal__body h3{
    font-size: 22px;
    margin-top: 24px;
  }

  .pagetop{
    width: 70px; height: 70px;
    right: 12px; bottom: 12px;
    z-index: 99999;
  }
}
