:root {
  --rice:    #FCF9F1;
  --rice-2:  #F4ECD8;
  --card:    #FFFFFF;
  --ink:     #2B2521;
  --ink-sub: #6E645A;
  --shu:     #D6421C;
  --shu-d:   #B23214;
  --green:   #4F7A38;
  --green-d: #3C5F2A;
  --amber:   #C08321;
  --line:    #E8DFCB;
  --line-2:  #D8CBAE;

  --serif: "Shippori Mincho", "Noto Serif JP", serif;
  --sans:  "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;

  --pad: clamp(18px, 5vw, 44px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--rice);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 720px; }

/* ---------- ヘッダー ---------- */
.topbar {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 11px var(--pad);
  background: rgba(252,249,241,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.topbar.on { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(43,37,33,.07); }
.topbar .brand { text-decoration: none; font-family: var(--serif); font-weight: 700;
                 font-size: 17px; letter-spacing: .14em; line-height: 1.4; color: var(--ink); }
.topbar .brand small { display: block; font-size: 9.5px; letter-spacing: .28em;
                       color: var(--ink-sub); font-weight: 500; margin-top: 2px; }
.topbar nav { display: none; gap: 26px; font-size: 13px; letter-spacing: .06em; }
.topbar nav a { text-decoration: none; color: var(--ink-sub); transition: color .25s; }
.topbar nav a:hover { color: var(--shu); }
.topbar-tel { display: none; text-decoration: none; text-align: right; line-height: 1.35; }
.topbar-tel b { font-size: 19px; letter-spacing: .04em; color: var(--shu); }
.topbar-tel span { display: block; font-size: 10px; letter-spacing: .04em; color: var(--ink-sub); }
@media (min-width: 920px) { .topbar nav, .topbar-tel { display: flex; } .topbar-tel { display: block; } }

/* ---------- ヒーロー：弁当箱の仕切りに見立てたカタログ ---------- */
.hero { padding: clamp(84px, 12vw, 118px) 0 clamp(40px, 6vw, 64px); }
.hero-frame {
  background: var(--rice-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 20px 50px -30px rgba(43,37,33,.4);
}
.hero-tray { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.hero-tray .intro, .hero-tray .feature { grid-column: 1 / -1; }
.hero .cell { background: var(--card); border-radius: 4px; overflow: hidden; }

.hero .intro { padding: clamp(26px, 4.5vw, 44px); display: flex; flex-direction: column; }
.hero .ki { font-size: 12px; letter-spacing: .18em; color: var(--green-d); margin-bottom: 14px; }
.hero .ki::before { content: ""; display: inline-block; width: 22px; height: 2px;
                    background: var(--green); vertical-align: middle; margin-right: 10px; }
.hero h1 { font-family: var(--serif); font-weight: 700;
           font-size: clamp(30px, 6vw, 50px); line-height: 1.4; letter-spacing: .05em; }
.hero .lede { margin-top: 18px; font-size: 14px; line-height: 2; color: var(--ink-sub); max-width: 30em; }
.hero .facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 26px; }
.hero .facts li { background: var(--rice-2); border: 1px solid var(--line);
                  border-radius: 4px; padding: 9px 15px; line-height: 1.3; }
.hero .facts b { display: block; font-family: var(--serif); font-size: 20px; color: var(--shu); letter-spacing: .02em; }
.hero .facts span { font-size: 11px; color: var(--ink-sub); letter-spacing: .04em; }
.tel-cta { margin-top: auto; align-self: flex-start; text-decoration: none;
           display: inline-flex; align-items: baseline; gap: 14px;
           background: var(--shu); color: #fff; padding: 15px 30px; border-radius: 4px;
           transition: background .25s, transform .25s; }
.tel-cta:hover { background: var(--shu-d); transform: translateY(-2px); }
.tel-cta .t { font-size: 12.5px; letter-spacing: .12em; }
.tel-cta .n { font-family: var(--serif); font-weight: 600; font-size: 25px; letter-spacing: .04em; }

.hero .feature { position: relative; min-height: 220px; }
.hero .feature img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.hero .feature figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--shu); color: #fff; font-size: 12px; letter-spacing: .06em;
  padding: 7px 14px; border-radius: 3px;
}

/* ---------- 商品カード（ヒーロー内＆カタログ共通） ---------- */
.prod, .menu-card {
  background: var(--card); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
}
.menu-card { border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -22px rgba(43,37,33,.5); }
.prod .ph, .menu-card .ph { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prod .ph img, .menu-card .ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.badge {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  font-size: 11px; letter-spacing: .05em; font-weight: 500;
  padding: 4px 11px; border-radius: 3px; color: #fff;
}
.badge.shu   { background: var(--shu); }
.badge.green { background: var(--green); }
.badge.amber { background: var(--amber); }

.prod .body, .menu-card .body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.prod .nm, .menu-card h3 { font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: .05em; }
.prod .ds, .menu-card p { font-size: 12.5px; line-height: 1.85; color: var(--ink-sub); flex: 1; }
.prod .foot, .menu-card .foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 2px; }
.pr { font-family: var(--serif); font-weight: 700; font-size: 27px; color: var(--ink); letter-spacing: .01em; line-height: 1; }
.pr .y { font-size: 16px; margin-right: 1px; }
.pr small { font-family: var(--sans); font-weight: 400; font-size: 10.5px; color: var(--ink-sub); margin-left: 5px; letter-spacing: .02em; }
.mini { list-style: none; display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.mini li { font-size: 10.5px; letter-spacing: .02em; color: var(--green-d);
           border: 1px solid var(--line-2); border-radius: 999px; padding: 2px 9px; white-space: nowrap; }
.menu-card .mini { justify-content: flex-start; margin-top: 2px; }

.tiers { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.tiers span { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--ink); }
.tiers span + span::before { content: "/"; color: var(--line-2); font-weight: 400; margin-right: 8px; }
.tiers small { font-size: 11px; color: var(--ink-sub); font-weight: 400; }

/* ---------- セクション共通 ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.sec-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 44px); }
.label { display: inline-block; font-size: 12px; letter-spacing: .1em; font-weight: 500;
         color: #fff; padding: 4px 13px; border-radius: 3px; margin-bottom: 16px; }
.label.shu { background: var(--shu); }
.label.green { background: var(--green); }
h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 3.6vw, 32px);
     line-height: 1.55; letter-spacing: .05em; }
.sec-head p { margin-top: 16px; font-size: 14px; line-height: 2; color: var(--ink-sub); }
.scene { font-family: var(--serif); font-size: clamp(14.5px, 1.8vw, 16px);
         line-height: 2.2; letter-spacing: .05em; color: var(--ink); }
.note { margin-top: clamp(24px, 3vw, 34px); font-size: 12.5px; line-height: 2; color: var(--ink-sub); }
strong { font-weight: 700; color: var(--ink); }

/* ---------- カタログのグリッド ---------- */
.catalog { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 18px); }
@media (min-width: 720px) { .catalog { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 720px) { .catalog.cat3 { grid-template-columns: repeat(3, 1fr); } }

.daily { background: var(--rice); }
.catering { background: var(--rice-2); }
.catering .menu-card { border-color: var(--line-2); }

/* ---------- 条件の開示 ---------- */
.spec { margin-top: clamp(34px, 4vw, 46px); border-top: 1px solid var(--line-2); }
.spec div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 15px 2px; border-bottom: 1px solid var(--line-2); }
@media (min-width: 640px) { .spec div { grid-template-columns: 172px 1fr; gap: 22px; align-items: baseline; } }
.spec dt { font-size: 12.5px; letter-spacing: .06em; color: var(--green-d); font-weight: 500; }
.spec dd { font-size: 14px; line-height: 1.85; }

/* ---------- 締切の早見表 ---------- */
.deadline { margin-top: clamp(36px, 4vw, 48px); width: 100%; border-collapse: collapse; background: var(--card); }
.deadline caption { text-align: left; font-size: 12.5px; color: var(--ink-sub); padding-bottom: 12px; letter-spacing: .05em; }
.deadline th, .deadline td { text-align: left; padding: 15px 15px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.7; }
.deadline thead th { background: var(--green); color: #fff; font-weight: 500; font-size: 12.5px; letter-spacing: .08em; border-bottom: 0; }
.deadline tbody th { font-weight: 700; white-space: nowrap; width: 38%; background: rgba(79,122,56,.05); }
.deadline .em { color: var(--shu); font-weight: 700; }

/* ---------- 注文の決まりごと（リボン） ---------- */
.rules { background: var(--ink); color: #fff; padding: clamp(30px, 4vw, 44px) 0; }
.rules .wrap { display: grid; gap: clamp(20px, 3vw, 34px); }
@media (min-width: 900px) { .rules .wrap { grid-template-columns: 1fr auto; align-items: center; } }
.rules-row { display: grid; gap: 0; }
@media (min-width: 560px) { .rules-row { grid-template-columns: repeat(3, 1fr); } }
.rule { padding: 14px 0; }
@media (min-width: 560px) {
  .rule { padding: 4px 26px; border-left: 1px solid rgba(255,255,255,.16); }
  .rule:first-child { padding-left: 0; border-left: 0; }
}
@media (max-width: 559px) {
  .rule { border-top: 1px solid rgba(255,255,255,.14); }
  .rule:first-child { border-top: 0; }
}
.rule .k { display: block; font-size: 11.5px; letter-spacing: .1em; color: rgba(255,255,255,.62); }
.rule .v { display: block; font-family: var(--serif); font-weight: 700; font-size: 30px; letter-spacing: .02em; margin: 3px 0 5px; }
.rule .v em { font-style: normal; font-size: 18px; color: #F5B199; margin-left: 3px; }
.rule .n { font-size: 11.5px; line-height: 1.7; color: rgba(255,255,255,.66); }
.tel-wide { text-decoration: none; display: block; text-align: center;
            background: var(--shu); color: #fff; padding: 16px 34px; border-radius: 5px;
            transition: background .25s, transform .25s; }
.tel-wide:hover { background: var(--shu-d); transform: translateY(-2px); }
.tel-wide .t { display: block; font-size: 12px; letter-spacing: .12em; }
.tel-wide .n { display: block; font-family: var(--serif); font-weight: 700; font-size: 28px; letter-spacing: .04em; margin: 2px 0; }
.tel-wide .h { display: block; font-size: 11px; color: rgba(255,255,255,.8); }

/* ---------- 手順 ---------- */
.steps { counter-reset: s; margin-top: clamp(30px, 4vw, 42px); }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step:first-child { border-top: 1px solid var(--line); }
.step::before { counter-increment: s; content: counter(s);
                font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff;
                background: var(--shu); width: 40px; height: 40px; border-radius: 50%;
                display: grid; place-items: center; line-height: 1; }
.step h3 { font-family: var(--serif); font-size: 17px; letter-spacing: .05em; margin-bottom: 4px; }
.step p { font-size: 13.5px; color: var(--ink-sub); line-height: 1.9; }

/* ---------- CTA帯（明るい生成り） ---------- */
.band { background: var(--rice-2); }
.band-in { display: grid; gap: clamp(26px, 4vw, 48px); align-items: center; }
@media (min-width: 860px) { .band-in { grid-template-columns: 1fr 1fr; } }
.band-text h2 { line-height: 1.5; }
.band-text p { margin-top: 16px; font-size: 14px; line-height: 2; color: var(--ink-sub); }
.band-photo { border-radius: 6px; overflow: hidden; box-shadow: 0 22px 44px -28px rgba(43,37,33,.6); }
.band-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 45%; }

/* ---------- お品書き（価格表） ---------- */
.menu { background: var(--rice); }
.menu-head { margin: clamp(30px, 4vw, 42px) 0 4px; font-size: 12.5px; letter-spacing: .12em;
             color: var(--green-d); font-weight: 500; padding-bottom: 11px; border-bottom: 2px solid var(--line-2); }
.price-list { }
.menu-row { display: flex; align-items: baseline; gap: 14px; padding: 15px 2px; border-bottom: 1px dotted var(--line-2); }
.menu-row .nm { font-family: var(--serif); font-size: 16px; letter-spacing: .04em; white-space: nowrap; }
.menu-row .ds { flex: 1; font-size: 12.5px; color: var(--ink-sub); }
.menu-row .pr { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: .02em; white-space: nowrap; color: var(--ink); }

/* ---------- 声 ---------- */
.voice { background: var(--rice-2); }
.voices { display: grid; gap: 16px; margin-top: clamp(28px, 3vw, 38px); }
@media (min-width: 780px) { .voices { grid-template-columns: repeat(3, 1fr); } }
.v-card { background: var(--card); border: 1px solid var(--line); border-radius: 4px; padding: 26px 24px; }
.v-card p { font-size: 13.5px; line-height: 2.05; }
.v-card .who { margin-top: 16px; font-size: 11.5px; letter-spacing: .06em; color: var(--ink-sub); }
.v-card .who::before { content: ""; display: block; width: 22px; height: 2px; background: var(--green); margin-bottom: 12px; }

/* ---------- FAQ ---------- */
.faq { margin-top: clamp(26px, 3vw, 36px); border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 36px 18px 2px; font-size: 14.5px; position: relative; letter-spacing: .03em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 15px; font-size: 20px; color: var(--shu); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 36px 22px 2px; font-size: 13.5px; color: var(--ink-sub); line-height: 2.05; }

/* ---------- お店のこと（2分割） ---------- */
.shop { padding: 0; }
.split { display: grid; }
.split-photo img { width: 100%; height: clamp(320px, 68vw, 460px); object-fit: cover; object-position: 50% 30%; }
.split-body { background: var(--green-d); color: #fff; padding: clamp(46px, 8vw, 82px) var(--pad); }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-photo { position: relative; }
  .split-photo img { position: absolute; inset: 0; height: 100%; }
  .split-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 7vw, 104px) clamp(40px, 5vw, 72px); }
}
.split-body .label.green { background: rgba(255,255,255,.16); }
.split-body h2 { color: #fff; }
.split-body .sec-head { margin-bottom: 26px; }
.shop-dl div { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.shop-dl dt { font-size: 11.5px; letter-spacing: .1em; color: rgba(255,255,255,.66); margin-bottom: 3px; }
.shop-dl dd { font-size: 14.5px; }

/* ---------- ボタン・CTA ---------- */
.btn { display: inline-block; padding: 15px 38px; background: var(--shu); color: #fff;
       text-decoration: none; font-size: 14px; letter-spacing: .08em; border-radius: 4px;
       transition: background .25s, transform .25s; }
.btn:hover { background: var(--shu-d); transform: translateY(-2px); }
.btn.ghost { background: transparent; border: 1px solid var(--line-2); color: var(--ink); }
.btn.ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn.light { background: #fff; color: var(--shu); }
.btn.light:hover { background: var(--rice-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-inline { margin-top: clamp(34px, 4vw, 50px); text-align: center; }
.cta-inline p { font-size: 13.5px; color: var(--ink-sub); }
.cta-inline .btn { margin-top: 14px; }

.final { background: var(--shu); color: #fff; text-align: center; }
.final .wrap { display: flex; flex-direction: column; align-items: center; }
.final h2 { color: #fff; margin-bottom: 12px; }
.final p { color: rgba(255,255,255,.9); font-size: 14px; }
.final .cta-actions { justify-content: center; }
.final .btn.ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.final .btn.ghost:hover { background: #fff; color: var(--shu); border-color: #fff; }

/* ---------- スマホ追従バー ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(43,37,33,.97); backdrop-filter: blur(8px);
  transform: translateY(115%); transition: transform .4s;
}
.sticky.on { transform: none; }
.sticky a { flex: 1; text-align: center; padding: 13px 6px; text-decoration: none; font-size: 13.5px; letter-spacing: .04em; border-radius: 4px; }
.sticky .s1 { background: var(--shu); color: #fff; flex: 1.4; }
.sticky .s2 { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
@media (min-width: 920px) { .sticky { display: none; } }

/* ---------- フッター ---------- */
footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 48px var(--pad) 92px; text-align: center; }
footer .f-brand { font-family: var(--serif); color: #fff; font-size: 15px; letter-spacing: .14em; margin-bottom: 14px; }
footer p { font-size: 11.5px; line-height: 2; }
footer .credit { margin-top: 22px; font-size: 11px; color: rgba(255,255,255,.5); }
footer a { color: rgba(255,255,255,.75); }
@media (min-width: 920px) { footer { padding-bottom: 48px; } }

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