/* =========================================================
   SNS Guild LP - Stylesheet
   Design System:
   - Primary: #6AACCF (soft sky blue)
   - Accent:  #3B6F92 (deep blue, used for handwriting & CTA)
   - BG:      #FEFCF7 (warm cream)
   - Text:    #2C3E50
   ========================================================= */

:root {
  --color-primary: #5BA0C6;          /* 少し濃く */
  --color-primary-light: #C8DEEC;    /* 少し濃く */
  --color-primary-pale: #EBF3F8;
  --color-accent: #2D5F82;            /* より濃く・はっきり */
  --color-accent-deep: #1F4763;       /* より濃く */
  --color-bg: #FEFCF7;
  --color-bg-soft: #F4EFE2;           /* 少し濃く */
  --color-text: #1F2937;              /* より黒に近く */
  --color-text-muted: #475569;        /* より濃く */
  --color-text-light: #6B7888;        /* 少し濃く */
  --color-border: #C8DEEC;            /* primary-light と統一して輪郭明確に */
  --color-white: #FFFFFF;
  --color-warm-beige: #F0E5D0;
  --color-highlight: #FFEC9E;         /* 少し濃く・はっきり */

  --shadow-sm: 0 2px 8px rgba(31, 71, 99, 0.10);
  --shadow-md: 0 8px 22px rgba(31, 71, 99, 0.14);
  --shadow-lg: 0 16px 40px rgba(31, 71, 99, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1080px;
  --container-narrow: 840px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography helpers ---------- */
.handwritten {
  font-family: 'Caveat', 'Yuji Boku', 'Zen Kurenaido', 'Hiragino Maru Gothic ProN', cursive;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---------- Site Header (sticky) ---------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(31, 71, 99, 0.06);
  z-index: 100;
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 56px;
  width: auto;
}
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.site-header__nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  padding: 6px 0;
  position: relative;
  transition: color .2s;
  letter-spacing: 0.04em;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width .2s, left .2s;
  border-radius: 2px;
}
.site-header__nav a:hover {
  color: var(--color-primary);
}
.site-header__nav a:hover::after {
  width: 100%;
  left: 0;
}
.site-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #06C755;
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.site-header__cta:hover {
  transform: translateY(-1px);
  background: #05B14B;
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.32);
}
.site-header__cta-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
}
.site-header__menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.site-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-header__mobile {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(31, 71, 99, 0.08);
  padding: 8px 16px 16px;
}
.site-header__mobile a {
  display: block;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 1px solid rgba(31, 71, 99, 0.06);
  letter-spacing: 0.04em;
}
.site-header__mobile a:last-child {
  border-bottom: none;
}
.site-header__mobile.is-open {
  display: flex;
}

@media (max-width: 880px) {
  .site-header__inner {
    padding: 10px 16px;
    gap: 12px;
  }
  .site-header__logo img {
    height: 42px;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .site-header__menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 420px) {
  .site-header__cta span:not(.site-header__cta-icon) {
    display: none;
  }
  .site-header__cta {
    padding: 9px;
  }
}

.section-heading {
  font-size: clamp(26px, 4.2vw, 36px);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
  margin: 0 0 48px;
  letter-spacing: 0.04em;
}
.section-heading .accent {
  color: var(--color-accent);
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
  padding: 0 4px;
  font-weight: 800;
}
/* wrapper to center headings + decorations */
.section-heading-wrap {
  text-align: center;
}

/* =========================================================
   共通装飾パーツ
   ========================================================= */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.deco--blob-sm { width: 140px; height: 140px; }
.deco--blob-md { width: 220px; height: 220px; }
.deco--blob-lg { width: 320px; height: 320px; }

/* section のコンテンツを装飾の上に */
section > .container,
section > .container-narrow { position: relative; z-index: 2; }

/* scattered dots CSS背景 */
.has-deco-dots-tl::before,
.has-deco-dots-br::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='20' cy='20' r='4' fill='%236AACCF' opacity='0.4'/><circle cx='50' cy='30' r='2.5' fill='%236AACCF' opacity='0.5'/><circle cx='80' cy='15' r='3' fill='%236AACCF' opacity='0.3'/><circle cx='35' cy='55' r='2' fill='%236AACCF' opacity='0.6'/><circle cx='70' cy='60' r='3.5' fill='%236AACCF' opacity='0.35'/><circle cx='15' cy='80' r='2.5' fill='%236AACCF' opacity='0.5'/><circle cx='55' cy='85' r='2' fill='%236AACCF' opacity='0.4'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.has-deco-dots-tl::before { top: 40px; left: 20px; }
.has-deco-dots-br::after { bottom: 40px; right: 20px; }

/* subtle blob backgrounds per section (薄く目立たせない) */
.has-deco-blob-l::before,
.has-deco-blob-r::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 35% 40%, rgba(184, 217, 236, 0.20) 0%, rgba(214, 232, 242, 0.08) 55%, transparent 70%);
}
.has-deco-blob-l::before { top: 10%; left: -100px; }
.has-deco-blob-r::after { bottom: 10%; right: -100px; }

/* sparkle decorations (star twinkles) */
.deco-sparkles {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L13.5 9.5 L21 11 L13.5 12.5 L12 20 L10.5 12.5 L3 11 L10.5 9.5 Z' fill='%236AACCF' opacity='0.35'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 4 L13 10 L19 11 L13 12 L12 18 L11 12 L5 11 L11 10 Z' fill='%233B6F92' opacity='0.4'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='3' fill='%236AACCF' opacity='0.3'/></svg>");
  background-position: 8% 15%, 90% 20%, 5% 75%;
  background-size: 32px, 22px, 14px;
  background-repeat: no-repeat;
}

/* hand-drawn leaf accent (small) */
.deco-leaf {
  display: inline-block;
  width: 50px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20' fill='none'><path d='M4 16 Q 15 12, 28 10 Q 42 8, 56 4' stroke='%236AACCF' stroke-width='1.3' stroke-linecap='round' fill='none'/><ellipse cx='18' cy='12' rx='4' ry='2' transform='rotate(-20 18 12)' fill='%23E8F3F9' stroke='%236AACCF' stroke-width='1'/><ellipse cx='32' cy='9' rx='4' ry='2' transform='rotate(-20 32 9)' fill='%23E8F3F9' stroke='%236AACCF' stroke-width='1'/><ellipse cx='46' cy='6' rx='3.5' ry='1.8' transform='rotate(-20 46 6)' fill='%23E8F3F9' stroke='%236AACCF' stroke-width='1'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/* =========================================================
   散りばめ花モチーフ (icircle参考)
   ========================================================= */
.flowers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.55;
}
.flowers::before,
.flowers::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
/* 花パターンA:左上に集まり */
.flowers--a::before {
  width: 180px; height: 180px;
  top: 30px; left: -30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%236AACCF' opacity='0.5'><circle cx='40' cy='50' r='6'/><circle cx='46' cy='44' r='6'/><circle cx='34' cy='44' r='6'/><circle cx='40' cy='38' r='6'/><circle cx='40' cy='56' r='6'/><circle cx='40' cy='47' r='3' fill='%23FFF4B8'/></g><g fill='%233B6F92' opacity='0.4'><circle cx='130' cy='30' r='4'/><circle cx='134' cy='26' r='4'/><circle cx='126' cy='26' r='4'/><circle cx='130' cy='22' r='4'/><circle cx='130' cy='34' r='4'/></g><g fill='%236AACCF' opacity='0.35'><circle cx='160' cy='110' r='5'/><circle cx='165' cy='105' r='5'/><circle cx='155' cy='105' r='5'/><circle cx='160' cy='100' r='5'/><circle cx='160' cy='115' r='5'/></g><circle cx='90' cy='80' r='3' fill='%236AACCF' opacity='0.5'/><circle cx='110' cy='150' r='2.5' fill='%236AACCF' opacity='0.4'/><circle cx='50' cy='130' r='3' fill='%233B6F92' opacity='0.3'/></svg>");
}
.flowers--a::after {
  width: 160px; height: 160px;
  bottom: 30px; right: -20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%236AACCF' opacity='0.45'><circle cx='60' cy='140' r='6'/><circle cx='66' cy='134' r='6'/><circle cx='54' cy='134' r='6'/><circle cx='60' cy='128' r='6'/><circle cx='60' cy='146' r='6'/><circle cx='60' cy='137' r='3' fill='%23FFF4B8'/></g><g fill='%233B6F92' opacity='0.35'><circle cx='140' cy='50' r='5'/><circle cx='145' cy='45' r='5'/><circle cx='135' cy='45' r='5'/><circle cx='140' cy='40' r='5'/><circle cx='140' cy='55' r='5'/></g><circle cx='100' cy='90' r='3' fill='%236AACCF' opacity='0.5'/><circle cx='30' cy='60' r='2.5' fill='%236AACCF' opacity='0.4'/><circle cx='170' cy='170' r='3.5' fill='%233B6F92' opacity='0.35'/></svg>");
}
/* 花パターンB:右上に集まり */
.flowers--b::before {
  width: 160px; height: 160px;
  top: 40px; right: -20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%236AACCF' opacity='0.5'><circle cx='140' cy='50' r='7'/><circle cx='147' cy='43' r='7'/><circle cx='133' cy='43' r='7'/><circle cx='140' cy='36' r='7'/><circle cx='140' cy='57' r='7'/><circle cx='140' cy='46' r='3.5' fill='%23FFF4B8'/></g><g fill='%233B6F92' opacity='0.35'><circle cx='50' cy='100' r='4'/><circle cx='54' cy='96' r='4'/><circle cx='46' cy='96' r='4'/><circle cx='50' cy='92' r='4'/><circle cx='50' cy='104' r='4'/></g><circle cx='100' cy='140' r='3' fill='%236AACCF' opacity='0.5'/><circle cx='170' cy='160' r='2.5' fill='%233B6F92' opacity='0.4'/></svg>");
}
.flowers--b::after {
  width: 140px; height: 140px;
  bottom: 40px; left: -10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%236AACCF' opacity='0.5'><circle cx='50' cy='150' r='6'/><circle cx='56' cy='144' r='6'/><circle cx='44' cy='144' r='6'/><circle cx='50' cy='138' r='6'/><circle cx='50' cy='156' r='6'/><circle cx='50' cy='147' r='3' fill='%23FFF4B8'/></g><circle cx='120' cy='80' r='3' fill='%233B6F92' opacity='0.3'/><circle cx='150' cy='160' r='2.5' fill='%236AACCF' opacity='0.5'/></svg>");
}

/* =========================================================
   波形セパレータ(セクション間)
   ========================================================= */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  margin-top: -60px;
  z-index: 3;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   リボンバッジ
   ========================================================= */
.ribbon {
  display: inline-block;
  position: relative;
  padding: 8px 22px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(59, 111, 146, 0.25);
}
.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 100%;
  background: inherit;
}
.ribbon::before {
  left: -11px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.ribbon::after {
  right: -11px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.section-lead {
  text-align: center;
  color: var(--color-text);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
  font-weight: 500;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
section.bg-soft { background: var(--color-bg-soft); }
section.bg-pale { background: var(--color-primary-pale); }

/* soft divider wave (decorative top edge) */
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  overflow: hidden;
}
.wave-top svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   ① FV (ファーストビュー)
   上半分は静止画として配置
   ※ fv-main.png には下半分の3要素+CTAも含まれているが、
      それはHTML側で再構築しているため、画像は上部のみ表示する。
      理想はMIHO側で上部だけ切り抜いた画像を保存すること。
      それまでの間は CSS で下部をトリミングして表示。
   ========================================================= */
.fv {
  padding: 0;
  background: linear-gradient(180deg, #EEF5FA 0%, #FEFCF7 100%);
}
.fv__image-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* 画像の上 65% だけ表示(下の3要素+CTA部分をカット) */
  aspect-ratio: 1054 / 970; /* 元画像 1054x1492 の 65% 相当 */
}
.fv__image {
  width: 100%;
  display: block;
  /* 上部合わせで切り抜き */
  object-fit: cover;
  object-position: top center;
  height: auto;
}
.fv__fallback {
  aspect-ratio: 3 / 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, #EEF5FA 0%, #FEFCF7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 14px;
  border: 2px dashed var(--color-border);
}

/* =========================================================
   ①-b FV補足 サポートブロック
   ========================================================= */
.support-intro {
  background: linear-gradient(180deg, #EEF5FA 0%, #F8FBFD 60%, var(--color-bg) 100%);
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}

/* 背景装飾ブロブ */
.support-intro__blob {
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}
.support-intro__blob--left { left: 0; }
.support-intro__blob--right { right: 0; }

@media (max-width: 680px) {
  .support-intro__blob { width: 120px; opacity: 0.6; }
}

/* 見出し */
.support-intro__heading {
  text-align: center;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  letter-spacing: 0.08em;
}
.support-intro__heading-mark {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}
.support-intro__heading-mark svg { width: 100%; height: 100%; }

/* 3要素カード */
.support-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}
@media (min-width: 720px) {
  .support-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0 20px;
  }
  .support-card:not(:last-child) {
    border-right: 1px dashed #B8D9EC;
  }
}

.support-card {
  text-align: center;
  padding: 0 20px;
}

.support-card__circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #FFFFFF 0%, #E8F3F9 45%, #C9DDEC 100%);
  box-shadow:
    inset 2px 4px 12px rgba(255, 255, 255, 0.8),
    inset -6px -10px 16px rgba(106, 172, 207, 0.15),
    0 4px 12px rgba(106, 172, 207, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* 水彩風のふんわりエッジ */
.support-card__circle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 217, 236, 0.35) 0%, transparent 65%);
  z-index: -1;
  filter: blur(3px);
}
.support-card__illust {
  width: 85px;
  height: 85px;
}

.support-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 14px;
  letter-spacing: 0.12em;
}
.support-card__desc {
  font-size: 13.5px;
  color: var(--color-text);
  line-height: 1.9;
  margin: 0;
}

/* 下段:スピーチバブル + CTA */
.support-intro__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 720px) {
  .support-intro__bottom {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

/* Speech bubble */
.support-bubble {
  position: relative;
  text-align: center;
  padding: 20px 12px 0;
}
.support-bubble__text {
  font-family: 'Caveat', 'Yuji Boku', 'Hiragino Maru Gothic ProN', cursive;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
  color: var(--color-accent-deep);
  line-height: 1.9;
  padding: 24px 20px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50% / 45%;
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  letter-spacing: 0.05em;
}
.support-bubble__text::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -14px;
  width: 26px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
  border-right: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
  transform: skewX(-20deg) rotate(30deg);
  border-radius: 0 0 50% 0;
}
.support-bubble__leaf {
  width: 80px;
  height: auto;
  margin: 8px 0 0 auto;
  display: block;
}

/* CTA block */
.support-cta {
  text-align: center;
}
.support-cta__lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent-deep);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.support-cta__slash {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.support-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  padding: 22px 32px;
  background: linear-gradient(180deg, #4E84A8 0%, var(--color-accent) 100%);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  box-shadow:
    0 10px 24px rgba(59, 111, 146, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
}
.support-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.support-cta__button:hover {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(59, 111, 146, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.support-cta__button:hover svg { transform: translateX(3px); }

.support-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.support-cta__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.support-cta__link:hover { color: var(--color-accent-deep); }

@media (max-width: 680px) {
  .support-intro { padding: 56px 0 72px; }
  .support-intro__heading { gap: 10px; margin-bottom: 40px; }
  .support-card__circle { width: 120px; height: 120px; }
  .support-card__illust { width: 72px; height: 72px; }
  .support-cta__button { padding: 18px 24px; font-size: 16px; }
  .support-bubble { max-width: 260px; margin: 0 auto; }
}

/* =========================================================
   ② 共感セクション
   ========================================================= */
.empathy { background: var(--color-bg); padding-top: 80px; }
.empathy__heading {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 56px;
  color: var(--color-text);
}
.empathy__heading .accent {
  color: var(--color-accent);
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
  padding: 0 4px;
}

.empathy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .empathy__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
}

.empathy__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #E8F3F9 0%, #F5EDE0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.empathy__image img { width: 100%; height: 100%; object-fit: cover; }
.empathy__image-fallback {
  color: var(--color-text-light);
  font-size: 13px;
  text-align: center;
  padding: 24px;
}

.worry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.worry-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(31, 71, 99, 0.10);
  font-size: 15px;
  line-height: 1.75;
  border: 1.5px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  font-weight: 500;
  color: var(--color-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.worry-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(31, 71, 99, 0.18);
  border-left-color: var(--color-accent);
}
.worry-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='10' fill='%23D6E8F2'/><path d='M8 12l2.5 2.5L16 9' stroke='%233B6F92' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

/* =========================================================
   ③ 解決宣言
   ========================================================= */
.declaration {
  background: linear-gradient(180deg, var(--color-primary-pale) 0%, var(--color-bg) 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.declaration::before,
.declaration::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><path d='M30 6 L33 24 L51 27 L33 30 L30 48 L27 30 L9 27 L27 24 Z' fill='%236AACCF' opacity='0.35'/><circle cx='10' cy='12' r='2.5' fill='%236AACCF' opacity='0.4'/><circle cx='50' cy='50' r='3' fill='%233B6F92' opacity='0.3'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.declaration::before { top: 40px; left: 10%; }
.declaration::after { bottom: 40px; right: 10%; transform: rotate(20deg); }
.declaration__inner {
  max-width: 720px;
  margin: 0 auto;
}
.declaration__copy {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}
.declaration__copy .accent {
  color: var(--color-accent);
  background: linear-gradient(transparent 65%, rgba(255, 244, 184, 0.8) 65%);
  padding: 0 6px;
}

/* =========================================================
   ④ 機能紹介
   ========================================================= */
.features {
  background: var(--color-bg-soft);
  padding: 96px 0;
}
/* features ヒーロー画像 */
.features__hero {
  max-width: 900px;
  margin: 0 auto 56px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(106, 172, 207, 0.18);
  border: 2px solid var(--color-white);
}
.features__hero img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.features__hero:hover img {
  transform: scale(1.03);
}
@media (max-width: 680px) {
  .features__hero { margin-bottom: 36px; border-radius: 16px; }
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 680px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .features__grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  box-shadow: 0 6px 18px rgba(31, 71, 99, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
  border: 1.5px solid var(--color-border);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(31, 71, 99, 0.18);
}
.feature-card__num {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  display: block;
  font-weight: 700;
}
/* 水彩丸の中にアイコン */
.feature-card__icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #FFFFFF 0%, #E8F3F9 45%, #C9DDEC 100%);
  box-shadow:
    inset 2px 4px 10px rgba(255, 255, 255, 0.8),
    inset -5px -8px 14px rgba(106, 172, 207, 0.15),
    0 3px 10px rgba(106, 172, 207, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.feature-card__icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 217, 236, 0.3) 0%, transparent 65%);
  z-index: -1;
  filter: blur(3px);
}
.feature-card__icon svg { width: 44px; height: 44px; }
.feature-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.feature-card__solve {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: var(--color-primary-pale);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-pill);
  display: inline-block;
}
.feature-card__desc {
  font-size: 13.5px;
  color: var(--color-text);
  line-height: 1.85;
  margin: 0;
  font-weight: 500;
}

/* =========================================================
   ⑤-b 活動の様子(シーンギャラリー)
   ========================================================= */
.scenes {
  background: var(--color-bg);
  padding: 72px 0 96px;
}
.scenes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .scenes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.scene-card {
  margin: 0;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(31, 71, 99, 0.14);
  border: 1.5px solid var(--color-primary-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(31, 71, 99, 0.22);
}
.scene-card__frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-primary-pale);
}
.scene-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.scene-card:hover .scene-card__frame img {
  transform: scale(1.06);
}
.scene-card figcaption {
  padding: 22px 22px 24px;
}
.scene-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-primary-pale);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.scene-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.scene-card__desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
  font-weight: 500;
}

/* =========================================================
   ⑤ 料金 + 他社比較
   ========================================================= */
.pricing { background: var(--color-bg); padding: 96px 0; }

/* プラン2つ並び */
.pricing__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 32px;
}
@media (min-width: 720px) {
  .pricing__plans { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.plan-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px 28px 32px;
  box-shadow: 0 6px 20px rgba(31, 71, 99, 0.12);
  border: 2px solid var(--color-primary-light);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(31, 71, 99, 0.18);
}
.plan-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-pale) 100%);
  box-shadow: var(--shadow-md);
}

/* おすすめリボンバッジ */
.plan-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #4E84A8 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 9px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 16px rgba(59, 111, 146, 0.28);
  z-index: 3;
}
.plan-card__badge::before,
.plan-card__badge::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  background: inherit;
}
.plan-card__badge::before {
  left: -13px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.plan-card__badge::after {
  right: -13px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* 年間プラン限定特典 */
.plan-card__bonus {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--color-white);
  border: 1.5px dashed var(--color-primary);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}
.plan-card__bonus-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  background: var(--color-primary-pale);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.plan-card__bonus-label svg {
  width: 14px;
  height: 14px;
}
.plan-card__bonus-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 500;
}
.plan-card__bonus-text strong {
  color: var(--color-accent);
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(255, 244, 184, 0.7) 65%);
  padding: 0 2px;
}
.plan-card__bonus-value {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.plan-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  margin: 0 0 16px;
}
.plan-card__price {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1;
}
.plan-card--featured .plan-card__price { color: var(--color-accent); }
.plan-card__price .currency { font-size: 20px; margin-right: 4px; }
.plan-card__price .unit {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-left: 4px;
  font-weight: 500;
}
.plan-card__subprice {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin: 8px 0 0;
}
.plan-card__note {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 12px;
}

/* フットノート(特典リボン) */
.pricing__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}
.pricing__footnote span {
  display: inline-block;
  position: relative;
  padding: 8px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-primary-pale) 100%);
  border: 1.5px solid var(--color-primary);
  margin: 0;
  font-weight: 700;
  color: var(--color-accent-deep);
  font-size: 13px;
  box-shadow: 0 3px 8px rgba(106, 172, 207, 0.12);
}
.pricing__footnote span::before,
.pricing__footnote span::after {
  content: "";
  position: absolute;
  top: -1.5px;
  width: 11px;
  height: calc(100% + 3px);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-primary-pale) 100%);
  border: 1.5px solid var(--color-primary);
}
.pricing__footnote span::before {
  left: -10px;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  border-right: 0;
}
.pricing__footnote span::after {
  right: -10px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  border-left: 0;
}

/* 他社比較表 */
.comparison {
  margin-top: 72px;
  padding: 44px 24px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(31, 71, 99, 0.14);
  border: 1.5px solid var(--color-primary-light);
  overflow-x: auto;
  position: relative;
}
.comparison::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><circle cx='20' cy='20' r='18' fill='%23FEFCF7' stroke='%236AACCF' stroke-width='1.5'/><path d='M20 10 L22 18 L30 20 L22 22 L20 30 L18 22 L10 20 L18 18 Z' fill='%236AACCF'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.comparison__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin: 0 0 8px;
}
.comparison__sub {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 32px;
}
.comparison__table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
}
.comparison__table th,
.comparison__table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.comparison__table thead th {
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-bg-soft);
  font-size: 13px;
  padding: 16px 10px;
  border-bottom: 2px solid var(--color-border);
}
.comparison__table thead th.is-ours {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}
.comparison__table thead th.is-ours::before {
  content: "おすすめ";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
}
.comparison__table tbody th {
  text-align: left;
  font-weight: 600;
  background: var(--color-bg-soft);
  color: var(--color-text);
  padding: 14px 16px;
  font-size: 13px;
}
.comparison__table td.is-ours {
  background: var(--color-primary-pale);
  font-weight: 700;
  color: var(--color-accent-deep);
}
.comparison__table .check { color: var(--color-primary); font-size: 18px; font-weight: 700; }
.comparison__table .dash { color: var(--color-text-light); }
.comparison__table .triangle { color: #D4A54A; font-size: 16px; }
.comparison__table tbody tr:last-child th,
.comparison__table tbody tr:last-child td { border-bottom: none; }

.comparison__source {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 16px;
  line-height: 1.7;
}

/* =========================================================
   ⑥ みんなの声
   ========================================================= */
.voice { background: var(--color-bg-soft); }
.voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .voice__grid { grid-template-columns: repeat(3, 1fr); } }

/* 自動横流れカルーセル */
.voice__carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.voice__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: voiceScroll 80s linear infinite;
  will-change: transform;
}
.voice__track:hover,
.voice__track:focus-within {
  animation-play-state: paused;
}
.voice__carousel .voice-card {
  flex: 0 0 320px;
  width: 320px;
  margin-top: 0;
}
@media (min-width: 720px) {
  .voice__carousel .voice-card {
    flex: 0 0 360px;
    width: 360px;
  }
}
@keyframes voiceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
@media (prefers-reduced-motion: reduce) {
  .voice__track {
    animation: none;
    overflow-x: auto;
  }
}
.voice__hint {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.voice-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(31, 71, 99, 0.12);
  text-align: center;
  border: 2px solid var(--color-primary-light);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}
/* 吹き出し風:下にちょこんと三角 */
.voice-card::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 32px;
  width: 26px;
  height: 14px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 20% 100%);
  border-bottom: 2px solid var(--color-primary-light);
  z-index: -1;
}
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 18px;
  font-family: 'Caveat', serif;
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary-light);
  font-weight: 700;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(106, 172, 207, 0.18);
}
.voice-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-warm-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 24px;
  overflow: hidden;
}
.voice-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-card__name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}
.voice-card__genre {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.voice-card__change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}
.voice-card__change .before { color: var(--color-text-light); }
.voice-card__change .arrow { color: var(--color-primary); }
.voice-card__change .after { color: var(--color-accent); font-weight: 700; font-size: 16px; }
.voice-card__period {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: 0.1em;
}
.voice-card__period::before,
.voice-card__period::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--color-border);
  vertical-align: middle;
  margin: 0 8px;
}
.voice-card__comment {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.9;
  text-align: left;
  margin: 0 0 18px;
}
.voice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  padding: 8px 18px;
  background: var(--color-primary-pale);
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}
.voice-card__link svg {
  width: 14px;
  height: 14px;
}
.voice-card__link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.voice-card--placeholder .voice-card__avatar {
  background: var(--color-primary-pale);
}

/* =========================================================
   ⑦ おすすめセクション
   ========================================================= */
.recommend { background: var(--color-bg); }
.recommend__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .recommend__grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.recommend__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #F5EDE0, #E8F3F9);
}
.recommend__image img { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 14px 18px 14px 52px;
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(31, 71, 99, 0.10);
  font-size: 14.5px;
  line-height: 1.75;
  border: 1.5px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text);
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.check-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(31, 71, 99, 0.18);
  border-left-color: var(--color-accent);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><rect x='3' y='3' width='18' height='18' rx='4' fill='%23D6E8F2'/><path d='M7 12.5l3 3 7-7.5' stroke='%233B6F92' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

/* =========================================================
   ⑧ 運営紹介
   ========================================================= */
.management { background: var(--color-bg-soft); }
.management__lead {
  background: var(--color-white);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 6px 20px rgba(106, 172, 207, 0.1);
  border: 1px solid var(--color-primary-light);
  max-width: 820px;
  margin: 0 auto 24px;
  position: relative;
}

/* 写真付きの運営代表ブロック */
.management__lead--with-photo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
}
@media (min-width: 720px) {
  .management__lead--with-photo {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 40px;
  }
}
.management__photo {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: visible;
}
.management__photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 24px rgba(106, 172, 207, 0.25);
  border: 4px solid var(--color-white);
}
.management__photo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), rgba(255, 244, 184, 0.5));
  z-index: -1;
}
.management__photo-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 111, 146, 0.3);
}
.management__content {
  text-align: left;
}
.management__lead--with-photo .management__title {
  font-size: 22px;
  margin-bottom: 12px;
}
.management__lead--with-photo .management__title::before {
  display: none;
}

/* stats を独立化 */
.management__stats {
  background: var(--color-white);
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid var(--color-primary-light);
  box-shadow: 0 6px 20px rgba(106, 172, 207, 0.1);
  max-width: 820px;
  margin: 0 auto 24px;
}
.management__lead:not(.management__lead--with-photo)::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  width: 48px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20' fill='none'><path d='M4 16 Q 15 12, 28 10 Q 42 8, 56 4' stroke='%236AACCF' stroke-width='1.3' stroke-linecap='round' fill='none'/><ellipse cx='18' cy='12' rx='4' ry='2' transform='rotate(-20 18 12)' fill='%23E8F3F9' stroke='%236AACCF' stroke-width='1'/><ellipse cx='32' cy='9' rx='4' ry='2' transform='rotate(-20 32 9)' fill='%23E8F3F9' stroke='%236AACCF' stroke-width='1'/><ellipse cx='46' cy='6' rx='3.5' ry='1.8' transform='rotate(-20 46 6)' fill='%23E8F3F9' stroke='%236AACCF' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.management__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.management__title::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}
.management__body {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}
.management__body strong {
  color: var(--color-accent);
  font-weight: 800;
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
  padding: 0 3px;
}
.management__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .management__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.management__stat {
  text-align: center;
}
.management__stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.management__stat-num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 5'><path d='M3 3 Q 25 2, 50 2.5 T 97 3' stroke='%232D5F82' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.management__stat-num .unit { font-size: 14px; margin-left: 2px; color: var(--color-text-muted); }
.management__stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* =========================================================
   ⑨ FAQ
   ========================================================= */
.faq { background: var(--color-bg); }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(31, 71, 99, 0.08);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(31, 71, 99, 0.15);
  border-color: var(--color-primary);
}
.faq-item[open] {
  box-shadow: 0 10px 28px rgba(31, 71, 99, 0.18);
  border-color: var(--color-primary);
}
.faq-item summary {
  list-style: none;
  padding: 20px 60px 20px 56px;
  cursor: pointer;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.6;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item__answer {
  padding: 0 24px 20px 56px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-muted);
  position: relative;
}
.faq-item__answer::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-warm-beige);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
}
.faq-item__answer strong {
  font-weight: 800;
  color: var(--color-accent);
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
  padding: 0 3px;
}

/* =========================================================
   ⑩ 最終CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(180deg, var(--color-primary-pale) 0%, var(--color-bg) 100%);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.final-cta__image {
  max-width: 760px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #D6E8F2, #F5EDE0);
}
.final-cta__image img { width: 100%; height: 100%; object-fit: cover; }

.final-cta__message {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text);
}
.final-cta__message p { margin: 0 0 24px; }
.final-cta__message strong {
  font-weight: 700;
  color: var(--color-accent);
  background: linear-gradient(transparent 65%, rgba(255, 244, 184, 0.7) 65%);
  padding: 0 2px;
}
.final-cta__highlight {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.7;
  margin: 32px 0;
}
.final-cta__highlight .handwritten {
  font-size: 1.15em;
  color: var(--color-accent-deep);
}

.final-cta__action {
  text-align: center;
  margin-top: 48px;
}
.final-cta__action-note {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ---------- CTA Button ---------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 52px;
  background: linear-gradient(180deg, #3D7AA0 0%, var(--color-accent) 100%);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  box-shadow: 0 10px 28px rgba(31, 71, 99, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-width: 280px;
}
.cta-button::after {
  content: "→";
  font-size: 20px;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  background: var(--color-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 111, 146, 0.4);
}
.cta-button:hover::after { transform: translateX(4px); }

.cta-button--large {
  padding: 22px 56px;
  font-size: 17px;
  min-width: 320px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-soft);
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer__logo img {
  height: 64px;
  width: auto;
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 18px;
}
.footer__links a {
  font-size: 13px;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.footer__links a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.footer__copy {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ---------- Fade-in animation on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 680px) {
  section { padding: 64px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .empathy__grid,
  .recommend__grid { gap: 32px; }
  .cta-button { padding: 16px 32px; min-width: 240px; font-size: 15px; }
  .comparison { padding: 24px 12px; }
  .comparison__table { font-size: 12px; min-width: 560px; }
  .comparison__table th, .comparison__table td { padding: 10px 8px; }
  .feature-card { padding: 22px 18px; }
  .plan-card { padding: 28px 20px; }
  .plan-card__price { font-size: 30px; }
  .worry-list li, .check-list li { font-size: 14px; }
  .faq-item summary { padding: 16px 48px 16px 52px; font-size: 14px; }
  .faq-item__answer { padding: 0 20px 16px 52px; font-size: 13px; }
  .final-cta { padding: 80px 0 64px; }
}
