/* ===========================================================
   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.2rem; height: 4.8rem; }
.sbrand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.sbrand img { width: 5.44rem; height: 2.05rem; object-fit: contain; display: block; }
.shdr-nav { display: flex; gap: clamp(0.4rem, 1.3vw, 1.3rem); margin-left: auto; }
.shdr-nav a { font-size: 0.92rem; 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: 0.9rem; 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.18rem; color: var(--ink); white-space: nowrap; }
.shdr-tel small { font-size: 0.6rem; color: var(--muted); display: block; }
.shdr-burger { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; 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: 13.5rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 0.55rem; 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: 0.88rem; 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: 1.4rem; gap: 0.4rem; overflow-y: auto; }
.sdrawer.is-open .sdrawer-panel { transform: none; }
.sdrawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.sdrawer-top img { height: 2rem; }
.sdrawer-close { width: 2.6rem; height: 2.6rem; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1.2rem; 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: 0.86rem; 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(2.4rem, 6vh, 4.2rem) clamp(2rem, 5vh, 3.4rem); }
.phero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 0.8rem 0 0.6rem; letter-spacing: .04em; }
.phero p { color: var(--text); font-size: 1rem; max-width: 40rem; }

/* breadcrumb */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5em; font-size: 0.78rem; color: var(--muted); padding: 0.9rem 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(2.5rem, 6vh, 4.5rem) 0; }
.page-lead { max-width: 44rem; margin: 0 auto clamp(2rem, 4vh, 3rem); text-align: center; }
.page-lead .eyebrow { justify-content: center; }
.page-lead h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0.9rem 0 0.7rem; }
.page-lead p { color: var(--text); }
.section + .section { margin-top: clamp(2.5rem, 5vh, 4rem); }
.section-title { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: 1.2rem; 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.6rem; justify-content: center; margin-bottom: 2rem; }
.cat-tab { font-size: 0.86rem; 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(1rem, 1.8vw, 1.4rem); }
.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: 0.7rem; left: 0.7rem; font-size: 0.66rem; font-weight: 700; color: #fff; background: var(--purple); padding: 0.3em 0.8em; border-radius: 999px; }
.cat-card-body { padding: 1rem 1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.cat-card-name { font-family: var(--mincho); font-weight: 600; font-size: 1.02rem; color: var(--ink); line-height: 1.5; }
.cat-card-note { font-size: 0.78rem; color: var(--text); margin-top: 0.4rem; flex: 1; }
.cat-card-price { font-family: var(--mincho); font-weight: 700; font-size: 1.3rem; color: var(--purple-deep); margin-top: 0.8rem; }
.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: 0.74rem; font-weight: 600; color: var(--muted); margin-bottom: 0.15rem; }
.cat-card-price .reg s { color: var(--muted); }
.cat-card-price .mem-label { font-family: var(--gothic); font-size: 0.72rem; 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: 0.82rem; 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.2rem, 2.5vw, 2.4rem); 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: 18rem; background: var(--lav-2); }
.promo-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-media .ribbon { position: absolute; top: 1rem; left: 1rem; background: var(--purple); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 0.45em 1.1em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.promo-body { padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 2.6rem) 0; display: flex; flex-direction: column; justify-content: center; }
.promo-body .new { color: var(--gold-deep); font-weight: 700; letter-spacing: .06em; font-size: 0.9rem; }
.promo-body h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0.4rem 0 0.3rem; }
.promo-body h2 .big { display: block; font-size: 1.35em; color: var(--purple-deep); letter-spacing: .04em; }
.promo-body p { color: var(--text); margin: 0.7rem 0 1.1rem; }
.promo-badge { align-self: flex-start; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 6.6rem; height: 6.6rem; 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.62rem; opacity: .92; }
.promo-badge b { font-size: 1.85rem; font-family: var(--mincho); }
.promo-badge span { font-size: 0.7rem; }
@media (max-width: 760px) { .promo { grid-template-columns: 1fr; } .promo-body { padding: 1.5rem; } .promo-media { min-height: 13rem; } }
.promo-foot { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.promo-price { font-family: var(--gothic); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.promo-price b { font-family: var(--mincho); font-size: 1.6rem; color: var(--purple-deep); margin: 0 0.1em; }
.promo-price small { font-size: 0.7rem; 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.15rem; color: var(--purple-deep); letter-spacing: .08em; }

/* ---------- order form download ---------- */
.orderform { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); background: linear-gradient(160deg, var(--lav-2), var(--lav)); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem); }
.of-icon { width: 4rem; height: 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: 2rem; height: 2rem; }
.of-body h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin-bottom: 0.4rem; }
.of-body p { font-size: 0.9rem; 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(1.3rem, 3vw, 2rem); border-radius: 16px; margin-bottom: 1.6rem; 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(1.4rem, 3vw, 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: 1.45rem; margin-top: 0.7rem; }
.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.62rem; 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.05rem; margin: 0.4rem 0 1rem; }
.size-chip .lbl { background: var(--gold); color: #3a2f10; border-radius: 7px; padding: 0.15em 0.7em; font-size: 0.78em; }
.explain-note { font-size: 0.84rem; color: var(--muted); line-height: 1.85; margin-top: 0.6rem; }
.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: 0.82rem; margin-bottom: 0.7rem; }

/* kago 3-tier 一般/会員 price rows */
.kago-prices { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.7rem 0 1rem; }
.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: 0.9rem; }
.kp-row .reg s { color: var(--muted); }
.kp-row .ar { color: var(--gold-deep); font-weight: 700; }
.kp-row .lbl { font-size: 0.66rem; 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: 1.25rem; }
.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: 1rem; color: var(--purple-deep); margin-top: 0.15rem; }
.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: 0.9rem; }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 1.2rem; align-items: center; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.2rem 1.5rem; box-shadow: var(--shadow-sm); }
.price-item .pi-name { font-family: var(--mincho); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.price-item .pi-note { font-size: 0.84rem; color: var(--text); margin-top: 0.3rem; }
.price-item .pi-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; color: var(--purple-deep); background: var(--lav-2); border-radius: 999px; padding: 0.2em 0.7em; margin-bottom: 0.4rem; }
.ptable { text-align: right; white-space: nowrap; }
.ptable .reg { font-size: 0.82rem; 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.2rem; }
.ptable .mem .lbl { font-family: var(--gothic); font-size: 0.7rem; 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: 1.5rem; 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.05rem; 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(1rem,1.8vw,1.4rem); }
.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: 1rem 1.1rem 1.2rem; }
.otype-body h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.otype-body p { font-size: 0.82rem; 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(1.4rem, 3vw, 2.6rem); 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: 0.9rem; 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: 0.82rem; 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(1rem, 1.8vw, 1.4rem); counter-reset: s; }
.step { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.4rem 1.2rem; 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: 1.6rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.84rem; color: var(--text); }

/* note band */
.note-band { background: var(--lav-2); border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.2rem 1.4rem; color: var(--text); font-size: 0.88rem; }
.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(1.8rem, 4vw, 2.8rem); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 0.6rem; }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 1.4rem; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 0.9rem; 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(3rem, 6vh, 4.5rem) 0 1.6rem; margin-top: clamp(3rem, 6vh, 5rem); }
.sftr-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.sftr-logo { height: 2.4rem; width: 6.37rem; object-fit: contain; display: block; margin-bottom: 0.6rem; }
.sftr-tag { color: #C9B9E6; font-family: var(--mincho); }
.sftr-desc { font-size: 0.82rem; color: rgba(255,255,255,.6); margin-top: 0.8rem; max-width: 24rem; }
.sftr-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sftr-col { display: flex; flex-direction: column; gap: 0.55em; }
.sftr-col h4 { font-family: var(--mincho); font-size: 0.92rem; color: #fff; margin-bottom: 0.4em; }
.sftr-col a { font-size: 0.86rem; color: rgba(255,255,255,.72); }
.sftr-col a:hover { color: #C9B9E6; }
.sftr-col p { font-size: 0.82rem; color: rgba(255,255,255,.6); line-height: 1.9; }
.sftr-base { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.72rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 0.5rem; }

/* ---------- definition table (会社概要) ---------- */
.dl { display: grid; grid-template-columns: 13rem 1fr; border-top: 1px solid var(--line); }
.dl > dt, .dl > dd { padding: 1.05rem 1.2rem; 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: 0.95rem; }
.dl > dd { color: var(--text); font-size: 0.95rem; 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.3rem; background: transparent; } }

/* ---------- venue cards ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 1.8vw, 1.4rem); }
.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: 1.4rem 1.6rem 1.5rem; }
.venue h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.venue .addr { font-size: 0.86rem; color: var(--text); line-height: 1.8; }
.venue .spec { margin-top: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.venue .spec span { font-size: 0.74rem; 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.5rem; padding-left: 2rem; border-left: 2px solid var(--line); }
.tl-item { position: relative; padding-bottom: 1.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: calc(-2rem - 7px); top: 0.35rem; 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.02rem; }
.tl-item p { font-size: 0.9rem; color: var(--text); margin-top: 0.2rem; }

/* ---------- numbered process (flow) ---------- */
.flow-list { display: flex; flex-direction: column; gap: 1rem; counter-reset: f; }
.flow-row { display: grid; grid-template-columns: 4.4rem 1fr; gap: 1.2rem; align-items: start; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); }
.flow-num { counter-increment: f; font-family: var(--mincho); font-weight: 700; font-size: 1.6rem; color: #fff; width: 3.4rem; height: 3.4rem; 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.12rem; margin-bottom: 0.3rem; }
.flow-body p { font-size: 0.9rem; color: var(--text); line-height: 1.85; }
.flow-body .tip { margin-top: 0.6rem; font-size: 0.82rem; 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.05rem; color: var(--purple-deep); margin: 1.6rem 0 0.7rem; }
.qa { border: 1px solid var(--line-soft); border-radius: 14px; background: #fff; margin-bottom: 0.7rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.qa > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.9rem; padding: 1.1rem 1.3rem; font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary .qmark { flex: none; width: 1.9rem; height: 1.9rem; 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 1.3rem 1.2rem 4.1rem; color: var(--text); font-size: 0.92rem; 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(1.6rem, 4vw, 2.6rem); }
.lead-band .sig { font-family: var(--mincho); font-weight: 600; color: var(--purple-deep); margin-top: 1.1rem; }
.prose p { color: var(--text); line-height: 2; margin-bottom: 1rem; max-width: 46rem; }
.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; }
}
