/* wp-chrome.css — 新サイト共通chrome用CSS（WPページ向け）
   styles.css のグローバル指定/font-size を除外し本文を乱さない版 ＋ site-pages.css */
/* 横はみ出し（ドロワー等）をクリップ＝本文タイポには無影響 */
html, body { overflow-x: clip; }


/* ===========================================================
   Aifit Life Platform — さいき葬祭
   Design tokens & base  (lavender / purple system)
   =========================================================== */

:root {
  /* Lavender / purple system */
  --lav:        #F5F2FA;  /* page tint */
  --lav-2:      #EEE8F6;  /* soft section */
  --lav-3:      #E4DBF0;
  --white:      #FFFFFF;

  --purple:     #7C6BA6;  /* primary */
  --purple-mid: #6E5C97;
  --purple-deep:#574878;  /* hover / strong */
  --purple-ink: #2F2942;  /* deepest */

  --ink:        #38353F;  /* headings */
  --text:       #57545F;  /* body */
  --muted:      #918DA0;  /* captions */

  --dark:       #3A3942;  /* dark support band */
  --dark-2:     #2F2E37;

  /* AI accent — the gold differentiator */
  --gold:       #C2A55E;
  --gold-deep:  #9F8238;
  --gold-tint:  #F0E7CF;

  /* theme accents (kept subtle, mostly purple-family) */
  --c-shukatsu: #7C8B72; /* 終活 */
  --c-sogi:     #6E5C97; /* 葬儀 */
  --c-pet:      #B98A52; /* ペット */
  --c-souzoku:  #5E6E82; /* 相続 */

  --line:       rgba(124,107,166,0.20);
  --line-soft:  rgba(124,107,166,0.11);
  --shadow:     0 24px 60px -34px rgba(60,48,96,0.45);
  --shadow-sm:  0 12px 30px -18px rgba(60,48,96,0.40);

  --mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --gothic: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --fz: 1;
  --maxw: 1240px;
}



/* ---------- utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(2.8rem, 6vw, 8rem); }

.eyebrow {
  font-family: var(--gothic); font-size: 1.184rem; font-weight: 700;
  letter-spacing: 0.3em; color: var(--purple); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before { content: ""; width: 1.7em; height: 1px; background: var(--purple); opacity: .6; }

/* primary / secondary buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-weight: 700; font-size: 1.536rem; border-radius: 999px;
  padding: 0.92em 1.7em; border: 1px solid transparent; line-height: 1; white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn--primary { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%); color: #fff; box-shadow: 0 14px 30px -14px rgba(87,72,120,0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(87,72,120,0.8); }
.btn--ghost { background: #fff; color: var(--purple-deep); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--purple); box-shadow: var(--shadow-sm); }
.btn .ic { width: 1.1em; height: 1.1em; flex: none; }

/* AI gold badge — the differentiator */
.ai-badge {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--gothic); font-weight: 700; color: var(--purple-ink);
  background: linear-gradient(135deg, #EFE2BC, var(--gold) 55%, var(--gold-deep));
  border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 22px -10px rgba(159,130,56,0.65), inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.ai-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(159,130,56,0.75), inset 0 1px 0 rgba(255,255,255,.55); }
.ai-badge .spark { color: #fff; text-shadow: 0 1px 2px rgba(120,95,40,.5); font-size: .95em; }
.ai-badge--sm { padding: 0.5em 1.05em; font-size: 1.312rem; }
.ai-badge--md { padding: 0.72em 1.35em; font-size: 1.472rem; }
.ai-badge--lg { padding: 0.95em 1.7em; font-size: 1.632rem; }
.ai-badge .arr { transition: transform .25s; }
.ai-badge:hover .arr { transform: translateX(4px); }

/* chrome要素のbox-sizing保険 */
.shdr, .shdr *, .sftr, .sftr *, #drawer, #drawer *, .sbrand, .sbrand * { box-sizing: border-box; }

/* ===== site-pages.css ===== */
/* ===========================================================
   Aifit — shared subpage chrome (header / footer / hero / breadcrumb)
   Subpages link: styles.css (tokens+base+btn+ai-badge) then site-pages.css
   =========================================================== */

/* ---------- header ---------- */
.shdr { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-soft); }
@media (max-width: 1180px) {
  .shdr { transition: transform .28s ease, opacity .28s ease; }
  .shdr--hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
}
.shdr-inner { display: flex; align-items: center; gap: 1.92rem; height: 7.68rem; }
.sbrand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.sbrand img { width: 8.704rem; height: 3.28rem; object-fit: contain; display: block; }
.shdr-nav { display: flex; gap: clamp(0.64rem, 1.3vw, 2.08rem); margin-left: auto; }
.shdr-nav a { font-size: 1.472rem; font-weight: 600; color: var(--ink); white-space: nowrap; position: relative; padding: 0.35em 0.1em; }
.shdr-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.shdr-nav a:hover { color: var(--purple); }
.shdr-nav a:hover::after, .shdr-nav a[aria-current]::after { transform: scaleX(1); }
.shdr-right { display: flex; align-items: center; gap: 1.44rem; margin-left: auto; }
.shdr-tel { display: inline-flex; align-items: center; gap: 0.5em; color: var(--purple-deep); }
.shdr-tel svg { width: 1.3em; height: 1.3em; }
.shdr-tel b { font-family: var(--mincho); font-weight: 700; font-size: 1.888rem; color: var(--ink); white-space: nowrap; }
.shdr-tel small { font-size: 0.96rem; color: var(--muted); display: block; }
.shdr-burger { display: inline-flex; align-items: center; justify-content: center; width: 4.8rem; height: 4.8rem; border: 0; border-radius: 12px; background: linear-gradient(140deg, var(--purple), var(--purple-deep)); color: #fff; cursor: pointer; }
.shdr-burger svg { width: 1.4em; height: 1.4em; }
/* dropdown mega-menu */
.shdr-nav .has-drop { position: relative; display: inline-flex; align-items: center; }
.shdr-nav .drop-toggle { display: inline-flex; align-items: center; gap: 0.35em; }
.shdr-nav .caret { font-style: normal; font-size: 0.7em; color: var(--purple); transition: transform .25s; }
.has-drop:hover .caret, .has-drop:focus-within .caret { transform: rotate(180deg); }
.shdr-drop { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 21.6rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 0.88rem; display: flex; flex-direction: column; gap: 1px; opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s; z-index: 60; }
.has-drop:hover .shdr-drop, .has-drop:focus-within .shdr-drop, .has-drop.is-open .shdr-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); }
.has-drop.is-open .caret { transform: rotate(180deg); }
.shdr-drop::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.shdr-drop a { padding: 0.62em 0.85em; border-radius: 9px; font-size: 1.408rem; font-weight: 600; color: var(--ink); white-space: nowrap; position: relative; z-index: 1; }
.shdr-drop a::after { display: none; }
.shdr-drop a:hover { background: var(--lav-2); color: var(--purple-deep); }
.shdr-drop a[aria-current] { color: var(--purple-deep); background: var(--lav); }

@media (max-width: 1080px) { .shdr-nav, .shdr-tel small { display: none; } .shdr-tel b { display: none; } }

/* drawer */
.sdrawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; overflow: hidden; visibility: hidden; transition: visibility 0s .45s; }
.sdrawer.is-open { pointer-events: auto; visibility: visible; transition: visibility 0s; }
.sdrawer-scrim { position: absolute; inset: 0; background: rgba(47,41,66,.45); opacity: 0; transition: opacity .35s; }
.sdrawer.is-open .sdrawer-scrim { opacity: 1; }
.sdrawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 340px); background: var(--lav); box-shadow: -20px 0 50px -20px rgba(47,41,66,.5); transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); display: flex; flex-direction: column; padding: 2.24rem; gap: 0.64rem; overflow-y: auto; }
.sdrawer.is-open .sdrawer-panel { transform: none; }
.sdrawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.96rem; }
.sdrawer-top img { height: 3.2rem; }
.sdrawer-close { width: 4.16rem; height: 4.16rem; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1.92rem; color: var(--ink); }
.sdrawer-panel a { padding: 0.9em 0.2em; border-bottom: 1px solid var(--line-soft); font-weight: 600; color: var(--ink); }
.sdrawer-panel a.sub { padding-left: 1.3em; font-size: 1.376rem; font-weight: 500; color: var(--text); position: relative; }
.sdrawer-panel a.sub::before { content: ""; position: absolute; left: 0.3em; top: 50%; width: 0.55em; height: 1px; background: var(--purple); opacity: .5; }
.sdrawer-panel a[aria-current] { color: var(--purple-deep); }

/* ---------- page hero ---------- */
.phero { position: relative; background: linear-gradient(160deg, var(--lav-2), var(--lav)); overflow: hidden; }
.phero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 80% at 88% -10%, rgba(194,165,94,.12), transparent 70%), radial-gradient(50% 70% at 6% 120%, rgba(124,107,166,.16), transparent 72%); }
.phero-inner { position: relative; padding-block: clamp(3.84rem, 6vh, 6.72rem) clamp(3.2rem, 5vh, 5.44rem); }
.phero h1 { font-size: clamp(3.04rem, 4vw, 4.64rem); margin: 1.28rem 0 0.96rem; letter-spacing: .04em; }
.phero p { color: var(--text); font-size: 1.6rem; max-width: 64rem; }

/* breadcrumb */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5em; font-size: 1.248rem; color: var(--muted); padding: 1.44rem 0; }
.crumb a { color: var(--purple-deep); font-weight: 600; }
.crumb a:hover { text-decoration: underline; }
.crumb .sep { opacity: .6; }

/* ---------- generic content ---------- */
.page { padding: clamp(4rem, 6vh, 7.2rem) 0; }
.page-lead { max-width: 70.4rem; margin: 0 auto clamp(3.2rem, 4vh, 4.8rem); text-align: center; }
.page-lead .eyebrow { justify-content: center; }
.page-lead h2 { font-size: clamp(2.4rem, 3vw, 3.36rem); margin: 1.44rem 0 1.12rem; }
.page-lead p { color: var(--text); }
.section + .section { margin-top: clamp(4rem, 5vh, 6.4rem); }
.section-title { font-size: clamp(2.08rem, 2.4vw, 2.88rem); margin-bottom: 1.92rem; display: flex; align-items: center; gap: 0.6em; }
.section-title::before { content: ""; width: 0.4em; height: 1.1em; border-radius: 99px; background: linear-gradient(var(--purple), var(--purple-deep)); }

/* ---------- catalog grid ---------- */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 0.96rem; justify-content: center; margin-bottom: 3.2rem; }
.cat-tab { font-size: 1.376rem; font-weight: 700; color: var(--purple-deep); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.55em 1.2em; cursor: pointer; transition: background .25s, color .25s, border-color .25s; }
.cat-tab:hover, .cat-tab.is-on { background: var(--purple); color: #fff; border-color: var(--purple); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 1.8vw, 2.24rem); }
.cat-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-card-media { aspect-ratio: 1; background: var(--lav-2); position: relative; }
.cat-card-media image-slot::part(empty) { background: linear-gradient(140deg, var(--lav-2), var(--lav-3)); color: var(--purple); }
.cat-card-tag { position: absolute; top: 1.12rem; left: 1.12rem; font-size: 1.056rem; font-weight: 700; color: #fff; background: var(--purple); padding: 0.3em 0.8em; border-radius: 999px; }
.cat-card-body { padding: 1.6rem 1.6rem 1.92rem; display: flex; flex-direction: column; flex: 1; }
.cat-card-name { font-family: var(--mincho); font-weight: 600; font-size: 1.632rem; color: var(--ink); line-height: 1.5; }
.cat-card-note { font-size: 1.248rem; color: var(--text); margin-top: 0.64rem; flex: 1; }
.cat-card-price { font-family: var(--mincho); font-weight: 700; font-size: 2.08rem; color: var(--purple-deep); margin-top: 1.28rem; }
.cat-card-price small { font-size: 0.6em; color: var(--muted); font-weight: 600; margin-left: 0.2em; }
.cat-card-price .reg { display: block; font-family: var(--gothic); font-size: 1.184rem; font-weight: 600; color: var(--muted); margin-bottom: 0.24rem; }
.cat-card-price .reg s { color: var(--muted); }
.cat-card-price .mem-label { font-family: var(--gothic); font-size: 1.152rem; font-weight: 700; color: #fff; background: var(--gold-deep); border-radius: 5px; padding: 0.1em 0.5em; margin-right: 0.4em; vertical-align: 0.12em; }
.cat-off { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--gothic); font-weight: 700; font-size: 1.312rem; color: var(--gold-deep); background: var(--gold-tint); border: 1px solid rgba(159,130,56,.3); border-radius: 999px; padding: 0.4em 1em; }

/* ---------- promo feature band ---------- */
.promo { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.92rem, 2.5vw, 3.84rem); align-items: stretch; background: #fff; border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.promo-media { position: relative; min-height: 28.8rem; background: var(--lav-2); }
.promo-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-media .ribbon { position: absolute; top: 1.6rem; left: 1.6rem; background: var(--purple); color: #fff; font-weight: 700; font-size: 1.312rem; padding: 0.45em 1.1em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.promo-body { padding: clamp(2.56rem, 3vw, 4.16rem) clamp(2.56rem, 3vw, 4.16rem) clamp(2.56rem, 3vw, 4.16rem) 0; display: flex; flex-direction: column; justify-content: center; }
.promo-body .new { color: var(--gold-deep); font-weight: 700; letter-spacing: .06em; font-size: 1.44rem; }
.promo-body h2 { font-size: clamp(2.4rem, 3vw, 3.52rem); margin: 0.64rem 0 0.48rem; }
.promo-body h2 .big { display: block; font-size: 1.35em; color: var(--purple-deep); letter-spacing: .04em; }
.promo-body p { color: var(--text); margin: 1.12rem 0 1.76rem; }
.promo-badge { align-self: flex-start; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 10.56rem; height: 10.56rem; border-radius: 50%; background: radial-gradient(circle at 50% 35%, #E8A24E, #C2792E); color: #fff; box-shadow: 0 10px 24px -10px rgba(159,90,30,.7); font-weight: 700; line-height: 1.1; text-align: center; }
.promo-badge small { font-size: 0.992rem; opacity: .92; }
.promo-badge b { font-size: 2.96rem; font-family: var(--mincho); }
.promo-badge span { font-size: 1.12rem; }
@media (max-width: 760px) { .promo { grid-template-columns: 1fr; } .promo-body { padding: 2.4rem; } .promo-media { min-height: 20.8rem; } }
.promo-foot { display: flex; align-items: center; gap: 2.08rem; flex-wrap: wrap; }
.promo-price { font-family: var(--gothic); font-weight: 600; color: var(--text); font-size: 1.52rem; }
.promo-price b { font-family: var(--mincho); font-size: 2.56rem; color: var(--purple-deep); margin: 0 0.1em; }
.promo-price small { font-size: 1.12rem; color: var(--muted); }
.cat-card-media--plain { display: flex; align-items: center; justify-content: center; background: linear-gradient(140deg, var(--lav-2), var(--lav-3)); }
.cat-card-media--plain .plain-ico { font-family: var(--mincho); font-weight: 600; font-size: 1.84rem; color: var(--purple-deep); letter-spacing: .08em; }

/* ---------- order form download ---------- */
.orderform { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1.6rem, 2.5vw, 3.2rem); background: linear-gradient(160deg, var(--lav-2), var(--lav)); border: 1px solid var(--line); border-radius: 20px; padding: clamp(2.24rem, 3vw, 3.2rem) clamp(2.24rem, 3vw, 3.52rem); }
.of-icon { width: 6.4rem; height: 6.4rem; flex: none; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--purple-deep); box-shadow: var(--shadow-sm); }
.of-icon svg { width: 3.2rem; height: 3.2rem; }
.of-body h2 { font-size: clamp(1.92rem, 2.2vw, 2.4rem); margin-bottom: 0.64rem; }
.of-body p { font-size: 1.44rem; color: var(--text); line-height: 1.8; }
.of-btn { flex: none; white-space: nowrap; }
@media (max-width: 720px) { .orderform { grid-template-columns: 1fr; text-align: center; justify-items: center; } .of-btn { width: 100%; } }

/* ---------- catalog section banner ---------- */
.cat-banner { display: flex; align-items: center; justify-content: center; text-align: center; padding: clamp(2.08rem, 3vw, 3.2rem); border-radius: 16px; margin-bottom: 2.56rem; background: linear-gradient(135deg, var(--purple), var(--purple-deep)); position: relative; overflow: hidden; }
.cat-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 90% 10%, rgba(255,255,255,.14), transparent 60%); }
.cat-banner h2 { color: #fff; font-size: clamp(2.24rem, 3vw, 3.2rem); letter-spacing: .12em; position: relative; }
.cat-banner--gold { background: linear-gradient(135deg, #C9AE6A, #9F8238); }
.cat-banner--ink { background: linear-gradient(135deg, #4A4360, var(--purple-ink)); }
/* single unit price */
.price-unit { font-family: var(--mincho); font-weight: 700; color: #C0392B; font-size: 2.32rem; margin-top: 1.12rem; }
.price-unit small { font-size: 0.56em; color: var(--muted); font-weight: 600; margin-left: 0.2em; }
.price-unit .hsize { display: inline-block; font-family: var(--gothic); font-size: 0.992rem; font-weight: 700; color: var(--purple-deep); background: var(--lav-2); border-radius: 999px; padding: 0.2em 0.7em; margin-left: 0.5em; vertical-align: 0.2em; }
/* size chip for stand-method */
.size-chip { display: inline-flex; align-items: center; gap: 0.7em; background: var(--purple-ink); color: #fff; border-radius: 12px; padding: 0.55em 1.1em; font-weight: 700; font-size: 1.68rem; margin: 0.64rem 0 1.6rem; }
.size-chip .lbl { background: var(--gold); color: #3a2f10; border-radius: 7px; padding: 0.15em 0.7em; font-size: 0.78em; }
.explain-note { font-size: 1.344rem; color: var(--muted); line-height: 1.85; margin-top: 0.96rem; }
.kicker { display: inline-block; font-family: var(--gothic); font-weight: 700; color: #fff; background: #C0567A; border-radius: 999px; padding: 0.35em 1.1em; font-size: 1.312rem; margin-bottom: 1.12rem; }

/* kago 3-tier 一般/会員 price rows */
.kago-prices { display: flex; flex-direction: column; gap: 0.88rem; margin: 1.12rem 0 1.6rem; }
.kp-row { display: flex; align-items: center; gap: 0.7em; flex-wrap: wrap; font-family: var(--gothic); background: var(--lav); border: 1px solid var(--line-soft); border-radius: 12px; padding: 0.6em 0.9em; }
.kp-row .reg { color: var(--muted); font-size: 1.44rem; }
.kp-row .reg s { color: var(--muted); }
.kp-row .ar { color: var(--gold-deep); font-weight: 700; }
.kp-row .lbl { font-size: 1.056rem; font-weight: 700; color: #fff; background: #C0392B; border-radius: 5px; padding: 0.14em 0.5em; }
.kp-row .mem { font-family: var(--mincho); font-weight: 700; color: #C0392B; font-size: 2rem; }
.kp-row .mem small { font-size: 0.52em; color: var(--muted); font-weight: 600; }
/* dual (1対/1本) price */
.price-sub { display: block; font-family: var(--mincho); font-weight: 600; font-size: 1.6rem; color: var(--purple-deep); margin-top: 0.24rem; }
.price-sub small { font-size: 0.6em; color: var(--muted); font-weight: 600; }

/* ---------- two-tier price product list ---------- */
.price-list { display: flex; flex-direction: column; gap: 1.44rem; }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 1.92rem; align-items: center; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.92rem 2.4rem; box-shadow: var(--shadow-sm); }
.price-item .pi-name { font-family: var(--mincho); font-weight: 600; font-size: 1.792rem; color: var(--ink); }
.price-item .pi-note { font-size: 1.344rem; color: var(--text); margin-top: 0.48rem; }
.price-item .pi-tag { display: inline-block; font-size: 1.088rem; font-weight: 700; color: var(--purple-deep); background: var(--lav-2); border-radius: 999px; padding: 0.2em 0.7em; margin-bottom: 0.64rem; }
.ptable { text-align: right; white-space: nowrap; }
.ptable .reg { font-size: 1.312rem; color: var(--muted); }
.ptable .reg s { color: var(--muted); }
.ptable .mem { display: flex; align-items: baseline; justify-content: flex-end; gap: 0.4em; margin-top: 0.32rem; }
.ptable .mem .lbl { font-family: var(--gothic); font-size: 1.12rem; font-weight: 700; color: #fff; background: #C0392B; border-radius: 5px; padding: 0.15em 0.5em; }
.ptable .mem .val { font-family: var(--mincho); font-weight: 700; font-size: 2.4rem; color: #C0392B; }
.ptable .mem .val small { font-size: 0.5em; color: var(--muted); font-weight: 600; }
.ptable .ask { font-family: var(--mincho); font-weight: 700; font-size: 1.68rem; color: var(--purple-deep); }
@media (max-width: 560px) { .price-item { grid-template-columns: 1fr; } .ptable { text-align: left; } .ptable .mem { justify-content: flex-start; } }

/* ---------- offering type explainer ---------- */
.otypes { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem,1.8vw,2.24rem); }
.otype { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.otype-media { aspect-ratio: 4/3; background: var(--lav-2); overflow: hidden; }
.otype-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.otype-body { padding: 1.6rem 1.76rem 1.92rem; }
.otype-body h3 { font-size: 1.632rem; margin-bottom: 0.56rem; }
.otype-body p { font-size: 1.312rem; color: var(--text); line-height: 1.8; }
@media (max-width: 860px) { .otypes { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .otypes { grid-template-columns: 1fr; } }

/* ---------- real photo feature ---------- */
.feature-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-soft); aspect-ratio: 16/10; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.24rem, 3vw, 4.16rem); align-items: center; }
.split.wide-img { grid-template-columns: 1.15fr 1fr; }
@media (max-width: 820px) { .split, .split.wide-img { grid-template-columns: 1fr; } }
.cat-card-btn { margin-top: 1.44rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.4em; padding: 0.7em 1em; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-weight: 700; font-size: 1.312rem; color: var(--purple-deep); transition: background .25s, color .25s; }
.cat-card:hover .cat-card-btn { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ordering steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 1.8vw, 2.24rem); counter-reset: s; }
.step { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 2.24rem 1.92rem; box-shadow: var(--shadow-sm); position: relative; }
.step::before { counter-increment: s; content: counter(s, decimal-leading-zero); font-family: var(--mincho); font-weight: 700; font-size: 2.56rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.step h3 { font-size: 1.68rem; margin-bottom: 0.64rem; }
.step p { font-size: 1.344rem; color: var(--text); }

/* note band */
.note-band { background: var(--lav-2); border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.92rem 2.24rem; color: var(--text); font-size: 1.408rem; }
.note-band b { color: var(--purple-deep); }

/* contact CTA */
.cta-band { background: linear-gradient(160deg, var(--purple), var(--purple-deep)); color: #fff; border-radius: 20px; padding: clamp(2.88rem, 4vw, 4.48rem); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2.24rem, 2.6vw, 3.2rem); margin-bottom: 0.96rem; }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 2.24rem; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 1.44rem; justify-content: center; }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- footer ---------- */
.sftr { background: var(--purple-ink); color: rgba(255,255,255,.82); padding: clamp(4.8rem, 6vh, 7.2rem) 0 2.56rem; margin-top: clamp(4.8rem, 6vh, 8rem); }
.sftr-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.sftr-logo { height: 3.84rem; width: 10.192rem; object-fit: contain; display: block; margin-bottom: 0.96rem; }
.sftr-tag { color: #C9B9E6; font-family: var(--mincho); }
.sftr-desc { font-size: 1.312rem; color: rgba(255,255,255,.6); margin-top: 1.28rem; max-width: 38.4rem; }
.sftr-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.sftr-col { display: flex; flex-direction: column; gap: 0.55em; }
.sftr-col h4 { font-family: var(--mincho); font-size: 1.472rem; color: #fff; margin-bottom: 0.4em; }
.sftr-col a { font-size: 1.376rem; color: rgba(255,255,255,.72); }
.sftr-col a:hover { color: #C9B9E6; }
.sftr-col p { font-size: 1.312rem; color: rgba(255,255,255,.6); line-height: 1.9; }
.sftr-base { display: flex; justify-content: space-between; align-items: center; padding-top: 2.4rem; font-size: 1.152rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 0.8rem; }

/* ---------- definition table (会社概要) ---------- */
.dl { display: grid; grid-template-columns: 20.8rem 1fr; border-top: 1px solid var(--line); }
.dl > dt, .dl > dd { padding: 1.68rem 1.92rem; border-bottom: 1px solid var(--line); margin: 0; }
.dl > dt { font-family: var(--mincho); font-weight: 600; color: var(--purple-deep); background: var(--lav); font-size: 1.52rem; }
.dl > dd { color: var(--text); font-size: 1.52rem; line-height: 1.85; }
.dl > dd b { color: var(--ink); }
@media (max-width: 640px) { .dl { grid-template-columns: 1fr; } .dl > dt { border-bottom: 0; padding-bottom: 0.48rem; background: transparent; } }

/* ---------- venue cards ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.6rem, 1.8vw, 2.24rem); }
.venue { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 0; box-shadow: var(--shadow-sm); overflow: hidden; }
.venue-media { aspect-ratio: 16/10; background: var(--lav-2); overflow: hidden; }
.venue-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venue-body { padding: 2.24rem 2.56rem 2.4rem; }
.venue h3 { font-size: 1.792rem; margin-bottom: 0.64rem; }
.venue .addr { font-size: 1.376rem; color: var(--text); line-height: 1.8; }
.venue .spec { margin-top: 1.28rem; display: flex; flex-wrap: wrap; gap: 0.64rem; }
.venue .spec span { font-size: 1.184rem; font-weight: 600; color: var(--purple-deep); background: var(--lav-2); border-radius: 999px; padding: 0.3em 0.8em; }
@media (max-width: 640px) { .venue-grid { grid-template-columns: 1fr; } }

/* ---------- timeline (沿革) ---------- */
.tl { position: relative; margin-left: 0.8rem; padding-left: 3.2rem; border-left: 2px solid var(--line); }
.tl-item { position: relative; padding-bottom: 2.56rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: calc(-3.2rem - 7px); top: 0.56rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--line); }
.tl-year { font-family: var(--mincho); font-weight: 700; color: var(--purple-deep); font-size: 1.632rem; }
.tl-item p { font-size: 1.44rem; color: var(--text); margin-top: 0.32rem; }

/* ---------- numbered process (flow) ---------- */
.flow-list { display: flex; flex-direction: column; gap: 1.6rem; counter-reset: f; }
.flow-row { display: grid; grid-template-columns: 7.04rem 1fr; gap: 1.92rem; align-items: start; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 2.08rem 2.4rem; box-shadow: var(--shadow-sm); }
.flow-num { counter-increment: f; font-family: var(--mincho); font-weight: 700; font-size: 2.56rem; color: #fff; width: 5.44rem; height: 5.44rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(140deg, var(--purple), var(--purple-deep)); }
.flow-num::before { content: counter(f, decimal-leading-zero); }
.flow-body h3 { font-size: 1.792rem; margin-bottom: 0.48rem; }
.flow-body p { font-size: 1.44rem; color: var(--text); line-height: 1.85; }
.flow-body .tip { margin-top: 0.96rem; font-size: 1.312rem; color: var(--purple-deep); background: var(--lav-2); border-radius: 10px; padding: 0.6em 0.9em; }

/* ---------- FAQ accordion ---------- */
.faq-cat { font-family: var(--mincho); font-size: 1.68rem; color: var(--purple-deep); margin: 2.56rem 0 1.12rem; }
.qa { border: 1px solid var(--line-soft); border-radius: 14px; background: #fff; margin-bottom: 1.12rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.qa > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1.44rem; padding: 1.76rem 2.08rem; font-weight: 700; color: var(--ink); font-size: 1.568rem; }
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary .qmark { flex: none; width: 3.04rem; height: 3.04rem; border-radius: 50%; background: var(--purple); color: #fff; font-family: var(--mincho); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.qa > summary .qchev { margin-left: auto; transition: transform .25s; color: var(--purple); }
.qa[open] > summary .qchev { transform: rotate(180deg); }
.qa-body { padding: 0 2.08rem 1.92rem 6.56rem; color: var(--text); font-size: 1.472rem; line-height: 1.9; }
.qa-body b { color: var(--purple-deep); }

/* ---------- intro / lead band ---------- */
.lead-band { background: linear-gradient(160deg, var(--lav-2), var(--lav)); border: 1px solid var(--line-soft); border-radius: 20px; padding: clamp(2.56rem, 4vw, 4.16rem); }
.lead-band .sig { font-family: var(--mincho); font-weight: 600; color: var(--purple-deep); margin-top: 1.76rem; }
.prose p { color: var(--text); line-height: 2; margin-bottom: 1.6rem; max-width: 73.6rem; }
.prose p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .sftr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .sftr-cols { grid-template-columns: 1fr 1fr; }
}


/* ---------- 見守りサポーター登録バッジ（地域LP共通） ---------- */
.watch-band{display:flex;align-items:center;gap:2.08rem;border:1px solid var(--line-soft);border-left:5px solid var(--purple);border-radius:14px;padding:1.92rem 2.24rem;background:linear-gradient(135deg,rgba(124,107,166,.08),rgba(194,165,94,.06));}
.watch-band img{flex:none;width:84px;height:auto;display:block;}
.watch-band-eyebrow{display:block;font-size:1.184rem;font-weight:700;letter-spacing:.04em;color:var(--purple);margin-bottom:0.56rem;}
.watch-band-tx h3{margin:0 0 0.56rem;font-family:"Shippori Mincho",serif;font-size:1.728rem;color:var(--purple-deep);line-height:1.45;}
.watch-band-eyebrow .reg{display:inline-block;margin-left:0.8rem;font-family:"Noto Sans JP",sans-serif;font-size:1.088rem;font-weight:700;color:#fff;background:var(--purple);border-radius:999px;padding:.12em .7em;vertical-align:middle;white-space:nowrap;}
.watch-band-tx p{margin:0;font-size:1.408rem;line-height:1.7;color:#4a4459;}
@media (max-width:560px){.watch-band{flex-direction:column;text-align:center;}}
