:root {
  --bg: #fffaf5;
  --paper: #fffdf9;
  --peach-50: #fff2ea;
  --peach-100: #ffe3d6;
  --peach-200: #ffcabc;
  --peach-400: #ff8f8a;
  --peach-500: #ff7474;
  --coral: #f96769;
  --brown: #5c3d34;
  --muted: #876c63;
  --line: rgba(149, 94, 70, .14);
  --shadow: 0 24px 70px rgba(183, 104, 83, .14);
  --radius-xl: 40px;
  --radius-lg: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 214, 198, .35), transparent 26rem),
    var(--bg);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 245, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.8);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--coral);
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: .06em;
}
/* ロゴSVGはインクの実寸にトリミング済み。v3で葉が上に飛び出さなくなり
   マークの縦幅＝仮名の縦幅にほぼ一致したため、29px で仮名が旧ワードマーク
   （28px）と同じ見た目の大きさになる（v2の35px相当。35px÷71.6×59.1≒29） */
.brand-logo { height: 29px; width: auto; }
.site-nav { display: flex; gap: 32px; font-size: 14px; font-weight: 600; }
.site-nav a { transition: color .2s ease, transform .2s ease; }
.site-nav a:hover { color: var(--coral); transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; }
.nav-toggle span { display:block; width:24px; height:2px; margin:6px 0; background:var(--brown); }

.section-shell, .rounded-section, .feature-row, .closing-section, footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: 72px 0 90px;
}
.hero-copy { padding-left: clamp(0px, 2vw, 30px); }
/* フルロックアップ（葉＋ローマ字MOMOHOPPE）。ローマ字が判読できる幅を確保する */
.hero-logo { width: clamp(240px, 25vw, 322px); height: auto; margin: 0 0 26px; }
.eyebrow, h1, h2 { font-family: "Kiwi Maru", serif; }
.eyebrow { margin: 0 0 16px; color: var(--coral); font-size: clamp(25px, 3vw, 42px); font-weight: 500; }
h1 { margin: 0; font-size: clamp(42px, 5.1vw, 73px); line-height: 1.35; letter-spacing: .03em; font-weight: 500; }
.hero-lead { margin: 26px 0 28px; color: var(--muted); }
.button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 28px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: linear-gradient(135deg, #ff8b85, #f46268); box-shadow: 0 13px 30px rgba(245, 98, 104, .24); }
.button.secondary { background: var(--peach-100); color: var(--brown); }
.english-label { margin-top: 18px; font-size: 11px; letter-spacing: .27em; color: var(--muted); }
.hero-visual { position: relative; min-height: 540px; display:grid; place-items:center; }
.photo-frame { overflow: hidden; background: #f8eee8; box-shadow: var(--shadow); }
.hero-photo { position: relative; width: min(530px, 88%); aspect-ratio: 1.05; border-radius: 48% 48% 44% 44% / 45% 45% 38% 38%; }
.hero-photo img { width:100%; height:100%; object-fit:cover; object-position: 50% 52%; transform: scale(1.08); }
.soft-blob { position:absolute; border-radius:50%; filter: blur(1px); }
.blob-one { width:360px; height:360px; background:#ffe0d5; right:0; top:10%; opacity:.7; }
.blob-two { width:230px; height:230px; background:#fff0cc; left:8%; bottom:3%; opacity:.72; }
.doodle { position:absolute; color:#ffaaa4; font-size:30px; z-index:2; }
.heart { left:8%; top:25%; transform:rotate(-14deg); }
.sparkle { right:2%; bottom:18%; color:#f6b88b; }

.rounded-section {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 50px rgba(151, 94, 71, .07);
}
.intro-section { padding: clamp(28px, 5vw, 64px); display:grid; grid-template-columns:.62fr 1.38fr; gap:42px; align-items:center; }
.mini-kicker { margin:0 0 8px; font-size:11px; color:var(--coral); letter-spacing:.24em; font-weight:700; }
h2 { margin:0 0 18px; color:var(--coral); font-size:clamp(30px,3.1vw,48px); line-height:1.42; font-weight:500; }
.intro-copy p:not(.mini-kicker) { color: var(--muted); margin: 0 0 12px; }
.tiny-peaches { margin-top: 24px; font-size: 28px; }
.detail-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.detail-card { overflow:hidden; border-radius:22px; background:var(--paper); border:1px solid var(--line); }
.detail-card img { width:100%; height:250px; object-fit:cover; }
.detail-card div { padding:18px 12px 20px; text-align:center; }
.detail-card strong { display:block; color:var(--coral); letter-spacing:.12em; }
.detail-card span { display:block; margin-top:7px; font-size:12px; color:var(--muted); }

.touch-section { margin-top:28px; padding:55px clamp(20px,4vw,56px) 42px; }
.section-heading { text-align:center; }
.section-heading p:last-child { color:var(--muted); }
.steps { display:grid; grid-template-columns:1fr 48px 1fr 48px 1fr; align-items:center; gap:6px; margin-top:34px; }
.step { position:relative; text-align:center; }
.step img { width:100%; height:230px; object-fit:cover; border-radius:24px; }
.step p { margin:12px 0 0; font-weight:600; }
.step-number { position:absolute; z-index:2; top:-13px; left:-6px; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; color:white; background:var(--peach-400); box-shadow:0 8px 20px rgba(255,143,138,.25); }
.step-arrow { font-size:42px; color:var(--peach-400); text-align:center; }
.squish-demo img { transform: scaleX(.92) scaleY(.94); filter:saturate(.96); }
.squeeze-overlay { position:absolute; inset:22% 13% 19%; border-radius:50%; box-shadow:inset 16px 0 24px rgba(112,65,51,.08); pointer-events:none; }

.appeal-section { margin-top:28px; padding:clamp(35px,5vw,64px); display:grid; grid-template-columns:.72fr 1.28fr; align-items:center; gap:35px; overflow:hidden; position:relative; }
.appeal-copy p:last-child { color:var(--muted); }
.peach-pair { display:flex; align-items:flex-end; justify-content:center; position:relative; min-height:360px; }
.peach-pair img { width:44%; aspect-ratio:1; object-fit:cover; border-radius:48%; box-shadow:0 16px 35px rgba(141,84,66,.13); }
.peach-pair img:first-child { transform:translateX(22px) rotate(-3deg); }
.peach-pair img:nth-child(2) { transform:translateX(-8px) translateY(18px) scale(.86) rotate(3deg); }
.speech { position:absolute; right:0; top:16%; padding:18px 20px; border:1px solid #b88f82; border-radius:50%; background:#fffaf7; color:var(--muted); text-align:center; font-family:"Kiwi Maru",serif; transform:rotate(5deg); }

.feature-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin-top:28px; background:var(--line); border:1px solid var(--line); border-radius:28px; overflow:hidden; }
.feature { padding:32px 25px; background:rgba(255,255,255,.78); text-align:center; }
.feature-icon { width:56px; height:56px; margin:0 auto 14px; display:grid; place-items:center; border:1.5px solid #b78576; border-radius:50%; font-size:25px; color:#a66d61; }
.feature h3 { margin:0 0 10px; font-size:16px; }
.feature p { margin:0; color:var(--muted); font-size:13px; line-height:1.75; }

.product-section { margin-top:28px; padding:clamp(40px,6vw,72px); display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.package-scene { position:relative; min-height:430px; display:grid; place-items:center; }
.package-box { position:relative; width:min(390px,85%); aspect-ratio:1.1; border:2px solid rgba(152,120,102,.24); border-radius:12px; background:rgba(255,255,255,.38); box-shadow:0 24px 45px rgba(122,85,69,.15), inset 0 0 0 8px rgba(255,255,255,.33); backdrop-filter:blur(2px); overflow:hidden; }
.package-box img { position:absolute; width:72%; height:72%; object-fit:cover; border-radius:48%; left:14%; top:7%; z-index:2; }
.package-fill { position:absolute; inset:48% 7% 11%; background:repeating-linear-gradient(14deg,#dfbd8e 0 3px,transparent 3px 10px); opacity:.45; }
.package-label { position:absolute; z-index:3; left:50%; bottom:7%; transform:translateX(-50%); width:67%; padding:12px; background:#fffaf1; text-align:center; box-shadow:0 6px 16px rgba(100,68,55,.1); }
.package-label strong { display:block; font-family:"Kiwi Maru",serif; font-weight:500; color:var(--coral); font-size:19px; letter-spacing:.08em; }
.package-label small { display:block; font-size:8px; letter-spacing:.13em; }
.package-label small + small { margin-top:2px; color:var(--muted); }
.gift-badge { position:absolute; top:8%; left:0; z-index:4; width:120px; height:120px; border-radius:50%; display:grid; place-items:center; text-align:center; color:var(--brown); background:#fff1ee; border:2px dashed #f4aca7; transform:rotate(-8deg); font-weight:700; }
.product-copy > p:not(.mini-kicker,.price,.small-note) { color:var(--muted); }
.spec-list { margin:24px 0; border-top:1px solid var(--line); }
.spec-list div { display:flex; padding:12px 0; border-bottom:1px solid var(--line); }
.spec-list dt { width:84px; font-weight:700; }
.spec-list dd { margin:0; color:var(--muted); }
.price { margin:18px 0; font-size:36px; font-weight:600; letter-spacing:.04em; }
.price small { font-size:13px; }
.purchase-button { width:min(320px,100%); }
.small-note { font-size:11px; color:#9c8279; }

.closing-section { margin-top:28px; min-height:400px; border-radius:var(--radius-xl); overflow:hidden; position:relative; display:flex; align-items:center; padding:50px clamp(30px,7vw,90px); background:linear-gradient(115deg,#ffd9c5,#fff0df 55%,#ffe6db); }
.closing-copy { position:relative; z-index:3; }
.closing-copy p { margin:0; color:var(--coral); font-family:"Kiwi Maru",serif; font-size:30px; }
.closing-copy h2 { color:var(--coral); font-size:clamp(38px,5vw,62px); }
.closing-section img { position:absolute; right:8%; bottom:-10%; width:40%; aspect-ratio:1; object-fit:cover; border-radius:50%; box-shadow:0 24px 70px rgba(141,86,68,.16); }
.closing-heart { position:absolute; left:52%; top:26%; color:#ffaaa4; font-size:34px; transform:rotate(-12deg); }

footer { padding:38px 10px 48px; display:flex; justify-content:space-between; align-items:center; color:var(--muted); font-size:12px; }
/* フッターはコンパクト版＋ローマ字をHTMLテキストで添える
   （フルロックアップだとこの寸法ではMOMOHOPPEが小さすぎて潰れるため） */
.footer-brand { font-size:20px; flex-direction:column; align-items:center; gap:7px; }
.footer-brand .brand-logo { height:25px; }
.brand-roman { color:var(--coral); font-family:"Noto Sans JP",system-ui,sans-serif; font-size:11px; font-weight:600; letter-spacing:.34em; text-indent:.34em; }

.notice-dialog { width:min(440px,calc(100% - 36px)); border:0; border-radius:30px; padding:42px; text-align:center; color:var(--brown); background:#fffaf6; box-shadow:0 30px 100px rgba(82,45,34,.28); }
.notice-dialog::backdrop { background:rgba(79,44,36,.32); backdrop-filter:blur(5px); }
.notice-dialog h2 { color:var(--coral); font-size:30px; }
.dialog-peach { font-size:55px; }
.dialog-close { position:absolute; right:18px; top:14px; border:0; background:transparent; font-size:28px; color:var(--muted); cursor:pointer; }
.dialog-ok { margin-top:12px; min-width:150px; }

/* Fade-in only when JS is running (html.js is set inline in <head>); content stays visible otherwise */
html.js .reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
html.js .reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .site-header { height:68px; }
  .nav-toggle { display:block; z-index:2; }
  .site-nav { display:none; position:absolute; top:68px; left:18px; right:18px; padding:22px; border-radius:20px; background:#fffaf6; box-shadow:var(--shadow); flex-direction:column; gap:16px; }
  .site-nav.open { display:flex; }
  .hero { grid-template-columns:1fr; padding-top:52px; text-align:center; }
  .hero-copy { padding:0; }
  .hero-logo { width:clamp(240px,76vw,312px); margin-inline:auto; }
  .hero-visual { min-height:440px; }
  .intro-section, .appeal-section, .product-section { grid-template-columns:1fr; }
  .detail-grid { grid-template-columns:repeat(3,1fr); }
  .steps { grid-template-columns:1fr; gap:18px; }
  .step-arrow { transform:rotate(90deg); line-height:1; }
  .feature-row { grid-template-columns:repeat(2,1fr); }
  .appeal-copy { text-align:center; }
  .product-copy { text-align:center; }
  .spec-list { text-align:left; }
}

@media (max-width: 600px) {
  .section-shell, .rounded-section, .feature-row, .closing-section, footer { width:min(100% - 24px,1180px); }
  h1 { font-size:39px; }
  .hero { min-height:auto; padding:42px 0 55px; }
  .hero-visual { min-height:330px; }
  .hero-photo { width:86%; border-radius:42px; }
  .intro-section, .touch-section, .appeal-section, .product-section { padding:28px 18px; border-radius:28px; }
  .detail-grid { grid-template-columns:1fr; }
  .detail-card img { height:260px; }
  .step img { height:240px; }
  .feature-row { grid-template-columns:1fr; border-radius:22px; }
  .peach-pair { min-height:270px; }
  .speech { font-size:12px; right:-4px; }
  .gift-badge { width:94px; height:94px; font-size:12px; }
  .package-scene { min-height:340px; }
  .closing-section { min-height:430px; align-items:flex-start; padding-top:45px; }
  .closing-section img { width:72%; right:-4%; bottom:-5%; }
  .closing-heart { left:70%; top:22%; }
  footer { flex-direction:column; gap:14px; text-align:center; }
}

/* ------------------------------
   Temporary pre-order experience
   ------------------------------ */
.preorder-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 14px 22px;
  border: 1px solid rgba(249, 103, 105, .17);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(255, 232, 221, .92), rgba(255, 250, 245, .9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 12px 30px rgba(183, 104, 83, .08);
}
.preorder-banner > div { display: flex; align-items: center; gap: 14px; }
.preorder-banner p { margin: 0; display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 13px; }
.preorder-banner p span { color: var(--muted); }
.preorder-banner-badge,
.sales-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 29px;
  padding: 4px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.preorder-banner > a { color: var(--coral); font-size: 13px; font-weight: 700; white-space: nowrap; }
.sales-status { margin-bottom: 12px; box-shadow: 0 8px 18px rgba(249, 103, 105, .17); }

.preorder-main { padding-top: 20px; }
.breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumb a:hover { color: var(--coral); }

.preorder-hero {
  min-height: 650px;
  padding: clamp(34px, 5.5vw, 72px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  overflow: hidden;
  position: relative;
}
.preorder-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -90px;
  top: -100px;
  background: rgba(255, 198, 183, .18);
}
.preorder-photo { position: relative; min-height: 480px; display: grid; place-items: center; }
.preorder-photo::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 48% 52% 46% 54%;
  background: linear-gradient(135deg, #ffe3d6, #fff8ef);
  transform: rotate(-7deg);
}
.preorder-photo img {
  position: relative;
  z-index: 2;
  width: min(440px, 84%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 48%;
  box-shadow: 0 32px 70px rgba(129, 73, 56, .18);
}
.limited-ribbon {
  position: absolute;
  z-index: 4;
  top: 4%;
  left: 3%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: #fff6f1;
  border: 2px dashed #f4aaa5;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  transform: rotate(-9deg);
  box-shadow: 0 14px 30px rgba(169, 95, 75, .12);
}
.preorder-doodle { position: absolute; z-index: 4; color: #ffaaa4; }
.preorder-doodle.one { right: 1%; top: 16%; font-size: 29px; transform: rotate(12deg); }
.preorder-doodle.two { left: 7%; bottom: 10%; font-size: 34px; }
.preorder-summary { position: relative; z-index: 2; }
.preorder-summary h1 { font-size: clamp(42px, 4.4vw, 65px); }
.preorder-lead { margin: 25px 0; color: var(--muted); }
.reservation-facts { margin: 28px 0; border-top: 1px solid var(--line); }
.reservation-facts div { display: grid; grid-template-columns: 110px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.reservation-facts dt { font-weight: 700; }
.reservation-facts dd { margin: 0; color: var(--muted); }
.reservation-facts dd strong { color: var(--brown); font-size: 26px; margin-right: 4px; }
.preorder-cta { width: min(340px, 100%); }

.preorder-note {
  margin-top: 28px;
  padding: 28px clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(100deg, rgba(255, 233, 222, .76), rgba(255, 253, 249, .9));
}
.preorder-note-icon {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 31px;
  box-shadow: 0 12px 28px rgba(160, 91, 70, .1);
}
.preorder-note h2 { margin: 0 0 5px; font-size: 25px; color: var(--coral); }
.preorder-note p { margin: 0; color: var(--muted); }

.reservation-flow { padding: 85px 0 35px; }
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.flow-card {
  position: relative;
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  text-align: center;
  box-shadow: 0 18px 45px rgba(165, 94, 72, .07);
}
.flow-card > span { position: absolute; top: 16px; left: 20px; color: #ef9a91; font-weight: 700; letter-spacing: .12em; font-size: 12px; }
.flow-icon { width: 64px; height: 64px; margin: 5px auto 16px; border-radius: 50%; display: grid; place-items: center; color: var(--coral); background: var(--peach-50); font-size: 28px; }
.flow-card h3 { margin: 0 0 9px; }
.flow-card p { margin: 0; color: var(--muted); font-size: 13px; }

.preorder-details {
  margin-top: 45px;
  padding: clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.preorder-detail-copy > p:not(.mini-kicker) { color: var(--muted); }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 3px; top: 10px; color: var(--coral); font-weight: 700; }
.preorder-detail-images { display: grid; grid-template-columns: 1.08fr .92fr; gap: 14px; align-items: end; }
.preorder-detail-images img { width: 100%; object-fit: cover; border-radius: 30px; box-shadow: 0 20px 45px rgba(131, 76, 60, .12); }
.preorder-detail-images img:first-child { height: 430px; }
.preorder-detail-images img:last-child { height: 330px; }

.reservation-area {
  margin-top: 28px;
  padding: clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
.reservation-form-copy { position: sticky; top: 110px; }
.reservation-form-copy > p:not(.mini-kicker) { color: var(--muted); }
.order-mini-card {
  margin-top: 28px;
  padding: 15px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--peach-50);
  border-radius: 20px;
}
.order-mini-card img { width: 82px; height: 82px; object-fit: cover; border-radius: 44%; }
.order-mini-card strong, .order-mini-card span, .order-mini-card small { display: block; }
.order-mini-card span { color: var(--coral); font-size: 20px; font-weight: 700; margin-top: 2px; }
.order-mini-card small { color: var(--muted); }
.reservation-form {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(153, 85, 65, .1);
}
.reservation-form label { display: block; margin-bottom: 20px; font-weight: 600; font-size: 14px; }
.reservation-form label > span:first-of-type:not(.consent span) {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--peach-400);
  font-size: 9px;
  vertical-align: middle;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 15px;
  border: 1px solid rgba(135, 108, 99, .24);
  border-radius: 13px;
  color: var(--brown);
  background: #fffcfa;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--peach-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 143, 138, .12);
}
.field-row.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex !important; gap: 11px; align-items: flex-start; font-weight: 400 !important; color: var(--muted); }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 4px 0 0; accent-color: var(--coral); }
.submit-reservation { width: 100%; }
.form-note { margin: 14px 0 0; color: #9c8279; font-size: 11px; line-height: 1.65; }

.preorder-faq { padding: 85px 0 55px; }
.faq-list { width: min(850px, 100%); margin: 34px auto 0; display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.74); padding: 0 22px; }
.faq-list summary { padding: 19px 34px 19px 0; cursor: pointer; font-weight: 700; position: relative; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 13px; color: var(--coral); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 0 20px; color: var(--muted); }

.confirmation-dialog,
.complete-dialog {
  width: min(520px, calc(100% - 32px));
  border: 0;
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  color: var(--brown);
  background: #fffaf6;
  box-shadow: 0 30px 100px rgba(82,45,34,.28);
}
.confirmation-dialog::backdrop,
.complete-dialog::backdrop { background: rgba(79,44,36,.32); backdrop-filter: blur(5px); }
.confirmation-dialog h2,
.complete-dialog h2 { color: var(--coral); font-size: 29px; }
.confirmation-details { margin: 25px 0; border-top: 1px solid var(--line); text-align: left; }
.confirmation-details div { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.confirmation-details span { color: var(--muted); }
.confirmation-caution { padding: 12px; border-radius: 13px; background: var(--peach-50); color: var(--muted); font-size: 12px; }
.dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }

@media (max-width: 900px) {
  .preorder-hero, .preorder-details, .reservation-area { grid-template-columns: 1fr; }
  .preorder-photo { min-height: 420px; }
  .preorder-summary { text-align: center; }
  .reservation-facts { text-align: left; }
  .preorder-cta { margin-inline: auto; }
  .flow-grid { grid-template-columns: 1fr; }
  .preorder-detail-copy { text-align: center; }
  .check-list { text-align: left; }
  .reservation-form-copy { position: static; text-align: center; }
  .order-mini-card { text-align: left; }
}

@media (max-width: 600px) {
  .preorder-banner { width: calc(100% - 24px); margin-top: 12px; padding: 13px 15px; align-items: flex-start; }
  .preorder-banner > div { align-items: flex-start; }
  .preorder-banner p { display: block; }
  .preorder-banner p span { display: none; }
  .preorder-banner > a { font-size: 0; }
  .preorder-banner > a span { font-size: 25px; }
  .breadcrumb { width: calc(100% - 24px); }
  .preorder-hero { min-height: auto; padding: 28px 18px 38px; }
  .preorder-photo { min-height: 320px; }
  .preorder-photo img { width: 80%; }
  .limited-ribbon { width: 84px; height: 84px; font-size: 12px; }
  .preorder-summary h1 { font-size: 39px; }
  .reservation-facts div { grid-template-columns: 90px 1fr; font-size: 13px; }
  .reservation-facts dd strong { font-size: 22px; }
  .preorder-note { align-items: flex-start; padding: 22px 18px; }
  .preorder-note-icon { width: 52px; height: 52px; font-size: 24px; }
  .reservation-flow, .preorder-faq { padding-top: 60px; }
  .preorder-details, .reservation-area { padding: 30px 18px; }
  .preorder-detail-images { grid-template-columns: 1fr 1fr; gap: 9px; }
  .preorder-detail-images img:first-child { height: 270px; }
  .preorder-detail-images img:last-child { height: 220px; }
  .field-row.two-columns { grid-template-columns: 1fr; gap: 0; }
  .reservation-form { padding: 24px 17px; }
  .dialog-actions { grid-template-columns: 1fr; }
  .confirmation-dialog, .complete-dialog { padding: 35px 20px 27px; }
}

/* --- 使用上のご注意ページ（/care） --- */
.care-main { padding-bottom: 40px; }
.care-head { padding-top: 28px; }
.care-head h1 { font-family: "Kiwi Maru", serif; color: var(--brown); font-size: clamp(1.7rem, 5vw, 2.4rem); margin: .2em 0 .4em; }
.care-lead { color: var(--muted); line-height: 1.9; }
.care-block { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 22px 24px; margin-top: 20px; }
.care-block h2 { font-family: "Kiwi Maru", serif; color: var(--coral); font-size: 1.12rem; margin: 0 0 .6em; }
.care-block ul { margin: 0; padding-left: 1.2em; line-height: 1.95; color: var(--brown); }
.care-block li { margin: .45em 0; }
.care-block b { font-weight: 700; }
.care-warn { background: #fff2ea; border-color: #ffd9c9; }
.care-note { color: var(--muted); font-size: .9rem; margin: .9em 0 0; }
.care-spec { display: grid; grid-template-columns: 6.5em 1fr; gap: .55em 1em; margin: 0; color: var(--brown); line-height: 1.85; }
.care-spec dt { color: var(--muted); font-size: .92rem; }
.care-spec dd { margin: 0; }
@media (max-width: 480px) { .care-spec { grid-template-columns: 1fr; gap: .1em; } .care-spec dt { margin-top: .7em; } }
