@charset "UTF-8";
/* =====================================================
   保育所等訪問支援MUJAキッズ
   コンセプト：「可愛くて、思わずボタンを押したくなる」
   ・温かみのあるアイボリー背景 × パステルカラー
   ・マシュマロのようにぷっくりした丸ボタン
   ・押すと沈み込むマイクロインタラクション
   ===================================================== */

:root {
  /* ベース */
  --ivory: #FFF9F0;        /* 温かみのあるオフホワイト */
  --ivory-deep: #FBF1E2;   /* セクション切り替え用 */
  --white: #FFFFFF;
  --ink: #4E463C;          /* 焦げ茶系の文字色 */
  --ink-soft: #7C7264;

  /* パステル */
  --pink: #F9CBD6;   --pink-deep: #E8899F;  --pink-shadow: #E9AFBE;
  --mint: #C2E7D9;   --mint-deep: #4FA98C;  --mint-shadow: #9DD2C0;
  --yellow: #FCE8AC; --yellow-deep: #D9A93C; --yellow-shadow: #EBD18A;
  --sky: #C7E2F6;    --sky-deep: #5C97C9;   --sky-shadow: #A4CBE8;
  --orange: #F0A73E;

  --radius-l: 28px;
  --radius-m: 20px;
  --shadow-soft: 0 10px 30px rgba(120, 96, 60, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  background: var(--ivory);
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--mint-deep); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 240, 0.94);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1360px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-logo { width: 116px; height: auto; }
.brand-chip {
  background: var(--mint); color: #2E6B57; font-size: 12.5px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.04em; white-space: nowrap;
}
.global-nav { display: flex; align-items: center; gap: 6px; }
.global-nav a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 700;
  padding: 9px 14px; border-radius: 999px; transition: background 0.2s, transform 0.15s;
}
.global-nav a:hover { background: var(--yellow); transform: translateY(-1px); }
.global-nav .nav-official {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint-deep); color: #fff; padding: 10px 18px;
  box-shadow: 0 4px 0 #3D8A71, 0 8px 16px rgba(79,169,140,0.35);
}
.global-nav .nav-official:hover { background: #459A7E; transform: translateY(-1px); }
.global-nav .nav-official:active { transform: translateY(3px); box-shadow: 0 1px 0 #3D8A71; }
.nav-toggle { display: none; }
.pastel-bar {
  height: 6px;
  background: linear-gradient(90deg,
    var(--pink) 0 25%, var(--yellow) 25% 50%, var(--mint) 50% 75%, var(--sky) 75% 100%);
}

/* ---------- ぷっくりボタン（マシュマロUI） ---------- */
.puffy-btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; text-decoration: none; text-align: center;
  min-width: 220px; padding: 20px 34px 22px;
  border-radius: 32px; position: relative;
  transition: transform 0.16s cubic-bezier(.34,1.56,.64,1), box-shadow 0.16s ease;
  will-change: transform;
}
.puffy-icon { line-height: 1; margin-bottom: 4px; }
.puffy-label { font-size: 18px; font-weight: 900; letter-spacing: 0.05em; line-height: 1.4; }
.puffy-sub { font-size: 11.5px; font-weight: 700; opacity: 0.75; line-height: 1.4; }

.puffy-pink {
  background: var(--pink); color: #A14D63;
  box-shadow: 0 6px 0 var(--pink-shadow), 0 16px 30px rgba(232,137,159,0.35),
              inset 0 2px 0 rgba(255,255,255,0.7);
}
.puffy-mint {
  background: var(--mint); color: #2E6B57;
  box-shadow: 0 6px 0 var(--mint-shadow), 0 16px 30px rgba(79,169,140,0.30),
              inset 0 2px 0 rgba(255,255,255,0.7);
}
.puffy-yellow {
  background: var(--yellow); color: #8A6A1B;
  box-shadow: 0 6px 0 var(--yellow-shadow), 0 16px 30px rgba(217,169,60,0.30),
              inset 0 2px 0 rgba(255,255,255,0.7);
}
.puffy-sky {
  background: var(--sky); color: #3D6E99;
  box-shadow: 0 6px 0 var(--sky-shadow), 0 16px 30px rgba(92,151,201,0.30),
              inset 0 2px 0 rgba(255,255,255,0.7);
}
.puffy-btn:hover { transform: translateY(-3px) scale(1.02); }
.puffy-pink:hover  { box-shadow: 0 9px 0 var(--pink-shadow), 0 20px 36px rgba(232,137,159,0.42), inset 0 2px 0 rgba(255,255,255,0.7); }
.puffy-mint:hover  { box-shadow: 0 9px 0 var(--mint-shadow), 0 20px 36px rgba(79,169,140,0.36), inset 0 2px 0 rgba(255,255,255,0.7); }
.puffy-yellow:hover{ box-shadow: 0 9px 0 var(--yellow-shadow), 0 20px 36px rgba(217,169,60,0.36), inset 0 2px 0 rgba(255,255,255,0.7); }
.puffy-sky:hover   { box-shadow: 0 9px 0 var(--sky-shadow), 0 20px 36px rgba(92,151,201,0.36), inset 0 2px 0 rgba(255,255,255,0.7); }
.puffy-btn:active { transform: translateY(5px) scale(0.99); }
.puffy-pink:active  { box-shadow: 0 1px 0 var(--pink-shadow), 0 6px 12px rgba(232,137,159,0.30), inset 0 2px 4px rgba(161,77,99,0.15); }
.puffy-mint:active  { box-shadow: 0 1px 0 var(--mint-shadow), 0 6px 12px rgba(79,169,140,0.25), inset 0 2px 4px rgba(46,107,87,0.15); }
.puffy-yellow:active{ box-shadow: 0 1px 0 var(--yellow-shadow), 0 6px 12px rgba(217,169,60,0.25), inset 0 2px 4px rgba(138,106,27,0.15); }
.puffy-sky:active   { box-shadow: 0 1px 0 var(--sky-shadow), 0 6px 12px rgba(92,151,201,0.25), inset 0 2px 4px rgba(61,110,153,0.15); }

/* ---------- ヒーロー ---------- */
.hero { position: relative; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.55; }
.blob-a { width: 380px; height: 380px; background: var(--yellow); top: -140px; right: -90px; }
.blob-b { width: 260px; height: 260px; background: var(--pink); bottom: -100px; left: -70px; }
.blob-c { width: 150px; height: 150px; background: var(--sky); top: 40%; left: 44%; opacity: 0.35; }
.hero-inner {
  position: relative; max-width: 1180px; margin: 0 auto;
  padding: 64px 20px 80px;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center;
}
.hero-lead {
  display: flex; align-items: center; gap: 8px;
  color: #B07A18; font-weight: 700; font-size: 15px; margin-bottom: 12px;
}
.hero h1 {
  font-size: 44px; line-height: 1.55; font-weight: 900; letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero h1 .marker {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 2px;
}
.sp-only { display: none; }
.hero-sub { color: var(--ink-soft); margin-bottom: 34px; max-width: 34em; }
.hero-actions { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; color: var(--ink-soft); }

.hero-photo { position: relative; }
.photo-frame {
  border-radius: 36% 64% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden; border: 10px solid var(--white);
  box-shadow: var(--shadow-soft), 0 24px 50px rgba(120,96,60,0.16);
  animation: blobmorph 14s ease-in-out infinite alternate;
}
@keyframes blobmorph {
  0%   { border-radius: 36% 64% 55% 45% / 45% 40% 60% 55%; }
  100% { border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%; }
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-badge {
  position: absolute; bottom: 14px; left: 6px;
  display: flex; align-items: center; gap: 8px;
  background: var(--mint-deep); color: #fff;
  padding: 12px 18px; border-radius: 22px;
  font-size: 12.5px; font-weight: 700; line-height: 1.5;
  box-shadow: 0 5px 0 #3D8A71, 0 14px 26px rgba(79,169,140,0.4);
  transform: rotate(-3deg);
}

/* ---------- セクション共通 ---------- */
.section { padding: 88px 0; }
.section-tint { background: var(--ivory-deep); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.sec-chip {
  width: fit-content; margin: 0 auto 10px; padding: 5px 20px;
  border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
}
.chip-pink { background: var(--pink); color: #A14D63; }
.chip-mint { background: var(--mint); color: #2E6B57; }
.chip-yellow { background: var(--yellow); color: #8A6A1B; }
.chip-sky { background: var(--sky); color: #3D6E99; }
h2 {
  text-align: center; font-size: 33px; font-weight: 900; letter-spacing: 0.05em;
  margin-bottom: 20px; position: relative; padding-bottom: 20px;
}
h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 70px; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--pink) 0 33%, var(--yellow) 33% 66%, var(--mint) 66% 100%);
}
.sec-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; color: var(--ink-soft); }
.sec-intro strong { color: var(--mint-deep); }

/* ---------- カード ---------- */
.card-grid { display: grid; gap: 26px; margin-bottom: 58px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius-l);
  padding: 34px 26px 28px; text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(120,96,60,0.14); }
.card-icon {
  width: 84px; height: 84px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.icon-pink { background: var(--pink); color: #A14D63; }
.icon-mint { background: var(--mint); color: #2E6B57; }
.icon-sky  { background: var(--sky);  color: #3D6E99; }
.card h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--ink-soft); text-align: left; line-height: 1.9; }

/* ---------- 対象・訪問先 ---------- */
.target-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--white); border-radius: var(--radius-l);
  padding: 40px 38px; box-shadow: var(--shadow-soft);
}
.mini-heading {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 900; margin-bottom: 14px;
}
.dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.dot-pink { background: var(--pink-deep); }
.dot-mint { background: var(--mint-deep); }
.check-list { list-style: none; }
.check-list li {
  position: relative; padding: 6px 0 6px 32px; font-size: 15px;
}
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 15px; height: 8px; border-left: 3.5px solid var(--pink-deep); border-bottom: 3.5px solid var(--pink-deep);
  border-radius: 1px; transform: rotate(-45deg);
}
.place-list { list-style: none; }
.place-list li {
  display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 15px;
  border-bottom: 2px dotted #EADFCC;
}
.place-list li:last-child { border-bottom: none; }
.place-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 14px;
  background: var(--mint); color: #2E6B57;
  display: flex; align-items: center; justify-content: center;
}
.place-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; }

/* ---------- 特長（写真つき） ---------- */
.feature-list { display: flex; flex-direction: column; gap: 40px; }
.feature-item {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: center;
  background: var(--white); border-radius: var(--radius-l); padding: 30px;
  box-shadow: var(--shadow-soft);
}
.feature-item.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-item.reverse .feature-photo { order: 2; }
.feature-item.reverse .feature-text { order: 1; }
.feature-photo { position: relative; }
.feature-photo img {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-m);
}
.feature-badge {
  position: absolute; top: -14px; left: -10px;
  padding: 7px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 900; letter-spacing: 0.12em;
  transform: rotate(-4deg); box-shadow: 0 6px 14px rgba(120,96,60,0.18);
}
.badge-pink { background: var(--pink-deep); color: #fff; }
.badge-mint { background: var(--mint-deep); color: #fff; }
.badge-sky  { background: var(--sky-deep);  color: #fff; }
.feature-text h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; line-height: 1.6; }
.feature-text p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- 流れ ---------- */
.flow-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.flow-step {
  background: var(--white); border-radius: var(--radius-l); padding: 30px 24px 26px;
  box-shadow: var(--shadow-soft); text-align: left;
  transition: transform 0.2s ease;
}
.flow-step:hover { transform: translateY(-4px); }
.flow-icon {
  width: 64px; height: 64px; border-radius: 20px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.fs-pink { background: var(--pink); color: #A14D63; }
.fs-mint { background: var(--mint); color: #2E6B57; }
.fs-yellow { background: var(--yellow); color: #8A6A1B; }
.fs-sky { background: var(--sky); color: #3D6E99; }
.flow-step h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; }
.flow-step h3 span {
  display: block; font-size: 11.5px; color: var(--orange); font-weight: 700;
  letter-spacing: 0.18em; margin-bottom: 2px;
}
.flow-step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- スタッフの1日 ---------- */
.routine-photo { max-width: 760px; margin: 0 auto 46px; }
.routine-photo img {
  display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
  border-radius: var(--radius-l); border: 8px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 70px; top: 12px; bottom: 12px;
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--pink) 0%, var(--yellow) 33%, var(--mint) 66%, var(--sky) 100%);
}
.tl-item { display: flex; gap: 34px; padding: 14px 0; position: relative; }
.tl-time {
  flex-shrink: 0; width: 56px; text-align: right; font-weight: 900; color: var(--ink);
  font-size: 16.5px;
}
.tl-item::after {
  content: ""; position: absolute; left: 63px; top: 24px;
  box-sizing: border-box; width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 5px solid var(--orange);
}
.tl-item:nth-child(4n+1)::after { border-color: var(--pink-deep); }
.tl-item:nth-child(4n+2)::after { border-color: var(--yellow-deep); }
.tl-item:nth-child(4n+3)::after { border-color: var(--mint-deep); }
.tl-item:nth-child(4n+4)::after { border-color: var(--sky-deep); }
.tl-body {
  background: var(--white); border-radius: var(--radius-m); padding: 18px 26px; flex: 1;
  box-shadow: var(--shadow-soft);
}
.tl-body h3 { font-size: 16.5px; font-weight: 900; margin-bottom: 4px; }
.tl-body p { font-size: 14px; color: var(--ink-soft); }

/* ---------- 料金 ---------- */
.price-table-wrap, .overview-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%; max-width: 720px; margin: 0 auto 26px; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.price-table th, .price-table td { padding: 16px 22px; font-size: 15px; }
.price-table thead th {
  background: var(--yellow); color: #8A6A1B; font-weight: 900; letter-spacing: 0.06em; text-align: left;
}
.price-table tbody tr:nth-child(even) { background: #FFFDF7; }
.price-table tbody tr + tr td { border-top: 2px dotted #F0E5CF; }
.price-num { text-align: right; font-weight: 900; color: #B07A18; font-size: 18px; white-space: nowrap; }
.price-notes { max-width: 720px; margin: 0 auto; list-style: none; }
.price-notes li {
  font-size: 13.5px; color: var(--ink-soft); padding: 4px 0 4px 22px; position: relative;
}
.price-notes li::before { content: "※"; position: absolute; left: 0; color: var(--orange); }

/* ---------- 概要 ---------- */
.overview-table {
  width: 100%; max-width: 840px; margin: 0 auto; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.overview-table th, .overview-table td { padding: 14px 22px; font-size: 15px; text-align: left; }
.overview-table tr + tr th, .overview-table tr + tr td { border-top: 2px dotted #F0E5CF; }
.overview-table th {
  background: #F4FAF7; color: #2E6B57; width: 180px; font-weight: 700; white-space: nowrap;
}

/* ---------- お問い合わせ ---------- */
.contact { background: var(--ivory-deep); }
.contact-lead { text-align: center; color: var(--ink-soft); margin-bottom: 44px; }
.contact-actions { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.contact-btn { min-width: 300px; }

/* ---------- フッター ---------- */
.site-footer { background: var(--white); }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 40px 20px; text-align: center; }
.footer-logo { width: 96px; height: auto; margin-bottom: 8px; }
.footer-brand { font-weight: 900; font-size: 17px; }
.footer-addr { font-size: 13px; color: var(--ink-soft); margin: 6px 0 10px; }
.footer-links a { font-size: 13.5px; color: var(--mint-deep); font-weight: 700; }
.copyright { margin-top: 14px; font-size: 12px; color: #B4A995; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 20px 56px; gap: 36px; }
  .hero h1 { font-size: 33px; }
  .card-grid.three, .flow-steps { grid-template-columns: 1fr 1fr; }
  .target-block { grid-template-columns: 1fr; gap: 30px; padding: 30px 24px; }
  .feature-item, .feature-item.reverse { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .feature-item.reverse .feature-photo { order: 0; }
  .feature-item.reverse .feature-text { order: 1; }

  .global-nav {
    position: fixed; inset: 74px 12px auto 12px; background: var(--white);
    flex-direction: column; gap: 4px; padding: 14px;
    border-radius: var(--radius-l); box-shadow: 0 20px 50px rgba(120,96,60,0.25);
    transform: translateY(-140%); opacity: 0; transition: transform 0.28s ease, opacity 0.2s ease;
    z-index: 90;
  }
  .global-nav.open { transform: translateY(0); opacity: 1; }
  .global-nav a { padding: 13px 20px; width: 100%; border-radius: 16px; }
  .global-nav .nav-official { justify-content: center; margin-top: 6px; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 52px; height: 52px; background: var(--yellow); border: none; cursor: pointer;
    border-radius: 18px; box-shadow: 0 4px 0 var(--yellow-shadow);
    transition: transform 0.15s;
  }
  .nav-toggle:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--yellow-shadow); }
  .nav-toggle span { display: block; width: 22px; height: 3.2px; border-radius: 2px; background: #8A6A1B; transition: 0.25s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8.2px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8.2px) rotate(-45deg); }
}

@media (max-width: 560px) {
  h2 { font-size: 25px; }
  .hero h1 { font-size: 27px; }
  .sp-only { display: inline; }
  .card-grid.three, .flow-steps { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .puffy-btn { width: 100%; }
  .timeline::before { left: 58px; }
  .tl-item { gap: 22px; }
  .tl-time { width: 48px; font-size: 15px; }
  .tl-item::after { left: 53px; width: 14px; height: 14px; border-width: 4px; }
  .contact-btn { min-width: 100%; }
  .brand-logo { width: 92px; }
  .brand-chip { font-size: 11px; padding: 4px 10px; }
  .routine-photo img { aspect-ratio: 16 / 9; }
}

/* =====================================================
   下層ページ用コンポーネント
   ===================================================== */

/* ヘッダー：お問い合わせボタン・現在地 */
.global-nav a.current { background: var(--mint); color: #2E6B57; }
.global-nav .nav-contact {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-deep); color: #fff; padding: 10px 18px;
  box-shadow: 0 4px 0 #C96F85, 0 8px 16px rgba(232,137,159,0.35);
}
.global-nav .nav-contact:hover { background: #DD7D93; transform: translateY(-1px); }
.global-nav .nav-contact:active { transform: translateY(3px); box-shadow: 0 1px 0 #C96F85; }
.global-nav a { font-size: 12.5px; padding: 8px 9px; white-space: nowrap; }

/* ナビが収まらない中間幅（〜1320px）はハンバーガーメニューに切り替え */
@media (max-width: 1320px) {
  .global-nav {
    position: fixed; inset: 74px 12px auto 12px; background: var(--white);
    flex-direction: column; gap: 4px; padding: 14px;
    border-radius: var(--radius-l); box-shadow: 0 20px 50px rgba(120,96,60,0.25);
    transform: translateY(-140%); opacity: 0; transition: transform 0.28s ease, opacity 0.2s ease;
    z-index: 90;
  }
  .global-nav.open { transform: translateY(0); opacity: 1; }
  .global-nav a { padding: 13px 20px; width: 100%; border-radius: 16px; font-size: 14px; white-space: normal; }
  .global-nav .nav-contact, .global-nav .nav-official { justify-content: center; margin-top: 6px; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 52px; height: 52px; background: var(--yellow); border: none; cursor: pointer;
    border-radius: 18px; box-shadow: 0 4px 0 var(--yellow-shadow);
    transition: transform 0.15s;
  }
  .nav-toggle:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--yellow-shadow); }
  .nav-toggle span { display: block; width: 22px; height: 3.2px; border-radius: 2px; background: #8A6A1B; transition: 0.25s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8.2px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8.2px) rotate(-45deg); }
}

/* ページヒーロー */
.page-hero {
  position: relative; overflow: hidden;
  padding: 46px 0 42px; text-align: center;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}
.page-hero .hero-blob { opacity: 0.4; }
.page-hero .container { position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-soft); margin-bottom: 16px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--mint-deep); }
.bc-sep { color: #C9BBA8; }
.page-title { font-size: 34px; font-weight: 900; letter-spacing: 0.05em; margin-bottom: 10px; }
.page-lead { color: var(--ink-soft); font-size: 15px; }

/* セクション内の連続h2 */
.section h2 { margin-top: 70px; }
.section h2:first-child, .section .container > h2:first-child { margin-top: 0; }

/* 写真リード */
.lead-photo { max-width: 860px; margin: 0 auto 48px; }
.lead-photo img {
  display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
  border-radius: var(--radius-l); border: 8px solid var(--white);
  box-shadow: var(--shadow-soft);
}

/* 情報ボックス */
.info-box {
  max-width: 860px; margin: 44px auto; padding: 26px 30px;
  border-radius: var(--radius-m);
}
.info-box h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; }
.info-box p { font-size: 14.5px; }
.box-yellow { background: #FDF3D5; border: 2px dashed var(--yellow-shadow); }
.box-yellow h3 { color: #8A6A1B; }
.box-pink { background: #FCEBEF; border: 2px dashed var(--pink-shadow); }
.box-pink h3 { color: #A14D63; }
.box-mint { background: #E9F6F0; border: 2px dashed var(--mint-shadow); }
.box-mint h3 { color: #2E6B57; }
.box-sky { background: #EBF4FC; border: 2px dashed var(--sky-shadow); }
.box-sky h3 { color: #3D6E99; }

/* カード追加バリエーション */
.card-grid.two { grid-template-columns: 1fr 1fr; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card.card-left { text-align: left; }
.card.card-left .card-icon { margin-left: 0; }
.card.compact { padding: 24px 22px 22px; text-align: left; }
.card.compact h3 { font-size: 16px; color: #2E6B57; }
.card.compact p { font-size: 13.5px; }
.icon-yellow { background: var(--yellow); color: #8A6A1B; }
.dot-list { list-style: none; margin-top: 10px; }
.dot-list li {
  position: relative; padding: 4px 0 4px 20px; font-size: 14px; color: var(--ink-soft);
  text-align: left;
}
.dot-list li::before {
  content: ""; position: absolute; left: 4px; top: 14px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}

/* 訪問先グリッド */
.place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.place-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--radius-m); padding: 18px 20px;
  font-size: 14.5px; font-weight: 700; box-shadow: var(--shadow-soft);
}
.place-card .place-icon { flex-shrink: 0; }
.place-note.center { text-align: center; }
.mini-heading.mt { margin-top: 24px; }

/* 比較テーブル */
.compare-table-wrap { overflow-x: auto; margin-bottom: 16px; }
.compare-table {
  width: 100%; max-width: 860px; margin: 0 auto; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-soft); min-width: 560px;
}
.compare-table th, .compare-table td { padding: 13px 18px; font-size: 14px; text-align: left; }
.compare-table thead th { background: #F4EFE5; font-weight: 900; }
.compare-table thead th.th-mint { background: var(--mint); color: #2E6B57; }
.compare-table tbody th { background: #FBF7EE; font-weight: 700; white-space: nowrap; width: 130px; }
.compare-table tr + tr th, .compare-table tr + tr td { border-top: 2px dotted #F0E5CF; }
.compare-table .td-strong { background: #F2FAF7; font-weight: 700; color: #2E6B57; }

/* ページ内ナビ */
.page-nav { text-align: center; margin-top: 56px; }
.center-btn { text-align: center; margin-top: 34px; }
.page-nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--mint-deep); text-decoration: none;
  font-weight: 900; font-size: 15px; padding: 15px 30px; border-radius: 999px;
  border: 3px solid var(--mint); box-shadow: 0 5px 0 var(--mint-shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.page-nav-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--mint-shadow); }
.page-nav-btn:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--mint-shadow); }

/* CTAバンド */
.cta-band { padding: 70px 0; background: var(--ivory-deep); }
.cta-card {
  background: linear-gradient(135deg, #FDF3D5 0%, #FCEBEF 55%, #EBF4FC 100%);
  border-radius: var(--radius-l); padding: 50px 30px; text-align: center;
  box-shadow: var(--shadow-soft);
}
.cta-title { font-size: 26px; font-weight: 900; margin-bottom: 12px; padding-bottom: 0; }
.cta-title::after { display: none; }
.cta-text { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

/* トップ：GUIDEカード */
.toc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.toc-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--white); border-radius: var(--radius-l); padding: 32px 24px 26px;
  text-decoration: none; color: var(--ink); box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.toc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(120,96,60,0.15); }
.toc-icon {
  width: 68px; height: 68px; border-radius: 22px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.toc-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.toc-card p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; }
.toc-more {
  font-size: 13px; font-weight: 900; color: var(--mint-deep);
  border-bottom: 2px solid var(--mint); padding-bottom: 2px;
}

/* トップ：ミニフロー */
.mini-flow {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; max-width: 900px; margin: 0 auto;
}
.mini-flow li {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: 999px; padding: 10px 22px 10px 10px;
  font-size: 14px; font-weight: 700; box-shadow: var(--shadow-soft);
}
.mf-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; background: var(--mint-deep); font-size: 15px;
}
.mini-flow li:nth-child(6n+1) .mf-num { background: var(--pink-deep); }
.mini-flow li:nth-child(6n+2) .mf-num { background: var(--yellow-deep); }
.mini-flow li:nth-child(6n+3) .mf-num { background: var(--mint-deep); }
.mini-flow li:nth-child(6n+4) .mf-num { background: var(--sky-deep); }
.mini-flow li:nth-child(6n+5) .mf-num { background: var(--pink-deep); }
.mini-flow li:nth-child(6n+6) .mf-num { background: var(--yellow-deep); }

/* フローページ：詳細ステップ */
.step-detail-list { list-style: none; max-width: 860px; margin: 0 auto; }
.step-detail {
  background: var(--white); border-radius: var(--radius-m); padding: 26px 30px;
  box-shadow: var(--shadow-soft); margin-bottom: 22px; position: relative;
}
.step-detail:not(:last-child)::after {
  content: ""; position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
  border: 9px solid transparent; border-top-color: var(--mint-shadow); border-bottom: none;
}
.step-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.step-badge {
  padding: 5px 14px; border-radius: 999px; color: #fff;
  font-size: 12px; font-weight: 900; letter-spacing: 0.12em;
}
.sb-pink { background: var(--pink-deep); }
.sb-yellow { background: var(--yellow-deep); }
.sb-mint { background: var(--mint-deep); }
.sb-sky { background: var(--sky-deep); }
.step-head h3 { font-size: 18px; font-weight: 900; }
.step-time {
  margin-left: auto; font-size: 12.5px; color: var(--ink-soft);
  background: var(--ivory-deep); border-radius: 999px; padding: 4px 14px;
}
.step-detail p { font-size: 14.5px; color: var(--ink-soft); }
.check-list.big li { font-size: 15.5px; padding: 8px 0 8px 34px; }
.check-list.big li::before { top: 16px; }

/* サービスページ：サイクル */
.cycle-list { list-style: none; max-width: 760px; margin: 0 auto; }
.cycle-list li {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius-m); padding: 20px 26px;
  box-shadow: var(--shadow-soft); margin-bottom: 16px;
}
.cycle-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 19px; color: #fff;
}
.cn-pink { background: var(--pink-deep); }
.cn-yellow { background: var(--yellow-deep); }
.cn-mint { background: var(--mint-deep); }
.cn-sky { background: var(--sky-deep); }
.cycle-list h3 { font-size: 16.5px; font-weight: 900; margin-bottom: 2px; }
.cycle-list p { font-size: 14px; color: var(--ink-soft); }

/* FAQ */
.container.narrow { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; font-size: 15.5px; font-weight: 700;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #FFFDF7; }
.faq-q {
  width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink); color: #A14D63; font-weight: 900; font-size: 17px;
}
.faq-toggle { margin-left: auto; color: var(--pink-deep); transition: transform 0.25s; }
.faq-item[open] .faq-toggle { transform: rotate(180deg); }
.faq-a {
  display: flex; gap: 14px; padding: 4px 24px 22px;
  border-top: 2px dotted #F0E5CF; margin: 0 24px 0; padding-left: 0; padding-right: 0;
  padding-top: 16px;
}
.faq-a-mark {
  width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--mint); color: #2E6B57; font-weight: 900; font-size: 17px;
}
.faq-a p { font-size: 14.5px; color: var(--ink-soft); }

/* 料金ページ：利用例 */
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.example-card {
  background: var(--white); border-radius: var(--radius-m); padding: 26px 22px;
  text-align: center; box-shadow: var(--shadow-soft);
}
.ex-label {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  background: var(--ivory-deep); border-radius: 999px; padding: 5px 14px;
  width: fit-content; margin: 0 auto 14px;
}
.ex-price { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.ex-price strong { font-size: 34px; color: #B07A18; font-weight: 900; }
.ex-note { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; }

/* 会社ページ：アクセス */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; max-width: 920px; margin: 0 auto; }
.access-photo img {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-l); border: 8px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.access-info .dot-list li { font-size: 14.5px; padding: 6px 0 6px 22px; }
.access-info .dot-list li::before { top: 16px; }
.btn-small { min-width: 0; padding: 14px 28px 16px; margin-top: 18px; border-radius: 24px; }
.btn-small .puffy-label { font-size: 15px; }

/* フッターナビ */
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 10px;
  margin: 18px 0 12px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.footer-nav a {
  display: inline-block; padding: 9px 18px; border-radius: 999px;
  border: 2px solid var(--mint); background: var(--white);
  font-size: 13px; font-weight: 700; color: var(--mint-deep); text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.footer-nav a:hover { background: var(--mint); transform: translateY(-2px); }
.footer-nav a:active { transform: translateY(1px); }

/* レスポンシブ追加 */
@media (max-width: 900px) {
  .card-grid.four { grid-template-columns: 1fr 1fr; }
  .place-grid { grid-template-columns: 1fr 1fr; }
  .toc-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .card-grid.two { grid-template-columns: 1fr; }
  .page-title { font-size: 27px; }
}
@media (max-width: 560px) {
  .card-grid.four { grid-template-columns: 1fr; }
  .place-grid { grid-template-columns: 1fr; }
  .step-time { margin-left: 0; }
  .cta-title { font-size: 21px; }
  .mini-flow { flex-direction: column; align-items: stretch; }
}

/* =====================================================
   お問い合わせフォーム
   ===================================================== */
.form-block {
  max-width: 780px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-l);
  padding: 40px 38px; box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 26px; }
.form-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 900; margin-bottom: 8px;
}
.req-chip, .opt-chip {
  font-size: 11px; font-weight: 900; padding: 2px 10px; border-radius: 999px;
  letter-spacing: 0.08em; flex-shrink: 0;
}
.req-chip { background: var(--pink-deep); color: #fff; }
.opt-chip { background: #E8E0D2; color: var(--ink-soft); }
.form-hint { font-size: 12px; color: var(--ink-soft); font-weight: 500; margin-top: 4px; }

.form-input, .form-select, .form-textarea {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: #FFFDF8; border: 2.5px solid #EADFCC; border-radius: 16px;
  padding: 13px 18px; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--mint-deep);
  box-shadow: 0 0 0 4px rgba(79,169,140,0.15);
}
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 10px; height: 10px; border-right: 3px solid var(--mint-deep);
  border-bottom: 3px solid var(--mint-deep);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.form-textarea { min-height: 170px; resize: vertical; line-height: 1.8; }

/* ラジオ（ピル型） */
.radio-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-block; padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--ink-soft);
  background: #FFFDF8; border: 2.5px solid #EADFCC;
  transition: 0.2s; cursor: pointer;
}
.radio-pill input:checked + span {
  background: var(--mint); border-color: var(--mint-deep); color: #2E6B57;
}
.radio-pill input:focus-visible + span { box-shadow: 0 0 0 4px rgba(79,169,140,0.2); }

/* 同意チェック */
.agree-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 30px 0 22px; font-size: 14.5px; font-weight: 700;
}
.agree-row input {
  width: 24px; height: 24px; accent-color: var(--mint-deep); cursor: pointer; flex-shrink: 0;
}
.form-submit-row { text-align: center; }
.form-submit-row .puffy-btn { border: none; cursor: pointer; font-family: inherit; min-width: 280px; }

/* エラー表示 */
.error-box {
  max-width: 780px; margin: 0 auto 30px;
  background: #FCEBEF; border: 2px dashed var(--pink-shadow);
  border-radius: var(--radius-m); padding: 20px 26px;
}
.error-box p { color: #A14D63; font-size: 14px; font-weight: 700; }

/* 確認テーブル */
.confirm-table {
  width: 100%; max-width: 780px; margin: 0 auto 30px;
  border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.confirm-table th, .confirm-table td { padding: 15px 22px; font-size: 15px; text-align: left; vertical-align: top; }
.confirm-table th { background: #F4FAF7; color: #2E6B57; width: 200px; font-weight: 700; white-space: nowrap; }
.confirm-table td { white-space: pre-wrap; word-break: break-word; }
.confirm-table tr + tr th, .confirm-table tr + tr td { border-top: 2px dotted #F0E5CF; }
.confirm-btn-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-back-plain {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 34px; border-radius: 32px; text-decoration: none;
  font-size: 15px; font-weight: 900; color: var(--ink-soft);
  background: #F0EADF; box-shadow: 0 5px 0 #D9D0BE;
  transition: transform 0.15s, box-shadow 0.15s; border: none; cursor: pointer; font-family: inherit;
}
.btn-back-plain:hover { transform: translateY(-2px); }
.btn-back-plain:active { transform: translateY(4px); box-shadow: 0 1px 0 #D9D0BE; }

/* 完了ページ */
.thanks-box {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-l);
  padding: 54px 40px; box-shadow: var(--shadow-soft);
}
.thanks-icon {
  width: 88px; height: 88px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--mint); color: #2E6B57;
  display: flex; align-items: center; justify-content: center;
}
.thanks-box h2 { padding-bottom: 0; margin-bottom: 16px; }
.thanks-box h2::after { display: none; }
.thanks-box p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 10px; }

@media (max-width: 560px) {
  .form-block { padding: 28px 20px; }
  .confirm-table th { width: auto; display: block; padding-bottom: 4px; }
  .confirm-table td { display: block; padding-top: 0; }
  .confirm-table tr + tr td { border-top: none; }
}

/* トップ：ご利用の流れ ステップカード */
.step-strip {
  list-style: none; display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px; max-width: 1000px; margin: 0 auto;
}
.step-strip li {
  position: relative; background: var(--white); border-radius: var(--radius-m);
  padding: 20px 8px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease;
}
.step-strip li:hover { transform: translateY(-4px); }
.step-strip li:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 50%; z-index: 1;
  width: 11px; height: 11px;
  border-top: 4px solid var(--orange); border-right: 4px solid var(--orange);
  border-radius: 2px; transform: translateY(-50%) rotate(45deg);
}
.ss-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ss-num { font-size: 10.5px; font-weight: 900; letter-spacing: 0.15em; color: var(--orange); }
.ss-title { font-weight: 900; font-size: 14px; line-height: 1.45; }
@media (max-width: 900px) {
  .step-strip { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .step-strip li:nth-child(3n)::after { display: none; }
}
@media (max-width: 560px) {
  .step-strip { grid-template-columns: 1fr 1fr; gap: 14px; }
  .step-strip li::after { display: none !important; }
}

/* 5枚構成のステップカード */
.step-strip.five { grid-template-columns: repeat(5, 1fr); max-width: 940px; }
@media (max-width: 900px) { .step-strip.five { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .step-strip.five { grid-template-columns: 1fr 1fr; } }

/* =====================================================
   コンテンツ増強分（考え方・統計・事例・訪問の流れ・先生方へ）
   ===================================================== */
.section.slim { padding: 56px 0; }
.cols-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.tag-mini {
  display: inline-block; font-size: 12px; font-weight: 900; padding: 3px 14px;
  border-radius: 999px; margin-bottom: 8px;
}
.tm-pink { background: var(--pink); color: #A14D63; }
.tm-mint { background: var(--mint); color: #2E6B57; }
.tm-yellow { background: var(--yellow); color: #8A6A1B; }
.tm-sky { background: var(--sky); color: #3D6E99; }
.stat-num { font-size: 40px; font-weight: 900; color: var(--mint-deep); line-height: 1.3; margin: 4px 0; }

/* 事例ブロック */
.case-block {
  background: var(--white); border-radius: var(--radius-l); padding: 34px 32px;
  box-shadow: var(--shadow-soft); margin-bottom: 34px;
}
.case-title { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 900; margin-bottom: 18px; }
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.panel-mini {
  background: #FFFDF8; border: 2px solid #F0E8D9; border-radius: var(--radius-m);
  padding: 16px 16px;
}
.panel-mini p { font-size: 13px; line-height: 1.85; color: var(--ink-soft); }
.panel-mini.center { text-align: center; background: var(--white); border: 1px solid var(--line, #EEE); box-shadow: var(--shadow-soft); }
.vs-t { font-weight: 900; font-size: 14px; margin-bottom: 4px; }
.case-voice { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.voice-bubble {
  position: relative; background: var(--ivory-deep); border-radius: var(--radius-m);
  padding: 16px 20px;
}
.voice-bubble p { font-size: 13.5px; line-height: 1.85; }
.voice-who { font-weight: 900; font-size: 13px; margin-bottom: 2px; }
.visit-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 24px; }

@media (max-width: 900px) {
  .cols-two { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .visit-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-voice { grid-template-columns: 1fr; }
  .visit-steps { grid-template-columns: 1fr 1fr; }
  .case-block { padding: 24px 18px; }
}

/* 開設準備中のお知らせバンド */
.site-notice {
  background: #FCEBEF; border-bottom: 2.5px solid var(--pink);
  text-align: center; padding: 11px 18px 12px;
}
.site-notice .sn-main {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 900; color: #A14D63; line-height: 1.6;
}
.site-notice .sn-sub {
  font-size: 12px; font-weight: 700; color: #A14D63; opacity: 0.85; line-height: 1.6;
}
@media (max-width: 560px) {
  .site-notice { padding: 10px 14px; }
  .site-notice .sn-main { font-size: 13px; text-align: left; }
  .site-notice .sn-sub { font-size: 11px; }
}
