/* ============================================================
   べあくれーぷ LP — brand: cocoa #4A3B33 / caramel #C08A5A
   SP first (design base 430px) → tablet 768px → desktop 1024px
   ============================================================ */

:root {
  --cocoa: #4A3B33;
  --cocoa-soft: #5A483F;
  --caramel: #C08A5A;
  --cream: #FFFDF9;
  --beige: #F5EDE3;
  --white: #FFFDF9;
  --ink: #4A3B33;
  --ink-sub: #7A6355;
  --ink-mute: #8A7362;
  --ink-faint: #A08872;
  --gold: #A9703F;
  --gold-light: #D8B48D;
  --gold-dim: #C9AE93;
  --label: #B08050;
  --marker: #F0D9C6;
  --berry: #CC4B55;
  --line: #EFE2D4;
  --line-strong: #E4D5C4;
  --line-dark: #6E5A4E;
  --on-dark: #FBF3EA;
  --on-dark-sub: #CBB9A9;
  --photo-bg: #F0E4D6;

  --font-body: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  --font-round: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', var(--font-body);
  --font-mono: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: 'Zen Old Mincho', 'Hiragino Mincho ProN', serif;

  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 20px;
  --header-h: 60px;
  --nav-h: 0px;
  --pad-x: 24px;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  /* SPで要素が数pxはみ出しても横スクロールさせない。hidden だと sticky に副作用が出るため clip */
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd { margin: 0; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 12px; top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--cocoa);
  color: var(--cream);
  border-radius: 999px;
}

:focus-visible { outline: 3px solid var(--caramel); outline-offset: 3px; }

/* ---------- header ---------- */

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.header-brand { display: flex; align-items: center; gap: 10px; color: var(--on-dark); }

.header-logo { width: 34px; height: 34px; border-radius: 999px; }

.header-name { font-family: var(--font-round); font-size: 15px; font-weight: 700; }

.header-note,
.header-back {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

/* メニューページのカテゴリナビ */
.site-header--menu { --nav-h: 52px; }

.menu-nav-bar { background: var(--cocoa-soft); }

.menu-nav {
  display: flex;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px var(--pad-x);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar { display: none; }

.menu-nav li { flex: none; }

.menu-nav a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(251, 243, 234, .1);
  color: #F0DCC6;
  font-family: var(--font-round);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .15s ease;
}

.menu-nav a:hover { background: rgba(251, 243, 234, .2); }

/* ---------- shared ---------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: 36px 0;
  scroll-margin-top: calc(var(--header-h) + var(--nav-h));
}

.section--beige { background: var(--beige); }

.section--dark { background: var(--cocoa); color: var(--on-dark); }

.section-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.section-label {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--label);
}

.section-label--gold { color: var(--gold-light); }

.section-title {
  font-family: var(--font-round);
  font-size: clamp(24px, 6.5vw, 28px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -.01em;
  text-wrap: balance;
}

.section-lead {
  max-width: 640px;
  font-size: 13px;
  line-height: 2;
  color: var(--ink-sub);
  text-wrap: pretty;
}

.section--dark .section-lead,
.section--dark .card-text { color: var(--on-dark-sub); }

.label-chip {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--caramel);
  color: var(--cream);
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.label-chip--dark { background: var(--cocoa); color: var(--on-dark); }

.tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--on-dark);
  color: var(--cocoa);
  font-family: var(--font-round);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
}

.marker { background: linear-gradient(transparent 62%, var(--marker) 62%); }
.marker--soft { background: linear-gradient(transparent 68%, rgba(192, 138, 90, .5) 68%); }

.card-title {
  display: block;
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.card-text {
  display: block;
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--ink-sub);
}

.unit { font-size: .58em; }

/* ---------- buttons ---------- */

.cta-group { display: flex; flex-direction: column; gap: 9px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}

.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn:active { transform: translateY(0); }

.btn--between { justify-content: space-between; gap: 12px; text-align: left; }

.btn--primary { background: var(--caramel); color: var(--cream); }
.btn--outline { background: var(--cream); border: 2px solid var(--line-strong); color: var(--gold); }
.btn--light { background: var(--on-dark); color: var(--cocoa); }
.btn--ghost { border: 2px solid var(--line-dark); color: #E0D2C4; }

.arrow { font-family: var(--font-mono); font-size: 15px; }

.btn-deco { flex-shrink: 0; }

.brand-link-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.btn--between .brand-link-label { justify-content: flex-start; }

.brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.brand-icon--maps { width: 24px; height: 24px; }
.brand-icon--pin { width: 21px; height: 21px; }

/* ---------- hero ---------- */

.hero {
  overflow: hidden;
  background-color: var(--cream);
  background-image: url('/images/character/lp/hero-shop-watercolor-bg-v1.webp');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-collage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  padding: 6px var(--pad-x) 0;
}

.hero-collage img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px var(--pad-x) 0;
}

.hero-title {
  font-family: var(--font-round);
  font-size: clamp(23px, 6.6vw, 30px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -.01em;
}

.lead { font-size: 13.5px; line-height: 2; color: var(--ink-sub); text-wrap: pretty; }

.hero-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .82);
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 12px 32px rgba(74, 59, 51, .04);
  font-size: 12.5px;
  line-height: 1.8;
}

.hero-facts dt { font-family: var(--font-round); font-weight: 700; color: var(--ink-faint); }

.hero-facts-link { color: var(--gold); font-weight: 700; }

/* ---------- トップ: カテゴリカード ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(30%, 300px), 1fr));
  gap: 8px;
}

.cat-cell { display: flex; }

.cat-card { display: flex; flex-direction: column; width: 100%; }

.cat-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--photo-bg);
}

.cat-photo--contain { object-fit: contain; }

.cat-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  padding: 10px 7px 12px;
  background: var(--cocoa);
  color: var(--on-dark);
  text-align: center;
}

/* 破線の内枠と右下の三角は、カードが押せることの合図 */
.cat-body::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(251, 243, 234, .45);
  pointer-events: none;
}

.cat-body::after {
  content: '▶';
  position: absolute;
  right: 7px;
  bottom: 6px;
  font-size: 7px;
  line-height: 1;
  color: var(--gold-dim);
}

.cat-name { font-family: var(--font-round); font-size: clamp(10px, 2.65vw, 14px); font-weight: 700; line-height: 1.4; }
.cat-en { font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; color: var(--gold-dim); }
.cat-price { margin-top: 2px; font-family: var(--font-round); font-size: clamp(10px, 2.6vw, 12px); font-weight: 700; line-height: 1.4; color: #E8CDAC; }

.menu-all {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  margin: 16px auto 0;
  min-height: 54px;
  background: var(--cocoa);
  color: var(--on-dark);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: opacity .15s ease;
}

.menu-all:hover { opacity: .9; }

.menu-all::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(251, 243, 234, .45);
  pointer-events: none;
}

.menu-all .corner { position: absolute; right: 14px; bottom: 10px; font-size: 9px; line-height: 1; color: var(--gold-dim); }

/* ---------- トップ: ミニ／トッピング ---------- */

.promo-solo { width: min(100%, 720px); margin: 0 auto; }

.promo-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px dashed rgba(207, 173, 124, .65);
}

.promo-sub-title { font-family: var(--font-round); font-size: 15px; font-weight: 700; }

.promo-sub .thumb-grid { grid-template-columns: repeat(4, 64px); }

.promo-sub .promo-more { margin-top: 0; font-size: 12px; }

.promo-sub .card-text { font-size: 11.5px; color: var(--ink-mute); }

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-l);
  background: var(--beige);
}

.promo-title { font-family: var(--font-round); font-size: 20px; font-weight: 900; line-height: 1.45; }

.promo-more { margin-top: auto; font-family: var(--font-round); font-size: 13px; font-weight: 700; color: var(--gold); }

.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

.thumb { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; background: var(--cream); }

/* ---------- こだわり ---------- */

.kodawari-grid { display: grid; gap: 14px; align-items: start; }

.dough-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-l);
  background: var(--cocoa-soft);
}

.dough-photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 14px; }

.dough-title { font-family: var(--font-round); font-size: 19px; font-weight: 900; line-height: 1.55; }

.kodawari-text { font-size: 13px; line-height: 2; color: #E0D2C4; text-wrap: pretty; }

.dough-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--on-dark);
  color: var(--cocoa);
}

.dough-card .card-text { font-size: 11px; line-height: 1.75; color: var(--ink-mute); }

.dough-price { font-family: var(--font-round); font-size: 19px; font-weight: 900; color: var(--gold); white-space: nowrap; }

.kodawari-list { display: flex; flex-direction: column; gap: 11px; }

.kodawari-item {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-m);
  background: var(--cocoa-soft);
}

.kodawari-photo { flex: none; width: 88px; aspect-ratio: 1; object-fit: cover; border-radius: 13px; }

.kodawari-body { display: flex; flex-direction: column; gap: 5px; }

.kodawari-item .card-title { font-size: 13.5px; }
.kodawari-item .card-text { font-size: 11.5px; line-height: 1.85; color: var(--on-dark-sub); }
.kodawari-note { font-size: 10px; line-height: 1.6; color: var(--on-dark-sub); opacity: 0.7; }

/* ---------- お店のこと ---------- */

.shop-grid { display: grid; gap: 16px; align-items: start; }

.shop-media { display: flex; flex-direction: column; gap: 10px; }

.shop-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.shop-photos img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 14px; }

.shop-map { width: 100%; aspect-ratio: 16 / 11; border: 0; border-radius: 16px; }

.info-table { display: flex; flex-direction: column; font-size: 12.5px; line-height: 1.9; }

.info-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }

.info-row:last-child { border-bottom: 0; }

.info-row dt {
  flex: none;
  width: 64px;
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
}

.info-sub { color: var(--ink-faint); }

/* ---------- お知らせ ---------- */

.news-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin-inline: auto;
}

.news-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  background: var(--cream);
}

.news-entry--link { transition: border-color .15s ease, transform .15s ease; }

.news-entry--link:hover {
  border-color: var(--caramel);
  transform: translateY(-1px);
}

.news-date {
  grid-column: 1;
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--gold);
}

.news-title {
  grid-column: 1;
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.news-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--caramel);
  font-family: var(--font-round);
  font-size: 18px;
}

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 10px; }

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border-radius: var(--radius-m);
  background: var(--cream);
}

.faq-item .card-text { font-size: 12.5px; line-height: 1.95; }

/* ---------- 締め・フッター ---------- */

.closing-grid { display: grid; gap: 24px; align-items: center; }

.closing { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.closing-logo { width: 82px; height: 82px; border-radius: 999px; }

.closing-text {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 2.2;
  color: var(--on-dark-sub);
  text-align: center;
}

.site-footer {
  padding: 22px var(--pad-x) 26px;
  background: var(--cocoa);
  color: #8E7A6C;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-align: center;
}

/* ---------- 下部の固定バー ---------- */

.mobile-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 9px;
  padding: 10px 0 14px;
  /* 背景と境界線は全幅に出し、中身だけコンテナ幅に収める */
  padding-inline: max(var(--pad-x), calc((100% - var(--container)) / 2 + var(--pad-x)));
  background: rgba(255, 253, 249, .95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.mobile-bar .btn { flex: 1 1 auto; min-height: 48px; font-size: 13px; padding: 8px 10px; white-space: nowrap; }
.mobile-bar .btn--primary { flex: 1.3 1 auto; font-size: 13.5px; background: #9F6435; }
.mobile-bar .btn--outline { color: #9F6435; }
.mobile-bar .btn--icon { flex: none; width: auto; min-width: 76px; padding: 0 10px; gap: 5px; font-size: 12px; }
.mobile-bar .brand-icon { width: 18px; height: 18px; }
.mobile-bar .brand-icon--maps { width: 20px; height: 20px; }

/* ============================================================
   メニューページ
   ============================================================ */

.menu-intro-shell,
.page-menu .menu-section {
  position: relative;
  isolation: isolate;
}

.menu-intro {
  position: relative;
  padding-top: 26px;
  padding-bottom: 20px;
  padding-right: 104px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.menu-page-mascot {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 92px;
  filter: drop-shadow(0 10px 10px rgba(94, 58, 34, .14));
  pointer-events: none;
}

.page-menu #sns {
  overflow: hidden;
}

.page-menu #sns .closing-grid {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "head"
    "mascot"
    "cta";
}

.page-menu #sns .section-head {
  grid-area: head;
  margin-bottom: 0;
}

.page-menu #sns .cta-group {
  grid-area: cta;
}

.menu-closing-mascot {
  display: block;
  grid-area: mascot;
  justify-self: center;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 12px 14px rgba(30, 17, 10, .22));
  pointer-events: none;
}

.menu-section {
  padding: 26px 0;
  background: #F7E8CD;
  scroll-margin-top: calc(var(--header-h) + var(--nav-h));
}

.menu-section--alt { background: var(--beige); }

.menu-head { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 14px; }

.menu-en {
  margin-bottom: -2px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--label);
}

.menu-title { font-family: var(--font-round); font-size: 21px; font-weight: 900; line-height: 1.45; }

.menu-note { font-size: 12px; line-height: 1.8; color: var(--ink-faint); }

.menu-lead { max-width: 640px; margin-bottom: 14px; font-size: 13px; line-height: 2; color: var(--ink-sub); text-wrap: pretty; }

.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 120px), 1fr)); gap: 12px; }

.item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 8px 18px rgba(94, 58, 34, .05);
}

.item-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 13px; background: var(--beige); }

/* タップで拡大（photo-zoom.js が付与） */
.item-photo.is-zoomable { cursor: zoom-in; }

.photo-zoom {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 560px);
}

/* showModal でダイアログ自体がフォーカスされるため、共通のフォーカスリングを出さない */
.photo-zoom:focus-visible { outline: none; }

.photo-zoom img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-m);
  cursor: zoom-out;
}

.photo-zoom::backdrop { background: rgba(74, 59, 51, .72); }

.item-photo--contain { object-fit: contain; }

.item-name { font-size: 11.5px; line-height: 1.6; }

.item-desc { font-size: 10.5px; line-height: 1.7; color: var(--ink-faint); }

.item-price { margin-top: auto; padding-top: 2px; font-family: var(--font-round); font-size: 13px; font-weight: 700; color: var(--gold); }

.badge-new {
  display: inline-flex;
  align-items: center;
  height: 18px;
  margin-right: 6px;
  padding: 0 7px;
  border-radius: 5px;
  background: var(--berry);
  color: var(--cream);
  font-family: var(--font-round);
  font-size: 9.5px;
  font-weight: 700;
}

.row-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 0 24px;
  padding: 4px 20px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  font-size: 13.5px;
  line-height: 1.7;
}

.row:last-child { border-bottom: none; }

.row { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }

.row-price { font-family: var(--font-round); font-weight: 700; color: var(--gold); white-space: nowrap; }
.row-price .unit { font-size: .72em; }

.price-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.menu-section--alt .price-box { background: var(--cream); }

.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 12.5px; }

.price-add { font-family: var(--font-round); font-size: 18px; font-weight: 900; color: var(--gold); white-space: nowrap; }

.pending-note,
.insta-card {
  max-width: 640px;
  padding: 20px;
  border-radius: var(--radius-m);
  background: var(--beige);
  border: 2px dashed var(--line-strong);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--ink-sub);
}

.menu-section--alt .pending-note,
.menu-section--alt .insta-card { background: var(--cream); }

.insta-card { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }

.insta-head { display: flex; align-items: center; gap: 10px; }

.insta-logo { width: 38px; height: 38px; border-radius: 999px; }

.insta-head strong { display: block; font-family: var(--font-round); font-size: 13.5px; font-weight: 700; color: var(--cocoa); }

.insta-sub { font-size: 11px; line-height: 1.6; color: var(--ink-faint); }

.insta-embed { max-width: 640px; }
.insta-embed iframe { width: 100%; border: 0; }

.foot-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--beige);
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-sub);
}

.menu-section--alt .foot-note { background: var(--cream); }

/* ============================================================
   tablet — 768px〜
   ============================================================ */

@media (min-width: 768px) {
  :root { --pad-x: 32px; --header-h: 68px; }

  body { font-size: 15px; }

  .section { padding: 56px 0; }
  .section-head { gap: 10px; margin-bottom: 26px; }
  .section-title { font-size: 30px; }
  .section-lead { font-size: 14px; }

  .hero-copy { gap: 18px; padding-top: 26px; }
  .hero-title { font-size: 32px; }
  .lead { font-size: 14.5px; }
  .hero-facts { padding: 22px; font-size: 13px; }

  .cta-group { flex-direction: row; flex-wrap: wrap; }
  .cta-group .btn { flex: 1 1 200px; }

  .cat-grid { gap: 16px; }
  .cat-body { padding: 14px 12px 16px; }
  .cat-name { letter-spacing: .02em; }
  .cat-en { font-size: 9.5px; }
  .menu-all { margin-top: 26px; font-size: 15.5px; }

  .promo-card { padding: 26px; gap: 16px; }
  .promo-title { font-size: 24px; }

  .kodawari-grid { gap: 18px; }
  .dough-panel { padding: 24px; }
  .dough-title { font-size: 23px; }
  .dough-card { padding: 20px; }
  .dough-price { font-size: 22px; }
  .kodawari-photo { width: 110px; }
  .kodawari-item { padding: 16px; gap: 16px; }
  .kodawari-item .card-title { font-size: 15px; }
  .kodawari-item .card-text { font-size: 12.5px; }

  .shop-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 28px; }
  .shop-photos { gap: 12px; }
  .info-table { font-size: 13.5px; }

  .news-entry {
    grid-template-columns: 112px 1fr auto;
    gap: 18px;
    min-height: 72px;
    padding: 16px 22px;
  }
  .news-date, .news-title, .news-arrow { grid-column: auto; grid-row: auto; }
  .news-date { font-size: 11.5px; }
  .news-title { font-size: 14px; }

  .faq-list { grid-template-columns: 1fr 1fr; gap: 14px; }
  .faq-item { padding: 24px; }

  .closing-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 40px; }
  .closing-logo { width: 96px; height: 96px; }
  .closing-text { font-size: 14px; }

  .menu-intro { padding-top: 44px; padding-bottom: 28px; padding-right: 0; }
  .menu-page-mascot { width: 120px; right: 12px; bottom: -6px; }
  .page-menu #sns .closing-grid {
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-areas:
      "head mascot"
      "cta cta";
    gap: 32px;
  }
  .menu-closing-mascot { width: 150px; }
  .menu-section { padding: 44px 0; }
  .menu-title { font-size: 26px; }
  .menu-note { font-size: 13px; }
  .menu-lead { font-size: 14px; }
  .item-grid { gap: 16px; }
  .item-name { font-size: 12.5px; }
  .item-desc { font-size: 11px; }
  .item-price { font-size: 14px; }
  .row-list { font-size: 14.5px; gap: 0 36px; }
  .price-box { padding: 22px; }
  .price-add { font-size: 21px; }
  .pending-note, .insta-card, .foot-note { font-size: 13px; }
}

/* ============================================================
   desktop — 1024px〜
   ============================================================ */

@media (min-width: 1024px) {
  :root { --pad-x: 40px; }

  .section { padding: 72px 0; }
  .section-title { font-size: 34px; }

  .menu-intro {
    display: grid;
    grid-template-columns: minmax(0, 520px) 200px;
    grid-template-areas:
      "label mascot"
      "title mascot"
      "lead mascot";
    justify-content: space-between;
    column-gap: 28px;
  }

  .menu-intro .section-label { grid-area: label; }
  .menu-intro .section-title { grid-area: title; }
  .menu-intro .section-lead { grid-area: lead; }

  .menu-page-mascot {
    position: static;
    grid-area: mascot;
    align-self: end;
    width: 200px;
  }

  .page-menu #sns .closing-grid {
    grid-template-columns: minmax(260px, .85fr) 190px minmax(420px, 1.15fr);
    grid-template-areas: "head mascot cta";
    gap: 32px;
  }

  .menu-closing-mascot { width: 190px; }

  /* hero: コピー 左 / クレープとくま 右 */
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(28px, 3.2vw, 48px);
    min-height: 590px;
    padding: 24px var(--pad-x) 0;
  }

  .hero-copy { align-self: center; padding: 0 0 28px; gap: 20px; }
  .hero-collage { align-self: end; justify-content: flex-end; padding: 0; }
  .hero-collage img { width: min(100%, 540px); max-height: 580px; }
  .hero-title { font-size: clamp(30px, 2.7vw, 34px); }
  .lead { font-size: 15px; }

  .cat-grid { gap: 22px; }
  .cat-name { font-size: 17px; }
  .cat-en { font-size: 11px; }
  .cat-price { font-size: 13px; }

  .promo-card { padding: 30px; }
  .promo-title { font-size: 27px; }

  /* こだわり: 生地パネル 左 / 3項目 右 */
  .kodawari-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 20px; }
  .dough-panel { padding: 26px; }
  .dough-title { font-size: 25px; }
  .kodawari-text { font-size: 14px; }
  .kodawari-photo { width: 124px; }
  .kodawari-item { padding: 18px; }
  .kodawari-item .card-title { font-size: 16px; }
  .kodawari-item .card-text { font-size: 13px; }

  .shop-grid { gap: 36px; }
  .info-row dt { width: 72px; }

  .faq-list { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 16px; }
  .faq-item { padding: 26px; }
  .faq-item .card-text { font-size: 13.5px; }

  .menu-section { padding: 56px 0; }
  .menu-title { font-size: 30px; }
  .item-grid { gap: 20px; }
  .item-name { font-size: 13px; }
  .item-price { font-size: 15px; }
  .row-list { font-size: 15px; gap: 0 48px; }

  .mobile-bar { justify-content: flex-end; }
  .mobile-bar .btn { flex: none; min-width: 160px; }
  .mobile-bar .btn--primary { flex: none; min-width: 200px; }
}

/* ============================================================
   wide — 1280px〜
   ============================================================ */

@media (min-width: 1280px) {
  :root { --container: 1160px; }
}

/* ============================================================
   narrow phones — 〜400px
   ============================================================ */

@media (max-width: 400px) {
  :root { --pad-x: 20px; }
  .header-name { font-size: 14px; }
  .header-note, .header-back { font-size: 11px; }
  .hero-copy { gap: 12px; padding-top: 20px; }
  .hero-facts { padding: 16px; }
  .hero-collage img { width: 300px; }
  .kodawari-photo { width: 78px; }
  .mobile-bar { gap: 6px; }
  .mobile-bar .btn { padding-inline: 8px; font-size: 12px; }
  .mobile-bar .btn--icon { min-width: 72px; padding-inline: 5px; gap: 4px; }
  .mobile-bar .brand-icon { width: 17px; height: 17px; }
  .mobile-bar .brand-icon--maps { width: 18px; height: 18px; }
}

@media (max-width: 360px) {
  .mobile-bar .btn--icon { min-width: 60px; }
}

/* ============================================================
   スクロール連動の演出（JS有効時のみ初期状態を隠す）
   ============================================================ */

.js .section-head,
.js .cat-cell,
.js .menu-sub-head,
.js .pickup-cell,
.js .dough-banner,
.js .promo-card,
.js .dough-panel,
.js .kodawari-item,
.js .menu-all,
.js .news-item,
.js .faq-item,
.js .shop-media,
.js .info-table,
.js .closing,
.js .menu-head,
.js .item,
.js .row-list,
.js .price-box,
.js .pending-note,
.js .insta-card,
.js .foot-note {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .is-visible { opacity: 1; transform: none; }

/* 見出しのtransformが絶対配置の基準になり、くまが一瞬ズレて出るためフェードのみにする */
.js .page-home .menu-heading-stage .section-head { transform: none; }

/* マーカー線を左から引く */
.marker, .marker--soft { background-repeat: no-repeat; background-size: 100% 100%; }

.js .marker {
  background-size: 0 100%;
  transition: background-size .75s cubic-bezier(.22, .8, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .marker.is-visible { background-size: 100% 100%; }

/* ヒーローは読み込み時に順番に立ち上げる */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.js .hero-copy > *,
.js .hero-collage { animation: rise .8s cubic-bezier(.22, .8, .3, 1) both; }

.js .hero-copy > *:nth-child(1) { animation-delay: .05s; }
.js .hero-copy > *:nth-child(2) { animation-delay: .12s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .19s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .26s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .33s; }
.js .hero-collage { animation-delay: .02s; }
.js .hero-title .marker { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .js .section-head,
  .js .cat-cell,
  .js .menu-sub-head,
  .js .pickup-cell,
  .js .dough-banner,
  .js .promo-card,
  .js .dough-panel,
  .js .kodawari-item,
  .js .menu-all,
  .js .news-item,
  .js .faq-item,
  .js .shop-media,
  .js .info-table,
  .js .closing,
  .js .menu-head,
  .js .item,
  .js .row-list,
  .js .price-box,
  .js .pending-note,
  .js .insta-card,
  .js .foot-note,
  .js .hero-copy > *,
  .js .hero-collage { opacity: 1 !important; transform: none !important; }

  .js .marker { background-size: 100% 100% !important; }
}

/* 紙もの調のパレット。トップとメニューページで共通 */
.page-home,
.page-menu {
  --cocoa: #5E3A22;
  --cocoa-soft: #745035;
  --caramel: #A96D3D;
  --cream: #FFFBF2;
  --beige: #F0DCBB;
  --paper-light: #FBF1DE;
  --white: #FFFBF2;
  --ink: #4F3524;
  --ink-sub: #76573E;
  --ink-mute: #8D7054;
  --ink-faint: #987A5B;
  --gold: #B67A3F;
  --gold-light: #E9BC78;
  --gold-dim: #D4A665;
  --label: #A76839;
  --marker: #F1C98E;
  --line: #DFC49D;
  --line-strong: #CFAD7C;
  --line-dark: #9D7654;
  --on-dark: #FFF7E8;
  --on-dark-sub: #E8D3B8;
  --photo-bg: #F2E1C6;
  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 28px;
  --header-h: 68px;
  --container: 1120px;
  --pad-x: 22px;
  background-color: #F7E8CD;
  background-image:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, .5), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(207, 167, 111, .12), transparent 24%);
  color: var(--ink);
  font-family: var(--font-round);
}

.page-home .site-header {
  background: rgba(94, 58, 34, .98);
  box-shadow: 0 8px 22px rgba(79, 53, 36, .12);
}

.page-home .header-inner { gap: 14px; }

.page-home .header-brand,
.page-menu .header-brand { gap: 11px; }

.page-home .header-logo,
.page-menu .header-logo {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 247, 232, .88);
  box-shadow: 0 3px 12px rgba(44, 26, 15, .18);
}

.page-home .header-brand-copy,
.page-menu .header-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}

.page-home .header-name,
.page-menu .header-name {
  font-size: 15px;
  letter-spacing: .04em;
}

.page-home .header-wordmark,
.page-menu .header-wordmark {
  display: block;
  width: 100px;
  height: auto;
}

.page-home .header-en,
.page-menu .header-en {
  color: #E9C89D;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .12em;
}

.page-home .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 247, 232, .6);
  border-radius: 999px;
  background: var(--on-dark);
  color: var(--cocoa);
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.page-home .header-cta .brand-icon { width: 17px; height: 17px; }

.page-menu .header-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 247, 232, .55);
  border-radius: 999px;
  color: var(--on-dark);
  font-size: 11px;
}

.page-home .hero {
  background-color: #F7E8CD;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .68), transparent 26%),
    radial-gradient(circle at 18% 12%, rgba(255, 252, 243, .9), transparent 32%);
}

.page-home .hero-inner { max-width: var(--container); }

.page-home .hero-copy {
  gap: 17px;
  padding: 44px var(--pad-x) 30px;
}

.page-home .hero-title {
  font-size: clamp(29px, 8vw, 40px);
  line-height: 1.55;
  letter-spacing: .035em;
  text-wrap: balance;
}

/* 文節の途中で折り返さないための区切り */
.page-home .hero-title .seg { display: inline-block; }

.page-home .lead {
  color: var(--ink-sub);
  font-size: 13px;
  line-height: 2.15;
}

.page-home .hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .hero-facts > div {
  min-width: 0;
  padding: 11px 8px 12px;
  border: 1px solid rgba(207, 173, 124, .65);
  border-radius: 16px;
  background: rgba(255, 251, 242, .76);
  box-shadow: 0 7px 18px rgba(94, 58, 34, .05);
  text-align: center;
}

.page-home .hero-facts dt {
  color: var(--ink-faint);
  font-size: 10px;
  line-height: 1.45;
}

.page-home .hero-facts dd {
  margin-top: 3px;
  color: var(--cocoa);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-delivery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
}

.hero-delivery-label {
  color: var(--ink-faint);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 11px;
}

.hero-delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border: 1px solid rgba(207, 173, 124, .65);
  border-radius: 999px;
  background: rgba(255, 251, 242, .76);
  color: var(--cocoa);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(94, 58, 34, .05);
}

.hero-delivery-ext { width: 12px; height: 12px; opacity: .65; }

.hero-delivery-app {
  display: inline-flex;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(94, 58, 34, .12);
  transition: transform .15s ease;
}

.hero-delivery-app:hover { transform: translateY(-2px); }

.hero-delivery-app-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(207, 173, 124, .5);
  background: #fff;
  object-fit: contain;
}

.hero-delivery-app--wide {
  height: 42px;
  padding: 0 13px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(207, 173, 124, .5);
  background: #fff;
}

.hero-delivery-app--wide .hero-delivery-app-icon {
  width: auto;
  height: 17px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-home .hero-copy .cta-group { width: 100%; }

.page-home .hero-copy .btn--primary {
  min-height: 56px;
  background: var(--cocoa);
  box-shadow: 0 8px 20px rgba(94, 58, 34, .18);
}

/* SPはリードの横に小さいくまを置き、大きなヒーロー画像は出さない */
.lead-row { display: flex; align-items: center; gap: 0; }
.lead-row .lead { flex: 1; min-width: 0; }

/* 切り抜き画像の浮きを抑えるため、透過部分に接地影を描く */
.lead-bear-wrap { position: relative; flex: none; }

/* SPの小さいくま用に吹き出しを縮めて頭の上へ */
.page-home .lead-bear-wrap .hero-bubble {
  left: 66%;
  bottom: 74%;
  padding: 7px 9px;
  font-size: 8px;
}

.lead-bear {
  flex: none;
  /* リード文が折り返さない範囲でくまを最大化する */
  width: min(170px, 33vw);
  height: auto;
  transform: translateX(-6px);
  /* 画像の下10%は透明の余白なので、影は実際の足元（高さ90%）に合わせる */
  background: radial-gradient(ellipse 42% 5% at 50% 90%, rgba(94, 58, 34, .28), transparent 75%);
}

@media (max-width: 1023px) {
  .page-home .hero-collage { display: none; }
}

@media (min-width: 1024px) {
  .lead-bear-wrap { display: none; }
  .dough-bear-wrap { display: none; }
}

.dough-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* 見出しの幅を奪わずにくまだけ少し内側へ寄せる */
.dough-bear-wrap { position: relative; flex: none; margin-right: 14px; transform: translateX(-5px); }

.dough-bear {
  display: block;
  width: 122px;
  height: auto;
}

.dough-sweat {
  position: absolute;
  top: -8px;
  right: 0;
  width: 20px;
  height: auto;
  animation: sweat-bob 1.6s ease-in-out infinite;
}

@keyframes sweat-bob {
  0%, 100% { transform: translateY(0); opacity: .85; }
  50% { transform: translateY(3px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .dough-sweat,
  .about-mascot-sweat { animation: none; }
}

.page-home .hero-collage {
  position: relative;
  padding: 4px var(--pad-x) 0;
}

.page-home .hero-collage img {
  width: min(92vw, 460px);
  max-height: none;
  filter: drop-shadow(0 16px 14px rgba(94, 58, 34, .12));
}

.page-home .hero-art { position: relative; width: fit-content; }

/* くまの頭（画像内 x75% y40%）の真上に固定。画像基準なので画面幅でズレない */
.page-home .hero-bubble {
  position: absolute;
  left: 75%;
  bottom: 64%;
  width: max-content;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 47% 53% 52% 48% / 53% 47% 55% 45%;
  background: rgba(255, 251, 242, .96);
  box-shadow: 0 8px 18px rgba(94, 58, 34, .08);
  color: var(--ink-sub);
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  transform: translateX(-50%) rotate(4deg);
  animation: bubble-bob 2.8s ease-in-out infinite alternate;
}

/* くまの頭に向かって小さくなる、考えごとのしっぽ */
.page-home .hero-bubble::before,
.page-home .hero-bubble::after {
  content: '';
  position: absolute;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 251, 242, .96);
}

.page-home .hero-bubble::before { width: 12px; height: 12px; left: 44%; bottom: -16px; }

.page-home .hero-bubble::after { width: 7px; height: 7px; left: 55%; bottom: -27px; }

@keyframes bubble-bob {
  from { transform: translateX(-50%) rotate(4deg) translateY(0); }
  to { transform: translateX(-50%) rotate(4deg) translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-bubble { animation: none; }
}

.page-home .section { padding: 52px 0; }

.page-home .section-wave,
.page-menu .section-wave {
  --section-wave-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1200 V16 C1080 27 980 12 850 20 C720 28 610 13 480 21 C350 29 240 14 120 20 C75 23 35 18 0 20 Z' fill='black'/%3E%3C/svg%3E");
  position: relative;
  height: 26px;
  background: var(--wave-to);
  box-shadow: 0 1px 0 var(--wave-to);
}

.page-home .section-wave::before,
.page-menu .section-wave::before {
  content: '';
  position: absolute;
  inset: -1px 0 0;
  background: var(--wave-from);
  -webkit-mask-image: var(--section-wave-shape);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: var(--section-wave-shape);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.page-home .section-head {
  gap: 7px;
  margin-bottom: 24px;
}

.page-home .section-head--center {
  align-items: center;
  text-align: center;
}

.page-home .section-head--center .section-lead { margin-inline: auto; }


.page-home .section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
}

.page-home .section-title {
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.45;
  letter-spacing: .035em;
}

.page-home .section-lead { color: var(--ink-sub); }

.page-home .home-menu {
  background: var(--cocoa);
  color: var(--on-dark);
}

.page-home .home-menu .section-lead {
  color: var(--on-dark-sub);
  text-align: center;
}

.page-home .menu-heading-stage { position: relative; padding-right: 114px; }

.page-home .menu-heading-stage .section-head { margin-bottom: 4px; }

.page-home .menu-heading-stage .section-head--center {
  align-items: flex-start;
  text-align: left;
}

.page-home .menu-heading-stage .section-lead { text-align: left; }

.page-home .menu-mascot {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 106px;
  margin: 0;
  transform: translateY(-52%);
  filter: drop-shadow(0 14px 14px rgba(44, 26, 15, .22));
  pointer-events: none;
}

/* SPは1カラムに積まれて寄せの混在が目立つため、見出しを中央に統一する */
@media (max-width: 767px) {
  .page-home .section-head { align-items: center; text-align: center; }
  .page-home .section-head .section-lead { margin-inline: auto; }

  .page-home .menu-heading-stage { padding-right: 0; }
  .page-home .menu-heading-stage .section-head--center {
    align-items: center;
    text-align: center;
  }
  .page-home .menu-heading-stage .section-lead { text-align: center; }

  /* SPはタイトルの右にちょこんと座らせる */
  .page-home .menu-heading-stage .section-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .page-home .menu-mascot {
    position: static;
    transform: none;
    width: 64px;
    margin: 0;
  }
}

:root {
  --deco-paw-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='19' cy='49' rx='11' ry='14' transform='rotate(-24 19 49)'/%3E%3Cellipse cx='39' cy='25' rx='12' ry='15' transform='rotate(-8 39 25)'/%3E%3Cellipse cx='63' cy='25' rx='12' ry='15' transform='rotate(8 63 25)'/%3E%3Cellipse cx='82' cy='49' rx='11' ry='14' transform='rotate(24 82 49)'/%3E%3Cpath d='M50 44c11 0 21 7 25 17 4 10-1 20-10 24-6 2.6-11 .5-15 .5s-9 2.1-15-.5c-9-4-14-14-10-24 4-10 14-17 25-17z'/%3E%3C/svg%3E");
  --deco-heart-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='black' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50 83C31 68 15 53 15 36c0-12 10-20 20-18 8 1.6 13 8 15 14 2-6 7-12.4 15-14 10-2 20 6 20 18 0 17-16 32-35 47z'/%3E%3C/svg%3E");
}

.deco-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.deco-stamp {
  display: none;
  position: absolute;
  left: var(--deco-x);
  top: var(--deco-y);
  width: var(--deco-size);
  aspect-ratio: 1;
  opacity: var(--deco-opacity);
  transform: translate(-50%, -50%) rotate(var(--deco-rotation));
  animation: deco-twinkle var(--deco-duration, 6s) ease-in-out var(--deco-delay, 0s) infinite;
}

/* 完全には消さず濃淡がゆらぐ範囲に留める。0まで落とすと点滅感が出てうるさい */
@keyframes deco-twinkle {
  0%, 100% { opacity: var(--deco-opacity); }
  50% { opacity: calc(var(--deco-opacity) * 0.35); }
}

/* 薄くなるときにふくらむ呼吸。位置は動かさず生きている感だけ足す */
@keyframes deco-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .deco-stamp,
  .deco-stamp::before { animation: none; }
}

.deco-stamp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  animation: deco-breathe var(--deco-duration, 6s) ease-in-out var(--deco-delay, 0s) infinite;
}

.deco-stamp--paw::before {
  -webkit-mask-image: var(--deco-paw-shape);
  mask-image: var(--deco-paw-shape);
}

.deco-stamp--heart::before {
  -webkit-mask-image: var(--deco-heart-shape);
  mask-image: var(--deco-heart-shape);
}

.deco-layer--color .deco-stamp--paw { color: #8B5A33; }
.deco-layer--color .deco-stamp--heart { color: var(--berry); }
.deco-layer--light .deco-stamp { color: var(--on-dark); }

.deco-stamp[data-deco-view="mobile"] { display: block; }

@media (min-width: 768px) {
  .deco-stamp[data-deco-view="mobile"] { display: none; }
  .deco-stamp[data-deco-view="tablet"] { display: block; }
}

@media (min-width: 1024px) {
  .deco-stamp[data-deco-view="tablet"] { display: none; }
  .deco-stamp[data-deco-view="desktop"] { display: block; }
}

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

.page-home .cat-card {
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, .28);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 13px 26px rgba(44, 26, 15, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.page-home .cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(44, 26, 15, .23);
}

.page-home .cat-photo {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
}

.page-home .cat-body {
  gap: 3px;
  min-height: 94px;
  padding: 13px 8px 15px;
  background: var(--cream);
  color: var(--ink);
}

.page-home .cat-body::before,
.page-home .cat-body::after { content: none; }

.page-home .cat-name {
  font-size: clamp(11px, 3.1vw, 15px);
  color: var(--ink);
}

.page-home .cat-en {
  color: var(--label);
  font-size: 8px;
}

.page-home .cat-price {
  color: var(--gold);
  font-size: clamp(11px, 3vw, 13px);
}

.page-home .menu-all {
  width: min(100%, 360px);
  min-height: 52px;
  margin-top: 24px;
  border: 1px solid rgba(255, 247, 232, .6);
  border-radius: 999px;
  background: var(--on-dark);
  color: var(--cocoa);
  box-shadow: 0 10px 22px rgba(44, 26, 15, .18);
}

.page-home .menu-all::before { content: none; }

.menu-sub-head {
  margin: 30px 0 14px;
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  color: #E8CDAC;
}

.pickup-grid { display: grid; gap: 12px; }

.pickup-cell { display: flex; }

.pickup-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, .28);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 13px 26px rgba(44, 26, 15, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pickup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(44, 26, 15, .23);
}

.pickup-photo {
  flex: none;
  width: 112px;
  object-fit: cover;
  background: var(--photo-bg);
}

.pickup-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px 14px;
  color: var(--ink);
}

.pickup-chip {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  background: #B77A48;
  color: var(--on-dark);
  font-family: var(--font-round);
  font-size: 10px;
  font-weight: 700;
}

.pickup-name { font-family: var(--font-round); font-size: 15px; font-weight: 700; }

.pickup-price { font-family: var(--font-round); font-size: 13px; font-weight: 700; color: var(--gold); }

.dough-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 560px);
  margin: 22px auto 0;
  padding: 15px 20px;
  border: 1px dashed rgba(255, 247, 232, .5);
  border-radius: 18px;
  color: var(--on-dark);
}

.dough-banner .card-title { display: block; font-size: 14px; }

.dough-banner .card-text { font-size: 11px; color: var(--on-dark-sub); }

@media (min-width: 768px) {
  .menu-sub-head { margin: 36px 0 16px; font-size: 14px; }
  .pickup-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .pickup-card { flex-direction: column; }
  .pickup-photo { width: 100%; aspect-ratio: 16 / 10; }
  .pickup-body { gap: 5px; padding: 14px 16px 16px; }
  .pickup-name { font-size: 16px; }
}

.page-home #mini { background: var(--paper-light); }

.page-home .promo-card {
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(207, 173, 124, .68);
  border-radius: 28px;
  background: rgba(255, 251, 242, .92);
  box-shadow: 0 15px 30px rgba(94, 58, 34, .09);
  transition: transform .18s ease, box-shadow .18s ease;
}

.page-home .promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(94, 58, 34, .13);
}

.page-home .label-chip {
  border-radius: 999px;
  background: #B77A48;
}

.page-home .label-chip--dark { background: var(--cocoa); }

.page-home #mini .label-chip--dark { background: var(--berry); }

.page-home #mini .marker { background-image: linear-gradient(transparent 62%, rgba(204, 75, 85, .26) 62%); }

.pickup-chip--kids { background: var(--berry); }

.page-home .promo-title { color: var(--ink); }

.page-home .thumb { border-radius: 14px; }

.page-home .home-about { background: #EFD9B7; }

.page-home .kodawari-grid { gap: 18px; }

.page-home .dough-panel {
  gap: 17px;
  padding: 20px;
  border: 1px solid rgba(255, 247, 232, .2);
  border-radius: 28px;
  background: var(--cocoa);
  box-shadow: 0 16px 34px rgba(94, 58, 34, .16);
  color: var(--on-dark);
}

.page-home .dough-photo { border-radius: 20px; }

.page-home .dough-title { font-size: 23px; }

.page-home .kodawari-text { color: var(--on-dark-sub); }

.page-home .dough-card {
  border-radius: 18px;
  background: var(--on-dark);
}

.page-home .kodawari-list { gap: 13px; }

.page-home .about-mascot-wrap {
  position: relative;
  display: block;
  width: min(92vw, 300px);
  margin: 20px auto 0;
}

.page-home .about-mascot {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 14px rgba(94, 58, 34, .16));
}

.page-home .about-mascot-sweat {
  position: absolute;
  top: -12px;
  right: 0;
  width: 36px;
  height: auto;
  animation: sweat-bob 1.6s ease-in-out infinite;
  pointer-events: none;
}

/* SPは生地見出しの横に dough-bear を出すため、大きい方は重複しないよう消す */
@media (max-width: 1023px) {
  .page-home .about-mascot-wrap { display: none; }
}

.page-home .kodawari-item {
  padding: 13px;
  border: 1px solid rgba(207, 173, 124, .65);
  border-radius: 22px;
  background: rgba(255, 251, 242, .9);
  box-shadow: 0 10px 22px rgba(94, 58, 34, .07);
}

.page-home .kodawari-photo { border-radius: 17px; }

.page-home .kodawari-item .card-title { color: var(--ink); }

.page-home .kodawari-item .card-text { color: var(--ink-sub); }

.page-home .kodawari-note { color: var(--ink-mute); opacity: 1; }

.page-home #shop { background: var(--paper-light); }

.page-home .shop-info-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.page-home .shop-bear-friends {
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.page-home .shop-bear-friends img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 12px rgba(94, 58, 34, .1));
}

.page-home .shop-grid { gap: 20px; }

.page-home .shop-media,
.page-home .info-table {
  padding: 14px;
  border: 1px solid rgba(207, 173, 124, .62);
  border-radius: 28px;
  background: rgba(255, 251, 242, .9);
  box-shadow: 0 14px 30px rgba(94, 58, 34, .08);
}

.page-home .shop-photos img,
.page-home .shop-map { border-radius: 18px; }

.page-home .info-row {
  padding: 15px 4px;
  border-color: rgba(207, 173, 124, .46);
}

.page-home .info-row dt { color: var(--label); }

.page-home .home-news .container { position: relative; }

.page-home .home-news { background: #F7E8CD; }

.page-home .news-mascot {
  position: relative;
  z-index: 0;
  width: 112px;
  margin: -8px 20px -10px auto;
  filter: drop-shadow(0 10px 10px rgba(94, 58, 34, .13));
  pointer-events: none;
}

.page-home .news-list {
  position: relative;
  z-index: 1;
}

.page-home #faq { background: #F0DCBB; }

.page-home .faq-list { gap: 12px; }

.page-home .faq-item {
  border: 1px solid rgba(207, 173, 124, .58);
  border-radius: 22px;
  background: rgba(255, 251, 242, .9);
  box-shadow: 0 10px 24px rgba(94, 58, 34, .07);
}

.page-home #sns {
  overflow: hidden;
  background: var(--cocoa);
}

.page-home .closing-grid { gap: 28px; }

.page-home .closing { gap: 13px; }

.page-home .closing-bear {
  width: min(58vw, 190px);
  filter: drop-shadow(0 14px 12px rgba(44, 26, 15, .22));
}

.page-home .closing-logo {
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255, 247, 232, .82);
  box-shadow: 0 5px 16px rgba(44, 26, 15, .18);
}

.page-home .closing-text {
  color: var(--on-dark-sub);
  font-family: var(--font-round);
}

.page-home #sns .cta-group {
  flex-direction: column;
  flex-wrap: nowrap;
}

.page-home #sns .btn {
  flex: none;
  justify-content: center;
  min-height: 56px;
}

.page-home .site-footer {
  padding-bottom: 24px;
  background: #4D2F1D;
  color: #C8A889;
}

.page-home .mobile-bar {
  border-color: rgba(207, 173, 124, .72);
  background: rgba(255, 251, 242, .94);
  box-shadow: 0 -8px 24px rgba(94, 58, 34, .09);
}

@media (min-width: 768px) {
  .page-home,
  .page-menu {
    --pad-x: 32px;
    --header-h: 72px;
  }

  .page-home .hero-copy .cta-group { width: min(100%, 290px); }

  .page-home .section { padding: 68px 0; }

  .page-home .hero-copy { padding-top: 56px; }

  .page-home .hero-facts > div { padding: 13px 10px 14px; }

  .page-home .hero-facts dt { font-size: 11px; }

  .page-home .hero-facts dd { font-size: 16px; }

  .page-home .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .page-home .cat-body { min-height: 108px; }

  .page-home .promo-grid { gap: 22px; }

  .page-home .promo-card { padding: 28px; }

  .page-home .menu-heading-stage { padding-right: 0; }
  .page-home .menu-heading-stage .section-head--center {
    align-items: center;
    text-align: center;
  }

  .page-home .menu-heading-stage .section-lead { text-align: center; }
  .page-home .menu-mascot { top: -14px; width: 104px; right: 0; transform: none; }

  .page-home .kodawari-item { padding: 16px; }

  .page-home .news-mascot {
    width: 106px;
    margin-top: -60px;
    margin-right: max(26px, calc((100% - 880px) / 2 + 26px));
    margin-bottom: -12px;
  }

  .page-home .about-mascot-wrap { width: min(100%, 265px); }

  .page-home .shop-media,
  .page-home .info-table { padding: 20px; }

  .page-home .faq-list { gap: 16px; }

  .page-home .closing-grid {
    grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
    gap: 56px;
  }

  .page-home .closing-bear { width: 150px; }
}

@media (min-width: 960px) {
  .page-home .header-cta { padding-inline: 18px; }

  .page-home .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(30px, 4vw, 64px);
    min-height: 620px;
    padding: 20px var(--pad-x) 0;
  }

  .page-home .hero-copy {
    align-self: center;
    gap: 21px;
    padding: 0 0 30px;
  }

  .page-home .hero-title { font-size: clamp(38px, 3.6vw, 48px); }

  .page-home .lead { font-size: 14px; }

  .page-home .hero-collage {
    align-self: end;
    justify-content: center;
    padding: 0;
  }

  .page-home .hero-collage img {
    width: min(100%, 515px);
    max-height: 620px;
  }

  .page-home .hero-bubble {
    padding: 16px 19px;
    font-size: 11px;
  }

  .page-home .section { padding: 82px 0; }

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

  .page-home .menu-heading-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 188px;
  }

  .page-home .menu-heading-stage .section-head {
    margin-bottom: 0;
    padding-bottom: 18px;
  }

  .page-home .menu-mascot {
    position: absolute;
    top: auto;
    right: clamp(44px, 8vw, 104px);
    bottom: 0;
    width: 150px;
    margin: 0;
  }

  .page-home .cat-grid { gap: 22px; }

  .page-home .cat-body { padding: 16px 12px 18px; }

  .page-home .promo-card { padding: 34px; }

  .page-home .kodawari-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    grid-template-areas:
      "dough list"
      "dough mascot";
    grid-template-rows: auto 1fr;
    gap: 26px;
  }

  .page-home .dough-panel {
    grid-area: dough;
    padding: 26px;
  }

  .page-home .kodawari-list { grid-area: list; }

  .page-home .about-mascot-wrap {
    grid-area: mascot;
    align-self: end;
    justify-self: center;
    width: min(100%, 270px);
    margin: 8px auto 0;
  }

  .page-home .shop-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 28px;
  }

  .page-home .faq-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .page-home .closing-grid { gap: 84px; }
}

@media (min-width: 1024px) {
  .page-home .news-mascot {
    width: 160px;
    margin-top: -108px;
  }
}

@media (max-width: 430px) {
  .page-home { --pad-x: 18px; }

  .page-home .header-inner,
  .page-menu .header-inner { gap: 9px; }

  .page-home .header-logo,
  .page-menu .header-logo { width: 40px; height: 40px; }

  .page-home .header-name,
  .page-menu .header-name { font-size: 13px; }

  .page-home .header-wordmark,
  .page-menu .header-wordmark { width: 100px; }

  .page-home .header-en,
  .page-menu .header-en { display: none; }

  .page-home .header-cta {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .page-home .hero-copy { padding-top: 36px; }

  .page-home .hero-title { font-size: 30px; }

  .page-home .hero-facts > div { padding-inline: 5px; }

  .page-home .hero-facts dd { font-size: 13px; }

  .page-home .hero-collage img { width: min(96vw, 410px); }

  .page-home .section { padding: 48px 0; }

  .page-home .cat-body { min-height: 88px; }

  .page-home .promo-title { font-size: 19px; }

  .page-home .kodawari-item { align-items: flex-start; }

  .page-home .kodawari-photo { width: 84px; }
}

/* ---------- deco: 肉球とハートの散らし飾り ---------- */

:root {
  --paw-a: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%238B5A33'%3E%3Cg transform='rotate(-18 50 50)'%3E%3Cellipse cx='19' cy='49' rx='11' ry='14' transform='rotate(-24 19 49)'/%3E%3Cellipse cx='39' cy='25' rx='12' ry='15' transform='rotate(-8 39 25)'/%3E%3Cellipse cx='63' cy='25' rx='12' ry='15' transform='rotate(8 63 25)'/%3E%3Cellipse cx='82' cy='49' rx='11' ry='14' transform='rotate(24 82 49)'/%3E%3Cpath d='M50 44c11 0 21 7 25 17 4 10-1 20-10 24-6 2.6-11 .5-15 .5s-9 2.1-15-.5c-9-4-14-14-10-24 4-10 14-17 25-17z'/%3E%3C/g%3E%3C/svg%3E");
  --paw-b: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%238B5A33'%3E%3Cg transform='rotate(22 50 50)'%3E%3Cellipse cx='19' cy='49' rx='11' ry='14' transform='rotate(-24 19 49)'/%3E%3Cellipse cx='39' cy='25' rx='12' ry='15' transform='rotate(-8 39 25)'/%3E%3Cellipse cx='63' cy='25' rx='12' ry='15' transform='rotate(8 63 25)'/%3E%3Cellipse cx='82' cy='49' rx='11' ry='14' transform='rotate(24 82 49)'/%3E%3Cpath d='M50 44c11 0 21 7 25 17 4 10-1 20-10 24-6 2.6-11 .5-15 .5s-9 2.1-15-.5c-9-4-14-14-10-24 4-10 14-17 25-17z'/%3E%3C/g%3E%3C/svg%3E");
  --paw-la: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23FBF3EA'%3E%3Cg transform='rotate(-16 50 50)'%3E%3Cellipse cx='19' cy='49' rx='11' ry='14' transform='rotate(-24 19 49)'/%3E%3Cellipse cx='39' cy='25' rx='12' ry='15' transform='rotate(-8 39 25)'/%3E%3Cellipse cx='63' cy='25' rx='12' ry='15' transform='rotate(8 63 25)'/%3E%3Cellipse cx='82' cy='49' rx='11' ry='14' transform='rotate(24 82 49)'/%3E%3Cpath d='M50 44c11 0 21 7 25 17 4 10-1 20-10 24-6 2.6-11 .5-15 .5s-9 2.1-15-.5c-9-4-14-14-10-24 4-10 14-17 25-17z'/%3E%3C/g%3E%3C/svg%3E");
  --paw-lb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23FBF3EA'%3E%3Cg transform='rotate(20 50 50)'%3E%3Cellipse cx='19' cy='49' rx='11' ry='14' transform='rotate(-24 19 49)'/%3E%3Cellipse cx='39' cy='25' rx='12' ry='15' transform='rotate(-8 39 25)'/%3E%3Cellipse cx='63' cy='25' rx='12' ry='15' transform='rotate(8 63 25)'/%3E%3Cellipse cx='82' cy='49' rx='11' ry='14' transform='rotate(24 82 49)'/%3E%3Cpath d='M50 44c11 0 21 7 25 17 4 10-1 20-10 24-6 2.6-11 .5-15 .5s-9 2.1-15-.5c-9-4-14-14-10-24 4-10 14-17 25-17z'/%3E%3C/g%3E%3C/svg%3E");
  --heart-a: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23CC4B55' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='rotate(-14 50 50)'%3E%3Cpath d='M50 83C31 68 15 53 15 36c0-12 10-20 20-18 8 1.6 13 8 15 14 2-6 7-12.4 15-14 10-2 20 6 20 18 0 17-16 32-35 47z'/%3E%3C/g%3E%3C/svg%3E");
  --heart-b: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23CC4B55' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='rotate(12 50 50)'%3E%3Cpath d='M50 83C31 68 15 53 15 36c0-12 10-20 20-18 8 1.6 13 8 15 14 2-6 7-12.4 15-14 10-2 20 6 20 18 0 17-16 32-35 47z'/%3E%3C/g%3E%3C/svg%3E");
  --heart-la: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23FBF3EA' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='rotate(-12 50 50)'%3E%3Cpath d='M50 83C31 68 15 53 15 36c0-12 10-20 20-18 8 1.6 13 8 15 14 2-6 7-12.4 15-14 10-2 20 6 20 18 0 17-16 32-35 47z'/%3E%3C/g%3E%3C/svg%3E");
  --heart-lb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23FBF3EA' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='rotate(14 50 50)'%3E%3Cpath d='M50 83C31 68 15 53 15 36c0-12 10-20 20-18 8 1.6 13 8 15 14 2-6 7-12.4 15-14 10-2 20 6 20 18 0 17-16 32-35 47z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-home .hero, .page-home .home-menu,
.page-home #mini, .home-about, .page-home #shop,
.home-news, .page-home #faq, #sns { position: relative; isolation: isolate; }

.page-home .hero::before,
.page-home .home-menu::before,
.page-home #mini::before,
.home-about::before,
.page-home #shop::before,
.home-news::before,
.page-home #faq::before,
#sns::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-home .hero::before {
  background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
  background-position: 48% 54%, 31% 56%, 33% 77%, 65% 77%;
  background-size: 20px, 16px, 18px, 14px;
  opacity: .13;
}

.page-home .home-menu::before {
  background-image: var(--paw-la), var(--heart-la);
  background-position: 22% 4%, 78% 3%;
  background-size: 18px, 14px;
  opacity: .11;
}

.page-home #mini::before {
  background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
  background-position: 22% 6%, 65% 6%, 42% 3%, 22% 97%;
  background-size: 18px, 14px, 16px, 13px;
  opacity: .14;
}

.home-about::before {
  background-image: var(--paw-a), var(--heart-a), var(--paw-a);
  background-position: 22% 4%, 40% 4%, 78% 4%;
  background-size: 14px, 12px, 13px;
  opacity: .13;
}

.page-home #shop::before {
  background-image: var(--paw-a), var(--heart-a), var(--paw-a);
  background-position: 22% 3%, 40% 3%, 78% 3%;
  background-size: 20px, 16px, 18px;
  opacity: .13;
}

.home-news::before {
  background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
  background-position: 31% 31%, 74% 15%, 22% 14%, 43% 3%;
  background-size: 20px, 16px, 18px, 14px;
  opacity: .13;
}

.page-home #faq::before {
  background-image: var(--paw-a), var(--heart-a), var(--paw-a);
  background-position: 22% 4%, 40% 4%, 77% 4%;
  background-size: 20px, 16px, 18px;
  opacity: .13;
}

#sns::before {
  background-image: var(--paw-la), var(--heart-la), var(--paw-la), var(--paw-lb);
  background-position: 27% 55%, 73% 55%, 13% 22%, 87% 22%;
  background-size: 20px, 16px, 18px, 14px;
  opacity: .11;
}

@media (min-width: 768px) {
  .page-home .hero::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a);
    background-position: 50% 50%, 65% 35%, 65% 65%;
    background-size: 26px, 21px, 23px;
  }
  .page-home .home-menu::before {
    background-image: var(--paw-la), var(--heart-la), var(--paw-la);
    background-position: 22% 15%, 60% 15%, 22% 93%;
    background-size: 26px, 21px, 23px;
  }
  .page-home #mini::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a);
    background-position: 67% 15%, 22% 6%, 22% 96%;
    background-size: 26px, 21px, 23px;
  }
  .home-about::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a);
    background-position: 22% 9%, 77% 9%, 44% 4%;
    background-size: 26px, 21px, 23px;
  }
  .page-home #shop::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a);
    background-position: 53% 12%, 78% 7%, 22% 3%;
    background-size: 26px, 21px, 23px;
  }
  .home-news::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a);
    background-position: 28% 28%, 54% 28%, 76% 18%;
    background-size: 26px, 21px, 23px;
  }
  .page-home #faq::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a);
    background-position: 53% 18%, 78% 13%, 22% 8%;
    background-size: 26px, 21px, 23px;
  }
  #sns::before {
    background-image: var(--paw-la), var(--heart-la), var(--paw-la);
    background-position: 41% 41%, 40% 59%, 33% 23%;
    background-size: 26px, 21px, 23px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
    background-position: 46% 46%, 37% 63%, 39% 28%, 46% 80%;
    background-size: 30px, 24px, 27px, 22px;
  }
  .page-home .home-menu::before {
    background-image: var(--paw-la), var(--heart-la), var(--paw-la), var(--paw-lb);
    background-position: 40% 41%, 66% 41%, 22% 18%, 57% 18%;
    background-size: 30px, 24px, 27px, 22px;
  }
  .page-home #mini::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
    background-position: 50% 16%, 76% 16%, 11% 22%, 11% 41%;
    background-size: 30px, 24px, 27px, 22px;
  }
  .home-about::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
    background-position: 54% 72%, 22% 79%, 22% 15%, 70% 15%;
    background-size: 30px, 24px, 27px, 22px;
  }
  .page-home #shop::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
    background-position: 55% 66%, 76% 77%, 27% 20%, 53% 20%;
    background-size: 30px, 24px, 27px, 22px;
  }
  .home-news::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
    background-position: 29% 29%, 55% 29%, 72% 15%, 38% 12%;
    background-size: 30px, 24px, 27px, 22px;
  }
  .page-home #faq::before {
    background-image: var(--paw-a), var(--heart-a), var(--paw-a), var(--paw-b);
    background-position: 40% 25%, 66% 25%, 22% 11%, 52% 9%;
    background-size: 30px, 24px, 27px, 22px;
  }
  #sns::before {
    background-image: var(--paw-la), var(--heart-la), var(--paw-la), var(--paw-lb);
    background-position: 43% 43%, 39% 61%, 34% 26%, 35% 79%;
    background-size: 30px, 24px, 27px, 22px;
  }
}

/* 個別配置へ移行したため、旧backgroundレイヤーは描画しない */
.page-home .hero::before,
.page-home .home-menu::before,
.page-home #mini::before,
.home-about::before,
.page-home #shop::before,
.home-news::before,
.page-home #faq::before,
#sns::before {
  content: none;
  background-image: none;
}
