/* ラクミチ concept LP (fictional brand) — friendly, clear seminar sign-up page */
:root {
  --bg: #FFFDF8;
  --surface: #FFFFFF;
  --ink: #2E2A25;
  --muted: #5C554D;
  --green: #007B43;
  --green-dark: #005F33;
  --tint: #E8F3EC;
  --tint-soft: #F3F8F4;
  --cta: #C2410C;
  --cta-hover: #9A3412;
  --cta-tint: #FDF1EA;
  --line: #E9E2D6;
  --input: #8C8377;
  --err: #B91C1C;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(46, 42, 37, .05), 0 8px 24px rgba(46, 42, 37, .06);
  --ff-body: system-ui, -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic Medium", "YuGothic", Meiryo, sans-serif;
  --ff-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Noto Sans JP", "Yu Gothic Medium", "YuGothic", Meiryo, sans-serif;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
  line-break: strict;
}
img, svg { display: block; max-width: 100%; height: auto; }
p, li, td, dd, figcaption { text-wrap: pretty; }
.checklist li, .notfor li, .notfor__note, .tk__title, .tl__title, .faq__qtext, .fic, .fv__disclose, .notes li, .teacher__msg, .teacher__profile, .outline td, .choice__text, .field__label, .demo-notice, .form__micro, .apply__sub, .datebox__note { word-break: auto-phrase; }
.faq__qtext { word-break: keep-all; overflow-wrap: anywhere; }
p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  word-break: auto-phrase;
  text-wrap: balance;
}
a { color: var(--green); text-underline-offset: .2em; }
a:hover { color: var(--green-dark); }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.ff-display { font-family: var(--ff-display); }
.nw { display: inline-block; white-space: nowrap; }
.vh {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: absolute; left: 12px; top: 8px; z-index: 1100;
  padding: 10px 16px; border-radius: 8px;
  background: var(--ink); color: #fff; font-weight: 700; text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; color: #fff; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding-inline: max(20px, env(safe-area-inset-left)) max(20px, env(safe-area-inset-right)); }
.container--narrow { max-width: 880px; }
.container--form { max-width: 800px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 10px 24px;
  border: 0; border-radius: 999px;
  font: inherit; font-weight: 700; line-height: 1.4; letter-spacing: .06em; text-align: center; text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, transform .15s, box-shadow .15s;
}
.btn--cta { background: var(--cta); color: #fff; box-shadow: 0 3px 0 #7C2D12; }
.btn--cta:hover { background: var(--cta-hover); color: #fff; }
.btn--cta:active { transform: translateY(2px); box-shadow: 0 1px 0 #7C2D12; }
.btn--cta:focus-visible { outline-color: var(--ink); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--sm { min-height: 44px; padding: 8px 18px; font-size: .875rem; }
.btn--lg { min-height: 60px; padding: 14px 32px; font-size: 1.0625rem; }
.btn--block { display: flex; width: 100%; }
.btn__icon { width: 20px; height: 20px; flex: none; }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn--cta:active { transform: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid var(--line);
}
@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .site-header { background: rgba(255, 253, 248, .86); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
}
.site-header__inner {
  display: flex; align-items: center; gap: 16px;
  max-width: 1120px; min-height: var(--header-h); margin: 0 auto;
  padding: 8px max(16px, env(safe-area-inset-right)) 8px max(16px, env(safe-area-inset-left));
}
.logo { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--ink); text-decoration: none; }
.logo:hover { color: var(--ink); }
.logo__mark { width: 32px; height: 32px; flex: none; }
.logo__main { font-size: 1.3125rem; font-weight: 700; letter-spacing: .06em; color: var(--green-dark); line-height: 1; }
.logo__sub { display: none; font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; line-height: 1; padding-left: 10px; border-left: 1px solid var(--line); }
.gnav { display: none; margin-left: auto; }
.gnav__list { display: flex; gap: 4px; }
.gnav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 10px;
  color: var(--ink); font-size: .875rem; font-weight: 700; text-decoration: none; border-radius: 8px;
}
.gnav a:hover { color: var(--green-dark); background: var(--tint-soft); }
.gnav a[aria-current="true"] { color: var(--green-dark); box-shadow: inset 0 -2px 0 var(--green); border-radius: 0; }
.site-header__cta { margin-left: auto; }
@media (min-width: 400px) { .logo__sub { display: inline-block; } }
@media (min-width: 900px) {
  .gnav { display: block; }
  .site-header__cta { margin-left: 8px; }
}

/* ---------- First view ---------- */
.fv { position: relative; overflow: hidden; padding: 28px 0 56px; }
.fv::before, .fv::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.fv::before { width: 420px; height: 420px; right: -220px; top: -160px; background: var(--tint); opacity: .7; }
.fv::after { width: 220px; height: 220px; left: -120px; bottom: -80px; background: #F6EFE3; }
.fv__inner { position: relative; z-index: 1; display: grid; gap: 24px; }
.fv__main, .fv__side { display: contents; }
.fv__text { order: 1; }
.datebox { order: 2; }
.fv__cta { order: 3; }
.fv__art { order: 4; }
.pill {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: var(--tint); color: var(--green-dark);
  font-size: .8125rem; font-weight: 700; letter-spacing: .08em; line-height: 1.7;
}
.eyebrow { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-top: 12px; font-size: .8125rem; font-weight: 700; line-height: 1.6; }
.eyebrow__item { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.eyebrow__icon { width: 18px; height: 18px; color: var(--green); flex: none; }
.fv__title {
  margin-top: 14px;
  font-size: clamp(2rem, 1.35rem + 3.2vw, 3.5rem);
  line-height: 1.35; letter-spacing: .03em;
}
.seminar-title { margin-top: 14px; font-family: var(--ff-display); font-weight: 700; line-height: 1.5; letter-spacing: .04em; font-feature-settings: "palt" 1; }
.seminar-title__l1, .seminar-title__l2 { display: block; }
.seminar-title__l1 { font-size: clamp(.9375rem, .85rem + .45vw, 1.125rem); color: var(--muted); }
.seminar-title__l2 { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.75rem); color: var(--green-dark); }
.fv__sub { margin-top: 14px; font-size: .9375rem; line-height: 1.85; }
.fv__cta { display: grid; justify-items: start; gap: 10px; }
.fv__cta .btn { width: 100%; }
.fv__micro { font-size: .875rem; font-weight: 700; color: var(--muted); line-height: 1.7; }
.fv__sep { padding-inline: .25em; }
@media (max-width: 559.98px) { .fv__micro { display: flex; flex-direction: column; align-items: flex-start; } .fv__sep, .fv__micro wbr { display: none; } }
.fv__disclose { font-size: .8125rem; color: var(--muted); line-height: 1.75; }
.fv__art { max-width: 320px; justify-self: center; width: 100%; }

.datebox {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 20px 16px;
  box-shadow: var(--shadow);
}
.datebox__title { font-size: .9375rem; font-weight: 700; color: var(--green-dark); letter-spacing: .1em; line-height: 1.5; }
.datebox__list { margin-top: 8px; display: grid; gap: 8px; }
.datebox__row { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px dashed var(--line); }
.datebox__row:first-child { border-top: 0; padding-top: 0; }
.datebox__no {
  flex: none; display: inline-grid; place-items: center; min-width: 3.6em; padding: 2px 8px;
  border-radius: 8px; background: var(--tint); color: var(--green-dark);
  font-size: .8125rem; font-weight: 700; line-height: 1.6;
}
.datebox__when { display: flex; flex-wrap: wrap; column-gap: .5em; font-size: 1.125rem; font-weight: 700; line-height: 1.45; letter-spacing: .02em; font-feature-settings: "palt" 1; }
.datebox__time { display: inline-block; }
.datebox__note { margin-top: 10px; font-size: .8125rem; line-height: 1.75; color: var(--muted); }
.fic { margin-top: 6px; font-size: .75rem; line-height: 1.7; color: var(--muted); letter-spacing: .02em; }
.fic--center { text-align: center; margin: -8px 0 28px; }

@media (min-width: 400px) { .eyebrow { font-size: .875rem; gap: 4px 14px; } }
@media (min-width: 600px) {
  .fv__cta .btn { width: auto; }
  .fv__art { max-width: 420px; }
}
@media (min-width: 960px) {
  .fv { padding: 56px 0 88px; }
  .fv::before { width: 620px; height: 620px; right: -160px; top: -200px; }
  .fv__inner { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 40px 56px; align-items: center; }
  .fv__main, .fv__side { display: grid; align-content: center; }
  .fv__main { gap: 32px; }
  .fv__side { gap: 0; }
  .fv__art, .datebox { order: 0; }
  .fv__art { max-width: 440px; margin: -16px auto -44px; position: relative; z-index: 0; }
  .datebox { position: relative; z-index: 1; margin-left: 6%; }
  .fv__sub { font-size: 1rem; max-width: 34em; }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--tint { background: var(--tint); }
.section--cta { background: var(--cta-tint); }
@media (min-width: 900px) { .section { padding: 104px 0; } }
.sec-title {
  text-align: center;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.125rem);
  line-height: 1.5;
  margin-bottom: 36px;
}
.sec-title::before {
  content: ""; display: block; width: 44px; height: 8px; margin: 0 auto 14px;
  background: radial-gradient(circle at 4px 4px, var(--green) 3.2px, transparent 3.6px) 0 0 / 18px 8px repeat-x;
}
.section--tint .sec-title::before { background-image: radial-gradient(circle at 4px 4px, var(--green-dark) 3.2px, transparent 3.6px); }
.fic--center + * { margin-top: 0; }

/* For you */
.checklist { display: grid; gap: 12px; }
.checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; background: var(--surface); border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 95, 51, .06);
  font-weight: 700; line-height: 1.75;
}
.checklist__icon { width: 26px; height: 26px; flex: none; margin-top: 1px; color: var(--green); }
.notfor {
  margin: 28px auto 0; max-width: 720px;
  padding: 22px 22px 20px; border-radius: var(--radius);
  background: rgba(255, 253, 248, .7); border: 1.5px dashed #A9C9B5;
}
.notfor__title { font-size: 1.0625rem; color: var(--muted); letter-spacing: .06em; }
.notfor__list { margin-top: 10px; display: grid; gap: 6px; }
.notfor__list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.75; }
.notfor__icon { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--muted); }
.notfor__note { margin-top: 10px; font-size: .8125rem; color: var(--muted); line-height: 1.75; }
@media (min-width: 760px) {
  .checklist { grid-template-columns: 1fr 1fr; gap: 16px; }
  .checklist li { padding: 22px 24px; }
  .notfor { padding: 26px 32px 24px; }
}

/* Takeaways */
.takeaways { display: grid; gap: 16px; counter-reset: none; }
.tk {
  position: relative;
  padding: 24px 22px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.tk__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.tk__no { font-size: 2.25rem; font-weight: 700; line-height: 1; color: var(--green); letter-spacing: .02em; }
.tk__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--tint); color: var(--green-dark); }
.tk__icon svg { width: 28px; height: 28px; }
.tk__title { font-size: 1.1875rem; line-height: 1.6; margin-bottom: 8px; }
.tk p { font-size: .9375rem; line-height: 1.9; }
@media (min-width: 900px) {
  .takeaways { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tk { padding: 32px 32px 30px; }
  .tk__title { font-size: 1.3125rem; }
}

/* Program timeline */
.timeline-card { background: var(--surface); border-radius: 20px; padding: 24px 18px; box-shadow: var(--shadow); }
.timeline { position: relative; }
.tl { position: relative; display: grid; grid-template-columns: 1fr; padding: 0 0 20px 30px; }
.tl::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: -12px; width: 3px; border-radius: 3px; background: var(--green); opacity: .35; }
.tl::after {
  content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--surface); border: 4px solid var(--green);
}
.tl:last-child { padding-bottom: 0; }
.tl:last-child::before { display: none; }
.tl--end::after { background: var(--green); }
.tl__time { font-size: 1.0625rem; font-weight: 700; color: var(--green); line-height: 1.6; letter-spacing: .04em; }
.tl__body { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.tl__title { font-weight: 700; line-height: 1.65; width: 100%; }
.tl__part {
  display: inline-block; margin-right: .5em; padding: 0 8px; border-radius: 6px;
  background: var(--tint); color: var(--green-dark); font-size: .8125rem; line-height: 1.8; vertical-align: .1em;
}
.tl__dur {
  display: inline-block; padding: 0 10px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .8125rem; color: var(--muted); line-height: 1.8; background: var(--bg);
}
.tl__tag {
  display: inline-block; padding: 0 10px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: .75rem; font-weight: 700; line-height: 1.9; letter-spacing: .04em;
}
.tl--notice .tl__body {
  margin: 4px 0 0 -8px; padding: 12px 14px; border: 2px dashed #9C9387; border-radius: 12px; background: #FAF7F1;
}
.tl--end .tl__title { color: var(--muted); }
.notes { margin-top: 20px; display: grid; gap: 4px; font-size: .875rem; line-height: 1.8; }
@media (min-width: 560px) {
  .timeline-card { padding: 36px 40px; }
  .tl { grid-template-columns: 5.2em 1fr; column-gap: 20px; padding: 0 0 22px 36px; align-items: start; }
  .tl::before { left: 7px; }
  .tl__time { font-size: 1.1875rem; }
  .tl__title { width: auto; flex: 1 1 14em; }
  .tl--notice .tl__body { margin: -12px 0 0; }
}

/* Instructor */
.teacher {
  display: grid; gap: 20px; justify-items: center;
  padding: 28px 22px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.teacher__fig { width: 180px; text-align: center; }
.teacher__fig img { width: 180px; height: 180px; }
.teacher__fig figcaption { margin-top: 6px; font-size: .75rem; color: var(--muted); }
.teacher__body { width: 100%; }
.teacher__role { font-size: .8125rem; font-weight: 700; color: var(--green-dark); letter-spacing: .06em; }
.teacher__name { margin-top: 2px; font-size: 1.5rem; letter-spacing: .08em; }
.teacher__fic { display: inline-block; margin-left: .3em; font-size: .8125rem; font-weight: 500; color: var(--muted); letter-spacing: .02em; }
.teacher__profile { margin-top: 10px; font-size: .9375rem; }
.teacher__msg {
  position: relative; margin-top: 18px; padding: 16px 20px; border-radius: 14px;
  background: var(--tint); font-weight: 700; line-height: 1.85;
}
.teacher__msg::before {
  content: ""; position: absolute; left: 32px; top: -10px; border: 10px solid transparent; border-top: 0; border-bottom-color: var(--tint);
}
@media (min-width: 720px) {
  .teacher { grid-template-columns: 200px 1fr; align-items: center; gap: 36px; padding: 40px 44px; }
  .teacher__fig, .teacher__fig img { width: 200px; }
  .teacher__fig img { height: 200px; }
  .teacher__msg::before { left: -10px; top: 20px; border: 10px solid transparent; border-left: 0; border-right-color: var(--tint); }
}

/* Outline table */
.table-card { background: var(--surface); border-radius: 20px; padding: 8px 18px; box-shadow: var(--shadow); }
.outline { width: 100%; border-collapse: collapse; font-size: .9375rem; line-height: 1.8; }
.outline caption { padding: 14px 0 6px; text-align: left; font-size: .8125rem; color: var(--muted); }
.outline tr { border-top: 1px solid var(--line); }
.outline th, .outline td { display: block; text-align: left; vertical-align: top; }
.outline th { padding: 14px 0 2px; font-size: .8125rem; font-weight: 700; color: var(--green-dark); letter-spacing: .06em; }
.outline td { padding: 0 0 14px; }
.outline__sub { font-size: .8125rem; color: var(--muted); }
.outline__free { font-family: var(--ff-display); font-size: 1.125rem; color: var(--green-dark); }
@media (min-width: 720px) {
  .table-card { padding: 12px 36px 16px; }
  .outline th, .outline td { display: table-cell; padding: 18px 0; }
  .outline th { width: 11em; padding-right: 20px; font-size: .875rem; }
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq__q {
  position: relative; display: flex; align-items: flex-start; gap: 12px;
  min-height: 56px; padding: 16px 52px 16px 18px; cursor: pointer; list-style: none;
  font-weight: 700; line-height: 1.7;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ""; position: absolute; right: 20px; top: 24px; width: 10px; height: 10px;
  border-right: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(45deg); transition: transform .2s;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); top: 28px; }
.faq__q:hover { background: var(--tint-soft); }
.faq__q:focus-visible { outline-offset: -3px; border-radius: 14px; }
.faq__mark {
  flex: none; display: grid; place-items: center; width: 30px; height: 30px; margin-top: -1px;
  border-radius: 50%; background: var(--green); color: #fff; font-size: 1rem; font-weight: 700; line-height: 1;
}
.faq__mark--a { background: var(--cta-tint); color: var(--cta-hover); }
.faq__a { display: flex; gap: 12px; align-items: flex-start; padding: 0 20px 18px 18px; }
.faq__a p { padding-top: 1px; font-size: .9375rem; }
@media (prefers-reduced-motion: reduce) { .faq__q::after { transition: none; } }
@media (min-width: 720px) { .faq__q { padding: 18px 56px 18px 24px; } .faq__a { padding: 0 28px 22px 24px; } }

/* ---------- Apply ---------- */
.apply__sub { margin: -16px 0 28px; text-align: center; font-size: .9375rem; }
.form-card {
  background: var(--surface); border-radius: 20px; box-shadow: 0 2px 4px rgba(46, 42, 37, .05), 0 16px 40px rgba(124, 45, 18, .08);
  padding: 28px 20px 32px;
}
.form-card__title {
  font-size: 1.25rem; text-align: center; letter-spacing: .06em;
  padding-bottom: 14px; margin-bottom: 18px; border-bottom: 2px solid var(--tint);
}
.demo-notice {
  margin-bottom: 22px; padding: 12px 14px; border-radius: var(--radius-sm);
  background: #F6F2EA; color: var(--muted); font-size: .8125rem; line-height: 1.75;
}
.form { display: grid; gap: 22px; }
.form__summary {
  padding: 12px 16px; border-radius: var(--radius-sm); border: 2px solid var(--err);
  background: #FEF2F2; color: var(--err); font-weight: 700; line-height: 1.7;
}
.form__summary:focus { outline: none; }
.form__summary:focus-visible { outline: 3px solid var(--err); outline-offset: 2px; }
.field { min-width: 0; margin: 0; padding: 0; border: 0; }
.field-row { display: grid; gap: 22px; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; gap: 20px; } }
.field__label { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 10px; margin-bottom: 8px; padding: 0; font-weight: 700; line-height: 1.6; }
.badge { display: inline-block; padding: 0 8px; border-radius: 6px; font-size: .75rem; font-weight: 700; line-height: 1.8; letter-spacing: .04em; white-space: nowrap; }
.badge--req { background: var(--cta); color: #fff; }
.badge--opt { background: #EEE9E0; color: var(--muted); }
.input {
  display: block; width: 100%; min-height: 52px; padding: 12px 14px;
  border: 1.5px solid var(--input); border-radius: var(--radius-sm); background: var(--surface);
  color: var(--ink); font: inherit; font-size: 1rem; line-height: 1.6;
}
.input::placeholder { color: #8A8176; opacity: 1; }
.input:focus { outline: 3px solid rgba(0, 123, 67, .35); outline-offset: 0; border-color: var(--green); }
.input--select {
  appearance: none; -webkit-appearance: none; padding-right: 44px;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23005F33' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center / 18px;
}
.input--area { min-height: 120px; resize: vertical; }
.field__help { margin-top: 6px; font-size: .8125rem; color: var(--muted); line-height: 1.7; }
.field__error { margin-top: 6px; font-size: .875rem; font-weight: 700; color: var(--err); line-height: 1.7; }
.field__error:empty { display: none; }
.field.is-invalid .input { border-color: var(--err); box-shadow: 0 0 0 1px var(--err); }

/* Radio cards */
.choices { display: grid; gap: 10px; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.choice__box {
  display: flex; align-items: center; gap: 14px; min-height: 60px; padding: 12px 16px;
  border: 1.5px solid var(--input); border-radius: 12px; background: var(--surface);
  line-height: 1.6; transition: border-color .15s, background-color .15s;
}
.choice__mark {
  position: relative; flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--input); background: var(--surface);
}
.choice__text { font-weight: 700; }
.choice__text .nw { margin-right: .4em; }
.choice__no {
  display: inline-block; margin-right: .6em; padding: 0 8px; border-radius: 6px;
  background: var(--tint); color: var(--green-dark); font-size: .8125rem; line-height: 1.8;
}
.choice:hover .choice__box { border-color: var(--green); }
.choice input:checked + .choice__box { border: 2.5px solid var(--green); background: var(--tint-soft); padding: 11px 15px; }
.choice input:checked + .choice__box .choice__mark { border-color: var(--green); background: var(--green); }
.choice input:checked + .choice__box .choice__mark::after {
  content: ""; position: absolute; left: 6px; top: 2.5px; width: 7px; height: 12px;
  border-right: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(45deg);
}
.choice input:focus-visible + .choice__box { outline: 3px solid var(--green); outline-offset: 2px; }
.field.is-invalid .choice__box { border-color: var(--err); }
@media (prefers-reduced-motion: reduce) { .choice__box { transition: none; } }

/* Checkboxes */
.check { display: flex; align-items: flex-start; gap: 12px; }
.check input {
  flex: none; width: 24px; height: 24px; margin: 10px 0 0; accent-color: var(--green); cursor: pointer;
}
.check label { display: block; padding: 8px 0; line-height: 1.75; cursor: pointer; }
.check__text { padding: 8px 0; line-height: 1.75; }
.check__text label { display: inline; padding: 0; }
.check .badge { margin-left: 8px; vertical-align: 1px; }
.field--consent.is-invalid .check input { outline: 2px solid var(--err); outline-offset: 2px; }
.text-btn {
  display: inline; padding: 0; border: 0; background: none; cursor: pointer;
  font: inherit; font-weight: 700; color: var(--green-dark); text-decoration: underline; text-underline-offset: .2em;
}
.text-btn:hover { color: var(--ink); }

.form__submit { display: grid; gap: 8px; margin-top: 6px; text-align: center; }
.form__micro { margin-top: 6px; font-size: .875rem; font-weight: 700; color: var(--muted); }
.form__demo { font-size: .8125rem; color: var(--muted); }

.result { padding: 8px 0 4px; text-align: center; }
.result__title { margin-bottom: 14px; font-size: 1.375rem; color: var(--green-dark); }
.result__title:focus { outline: none; }
.result__title:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.result p { margin-bottom: 8px; }
.result__back { display: inline-flex; align-items: center; min-height: 44px; margin-top: 8px; font-weight: 700; }
@media (min-width: 720px) { .form-card { padding: 40px 48px 44px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D8D1C6; padding: 44px 0 calc(44px + env(safe-area-inset-bottom)); font-size: .8125rem; line-height: 1.85; }
.site-footer__brand { color: #FFFDF8; font-size: 1rem; font-weight: 700; }
.site-footer__brand .ff-display { margin-right: .3em; letter-spacing: .06em; }
.site-footer__brand .nw { font-size: .8125rem; font-weight: 400; color: #D8D1C6; }
.site-footer__addr { margin-top: 2px; }
.lp-disclaimer { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255, 253, 248, .16); }
.site-footer__credit { margin-top: 12px; }
.site-footer__credit a { display: inline-flex; align-items: center; min-height: 44px; margin-left: 12px; color: #9ED9B5; font-weight: 700; }
.site-footer__credit a:hover { color: #FFFDF8; }
.site-footer :focus-visible { outline-color: #9ED9B5; }

/* ---------- Demo dialog ---------- */
.demo-dialog {
  width: min(92vw, 480px); padding: 28px 24px 22px; border: 0; border-radius: 20px;
  background: var(--surface); color: var(--ink); box-shadow: 0 24px 60px rgba(46, 42, 37, .25);
  z-index: 1200;
}
.demo-dialog::backdrop { background: rgba(46, 42, 37, .55); }
.demo-dialog__title { margin-bottom: 12px; font-size: 1.25rem; color: var(--green-dark); }
.demo-dialog__line { margin-bottom: 10px; font-weight: 700; }
.demo-dialog__shared { font-size: .875rem; color: var(--muted); line-height: 1.85; }
.demo-dialog__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: 20px; }
.demo-dialog__back { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; }
