/* ============================================
   ペイ フォワード LP
   デザイン準拠スタイル v2
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, dl, dt, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }

/* ---------- Variables ---------- */
:root {
  /* Brand */
  --c-blue:        #51A8E1;
  --c-blue-sub:    #98D4FC;
  --c-blue-deco:   #92DBFF;
  --c-blue-light:  #E7F7FF;
  --c-blue-ultra:  #F2FAFE;

  --c-yellow:      #FFC532;
  --c-yellow-soft: #FFE8AC;
  --c-yellow-bg:   #FFF3D1;

  --c-ink:         #343434;
  --c-ink-2:       #555;
  --c-ink-3:       #888;

  --c-line:        #d8d8d8;
  --c-line-2:      #ebebeb;

  --c-white:       #ffffff;

  /* Type */
  --f-base: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', sans-serif;

  /* Layout */
  --max-w: 1120px;
  --max-w-narrow: 820px;
  --gutter: clamp(20px, 5vw, 40px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--f-base);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.75;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: var(--max-w-narrow); }

.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ---------- Highlight helpers ---------- */
.hl-marker {
  background: linear-gradient(transparent 55%, var(--c-yellow) 55%);
  padding: 0 2px;
}
.hl-blue { color: var(--c-blue); }
.hl-num {
  color: var(--c-blue);
  font-size: 1.4em;
  font-weight: 700;
  padding: 0 4px;
}

/* kicker-dots (deprecated, kept as no-op) */
.kicker-dots { display: none; }

/* ---------- Placeholder image ---------- */
.placeholder-image {
  background: repeating-linear-gradient(
    135deg,
    #d6ecf9 0, #d6ecf9 10px,
    #e6f4fc 10px, #e6f4fc 20px
  );
  border: 1px solid var(--c-blue-sub);
  color: var(--c-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 16px;
}
.placeholder-image span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.placeholder-image small {
  font-size: 10px;
  color: var(--c-ink-3);
  letter-spacing: 0.05em;
}
.placeholder-image--fv { aspect-ratio: 4 / 5; border-radius: 24px; }
.placeholder-image--circle { aspect-ratio: 1 / 1; border-radius: 50%; }
.placeholder-image--person { aspect-ratio: 1 / 1; border-radius: 50%; }
.placeholder-image--icon { aspect-ratio: 1 / 1; width: 64px; border-radius: 50%; }
.placeholder-image--map { aspect-ratio: 4 / 3; border-radius: 16px; }
.placeholder-image--logo { aspect-ratio: 3 / 1; width: 100%; border-radius: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid var(--c-yellow-soft);
  background: var(--c-yellow);
  color: var(--c-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 60px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,0.06);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,0.08); }
.btn-primary { background: var(--c-yellow); color: var(--c-ink); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
  box-shadow: none;
}
.btn-ghost--light {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-large {
  padding: 20px 40px;
  font-size: 16px;
  min-width: 340px;
}
.btn-block { width: 100%; }
.btn-header {
  padding: 10px 22px;
  font-size: 13px;
  min-width: auto;
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
}
.btn-icon {
  font-size: 14px;
  line-height: 1;
}
.btn-arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  color: var(--c-ink);
}

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-kicker {
  font-family: var(--f-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--c-blue);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
}
.section-kicker--light { color: #fff; }
.section-kicker--light .kicker-dots::after { background: #fff; }
.section-heading {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.section-heading--light { color: #fff; }
.section-lead {
  margin-top: 20px;
  font-size: 15px;
  color: var(--c-ink-2);
  line-height: 1.95;
}
.section-lead--light { color: #ffffff; }
.section-cta {
  text-align: center;
  margin-top: clamp(40px, 6vw, 56px);
}

/* ============================================
   01 ヘッダー
============================================ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-blue-light);
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.brand-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 36px;
  height: 36px;
  background: var(--c-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 8px;
}
.brand-name-main {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-blue);
}
.global-nav {
  margin-left: auto;
}
.global-nav ul {
  display: flex;
  gap: 28px;
}
.global-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.1em;
}
.global-nav a:hover { color: var(--c-blue); }
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-ink);
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .global-nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }
  .global-nav.is-open {
    display: block;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--c-blue-light);
    margin-left: 0;
  }
  .global-nav.is-open ul {
    flex-direction: column;
    gap: 20px;
  }
  .global-nav.is-open a {
    font-size: 15px;
  }
}

/* ============================================
   02 ファーストビュー — Design準拠 v3
============================================ */
.fv {
  position: relative;
  background: #FAFDFF;
  min-height: 867px;
  overflow: hidden;
  padding: 0;
}
.fv-bg1, .fv-bg2 {
  position: absolute;
  pointer-events: none;
  background: #E8F7FF;
  filter: blur(10px);
  z-index: 0;
}
.fv-bg1 {
  top: -186px;
  left: -178px;
  width: 476px;
  height: 476px;
  border-radius: 84px;
}
.fv-bg2 {
  bottom: 140px;
  left: -55px;
  width: 126px;
  height: 126px;
  background: #D3F0FF;
  border-radius: 22px;
  filter: blur(9.6px);
}
.fv-inner {
  max-width: 1820px;
  margin: 0 auto;
  padding: 64px 60px 64px 100px;
  display: grid;
  grid-template-columns: 581px 1fr;
  grid-template-areas:
    "text visual"
    "cta  visual";
  gap: 32px 60px;
  align-items: center;
  min-height: 867px;
  position: relative;
  z-index: 1;
}
.fv-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
}
.fv-cta-block { grid-area: cta; align-self: start; }
.fv-region {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  padding-bottom: 14px;
  width: max-content;
}
.fv-region-dots {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 60%;
  height: 4px;
  background-image: radial-gradient(circle, var(--c-yellow) 1.6px, transparent 1.8px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
}
.fv-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 45px;
  border-radius: 40px;
  background: #DDF3FF;
  color: #35A9EE;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.fv-tag-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.fv-heading {
  font-size: 70px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--c-ink);
}
.fv-heading-blue {
  color: #35A9EE;
}
.fv-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.36px;
  color: var(--c-ink);
}
.fv-note {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.04em;
}
.fv-note-bracket {
  width: 1px;
  height: 18px;
  background: var(--c-ink);
}
.fv-note-bracket--l { transform: rotate(-20deg); }
.fv-note-bracket--r { transform: rotate(20deg); }
.fv-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 496px;
  gap: 12px;
}
.btn-fv {
  width: 496px;
  height: 75px;
  padding: 0 36px;
  font-size: 18px;
}
.btn-fv .btn-arrow {
  width: 28px;
  height: 28px;
  font-size: 16px;
}
.fv-visual {
  grid-area: visual;
  width: 100%;
  height: 615px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.fv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
  display: block;
}
.fv-visual .placeholder-image--fv {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 60px;
  background: #D9D9D9;
  border: none;
  color: #888;
}

@media (max-width: 1280px) {
  .fv-inner {
    padding: 56px 40px;
    grid-template-columns: 480px 1fr;
    gap: 32px 40px;
  }
  .fv-heading { font-size: 56px; }
  .btn-fv { min-width: 380px; }
}
@media (max-width: 1024px) {
  .fv { min-height: auto; }
  .fv-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual"
      "cta";
    gap: 32px;
    min-height: auto;
    padding: 48px 32px;
  }
  .fv-visual { height: auto; justify-content: center; }
  .fv-visual .placeholder-image--fv {
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 40px;
  }
  .fv-photo {
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 40px;
  }
  .fv-heading { font-size: clamp(40px, 6vw, 60px); }
  .fv-cta-block { width: 100%; max-width: 496px; margin: 0 auto; align-self: center; }
  .btn-fv { width: 100%; min-width: auto; }
}

/* ---------- SP (スマホ) ---------- */
@media (max-width: 768px) {
  .fv-bg1 {
    top: -100px;
    left: -120px;
    width: 260px;
    height: 260px;
    border-radius: 60px;
  }
  .fv-bg2 {
    bottom: auto;
    top: 340px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }
  .fv-inner {
    padding: 20px 20px 32px;
    gap: 24px;
  }
  /* テキスト: region + tag を同じ行に、以降を1列で並べる */
  .fv-text {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "region tag"
      "heading heading"
      "sub sub";
    align-items: center;
    gap: 18px 12px;
    width: 100%;
  }
  .fv-region { grid-area: region; font-size: 13px; padding-bottom: 10px; }
  .fv-region-dots { background-size: 8px 3px; }
  .fv-tag {
    grid-area: tag;
    justify-self: end;
    height: 36px;
    padding: 0 18px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .fv-tag-icon { width: 18px; height: 18px; }
  .fv-heading {
    grid-area: heading;
    font-size: 38px;
    line-height: 1.4;
    margin: 0;
  }
  .fv-sub {
    grid-area: sub;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.02em;
    margin: 0;
  }
  .fv-visual {
    width: 100%;
    height: auto;
    justify-content: stretch;
  }
  .fv-photo,
  .fv-visual .placeholder-image--fv {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 24px;
  }
  .fv-cta-block {
    width: 100%;
    max-width: none;
    gap: 10px;
    margin: 0;
    align-self: stretch;
  }
  .fv-note {
    font-size: 12px;
    letter-spacing: 0;
    justify-content: center;
  }
  .btn-fv {
    width: 100%;
    height: 60px;
    padding: 0 24px;
    font-size: 16px;
  }
  .btn-fv .btn-arrow {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

/* ============================================
   03 導入メッセージ — Design準拠 v2
============================================ */
.intro {
  position: relative;
  min-height: 780px;
  background: #FFFFFF;
  overflow: hidden;
  padding: 0;
  /* 写真と装飾で共有する寸法変数 */
  --pw: min(250px, calc((100vw - 1000px) / 2));
  --photo-offset: max(20px, calc(50% - 480px - var(--pw)));
}

/* ブラー角丸ブロック 4個 */
.intro-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.intro-deco--sq1 {
  top: 80px;
  left: 3.5vw;
  width: 216px;
  height: 216px;
  background: #E1F4FF;
  filter: blur(9.6px);
  border-radius: 40px;
}
.intro-deco--sq2 {
  bottom: 80px;
  left: 12vw;
  width: 191px;
  height: 191px;
  background: #EDF8FF;
  filter: blur(7.5px);
  border-radius: 36px;
}
.intro-deco--sq3 {
  top: 60px;
  right: 12vw;
  width: 191px;
  height: 191px;
  background: #EDF8FF;
  filter: blur(7.5px);
  border-radius: 36px;
}
.intro-deco--sq4 {
  bottom: 60px;
  right: 4vw;
  width: 349px;
  height: 295px;
  background: #E8F7FF;
  filter: blur(11px);
  border-radius: 60px;
}

/* SVGひし形（3色） — 写真の外側に配置 */
.intro-diamonds {
  position: absolute;
  z-index: 2;
  width: 60px;
  height: 70px;
}
/* 男女の写真とセットで動くように、写真の位置計算を流用 */
.intro-diamonds--right {
  top: calc(180px + var(--pw) * 1.176 - 30px); /* 男性写真の bottom-right 付近 */
  right: max(20px, calc(var(--photo-offset) - 40px));
}
.intro-diamonds--bottom {
  bottom: 60px;
  left: calc(var(--photo-offset) + var(--pw) - 30px); /* 女性写真の right edge を跨ぐ */
}
.intro-diamonds svg {
  width: 100%;
  height: 100%;
}

/* 写真 : PCでは絶対配置 */
.intro-photos {
  display: contents;
}
.intro-photo {
  position: absolute;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
  background: #EEE;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-photo.is-empty {
  background: repeating-linear-gradient(
    135deg, #d6ecf9 0, #d6ecf9 10px,
    #e6f4fc 10px, #e6f4fc 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.intro-photo.is-empty::after { content: "IMAGE"; }
/* 写真は .intro 上で定義した --pw / --photo-offset を利用 */
.intro-photo--woman {
  width: var(--pw);
  aspect-ratio: 250 / 291;
  height: auto;
  bottom: 100px;
  left: var(--photo-offset);
}
.intro-photo--man {
  width: var(--pw);
  aspect-ratio: 250 / 294;
  height: auto;
  top: 180px;
  right: var(--photo-offset);
}

/* テキストコンテンツ */
.intro-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 100px;
  text-align: center;
}
.intro-kicker {
  font-family: 'Montserrat', var(--f-base);
  font-size: 16px;
  font-weight: 700;
  color: #35A9EE;
  letter-spacing: 0.12em;
  line-height: 160%;
  margin-bottom: 24px;
}
.intro-lead {
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  margin: 0 0 80px;
}
.intro-mark {
  display: inline-block;
  background: #35A9EE;
  color: #FFFFFF;
  padding: 0 14px;
  margin: 0 4px;
  vertical-align: baseline;
}
.intro-body {
  margin: 0;
}
.intro-body-p {
  font-size: 20px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  margin: 0;
}

@media (max-width: 1280px) {
  .intro { min-height: 780px; }
  .intro-lead { font-size: 34px; margin-bottom: 220px; }
  .intro-body-p { font-size: 18px; }
}
@media (max-width: 1200px) {
  .intro {
    min-height: auto;
    padding: 60px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  /* 装飾は SP では控えめに, テキストの後ろに配置 */
  .intro-deco { z-index: 0; }
  .intro-deco--sq2, .intro-deco--sq3 { display: none; }
  .intro-deco--sq1 {
    top: 12px; left: -30px;
    width: 100px; height: 100px;
    border-radius: 24px;
  }
  .intro-deco--sq4 {
    bottom: 60px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 32px;
  }
  /* インナーはコンテナ役を降りて子要素を .intro の flex アイテムに昇格 */
  .intro-inner {
    display: contents;
  }
  .intro-kicker {
    order: 1;
    margin-bottom: 0;
    font-size: 15px;
    position: relative;
    z-index: 2;
  }
  .intro-lead {
    order: 2;
    font-size: 28px;
    margin: 0;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 2;
  }
  .intro-mark { padding: 0 10px; }
  /* 写真ペアを display:contents 解除して flex に */
  .intro-photos {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    order: 3;
    position: relative;
    z-index: 2;
  }
  .intro-photo {
    position: static;
    inset: auto;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 44%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
  }
  /* ひし形装飾 : Dev Mode の 26.02 x 30.17 に縮小、写真ボックス内に絶対配置 */
  .intro-diamonds {
    width: 26.02px;
    height: 30.171px;
    position: absolute;
    z-index: 3;
  }
  /* 右あしらい : 男性写真の上（右上を覆う） */
  .intro-diamonds--right {
    top: -6px;
    right: 6%;
    left: auto;
    bottom: auto;
  }
  /* 左あしらい : 女性写真の下側に重ねる（前面） */
  .intro-diamonds--bottom {
    bottom: -6px;
    left: 6%;
    top: auto;
    right: auto;
  }
  /* 本文 : 3ブロックに分けて中央揃え */
  .intro-body {
    order: 4;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .intro-body-p {
    text-align: center;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: -0.02em;
    color: #343434;
    margin: 0;
  }
  .intro-body-quote { font-size: 15px; }
  .intro-body-para { font-size: 15px; text-align: left; }
  .intro-body-closing { font-size: 18px; }
}

/* ============================================
   04 こんなお悩みありませんか
============================================ */
/* ============================================
   04 こんなお悩みありませんか — Design準拠 v2
============================================ */
.worries {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #F0FAFF;
  min-height: 895px;
  overflow: hidden;
}

/* 見出し内の可変フォントサイズ */
.worries-heading {
  line-height: 140%;
  font-size: 40px;
}
.worries-heading .worries-h-sm { font-size: 40px; }
.worries-heading .worries-h-lg { font-size: 60px; }
@media (max-width: 768px) {
  .worries-heading, .worries-heading .worries-h-sm { font-size: 26px; }
  .worries-heading .worries-h-lg { font-size: 38px; }
}

/* 装飾用の背景画像（左右）multiply合成 — セクション上端に揃える */
.worries-bg {
  position: absolute;
  width: 1122px;
  height: 748px;
  object-fit: cover;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.worries-bg--left {
  top: 0;
  left: 0;
  transform: translateX(-15%);
}
.worries-bg--right {
  top: 0;
  right: 0;
  transform: translateX(15%);
}

/* .worries-triangle は midcta 側の上端に .midcta-triangle として移動 */

.worries .container { position: relative; z-index: 1; }

.worries-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.worries-block--family {
  grid-template-columns: 1fr 220px;
  margin-top: 48px;
  max-width: 720px;
}
.worries-figure {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.worries-illust {
  display: block;
  height: auto;
}
.worries-illust--self {
  width: 130.8px;
  aspect-ratio: 130.8 / 202.68;
}
.worries-illust--family {
  width: 219.19px;
  aspect-ratio: 219.19 / 178.72;
}
.worries-figure-label {
  margin-top: 12px;
  display: inline-block;
  background: var(--c-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 20px;
  border-radius: 999px;
}

.worries-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px) clamp(28px, 4vw, 40px);
  box-shadow: 0 4px 20px rgba(81, 168, 225, 0.10);
}
.worries-card--sm { padding: 20px 32px; }

.worries-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--c-blue-sub);
}
.worries-card-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--c-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.worry-list { display: flex; flex-direction: column; gap: 10px; }
.worry-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink);
}
.check {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: var(--c-yellow);
  color: var(--c-ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .worries-bg { opacity: 0.6; }
}

/* ---------- SP (スマホ) ---------- */
@media (max-width: 900px) {
  .worries {
    min-height: auto;
    padding: 48px 0 32px;
  }
  .worries-bg { display: none; }
  .worries-triangle { display: none; }

  /* 見出し縮小 */
  .worries-heading,
  .worries-heading .worries-h-sm { font-size: 24px; }
  .worries-heading .worries-h-lg { font-size: 32px; }

  /* ブロック : Grid -> Flex column (カード上/イラスト下) */
  .worries-block,
  .worries-block--family {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
    gap: 0;
  }
  .worries-block--family { margin-top: 40px; }

  .worries-card,
  .worries-card--sm {
    order: 1;
    width: 100%;
    max-width: 360px;
    padding: 20px 24px;
    position: relative;
    margin: 0;
  }
  /* 吹き出し三角 */
  .worries-card::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 14px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .worries-figure {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }
  .worries-block--family .worries-figure { order: 2; }

  .worries-illust {
    height: auto;
  }
  .worries-illust--self {
    width: 106.144px;
    height: 164.122px;
    aspect-ratio: auto;
  }
  .worries-illust--family {
    width: 200.221px;
    height: 163.254px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .worries-figure-label {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.7px solid #FFFFFF;
    border-radius: 20px;
    width: 145px;
    padding: 6px 0 4px;
    background: #2371B7;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: -8px;
    position: relative;
    z-index: 1;
  }
  .worries-block--family .worries-figure-label {
    width: 220px;
    padding: 8px 0 4px;
    background: #FFC532;
    color: #594618;
  }
}

/* ============================================
   04b 共感ミドルCTA — Design準拠 v2
============================================ */
.midcta {
  position: relative;
  padding: 200px 0 120px;
  background: #FFFFFF;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* worries から下に伸びる逆三角形 */
.midcta-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 167.5px;
  background: #F0FAFF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  z-index: 0;
}
.midcta-icon {
  position: absolute;
  width: 151.884px;
  height: 154.888px;
  z-index: 0;
}
.midcta-icon--left {
  top: 22%;
  left: 5vw;
  transform: rotate(-0.593deg);
}
.midcta-icon--right {
  top: 20%;
  right: 5vw;
  transform: rotate(180deg) rotate(-0.593deg);
}
/* PC : figures wrapper は透明化して illust が .midcta 直下として振る舞う */
.midcta-figures {
  display: contents;
}
.midcta-illust {
  position: absolute;
  z-index: 1;
  bottom: 80px;
}
.midcta-illust--woman {
  width: 130px;
  height: auto;
  aspect-ratio: 180.798 / 304.013;
  left: 15vw;
  transform: rotate(-4.705deg);
}
.midcta-illust--man {
  width: 165px;
  height: auto;
  aspect-ratio: 233.429 / 316.549;
  right: 12vw;
  transform: rotate(3.115deg);
}
.midcta-body {
  position: relative;
  z-index: 2;
  text-align: center;
}
.midcta-kicker {
  display: inline-block;
  position: relative;
  font-size: 40px;
  font-weight: 700;
  color: #343434;
  line-height: 140%;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  padding-bottom: 14px;
}
.midcta-kicker-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-image: radial-gradient(circle, var(--c-yellow) 1.8px, transparent 2px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  background-position: center;
}
.midcta-head {
  font-size: 60px;
  font-weight: 700;
  color: #343434;
  line-height: 140%;
  letter-spacing: 0.04em;
  margin: 0;
}
.midcta-mark {
  color: #2371B7;
}

@media (max-width: 1280px) {
  .midcta-kicker { font-size: 32px; }
  .midcta-head { font-size: 48px; }
  .midcta-icon { width: 120px; height: 120px; }
  .midcta-illust--woman { width: 140px; height: auto; left: 10vw; }
  .midcta-illust--man { width: 180px; height: auto; right: 8vw; }
}
@media (max-width: 900px) {
  .midcta {
    padding: 60px 20px 0;
    min-height: auto;
    display: block;
    text-align: center;
    overflow: visible;
    z-index: 1;
  }
  .midcta-body {
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
  }
  .midcta-kicker { font-size: 18px; padding-bottom: 10px; margin-bottom: 24px; }
  .midcta-head { font-size: 28px; line-height: 1.5; }

  /* イラストを body 直後に flex 行として流し込む */
  .midcta-figures {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: -20px;   /* 次セクションに 20px だけ被る */
    position: relative;
    z-index: 2;
  }
  .midcta-illust {
    position: static;
    display: block;
    inset: auto;
    top: auto; left: auto; right: auto; bottom: auto;
  }
  .midcta-illust--woman {
    width: 82.266px;   /* 68.555 * 1.2 */
    height: 138.337px; /* 115.281 * 1.2 */
    transform: rotate(-4.705deg);
  }
  .midcta-illust--man {
    width: 106.217px;  /* 88.514 * 1.2 */
    height: 144.035px; /* 120.029 * 1.2 */
    transform: rotate(3.115deg);
  }

  /* あしらいアイコン(小): 左右コーナーに */
  .midcta-icon {
    display: block;
    width: 57.753px;
    height: 58.894px;
  }
  .midcta-icon--left {
    top: auto;
    bottom: 30px;
    left: 4vw;
    transform: rotate(-0.593deg);
  }
  .midcta-icon--right {
    top: auto;
    bottom: 30px;
    right: 4vw;
    transform: rotate(180deg) rotate(-0.593deg);
  }
}
@media (max-width: 600px) {
  .midcta-kicker { font-size: 16px; margin-bottom: 20px; }
  .midcta-head { font-size: 24px; }
}

/* ============================================
   05 ペイ フォワードとは
============================================ */
/* ============================================
   05 ペイ フォワードとは — Design準拠 v2
============================================ */
.about {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--c-blue);
  z-index: 5;
}
.about-kicker {
  font-family: 'Montserrat', var(--f-base);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 8px;
}
.about-heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 140%;
}
.about-card {
  background: #fff;
  border-radius: 30px;
  padding: 56px 53px 56.4px 47px;
  max-width: 1120px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 531.83px 1fr;
  gap: 47px;
  align-items: stretch;
  margin-bottom: 32px;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 205 / 154;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  color: #343434;
}
.about-text p:last-child { margin-bottom: 0; }

.about-meta {
  border-top: 1px solid var(--c-blue-light);
}
.about-meta div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-blue-light);
  align-items: center;
}
.about-meta dt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-blue);
}
.about-meta-icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  box-sizing: border-box;
  background: rgba(53, 169, 238, 0.10);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-meta-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.about-meta dd {
  font-size: 16px;
  color: var(--c-ink);
  line-height: 1.7;
}

.about-note {
  max-width: 1120px;
  margin: 32px auto 0;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 17.778px;
}
.about-note-icon-wrap {
  width: 64px;
  height: 64px;
  padding: 10.667px;
  box-sizing: border-box;
  background: rgba(53, 169, 238, 0.10);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-note-icon-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.about-note-body { flex: 1; }
.about-note-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 4px;
}
.about-note-body p:not(.about-note-title) {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-ink);
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual img { aspect-ratio: 205 / 154; }
  .about-text p { font-size: 17px; }
}
@media (max-width: 600px) {
  .about-card { padding: 32px 24px; }
  .about-heading { font-size: 28px; }
  .about-text p { font-size: 15px; line-height: 1.9; }
  .about-meta div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- 就労移行支援とは？ SP専用スタイル ---------- */
@media (max-width: 900px) {
  .about-note {
    max-width: 335px;
    width: 100%;
    min-height: 275px;
    padding: 24px 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #98D4FC;
    margin: 32px auto 0;
    box-sizing: border-box;
  }
  .about-note-icon-wrap {
    width: 64px;
    height: 64px;
    padding: 10.667px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 3px solid #3A88D6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .about-note-icon-wrap img {
    width: 42.667px;
    height: 42.667px;
    display: block;
  }
  .about-note-body {
    flex: 1;
    width: 100%;
    text-align: center;
  }
  .about-note-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 200%;
    color: #343434;
    text-align: center;
    margin-bottom: 0;
  }
  .about-note-body p:not(.about-note-title) {
    font-size: 15px;
    font-weight: 500;
    line-height: 200%;
    color: #343434;
    text-align: left;
    margin: 0;
  }
}

/* ============================================
   06 4つの特徴
============================================ */
.features {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #fff;
  overflow: hidden;
}
/* features 装飾は採寸後に再追加予定 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  gap: 24px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 580px;
  min-height: 460px;
  padding: 24px;
  background: #FFF;
  border: 6px solid #CAE4F9;
  border-radius: 30px;
  text-align: center;
  position: relative;
}
.feature-number {
  font-family: 'Montserrat', var(--f-base);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.05em;
}
.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.feature-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.feature-body {
  font-size: 15px;
  line-height: 2.0;
  color: var(--c-ink);
  text-align: left;
  max-width: 480px;
}
@media (max-width: 1280px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 480px)); }
  .feature-card { min-height: 420px; }
  .feature-icon { width: 60px; height: 60px; }
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 400px; }
}

/* ============================================
   07 プログラム内容
============================================ */
.program {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #35A9EE;
  overflow: hidden;
}
.program-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.program .container { position: relative; z-index: 1; }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.program-card {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.program-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.program-body {
  padding: 20px 24px 24px;
  flex: 1;
}
.program-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-blue);
  background: var(--c-blue-light);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.program-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.program-body p {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--c-ink-2);
}
.program-note {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  position: relative;
}
@media (max-width: 900px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .program-grid { grid-template-columns: 1fr; } }

/* ============================================
   08 1日の過ごし方 — Design準拠 v2
============================================ */
.daily {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0 clamp(40px, 6vw, 60px);
  background: #fff;
  overflow: hidden;
}
.daily .container { position: relative; z-index: 1; }

.timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: var(--c-blue-sub);
  transform: translateX(-50%);
  z-index: 0;
}

/* Flex ベースで確実に 1行に並べる */
.timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
  min-height: 240px;
}
.timeline-row:last-child { margin-bottom: 0; }
.timeline-row--reverse { flex-direction: row-reverse; }

.timeline-photo {
  position: relative;
  width: 400px;
  height: 240px;
  flex-shrink: 0;
}
.timeline-photo::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -60px;
  width: 286px;
  height: 286px;
  background: #E8F7FF;
  filter: blur(7.655px);
  border-radius: 50px;
  z-index: 0;
}
.timeline-row--reverse .timeline-photo::before {
  left: auto;
  right: -60px;
}
/* 色バリエーション: 3・4行目のみ #E8F9F7 */
.timeline-row:nth-child(3) .timeline-photo::before,
.timeline-row:nth-child(4) .timeline-photo::before {
  background: #E8F9F7;
}
.timeline-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  z-index: 1;
}

.timeline-clock {
  width: 85px;
  height: 85px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: visible;
  align-self: center;
}
.timeline-clock img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* 13時アイコンだけ viewBox が 110×110 (他は 85×85) で
   時計本体が相対的に小さく描かれているため 1.25 倍で補正 */
.timeline-row:nth-child(4) .timeline-clock img {
  transform: scale(1.25);
}

.timeline-text {
  width: 400px;
  padding: 0;
  flex-shrink: 0;
  align-self: center;
}
.timeline-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  flex-wrap: wrap;
}
.timeline-time {
  font-size: 22px;
  color: var(--c-blue);
  letter-spacing: 0.02em;
}
.timeline-title {
  font-size: 22px;
  color: var(--c-ink);
}
.timeline-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-ink-2);
  margin: 0;
}

.daily-note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--c-ink-3);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .timeline::before { left: 30px; transform: none; }
  .timeline-row,
  .timeline-row--reverse {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    min-height: auto;
    flex-direction: unset;
  }
  .timeline-row .timeline-clock,
  .timeline-row--reverse .timeline-clock {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 52px;
    height: 52px;
  }
  .timeline-row .timeline-photo,
  .timeline-row--reverse .timeline-photo {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 240;
  }
  .timeline-row .timeline-text,
  .timeline-row--reverse .timeline-text {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }
  .timeline-photo::before,
  .timeline-row--reverse .timeline-photo::before {
    left: -12px; right: auto; top: -12px;
    width: 160px; height: 160px;
  }
  .timeline-time, .timeline-title { font-size: 18px; }
}

/* ============================================
   09 ご利用の流れ — Design準拠 v2
============================================ */
.flow {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: #35A9EE;
  overflow: hidden;
}
.flow-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.flow .container { position: relative; z-index: 1; }
.flow .section-head { margin-bottom: 72px; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.flow-step {
  background: #fff;
  border-radius: 20px;
  padding: 48px 20px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/* 矢印 (5→1 の間) */
.flow-step + .flow-step::before {
  content: "▶";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  z-index: 2;
}
/* STEPバッジ (黄色い丸) */
.flow-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.flow-badge-label {
  font-family: 'Montserrat', var(--f-base);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.flow-badge-num {
  font-family: 'Montserrat', var(--f-base);
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}
.flow-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 8px;
}
.flow-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.flow-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: 0.04em;
  margin: 0;
}
.flow-step p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-ink-2);
  text-align: left;
  margin: 0;
}
@media (max-width: 1024px) {
  .flow-steps { grid-template-columns: repeat(3, 1fr); }
  .flow-step + .flow-step::before { display: none; }
}
@media (max-width: 700px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flow-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   10 対象となる方
============================================ */
.target {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--c-blue-light);
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.target-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 36px);
  text-align: center;
  box-shadow: 0 4px 16px rgba(81, 168, 225, 0.08);
}
.target-card-title {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--c-yellow);
  display: inline-block;
  letter-spacing: 0.05em;
  color: var(--c-blue);
}
.target-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.target-card li {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-ink-2);
  padding-left: 18px;
  position: relative;
}
.target-card li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--c-blue);
  font-size: 8px;
  top: 8px;
}
.target-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-2);
  margin-bottom: 14px;
  text-align: left;
}
@media (max-width: 900px) { .target-grid { grid-template-columns: 1fr; } }

/* ============================================
   12 FAQ
============================================ */
.faq {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #fff;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-blue-light);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  transition: background .2s;
}
.faq-q:hover { background: var(--c-blue-ultra); }
.faq-q-mark {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-blue);
}
.faq-toggle { position: relative; width: 14px; height: 14px; }
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--c-blue);
  top: 50%;
  left: 50%;
  transition: transform .25s;
}
.faq-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); border-radius: 2px; }
.faq-toggle::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); border-radius: 2px; }
.faq-q[aria-expanded="true"] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > p {
  padding: 0 28px 24px 28px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-2);
}
.faq-a-mark { font-size: 18px; color: var(--c-yellow); font-weight: 700; }
@media (max-width: 600px) {
  .faq-q { grid-template-columns: 32px 1fr 20px; padding: 18px 20px; font-size: 14px; gap: 12px; }
  .faq-a > p { padding: 0 20px 20px 20px; grid-template-columns: 32px 1fr; gap: 12px; }
}

/* ============================================
   13 事業所一覧
============================================ */
.offices {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--c-blue-light);
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.office-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(81, 168, 225, 0.08);
}
.office-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: #f0f0f0; }
.office-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.office-card-body { padding: clamp(24px, 4vw, 32px); flex: 1; }
.office-card-area {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--c-blue);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 700;
}
.office-card-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--c-yellow-soft);
}
.office-card-meta { display: flex; flex-direction: column; }
.office-card-meta div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--c-blue-light);
}
.office-card-meta div:last-child { border-bottom: none; }
.office-card-meta dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.08em;
}
.office-card-meta dd { font-size: 13px; line-height: 1.7; color: var(--c-ink-2); }
.office-card-meta small { font-size: 11px; color: var(--c-ink-3); }
.office-card--coming {
  background: #fff;
  border: 2px dashed var(--c-blue-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.office-card-coming { text-align: center; padding: 40px 24px; }
.office-card-coming-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-blue);
  margin-bottom: 20px;
  font-weight: 700;
}
.office-card-coming-text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--c-ink-2);
  letter-spacing: 0.05em;
}
.offices-note { margin-top: 32px; text-align: center; font-size: 12px; color: var(--c-ink-3); }
@media (max-width: 768px) {
  .offices-grid { grid-template-columns: 1fr; }
  .office-card-meta div { grid-template-columns: 76px 1fr; gap: 12px; }
  .office-card--coming { min-height: 200px; }
}

/* ============================================
   14 お問い合わせ
============================================ */
.contact {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--c-blue);
  color: #fff;
}
.contact-form {
  background: #fff;
  border-radius: 30px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-required {
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--c-blue-light);
  padding: 14px 16px;
  font-size: 14px;
  background: var(--c-blue-ultra);
  border-radius: 10px;
  font-family: inherit;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  background: #fff;
}
.form-row textarea { resize: vertical; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row--split > div { display: flex; flex-direction: column; gap: 8px; }
.form-row--check label { flex-direction: row; align-items: center; gap: 10px; font-size: 14px; font-weight: 400; }
.form-row--check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--c-blue); }
.form-link { text-decoration: underline; color: var(--c-blue); }
.form-submit { margin-top: 8px; text-align: center; }
.btn-submit {
  width: 295px;
  max-width: 100%;
  height: 75px;
  padding: 0 32px;
  border: 2px solid #FFE8AC;
  border-radius: 50px;
  background: #FFC532;
  font-size: 16px;
  gap: 8px;
}
.btn-submit .btn-arrow {
  width: 26px;
  height: 26px;
  font-size: 16px;
}
.form-note { margin-top: 16px; font-size: 12px; color: var(--c-ink-3); line-height: 1.8; }
@media (max-width: 600px) { .form-row--split { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================
   15 フッター
============================================ */
.site-footer {
  background: #343434;
  color: rgba(255,255,255,0.8);
  padding: clamp(60px, 8vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .footer-logo {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  width: 80px;
  aspect-ratio: 3 / 1;
}
.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.footer-operator { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-nav h4, .footer-cta h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-nav a:hover { color: var(--c-yellow); }
.footer-cta p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.footer-copy { padding-top: 32px; text-align: center; font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; } }
