/* =========================================================
   WITH LIFE. — 共通スタイル
   ロゴの3色を3本柱に対応させています
   守る＝グリーン / 育てる＝ライトグリーン / 形にする＝ピンク
   ========================================================= */
:root {
  --green: #7cc27a;
  --green-deep: #4f9a4d;
  --leaf: #c2de98;
  --leaf-deep: #7fa24a;
  --pink: #f0a0ae;
  --pink-deep: #d06b7e;
  --ink: #4b4747;
  --ink-soft: #736d6b;
  --line: #e6e2dc;
  --bg: #ffffff;
  --bg-warm: #faf8f4;
  --bg-green: #f2f8ef;
  --radius: 20px;
  --max: 1120px;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-en: "Quicksand", "Noto Sans JP", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .04em;
  font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.5; margin: 0; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
ul { padding: 0; margin: 0; list-style: none; }

.container { width: min(var(--max), 100% - 40px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 40px); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--warm { background: var(--bg-warm); }
.section--green { background: var(--bg-green); }
.center { text-align: center; }
.sp-only { display: none; }
@media (max-width: 640px) { .sp-only { display: inline; } .pc-only { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo img { height: 40px; width: auto; }
.gnav ul { display: flex; gap: 4px; align-items: center; }
.gnav a {
  display: block; padding: 8px 12px; text-decoration: none;
  font-size: 14px; font-weight: 500; border-radius: 999px; transition: background .2s, color .2s;
  white-space: nowrap;
}
.gnav a:hover, .gnav a[aria-current="page"] { background: var(--bg-green); color: var(--green-deep); }
.gnav .nav-cta a { background: var(--pink-deep); color: #fff; padding: 10px 20px; margin-left: 8px; }
.gnav .nav-cta a:hover { background: #bb5a6d; color: #fff; }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid; place-items: center; width: 48px; height: 48px;
    border: 0; background: var(--bg-green); border-radius: 50%; cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
    position: relative; transition: transform .3s, background .3s;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .nav-open .nav-toggle span { background: transparent; }
  .nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
  .gnav {
    position: fixed; inset: 76px 0 0 0; background: #fff; padding: 24px 20px 40px;
    overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav-open .gnav { opacity: 1; visibility: visible; }
  .gnav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav li { border-bottom: 1px solid var(--line); }
  .gnav a { padding: 18px 8px; font-size: 16px; border-radius: 0; }
  .gnav .nav-cta { border: 0; margin-top: 24px; }
  .gnav .nav-cta a { margin: 0; text-align: center; border-radius: 999px; padding: 16px; }
  .logo img { height: 34px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 14px 36px; border-radius: 999px;
  font-weight: 700; font-size: 16px; text-decoration: none; letter-spacing: .06em;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 2px solid transparent; cursor: pointer; font-family: inherit;
}
.btn::after { content: "→"; font-family: var(--font-en); transition: transform .2s; }
.btn:hover::after { transform: translateX(4px); }
.btn--primary { background: var(--pink-deep); color: #fff; box-shadow: 0 8px 20px -8px rgba(208,107,126,.6); }
.btn--primary:hover { background: #bb5a6d; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row.center { justify-content: center; }

.text-link { color: var(--green-deep); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link:hover { opacity: .7; }

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-block; font-family: var(--font-en); font-weight: 700;
  font-size: 13px; letter-spacing: .2em; color: var(--green-deep); text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 10px; height: 10px; border: 2px solid currentColor; border-radius: 50%; margin-right: 10px; vertical-align: 1px; }
.sec-title { font-size: clamp(24px, 3.6vw, 36px); margin-bottom: 28px; letter-spacing: .06em; }
.sec-lead { color: var(--ink-soft); max-width: 720px; }
.center .sec-lead { margin-inline: auto; }
.sec-head { margin-bottom: clamp(40px, 6vw, 64px); }

/* ---------- Hero (top) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(64px, 10vw, 140px) 0 clamp(80px, 12vw, 160px); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 24px; line-height: 1.2; }
.hero-office { display: block; font-size: clamp(18px, 2.2vw, 24px); letter-spacing: .24em; color: var(--green-deep); margin-bottom: 10px; }
.hero-name { display: block; font-family: var(--font-en); font-weight: 700; font-size: clamp(46px, 7.4vw, 88px); letter-spacing: .08em; line-height: 1.1; white-space: nowrap; }
.hero-catch { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 3vw, 34px); letter-spacing: .08em; line-height: 1.5; margin-bottom: 20px; }
.hero .accent { background: linear-gradient(transparent 68%, rgba(194,222,152,.7) 68%); }
.hero-sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-soft); margin-bottom: 40px; }
.hero-visual { position: relative; aspect-ratio: 1; max-width: 460px; justify-self: center; width: 100%; }
.hero-visual svg { width: 100%; height: 100%; overflow: visible; }
.hero-visual .ring { fill: none; stroke-linecap: round; }
.ring-outer { stroke: var(--green); stroke-width: 14; stroke-dasharray: 763 1037; animation: draw 2.2s ease-out both; }
.ring-mid { stroke: var(--leaf); stroke-width: 14; animation: pop 1s .5s ease-out both; transform-origin: 170px 175px; }
.ring-small { stroke: var(--pink); stroke-width: 14; animation: pop 1s .8s ease-out both; transform-origin: 255px 262px; }
.ring-label { font-family: var(--font-head); font-weight: 700; font-size: 17px; fill: var(--ink); animation: fade 1s 1.4s both; }
@keyframes draw { from { stroke-dasharray: 0 1037; } }
@keyframes pop { from { transform: scale(.6); opacity: 0; } }
@keyframes fade { from { opacity: 0; } }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before, .hero-bg::after { content: ""; position: absolute; border-radius: 50%; }
.hero-bg::before { width: 560px; height: 560px; right: -160px; top: -140px; background: radial-gradient(circle, rgba(194,222,152,.35), transparent 70%); }
.hero-bg::after { width: 420px; height: 420px; left: -180px; bottom: -200px; background: radial-gradient(circle, rgba(240,160,174,.22), transparent 70%); }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
  .hero-visual { max-width: 220px; order: -1; }
}

/* ---------- Page hero (lower pages) ---------- */
.page-hero { background: var(--bg-green); padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -80px; bottom: -120px; width: 320px; height: 320px;
  border: 18px solid var(--leaf); border-radius: 50%; opacity: .5;
}
.page-hero .num { font-family: var(--font-en); font-weight: 700; font-size: 15px; letter-spacing: .2em; color: var(--green-deep); }
.page-hero h1 { font-size: clamp(30px, 5vw, 52px); letter-spacing: .08em; margin: 8px 0 12px; }
.page-hero .page-sub { font-size: clamp(15px, 1.8vw, 18px); color: var(--ink-soft); margin: 0; position: relative; z-index: 1; }
.page-hero--mamoru { background: #eef7ec; }
.page-hero--mamoru::after { border-color: var(--green); opacity: .35; }
.page-hero--sodateru { background: #f5f9ec; }
.page-hero--sodateru::after { border-color: var(--leaf); }
.page-hero--katachi { background: #fdf1f3; }
.page-hero--katachi::after { border-color: var(--pink); opacity: .45; }
.page-hero--katachi .num { color: var(--pink-deep); }
.page-hero--sodateru .num { color: var(--leaf-deep); }
.breadcrumb { font-size: 12px; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Message block ---------- */
.message { font-size: clamp(16px, 1.8vw, 18px); line-height: 2.2; }
.key-message {
  margin: 48px 0 0; padding: 32px clamp(24px, 4vw, 48px);
  background: #fff; border-radius: var(--radius); border-left: 6px solid var(--green);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2.2vw, 22px); line-height: 1.8;
}
.key-message small { display: block; font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; color: var(--green-deep); margin-bottom: 8px; }
.key-message--sodateru { border-left-color: var(--leaf); }
.key-message--sodateru small { color: var(--leaf-deep); }
.key-message--katachi { border-left-color: var(--pink); }
.key-message--katachi small { color: var(--pink-deep); }

/* ---------- Pillars (3 services) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius); padding: 40px 32px 36px;
  text-decoration: none; border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(75,71,71,.25); }
.pillar-icon { width: 64px; height: 64px; border-radius: 50%; border: 8px solid var(--c); margin-bottom: 24px; }
.pillar-num { font-family: var(--font-en); font-weight: 700; font-size: 13px; letter-spacing: .2em; color: var(--cd); }
.pillar h3 { font-size: 30px; letter-spacing: .1em; margin: 4px 0 4px; }
.pillar-cat { font-weight: 700; color: var(--cd); margin-bottom: 16px; }
.pillar p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.pillar-more { margin-top: 20px; font-weight: 700; font-size: 14px; color: var(--cd); }
.pillar-more::after { content: " →"; font-family: var(--font-en); }
.c-mamoru { --c: var(--green); --cd: var(--green-deep); }
.c-sodateru { --c: var(--leaf); --cd: var(--leaf-deep); }
.c-katachi { --c: var(--pink); --cd: var(--pink-deep); }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

.center-note {
  margin-top: 48px; text-align: center; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
}
.center-note span { background: linear-gradient(transparent 65%, rgba(240,160,174,.35) 65%); }

/* ---------- Tags / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 8px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500;
}
.chips--mamoru li { border-color: var(--green); }
.chips--sodateru li { border-color: var(--leaf-deep); }
.chips--katachi li { border-color: var(--pink); }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Steps (flow) ---------- */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; counter-reset: step; }
.step {
  position: relative; background: #fff; border-radius: 16px; padding: 28px 14px 22px;
  text-align: center; border: 1px solid var(--line);
}
.step-num {
  display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 12px;
  border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-en); font-weight: 700;
}
.step:nth-child(4) .step-num, .step:nth-child(5) .step-num { background: var(--leaf-deep); }
.step:nth-child(6) .step-num { background: var(--pink-deep); }
.step h3 { font-size: 15px; line-height: 1.5; }
.step:not(:last-child)::after {
  content: ""; position: absolute; right: -10px; top: 50%; width: 8px; height: 8px;
  border-top: 2px solid var(--green); border-right: 2px solid var(--green); transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .step:nth-child(3)::after { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3)::after { display: block; }
  .step:nth-child(2n)::after { display: none; }
}

/* Detailed flow (flow page) */
.flow-list { position: relative; }
.flow-item { display: grid; grid-template-columns: 96px 1fr; gap: 28px; position: relative; padding-bottom: 48px; }
.flow-item:not(:last-child)::before {
  content: ""; position: absolute; left: 47px; top: 96px; bottom: 0; width: 2px;
  background: repeating-linear-gradient(var(--green) 0 6px, transparent 6px 12px);
}
.flow-badge {
  width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; align-content: center;
  background: #fff; border: 6px solid var(--green); font-family: var(--font-en); font-weight: 700; line-height: 1.1;
}
.flow-badge small { font-size: 11px; letter-spacing: .15em; color: var(--ink-soft); }
.flow-badge b { font-size: 28px; }
.flow-item.is-leaf .flow-badge { border-color: var(--leaf); }
.flow-item.is-pink .flow-badge { border-color: var(--pink); }
.flow-body { background: #fff; border-radius: var(--radius); padding: 28px clamp(20px, 4vw, 40px); border: 1px solid var(--line); }
.flow-body h3 { font-size: 22px; margin-bottom: 10px; }
.flow-body .q { display: inline-block; font-size: 14px; font-weight: 700; color: var(--green-deep); background: var(--bg-green); padding: 4px 14px; border-radius: 999px; margin-bottom: 12px; }
@media (max-width: 640px) {
  .flow-item { grid-template-columns: 64px 1fr; gap: 16px; }
  .flow-badge { width: 64px; height: 64px; border-width: 4px; }
  .flow-badge b { font-size: 20px; }
  .flow-item:not(:last-child)::before { left: 31px; top: 64px; }
}

/* ---------- Cards grid (support page / lists) ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.card h3 { font-size: 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.card h3::before { content: ""; flex: none; width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--c, var(--green)); }
.card p { color: var(--ink-soft); font-size: 15px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cards--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .cards, .cards--3 { grid-template-columns: 1fr; } }

/* Check list */
.checklist li { position: relative; padding: 14px 0 14px 36px; border-bottom: 1px dashed var(--line); }
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 22px; width: 16px; height: 9px;
  border-left: 3px solid var(--green); border-bottom: 3px solid var(--green); transform: rotate(-45deg);
}

/* Things to protect */
.protect-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.protect-list li {
  aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: #fff; border: 3px solid var(--green); font-family: var(--font-head); font-weight: 700; font-size: clamp(15px, 1.8vw, 20px);
}
@media (max-width: 700px) { .protect-list { grid-template-columns: repeat(3, 1fr); } }

/* Hub diagram (support page) */
.hub { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.hub-box { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.hub-box h4 { font-size: 15px; color: var(--ink-soft); margin-bottom: 8px; }
.hub-center {
  width: 180px; height: 180px; border-radius: 50%; border: 8px solid var(--pink); background: #fff;
  display: grid; place-items: center; text-align: center; font-family: var(--font-head); font-weight: 700; line-height: 1.5;
}
.hub-center small { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 500; }
@media (max-width: 760px) { .hub { grid-template-columns: 1fr; justify-items: center; } .hub-box { width: 100%; } }

/* ---------- Profile ---------- */
.profile { display: grid; grid-template-columns: 340px 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.profile-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius); background: var(--bg-green);
  display: grid; place-items: center; text-align: center; color: var(--ink-soft); font-size: 13px;
  border: 2px dashed var(--leaf); overflow: hidden;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 28px; letter-spacing: .12em; margin-bottom: 4px; }
.profile-role { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; }
.profile-name .en { display: block; font-family: var(--font-en); font-size: 13px; letter-spacing: .2em; color: var(--green-deep); font-weight: 700; }
@media (max-width: 860px) { .profile { grid-template-columns: 1fr; } .profile-photo { max-width: 320px; } }

.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td { text-align: left; padding: 18px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 30%; font-weight: 700; color: var(--green-deep); white-space: nowrap; }
@media (max-width: 560px) { .info-table th, .info-table td { display: block; width: 100%; padding: 6px 0; } .info-table th { padding-top: 18px; border: 0; } }

/* ---------- WHY/WHAT/HOW ---------- */
.www { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.www-item { padding: 32px 28px; border-radius: var(--radius); background: #fff; border-top: 6px solid var(--c); }
.www-item .label { font-family: var(--font-en); font-weight: 700; font-size: 22px; letter-spacing: .2em; color: var(--cd); }
.www-item h3 { font-size: 20px; margin: 8px 0 12px; }
.www-item p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px) { .www { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-group + .faq-group { margin-top: 56px; }
.faq-group h2 { font-size: 20px; margin-bottom: 20px; padding-left: 16px; border-left: 5px solid var(--green); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 48px 24px 52px; position: relative;
  font-weight: 700; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 0; top: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--font-en); font-weight: 700;
}
.faq summary::after {
  content: ""; position: absolute; right: 12px; top: 32px; width: 10px; height: 10px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); transition: transform .3s;
}
.faq[open] summary::after { transform: rotate(-135deg); top: 36px; }
.faq-a { padding: 0 12px 28px 52px; position: relative; color: var(--ink-soft); }
.faq-a::before {
  content: "A"; position: absolute; left: 0; top: -4px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink); color: #fff; display: grid; place-items: center; font-family: var(--font-en); font-weight: 700;
}

/* ---------- Form ---------- */
.form { display: grid; gap: 28px; }
.field label, .field .label { display: block; font-weight: 700; margin-bottom: 10px; }
.req, .opt { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: 2px; font-weight: 700; }
.req { background: var(--pink-deep); color: #fff; }
.opt { background: var(--line); color: var(--ink-soft); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; padding: 16px 18px; border: 1px solid #d6d1ca; border-radius: 12px; background: #fff;
  font: inherit; color: inherit; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(124,194,122,.2); }
.radios { display: flex; flex-wrap: wrap; gap: 10px; }
.radios label { margin: 0; font-weight: 500; }
.radios input { position: absolute; opacity: 0; }
.radios span {
  display: inline-block; padding: 10px 20px; border-radius: 999px; border: 1px solid #d6d1ca; background: #fff; cursor: pointer; transition: all .2s;
}
.radios input:checked + span { background: var(--green); border-color: var(--green); color: #fff; }
.radios input:focus-visible + span { outline: 3px solid var(--leaf); outline-offset: 2px; }
.form-note { font-size: 13px; color: var(--ink-soft); }
.form-done { display: none; padding: 32px; border-radius: var(--radius); background: var(--bg-green); text-align: center; }

.contact-ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.contact-ways li { background: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center; border: 1px solid var(--line); }
.contact-ways b { display: block; font-family: var(--font-head); font-size: 18px; margin-bottom: 8px; }
.contact-ways p { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 760px) { .contact-ways { grid-template-columns: 1fr; } }

/* ---------- Cross links ---------- */
.cross { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cross a {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line); text-decoration: none; transition: transform .2s, border-color .2s;
}
.cross a:hover { transform: translateY(-3px); border-color: var(--c); }
.cross a[aria-current="page"] { opacity: .45; pointer-events: none; }
.cross .dot { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 6px solid var(--c); }
.cross b { display: block; font-family: var(--font-head); font-size: 18px; }
.cross small { color: var(--ink-soft); font-size: 13px; }
@media (max-width: 760px) { .cross { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: var(--ink); color: #fff; padding: clamp(72px, 10vw, 120px) 0;
}
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; opacity: .25; }
.cta::before { width: 360px; height: 360px; border: 24px solid var(--green); left: -120px; top: -140px; }
.cta::after { width: 240px; height: 240px; border: 20px solid var(--pink); right: -60px; bottom: -100px; }
.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(22px, 3.4vw, 34px); margin-bottom: 20px; letter-spacing: .06em; }
.cta p { opacity: .85; margin-bottom: 40px; }
.cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.cta .btn--ghost:hover { background: #fff; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-warm); padding: 64px 0 32px; font-size: 14px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-soft); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; }
.footer-nav a { text-decoration: none; display: block; padding: 4px 0; }
.footer-nav a:hover { color: var(--green-deep); }
.copyright { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; color: var(--ink-soft); font-size: 12px; font-family: var(--font-en); letter-spacing: .1em; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; } .footer-nav { grid-template-columns: 1fr 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ring-outer, .ring-mid, .ring-small, .ring-label { animation: none; }
}

/* 要差し替えの目印（公開前に削除） */
.todo { background: #fff6d6; outline: 1px dashed #d9b64a; padding: 0 4px; border-radius: 4px; }

/* ---------- Photos ---------- */
.profile-photo--round { aspect-ratio: 1; border-radius: 50%; border: 0; background: none; position: relative; }
.profile-photo--round::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 8px solid var(--leaf); border-right-color: transparent; pointer-events: none;
}
.profile-photo--round img { border-radius: 50%; }
.profile-photo--round { overflow: visible; }

.photo { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--bg-green); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption { font-size: 13px; color: var(--ink-soft); padding: 10px 4px 0; background: #fff; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo--tall { aspect-ratio: 4 / 5; }
.two-col--media { align-items: center; }

.gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 16px; }
.gallery .photo:first-child { grid-row: span 2; }
.gallery .photo { position: relative; }
.gallery figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 4px 14px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--ink); font-weight: 700; font-size: 13px;
}
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 180px 180px; }
  .gallery .photo:first-child { grid-column: span 2; grid-row: auto; }
}
.gallery--pair { grid-template-columns: 1fr 1fr; grid-template-rows: 380px; }
.gallery--pair .photo:first-child { grid-row: auto; grid-column: auto; }
@media (max-width: 760px) { .gallery--pair { grid-template-rows: 260px; } }
.photo--tall img { object-position: 50% 30%; }
@media (max-width: 860px) { .photo--tall { aspect-ratio: 4 / 3; } }
.private-photo { margin: 32px 0 0; max-width: 360px; padding: 12px 12px 16px; background: #fff; border-radius: 16px; box-shadow: 0 12px 30px -16px rgba(75,71,71,.35); transform: rotate(-1.5deg); }
.private-photo img { border-radius: 10px; }
.private-photo figcaption { font-size: 13px; color: var(--ink-soft); margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.private-photo figcaption span { font-family: var(--font-en); font-weight: 700; font-size: 11px; letter-spacing: .15em; color: #fff; background: var(--pink-deep); padding: 2px 10px; border-radius: 999px; }

/* ---------- Policy ---------- */
.policy h2 { font-size: 19px; margin: 48px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--bg-green); }
.policy ul { margin: 0 0 1.2em; }
.policy ul li { position: relative; padding-left: 20px; margin-bottom: 4px; }
.policy ul li::before { content: ""; position: absolute; left: 4px; top: .8em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.policy-date { margin-top: 48px; text-align: right; color: var(--ink-soft); font-size: 14px; }

/* ---------- Consent / honeypot ---------- */
.consent { display: flex; align-items: flex-start; gap: 10px; justify-content: center; font-weight: 500; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 5px; accent-color: var(--green-deep); flex: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { display: none; color: var(--pink-deep); font-weight: 700; text-align: center; margin: 0; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* =========================================================
   日本語の改行を整える
   ========================================================= */
/* 行頭に「ー」「ぁ」などの小書き文字が来ないようにする */
body { line-break: strict; }

/* 見出し・短い文：単語（文節）の途中で折り返さず、行の長さをそろえる */
h1, h2, h3, h4, summary, figcaption,
.sec-lead, .hero-sub, .page-sub, .key-message, .center-note,
.pillar-cat, .step h3, .flow-body .q, .cta p, .hub-center, .protect-list li,
.contact-ways b, .consent {
  word-break: auto-phrase;
  text-wrap: balance;
}

/* 本文：最後の行に1〜2文字だけ残るのを防ぐ */
p, li, td, .faq-a { text-wrap: pretty; }

/* BudouX（Safari 等の auto-phrase 非対応ブラウザ向け）で区切った要素 */
.bx { word-break: keep-all; overflow-wrap: anywhere; }

/* 写真キャプションの OFF ラベルがつぶれないように */
.private-photo figcaption span { flex: none; white-space: nowrap; }

/* スマホではキーメッセージを少し小さく */
@media (max-width: 640px) {
  .key-message { font-size: 16px; padding: 24px 20px; }
  .step h3 { font-size: 14px; }
}

/* 本文も文節で折り返す（長い規約文は通常の折り返しのまま） */
main p, main li, main td, .faq-a { word-break: auto-phrase; }
.policy p, .policy li, .policy td { word-break: normal; }

/* スマホでは見出しを少し小さくして、1行に収まる文字数を増やす */
@media (max-width: 420px) {
  .sec-title { font-size: 20px; letter-spacing: .04em; }
  .page-hero h1 { font-size: 28px; }
  .cta h2 { font-size: 20px; }
}
.private-photo figcaption { display: block; }
.private-photo figcaption span { display: inline-block; margin-right: 8px; vertical-align: 1px; }
@media (max-width: 900px) { .contact-ways { grid-template-columns: 1fr; } }
@media (max-width: 420px) {
  .eyebrow { letter-spacing: .12em; }
  .hero-sub { font-size: 15px; }
}

/* 狭い画面でカードがはみ出さないように */
.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card h3 { overflow-wrap: anywhere; }
@media (max-width: 960px) { .cards--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .cards, .cards--3 { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 420px) { .card { padding: 24px 20px; } .card h3 { font-size: 18px; } }
