/* ---- 10-index.css ---- */
/* ==========================================================
   TOP page (index.html) — prefix: .top-
   ========================================================== */

/* ---------- 1. greeting ---------- */
.top-greeting__grid {
  display: grid; grid-template-columns: 42% 1fr; gap: 64px; align-items: center;
}
.top-greeting__photo img {
  border-radius: 28px; box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 20%;
}
.top-greeting__body p { margin-bottom: 18px; }
.top-greeting__lead {
  font-size: 19px; font-weight: 700; color: var(--green-700);
  margin-top: 8px; margin-bottom: 0;
}
.top-greeting__lead .marker { font-weight: 900; }

/* ---------- 2. worries ---------- */
.top-worries__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px;
  max-width: 880px; margin: 0 auto 56px;
}
.top-worries__list li {
  position: relative; padding: 18px 24px 18px 56px; background: var(--white);
  display: flex; align-items: center; min-height: 76px;
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  font-weight: 700; font-size: 16px;
}
.top-worries__list li::before {
  content: ""; position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pink-500);
}
.top-worries__list li::after {
  content: ""; position: absolute; left: 26px; top: 50%; transform: translateY(-65%) rotate(-45deg);
  width: 11px; height: 6px; border-left: 2.5px solid var(--white); border-bottom: 2.5px solid var(--white);
}
.top-worries__voice {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--pink-100); border-radius: 32px; padding: 48px 40px;
}
.top-worries__quote {
  font-size: 21px; font-weight: 900; color: var(--pink-500); margin-bottom: 18px;
}
.top-worries__voice p { max-width: 600px; margin: 0 auto; }
.top-worries__note { margin-top: 26px; font-size: 14.5px; color: var(--ink-light); }

/* ---------- 3. reasons ---------- */
.top-reasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.top-reasons__card { text-align: left; position: relative; padding-top: 44px; }
.top-reasons__num {
  display: block; font-size: 42px; font-weight: 900; font-family: inherit;
  line-height: 1; margin-bottom: 14px; letter-spacing: 0;
}
.top-reasons__card--green .top-reasons__num { color: var(--green-500); }
.top-reasons__card--pink .top-reasons__num { color: var(--pink-500); }
.top-reasons__card h3 { font-size: 18px; margin-bottom: 14px; }
.top-reasons__card p { font-size: 15px; color: var(--ink-light); margin-bottom: 0; }

/* ---------- 4. experience (full-width photo band) ---------- */
.top-experience {
  position: relative; padding: 140px 0; overflow: hidden; color: var(--white);
  isolation: isolate;
}
.top-experience__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.top-experience__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20, 30, 26, 0.5), rgba(20, 30, 26, 0.62));
}
.top-experience__inner { text-align: center; max-width: 760px; }
.top-experience__text {
  font-size: 16.5px; line-height: 2; color: rgba(255, 255, 255, 0.94);
  margin: 0 auto;
}

/* ---------- 5. service ---------- */
.top-service__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; margin-bottom: 56px;
}
.top-service__card { grid-column: span 2; }
.top-service__card:nth-child(4) { grid-column: 2 / 4; }
.top-service__card:nth-child(5) { grid-column: 4 / 6; }
.top-service__card { padding: 0; overflow: hidden; }
.top-service__img { aspect-ratio: 4 / 3; overflow: hidden; }
.top-service__img img { width: 100%; height: 100%; object-fit: cover; }
.top-service__card h3 { font-size: 18px; margin: 24px 28px 12px; }
.top-service__card p { font-size: 15px; color: var(--ink-light); margin: 0 28px 28px; }
.top-service__cta {
  text-align: center; max-width: 700px; margin: 0 auto;
  background: var(--green-100); border-radius: 28px; padding: 40px 36px;
}
.top-service__cta p { margin-bottom: 22px; font-weight: 700; }

/* ---------- 6. voice ---------- */
.top-voice__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 44px; }
.top-voice__tags { display: flex; gap: 8px; margin-bottom: 18px; }
.top-voice__card p { font-size: 15px; margin-bottom: 0; }
.top-voice__more { text-align: center; }

/* ---------- 7. flow ---------- */
.top-flow__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.top-flow__step {
  position: relative; text-align: center; padding: 0 8px;
}
.top-flow__grid::before {
  content: ""; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-200) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.top-flow__num {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; background: var(--green-500); color: var(--white);
  font-size: 20px; font-weight: 900; margin-bottom: 18px; box-shadow: var(--shadow-card);
}
.top-flow__step:nth-child(even) .top-flow__num { background: var(--pink-500); }
.top-flow__step h3 { font-size: 17px; margin-bottom: 10px; }
.top-flow__step p { font-size: 14.5px; color: var(--ink-light); text-align: left; }
.top-flow__step small { color: var(--ink-light); }

/* ---------- 8. faq ---------- */
.top-faq__more { text-align: center; margin-top: 32px; }

/* ---------- 9. blog ---------- */
.top-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.top-blog__card { padding: 0; overflow: hidden; display: block; color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.top-blog__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.top-blog__img { aspect-ratio: 4 / 3; overflow: hidden; }
.top-blog__img img { width: 100%; height: 100%; object-fit: cover; }
.top-blog__card .pill { margin: 22px 0 0 24px; }
.top-blog__date { font-size: 13px; color: var(--ink-light); margin: 12px 24px 6px; }
.top-blog__card h3 { font-size: 16.5px; margin: 0 24px 26px; line-height: 1.7; }
.top-blog__more { text-align: center; }

/* ---------- 10. sns ---------- */
.top-sns__insta { max-width: 540px; margin: 0 auto 48px; min-height: 200px; }
.top-sns__buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.top-sns__buttons a {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 96px; font-size: 13px; font-weight: 700; color: var(--ink);
}
.top-sns__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-100); transition: background 0.2s, transform 0.2s;
}
.top-sns__icon svg { width: 28px; height: 28px; fill: var(--green-600); }
.top-sns__icon--line { background: var(--pink-100); }
.top-sns__icon--line svg { fill: var(--pink-500); }
.top-sns__buttons a:hover .top-sns__icon { transform: translateY(-3px); background: var(--green-200); }

/* ==========================================================
   responsive
   ========================================================== */
@media (max-width: 1080px) {
  .top-service__grid { grid-template-columns: repeat(4, 1fr); }
  .top-service__card:nth-child(4) { grid-column: 1 / 3; }
  .top-service__card:nth-child(5) { grid-column: 3 / 5; }
  .top-voice__grid { grid-template-columns: repeat(2, 1fr); }
  .top-flow__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .top-flow__grid::before { display: none; }
  .top-blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-greeting__grid { grid-template-columns: 1fr; gap: 32px; }
  .top-greeting__photo img { aspect-ratio: 16 / 10; }

  .top-worries__list { grid-template-columns: 1fr; gap: 14px; }
  .top-worries__voice { padding: 32px 22px; }
  .top-worries__quote { font-size: 18px; }

  .top-reasons__grid { grid-template-columns: 1fr; gap: 20px; }

  .top-experience { padding: 88px 0; }

  .top-service__grid { grid-template-columns: 1fr; gap: 20px; }
  .top-service__card, .top-service__card:nth-child(4), .top-service__card:nth-child(5) { grid-column: auto; }
  .top-service__cta { padding: 32px 22px; }

  .top-voice__grid { grid-template-columns: 1fr; gap: 20px; }

  .top-flow__grid { grid-template-columns: 1fr; gap: 28px; }

  .top-blog__grid { grid-template-columns: 1fr; gap: 20px; }

  .top-sns__buttons a { width: 80px; }
  .top-sns__icon { width: 56px; height: 56px; }
}

/* Instagram埋め込みの320px幅オーバーフロー対策 (embed.jsがmin-width:326pxを強制するため) */
.top-sns__insta { overflow-x: hidden; }
.top-sns__insta .instagram-media { width: 100% !important; min-width: 0 !important; max-width: 540px !important; margin: 0 auto !important; }

/* ---- 20-about.css ---- */
/* ==========================================================
   about.html (私たちについて) — prefix .ab-
   ========================================================== */

/* ---- ごあいさつ ---- */
.ab-greeting-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center;
}
.ab-greeting-visual { position: relative; }
.ab-greeting-num {
  position: absolute; top: -28px; left: -18px; font-size: 96px; font-weight: 900;
  color: var(--green-100); line-height: 1; z-index: 0; letter-spacing: 0;
}
.ab-greeting-photo {
  position: relative; z-index: 1; border-radius: 32px 32px 32px 6px;
  overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4 / 5;
}
.ab-greeting-photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-greeting-copy .en {
  display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--pink-500); text-transform: uppercase; margin-bottom: 10px;
}
.ab-greeting-title { font-size: 30px; margin-bottom: 26px; }
.ab-greeting-copy p { margin-bottom: 18px; }
.ab-greeting-emphasis { margin-top: 8px; font-size: 19px; font-weight: 700; color: var(--green-700); }

/* ---- 大切にしていること ---- */
.ab-values-list { display: grid; gap: 28px; max-width: 900px; margin: 0 auto; }
.ab-value-row {
  display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: center;
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); padding: 36px 40px;
}
.ab-value-row--rev { grid-template-columns: 1fr 96px; }
.ab-value-row--rev .ab-value-num { order: 2; }
.ab-value-row--rev .ab-value-body { order: 1; }
.ab-value-num {
  font-size: 46px; font-weight: 900; color: var(--green-500);
  text-align: center; line-height: 1;
}
.ab-value-num--pink { color: var(--pink-500); }
.ab-value-body h3 { font-size: 19px; color: var(--ink); margin-bottom: 12px; }
.ab-value-body p { font-size: 15.5px; color: var(--ink-light); }

/* ---- 私たちの想い ---- */
.ab-heart-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.ab-heart-copy .en {
  display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--pink-500); text-transform: uppercase; margin-bottom: 10px;
}
.ab-heart-title { font-size: 30px; margin-bottom: 22px; }
.ab-heart-lead { font-size: 19px; font-weight: 700; color: var(--green-700); margin-bottom: 18px; }
.ab-heart-copy p { margin-bottom: 14px; color: var(--ink-light); }
.ab-heart-visual { position: relative; }
.ab-heart-photo {
  border-radius: 6px 32px 32px 32px; overflow: hidden;
  box-shadow: var(--shadow-soft); aspect-ratio: 4 / 5;
}
.ab-heart-photo img { width: 100%; height: 100%; object-fit: cover; }
.ab-heart-deco {
  position: absolute; bottom: -24px; right: -24px; width: 110px; height: 110px;
  border-radius: 50%; background: var(--pink-100); z-index: -1;
}

/* ---- お気軽にご相談ください ---- */
.ab-invite {
  max-width: 700px; margin: 0 auto; text-align: center; font-size: 16px; color: var(--ink);
}

/* ==========================================================
   responsive
   ========================================================== */
@media (max-width: 900px) {
  .ab-greeting-grid,
  .ab-heart-grid { grid-template-columns: 1fr; gap: 32px; }
  .ab-greeting-num { font-size: 64px; top: -18px; left: -10px; }
  .ab-value-row,
  .ab-value-row--rev { grid-template-columns: 64px 1fr; gap: 20px; padding: 28px 24px; }
  .ab-value-row--rev .ab-value-num { order: 0; }
  .ab-value-row--rev .ab-value-body { order: 0; }
  .ab-value-num { font-size: 34px; }
  .ab-greeting-title,
  .ab-heart-title { font-size: 24px; }
}

/* ---- 21-worries.css ---- */
/* ==========================================================
   worries.html (お子さま・保護者のお悩み) — prefix .wo-
   ========================================================== */

.wo-lead-text {
  max-width: 760px; margin: -12px auto 0; text-align: center; font-size: 16px;
}

/* ---- お悩みチェック ---- */
.wo-check-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 920px; margin: 0 auto;
}
.wo-check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-card);
  padding: 24px 26px; font-size: 15.5px; line-height: 1.8;
}
.wo-check-mark {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-500); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
}

/* ---- 一人ひとりに合わせたサポート ---- */
.wo-support-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.wo-support-visual img {
  border-radius: 28px; box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3.2; object-fit: cover;
}
.wo-support-copy .en {
  display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--pink-500); text-transform: uppercase; margin-bottom: 10px;
}
.wo-support-title { font-size: 28px; margin-bottom: 22px; }
.wo-support-copy p { margin-bottom: 16px; color: var(--ink-light); }

/* ---- 引用ブロック ---- */
.wo-quote-sec { text-align: center; }
.wo-quote {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-soft);
  max-width: 640px; margin: 0 auto 32px; padding: 44px 40px; position: relative;
}
.wo-quote::before {
  content: "\201C"; position: absolute; top: -6px; left: 24px; font-size: 72px;
  font-weight: 900; color: var(--pink-400); line-height: 1; font-family: Georgia, serif;
}
.wo-quote-text { font-size: 22px; font-weight: 700; color: var(--green-700); margin-bottom: 10px; }
.wo-quote-sub { font-size: 14.5px; color: var(--ink-light); }
.wo-quote-body { max-width: 640px; margin: 0 auto; font-size: 15.5px; color: var(--ink-light); }

/* ---- まずはお気軽にご相談ください ---- */
.wo-invite-text {
  max-width: 680px; margin: 0 auto; text-align: center; font-size: 16px;
}

/* ==========================================================
   responsive
   ========================================================== */
@media (max-width: 768px) {
  .wo-check-list { grid-template-columns: 1fr; }
  .wo-support-grid { grid-template-columns: 1fr; gap: 28px; }
  .wo-support-title { font-size: 23px; }
  .wo-quote { padding: 32px 24px; }
  .wo-quote-text { font-size: 19px; }
}

/* ---- 22-voice.css ---- */
/* ==========================================================
   voice.html (サポート事例・保護者の声) — prefix .vc-
   ========================================================== */

.vc-lead-text {
  max-width: 760px; margin: -12px auto 0; text-align: center; font-size: 16px;
}

/* ---- サポート事例 ---- */
.vc-case-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vc-case {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 34px 30px;
}
.vc-case-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.vc-case-no { font-size: 13px; font-weight: 900; letter-spacing: 0.12em; color: var(--green-500); }
.vc-case .pill { width: fit-content; }
.vc-case p { font-size: 15px; color: var(--ink-light); }

/* ---- 保護者の声 ---- */
.vc-voice-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vc-voice {
  background: var(--pink-100); border-radius: var(--radius-card);
  padding: 32px 28px; position: relative;
}
.vc-voice::before {
  content: "\201C"; position: absolute; top: 6px; left: 20px; font-size: 54px;
  font-weight: 900; color: var(--pink-400); line-height: 1; font-family: Georgia, serif;
}
.vc-voice-title { font-size: 16px; font-weight: 700; color: var(--ink); margin: 20px 0 12px; }
.vc-voice-body { font-size: 14.5px; color: var(--ink-light); }

/* ---- あなたも、一人で悩まないでください ---- */
.vc-invite-text {
  max-width: 700px; margin: 0 auto; text-align: center; font-size: 16px;
}

/* ==========================================================
   responsive
   ========================================================== */
@media (max-width: 900px) {
  .vc-case-list,
  .vc-voice-list { grid-template-columns: 1fr; }
}

/* ---- 30-service.css ---- */
/* ==========================================================
   service.html (サービス内容・料金) — prefix: .sv-
   ========================================================== */

.sv-lead-sec { padding-bottom: 8px; text-align: center; }
.sv-lead {
  font-size: 24px; font-weight: 700; line-height: 1.8; color: var(--ink);
  max-width: 760px; margin: 0 auto 20px;
}
.sv-lead-sub {
  font-size: 15.5px; color: var(--ink-light); max-width: 720px; margin: 0 auto;
}
.sv-br-sp { display: none; }

/* ---- service list ---- */
.sv-list { display: grid; gap: 40px; margin-top: 8px; }
.sv-item {
  display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center;
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); overflow: hidden; padding: 20px;
}
.sv-item--rev { grid-template-columns: 1fr 320px; }
.sv-item--rev .sv-item-img { order: 2; }
.sv-item-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.sv-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sv-item-body { padding: 8px 20px 8px 4px; }
.sv-item--rev .sv-item-body { padding: 8px 4px 8px 20px; }
.sv-item-body .pill { margin-bottom: 12px; }
.sv-item-body h3 { font-size: 21px; margin-bottom: 12px; }
.sv-item-body p { font-size: 15px; color: var(--ink-light); }

/* ---- price ---- */
.sv-price-entry {
  display: flex; align-items: baseline; justify-content: center; gap: 16px;
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 32px; max-width: 480px; margin: 0 auto 40px; text-align: center;
}
.sv-price-entry-label {
  font-size: 15px; font-weight: 700; color: var(--green-700);
  background: var(--green-100); border-radius: var(--radius-pill); padding: 8px 20px;
}
.sv-price-entry-value { font-size: 40px; font-weight: 900; color: var(--orange-600); }
.sv-price-entry-value small { font-size: 15px; font-weight: 700; color: var(--ink); margin-left: 4px; }

.sv-table-wrap {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 32px; max-width: 640px; margin: 0 auto 40px;
}
.sv-table { width: 100%; border-collapse: collapse; }
.sv-table th, .sv-table td { padding: 14px 12px; text-align: center; font-size: 15.5px; }
.sv-table thead th {
  background: var(--green-100); color: var(--green-700); font-weight: 700;
  border-radius: 10px 10px 0 0;
}
.sv-table tbody tr { border-bottom: 1px solid var(--green-100); }
.sv-table tbody tr:last-child { border-bottom: none; }
.sv-table tbody td:last-child { font-weight: 700; color: var(--ink); }
.sv-table-note { font-size: 13px; color: var(--ink-light); text-align: center; margin-top: 16px; }

.sv-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px;
  margin: 0 auto 40px;
}
.sv-info-card {
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-card);
  padding: 24px 22px; text-align: center;
}
.sv-info-label {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--pink-500);
  margin-bottom: 10px; letter-spacing: 0.04em;
}
.sv-info-card p { font-size: 14.5px; color: var(--ink); }

.sv-highlight-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto;
}
.sv-highlight {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-soft);
  padding: 32px 28px; text-align: center;
}
.sv-highlight .pill { margin-bottom: 16px; }
.sv-highlight-main { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.sv-highlight-main strong { color: var(--orange-600); font-size: 24px; }
.sv-highlight-sub { font-size: 13.5px; color: var(--ink-light); }

/* ---- area ---- */
.sv-area-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 8px 0 20px; }
.sv-area-list .pill { font-size: 15px; padding: 8px 24px; }
.sv-area-note { text-align: center; font-size: 13.5px; color: var(--ink-light); }

/* ---- recommend check list ---- */
.sv-check-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto;
}
.sv-check-list li {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-card);
  padding: 20px 24px 20px 52px; font-size: 15.5px; font-weight: 700; position: relative;
}
.sv-check-list li::before {
  content: ""; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%; background: var(--green-500);
}
.sv-check-list li::after {
  content: ""; position: absolute; left: 27px; top: 50%; transform: translateY(-64%) rotate(-45deg);
  width: 10px; height: 5px; border-left: 2px solid var(--white); border-bottom: 2px solid var(--white);
}

/* ==========================================================
   responsive
   ========================================================== */
@media (max-width: 900px) {
  .sv-item, .sv-item--rev { grid-template-columns: 1fr; }
  .sv-item--rev .sv-item-img { order: 0; }
  .sv-item-body, .sv-item--rev .sv-item-body { padding: 4px 8px; }
  .sv-info-grid { grid-template-columns: 1fr 1fr; }
  .sv-highlight-grid { grid-template-columns: 1fr; }
  .sv-check-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sv-br-sp { display: inline; }
  .sv-lead { font-size: 20px; }
  .sv-info-grid { grid-template-columns: 1fr; }
  .sv-price-entry { flex-direction: column; gap: 8px; padding: 24px; }
  .sv-price-entry-value { font-size: 32px; }
}

/* ---- 31-flow.css ---- */
/* ==========================================================
   flow.html (ご利用の流れ) — prefix: .fl-
   ========================================================== */

.fl-lead-sec { padding-bottom: 8px; text-align: center; }
.fl-lead {
  font-size: 24px; font-weight: 700; line-height: 1.8; color: var(--ink);
  max-width: 760px; margin: 0 auto 20px;
}
.fl-lead-sub {
  font-size: 15.5px; color: var(--ink-light); max-width: 720px; margin: 0 auto;
}

/* ---- vertical timeline ---- */
.fl-timeline {
  position: relative; max-width: 880px; margin: 0 auto;
  display: grid; gap: 56px;
}
.fl-timeline::before {
  content: ""; position: absolute; top: 40px; bottom: 40px; left: 40px;
  width: 3px; background: repeating-linear-gradient(to bottom, var(--green-200) 0 10px, transparent 10px 18px);
}
.fl-step { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; }
.fl-step--rev { grid-template-columns: 80px 1fr 220px; }

.fl-step-num {
  position: relative; z-index: 1; width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-500); color: var(--white); box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; flex: none;
}
.fl-step:nth-of-type(even) .fl-step-num,
.fl-step.fl-step--rev .fl-step-num { background: var(--pink-500); }

.fl-step-body {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 28px 30px; margin-top: 4px;
}
.fl-step-body h3 { font-size: 21px; margin-bottom: 12px; }
.fl-step-body p { font-size: 15px; color: var(--ink-light); }
.fl-step-body .fl-note { font-size: 13px; color: var(--pink-500); font-weight: 700; margin-top: 10px; }

.fl-step-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; margin-top: 4px; }
.fl-step-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---- note box ---- */
.fl-note-box {
  background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-soft);
  max-width: 760px; margin: 0 auto; padding: 40px 36px; text-align: center;
}
.fl-note-box .pill { margin-bottom: 18px; }
.fl-note-box p { font-size: 15.5px; color: var(--ink); margin-bottom: 10px; }
.fl-note-box p:last-child { margin-bottom: 0; }

/* ==========================================================
   responsive
   ========================================================== */
@media (max-width: 860px) {
  .fl-step, .fl-step--rev { grid-template-columns: 64px 1fr; }
  .fl-step-img { grid-column: 2 / 3; margin-top: 16px; }
  .fl-timeline::before { left: 32px; }
  .fl-step-num { width: 64px; height: 64px; font-size: 21px; }
}
@media (max-width: 600px) {
  .fl-lead { font-size: 19px; }
  .fl-step-body { padding: 22px 20px; }
  .fl-note-box { padding: 28px 22px; }
}

/* 画像列をテキストカードと同じ高さにストレッチ(高さ不揃い対策) */
.fl-step--rev .fl-step-img { aspect-ratio: auto; align-self: stretch; min-height: 180px; position: relative; }
.fl-step--rev .fl-step-img img { position: absolute; inset: 0; }
@media (max-width: 860px) {
  .fl-step--rev .fl-step-img { aspect-ratio: 4 / 3; align-self: auto; min-height: 0; position: static; }
  .fl-step--rev .fl-step-img img { position: static; }
}

/* ---- 32-faq.css ---- */
/* ==========================================================
   faq.html (よくある質問) — prefix: .fq-
   ========================================================== */

.fq-lead-sec { padding-bottom: 8px; text-align: center; }
.fq-lead {
  font-size: 16px; color: var(--ink-light); max-width: 640px; margin: 0 auto;
}

@media (max-width: 600px) {
  .fq-lead { font-size: 14.5px; }
}

/* ---- 40-blog.css ---- */
/* ---- blog.html (コラム・活動ブログ) ---- */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.bl-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.bl-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.bl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bl-card:hover .bl-thumb img { transform: scale(1.05); }
.bl-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bl-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl-date {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 700;
}
.bl-title {
  font-size: 17.5px;
  line-height: 1.6;
}
.bl-title a {
  color: var(--ink);
}
.bl-title a:hover {
  color: var(--green-600);
}
.bl-excerpt {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.85;
}
.bl-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 40px;
}

@media (max-width: 900px) {
  .bl-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .bl-grid { grid-template-columns: 1fr; }
}

/* ---- 41-company.css ---- */
/* ---- company.html (運営案内) ---- */
.cp-greeting {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.cp-greeting-photo { display: flex; justify-content: center; }
.cp-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--green-100);
  border: 2px dashed var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green-700);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
}
.cp-greeting-text p {
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 2;
}
.cp-greeting-text p:last-child { margin-bottom: 0; }

.cp-table {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cp-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--green-100);
}
.cp-row:last-child { border-bottom: none; }
.cp-row dt {
  padding: 22px 28px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 15px;
}
.cp-row dd {
  padding: 22px 28px;
  font-size: 15.5px;
  line-height: 1.8;
}
.cp-row dd a { color: var(--green-600); font-weight: 700; }

@media (max-width: 768px) {
  .cp-greeting { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .cp-greeting-text { text-align: left; }
  .cp-row { grid-template-columns: 1fr; }
  .cp-row dt { padding: 14px 20px; }
  .cp-row dd { padding: 16px 20px; }
}

/* ---- 42-contact.css ---- */
/* ---- contact.html (お問い合わせ/プライバシーポリシー) ---- */

.ct-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

/* 安心感バナー */
.ct-reassure {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pink-100);
  border-radius: var(--radius-card);
  padding: 20px 26px;
  margin-bottom: 32px;
}
.ct-reassure-icon { font-size: 26px; flex: none; }
.ct-reassure p {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pink-500);
  line-height: 1.7;
}

/* フォーム */
.ct-form {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 40px 44px;
  display: grid;
  gap: 26px;
}
.ct-field { display: grid; gap: 10px; }
.ct-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.ct-req, .ct-opt {
  display: inline-block;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 14px;
  flex: none;
}
.ct-req { background: var(--pink-500); color: var(--white); }
.ct-opt { background: var(--green-100); color: var(--green-700); }

.ct-field input[type="text"],
.ct-field input[type="tel"],
.ct-field input[type="email"],
.ct-field select,
.ct-field textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--green-200);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--ink-light); opacity: 0.7; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(20, 163, 144, 0.12);
}
.ct-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d8a7a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 22px;
  padding-right: 48px;
}
.ct-field textarea { resize: vertical; min-height: 160px; line-height: 1.8; }

.ct-privacy-check { margin-top: 4px; }
.ct-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  cursor: pointer;
}
.ct-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex: none;
  accent-color: var(--green-500);
  cursor: pointer;
}
.ct-check a { color: var(--green-600); font-weight: 700; text-decoration: underline; }

.ct-submit { width: 100%; margin-top: 4px; }
.ct-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-light);
  margin-top: -8px;
}

.ct-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--ink-light);
  font-size: 13px;
}
.ct-or::before, .ct-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--green-200);
}
.ct-line-btn { width: 100%; }

/* サイドバー */
.ct-side { display: grid; gap: 20px; }
.ct-side-card {
  background: var(--green-100);
  border-radius: var(--radius-card);
  padding: 28px 26px;
}
.ct-side-card h3 { font-size: 16px; margin-bottom: 12px; color: var(--green-700); }
.ct-side-card p { font-size: 14px; line-height: 1.85; color: var(--ink); }
.ct-tel-num { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.ct-tel-num a { color: var(--green-700); }
.ct-side-note { font-size: 13px; color: var(--ink-light); }

/* プライバシーポリシー本文 */
.ct-privacy-body {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 44px 48px;
}
.ct-privacy-body p { font-size: 15px; line-height: 1.95; margin-bottom: 20px; }
.ct-privacy-body h3 {
  font-size: 16.5px;
  color: var(--green-700);
  margin: 32px 0 14px;
}
.ct-privacy-body h3:first-child { margin-top: 0; }
.ct-privacy-date {
  text-align: right;
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .ct-wrap { grid-template-columns: 1fr; }
  .ct-form { padding: 32px 24px 36px; }
  .ct-privacy-body { padding: 32px 24px; }
}
