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

:root {
  /* ベース */
  --ivory: #F7FBFE;        /* 温かみのあるオフホワイト */
  --ivory-deep: #E9F2FA;   /* セクション切り替え用 */
  --white: #FFFFFF;
  --ink: #2F3E4D;          /* 焦げ茶系の文字色 */
  --ink-soft: #5F7186;

  /* パステル */
  --pink: #BFDCF5;   --pink-deep: #4E8FC7;  --pink-shadow: #9FC6E8;
  --mint: #CDE7F8;   --mint-deep: #2470AD;  --mint-shadow: #A6CCEC;
  --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(50, 90, 130, 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: #14538A; 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 #1B5A8E, 0 8px 16px rgba(36,112,173,0.35);
}
.global-nav .nav-official:hover { background: #2C77B5; transform: translateY(-1px); }
.global-nav .nav-official:active { transform: translateY(3px); box-shadow: 0 1px 0 #1B5A8E; }
.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: #1B5E96;
  box-shadow: 0 6px 0 var(--pink-shadow), 0 16px 30px rgba(78,143,199,0.35),
              inset 0 2px 0 rgba(255,255,255,0.7);
}
.puffy-mint {
  background: var(--mint); color: #14538A;
  box-shadow: 0 6px 0 var(--mint-shadow), 0 16px 30px rgba(36,112,173,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(78,143,199,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(36,112,173,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(78,143,199,0.30), inset 0 2px 4px rgba(27,94,150,0.15); }
.puffy-mint:active  { box-shadow: 0 1px 0 var(--mint-shadow), 0 6px 12px rgba(36,112,173,0.25), inset 0 2px 4px rgba(20,83,138,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(50,90,130,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 #1B5A8E, 0 14px 26px rgba(36,112,173,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: #1B5E96; }
.chip-mint { background: var(--mint); color: #14538A; }
.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(50,90,130,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: #1B5E96; }
.icon-mint { background: var(--mint); color: #14538A; }
.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 #D3E2EF;
}
.place-list li:last-child { border-bottom: none; }
.place-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 14px;
  background: var(--mint); color: #14538A;
  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(50,90,130,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: #1B5E96; }
.fs-mint { background: var(--mint); color: #14538A; }
.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: #FAFCFF; }
.price-table tbody tr + tr td { border-top: 2px dotted #DEEAF5; }
.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 #DEEAF5; }
.overview-table th {
  background: #F0F7FD; color: #14538A; 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: #93A7BA; }

/* ---------- レスポンシブ ---------- */
@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(50,90,130,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: #14538A; }
.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 #3E76A8, 0 8px 16px rgba(78,143,199,0.35);
}
.global-nav .nav-contact:hover { background: #5E9BD0; transform: translateY(-1px); }
.global-nav .nav-contact:active { transform: translateY(3px); box-shadow: 0 1px 0 #3E76A8; }
.global-nav a { font-size: 13px; padding: 8px 10px; white-space: nowrap; }

/* ナビが収まらない中間幅（〜1260px）はハンバーガーメニューに切り替え */
@media (max-width: 1260px) {
  .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(50,90,130,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: #A9BCCD; }
.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: #EAF3FB; border: 2px dashed var(--pink-shadow); }
.box-pink h3 { color: #1B5E96; }
.box-mint { background: #EAF4FC; border: 2px dashed var(--mint-shadow); }
.box-mint h3 { color: #14538A; }
.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: #14538A; }
.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: #EDF4FA; font-weight: 900; }
.compare-table thead th.th-mint { background: var(--mint); color: #14538A; }
.compare-table tbody th { background: #F5FAFD; font-weight: 700; white-space: nowrap; width: 130px; }
.compare-table tr + tr th, .compare-table tr + tr td { border-top: 2px dotted #DEEAF5; }
.compare-table .td-strong { background: #F0F7FD; font-weight: 700; color: #14538A; }

/* ページ内ナビ */
.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%, #EAF3FB 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(50,90,130,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: #FAFCFF; }
.faq-q {
  width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink); color: #1B5E96; 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 #DEEAF5; 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: #14538A; 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: #DCE6EF; 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: #FBFDFF; border: 2.5px solid #D3E2EF; 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(36,112,173,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: #FBFDFF; border: 2.5px solid #D3E2EF;
  transition: 0.2s; cursor: pointer;
}
.radio-pill input:checked + span {
  background: var(--mint); border-color: var(--mint-deep); color: #14538A;
}
.radio-pill input:focus-visible + span { box-shadow: 0 0 0 4px rgba(36,112,173,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: #EAF3FB; border: 2px dashed var(--pink-shadow);
  border-radius: var(--radius-m); padding: 20px 26px;
}
.error-box p { color: #1B5E96; 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: #F0F7FD; color: #14538A; 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 #DEEAF5; }
.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: #E3EDF6; box-shadow: 0 5px 0 #BFD2E2;
  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 #BFD2E2; }

/* 完了ページ */
.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: #14538A;
  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; }
}

/* お知らせリスト（放デイサイト用） */
.section.slim { padding: 56px 0; }
.news-list { list-style: none; }
.news-item {
  display: flex; align-items: baseline; gap: 16px;
  background: var(--white); border-radius: var(--radius-m);
  padding: 15px 22px; margin-bottom: 12px; box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}
.news-item time { font-weight: 900; color: var(--mint-deep); font-size: 14px; flex-shrink: 0; }
.news-cat {
  font-size: 11.5px; font-weight: 900; padding: 2px 12px; border-radius: 999px;
  background: var(--sky); color: #3D6E99; flex-shrink: 0;
}
.news-item p { font-size: 14.5px; flex: 1; min-width: 200px; }
.program-sub { font-weight: 900; color: var(--mint-deep); font-size: 14.5px; margin-bottom: 6px; }

/* トップ：ご利用の流れ ステップカード */
.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; } }

/* =====================================================
   全幅フォトヒーロー（放デイトップ）＋楽しい演出
   ===================================================== */
.hero-full {
  position: relative; min-height: min(88vh, 820px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; padding: 90px 20px 110px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,44,76,0.28) 0%, rgba(9,44,76,0.52) 62%, rgba(9,44,76,0.68) 100%);
}
/* まわる太陽 */
.hero-sun { position: absolute; top: 42px; right: 6%; z-index: 2; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18)); }
.hero-sun .sun-rays { transform-origin: 60px 60px; animation: sunspin 24s linear infinite; }
@keyframes sunspin { to { transform: rotate(360deg); } }
/* ながれる雲 */
.hero-cloud { position: absolute; z-index: 2; opacity: 0.85; }
.cloud-1 { top: 12%; left: -160px; animation: clouddrift 46s linear infinite; }
.cloud-2 { top: 26%; left: -120px; animation: clouddrift 64s linear infinite 8s; opacity: 0.6; }
@keyframes clouddrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 320px)); }
}
/* 中身 */
.hero-full-inner { position: relative; z-index: 3; max-width: 900px; }
.hero-catch-lead {
  display: inline-block; background: rgba(255,255,255,0.92); color: #14538A;
  font-weight: 900; font-size: 14px; letter-spacing: 0.08em;
  padding: 8px 22px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.hero-catch {
  color: #FFFFFF; font-size: 46px; font-weight: 900; line-height: 1.6;
  letter-spacing: 0.04em; margin-bottom: 20px;
  text-shadow: 0 3px 18px rgba(9,44,76,0.55);
}
.hl-yellow { color: #FFD966; position: relative; display: inline-block; }
.hl-yellow::after {
  content: ""; position: absolute; left: 4%; bottom: 2px; height: 8px; width: 92%;
  background: rgba(255,217,102,0.45); border-radius: 4px;
  transform: scaleX(0); transform-origin: left;
  animation: hlswipe 0.7s ease-out 1.1s forwards;
}
@keyframes hlswipe { to { transform: scaleX(1); } }
.hero-catch-sub {
  color: rgba(255,255,255,0.95); font-size: 16px; margin-bottom: 34px;
  text-shadow: 0 2px 10px rgba(9,44,76,0.5);
}
.hero-actions.center { justify-content: center; }
.hero-catch-note {
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 8px rgba(9,44,76,0.5);
}
.puffy-white {
  background: #FFFFFF; color: #14538A;
  box-shadow: 0 6px 0 #CBDCEB, 0 16px 30px rgba(9,44,76,0.35),
              inset 0 2px 0 rgba(255,255,255,0.9);
}
.puffy-white:hover { box-shadow: 0 9px 0 #CBDCEB, 0 20px 36px rgba(9,44,76,0.4), inset 0 2px 0 rgba(255,255,255,0.9); }
.puffy-white:active { box-shadow: 0 1px 0 #CBDCEB, 0 6px 12px rgba(9,44,76,0.3), inset 0 2px 4px rgba(20,83,138,0.12); }
/* 登場アニメーション（ステージイン） */
.seq { opacity: 0; transform: translateY(26px); animation: seqin 0.8s cubic-bezier(.22,1,.36,1) forwards; }
.seq-1 { animation-delay: 0.15s; }
.seq-2 { animation-delay: 0.35s; }
.seq-3 { animation-delay: 0.6s; }
.seq-4 { animation-delay: 0.85s; }
.seq-5 { animation-delay: 1.05s; }
@keyframes seqin { to { opacity: 1; transform: none; } }
/* スクロールインジケーター */
.scroll-down {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: #FFFFFF; text-decoration: none; font-size: 10.5px; font-weight: 900; letter-spacing: 0.25em;
  opacity: 0.9;
}
.scroll-down svg { animation: bobbing 1.6s ease-in-out infinite; }
@keyframes bobbing { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
/* スクロール連動のふわっと表示 */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
/* 動きを控えめにする設定の尊重 */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img, .hero-sun .sun-rays, .hero-cloud, .scroll-down svg { animation: none !important; }
  .seq { opacity: 1; transform: none; animation: none; }
  .hl-yellow::after { transform: scaleX(1); animation: none; }
}
@media (max-width: 900px) {
  .hero-catch { font-size: 32px; }
  .hero-full { min-height: 76vh; padding: 70px 20px 96px; }
  .hero-sun { top: 24px; right: 4%; transform: scale(0.7); transform-origin: top right; }
}
@media (max-width: 560px) {
  .hero-catch { font-size: 25px; }
  .hero-catch-sub { font-size: 14px; }
  .pc-only { display: none; }
}

/* お知らせ：リンクカード＆記事本文 */
.news-list li { list-style: none; margin-bottom: 12px; }
a.news-item {
  text-decoration: none; color: inherit; margin-bottom: 0;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
a.news-item:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(50,90,130,0.14); }
.news-arrow { margin-left: auto; color: var(--pink-deep); flex-shrink: 0; }
.article-title { font-size: 25px; line-height: 1.7; max-width: 860px; margin-left: auto; margin-right: auto; }
.article-body { background: var(--white); border-radius: var(--radius-l); padding: 40px 38px; box-shadow: var(--shadow-soft); }
.article-body p { margin-bottom: 18px; font-size: 15px; }
.article-body h3 {
  font-size: 18px; font-weight: 900; margin: 34px 0 12px; padding-left: 14px;
  border-left: 6px solid var(--accentbar, #4E8FC7); border-radius: 2px;
}
.article-body h4 {
  font-size: 15.5px; font-weight: 900; color: #14538A; margin: 22px 0 6px;
  display: flex; align-items: center; gap: 8px;
}
.article-body h4::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow-deep); flex-shrink: 0; }
.article-body .overview-table-wrap { margin: 20px 0 26px; }
.article-body .card-grid.two { margin: 20px 0 26px; }
.article-sign { text-align: right; color: var(--ink-soft); margin-top: 26px; }
.article-body .info-box { margin: 0 0 28px; max-width: none; }
@media (max-width: 560px) {
  .article-body { padding: 26px 20px; }
  .article-title { font-size: 20px; }
}

/* 記事内の資料画像 */
.doc-figure { margin: 24px 0 30px; text-align: center; }
.doc-figure a { display: block; border-radius: var(--radius-m); overflow: hidden;
  border: 2px solid #D3E2EF; box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease; }
.doc-figure a:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(50,90,130,0.16); }
.doc-figure img { display: block; width: 100%; }
.doc-figure figcaption { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }

/* ヒーロー：受け入れ停止の注釈 */
.hero-full .hero-actions .puffy-btn { width: 268px; }

.hero-stop-note {
  display: inline-block; color: #FFFFFF; opacity: 0.95;
  font-size: 12px; font-weight: 700; line-height: 1.8;
  text-shadow: 0 2px 8px rgba(9,44,76,0.6);
}
.hero-catch-note { margin-top: 14px; }

/* スマホ：ヒーローのボタンをコンパクトに */
@media (max-width: 560px) {
  .hero-full .hero-actions { gap: 10px; flex-direction: row; align-items: stretch; justify-content: center; }
  .hero-full .hero-actions .puffy-btn { flex: 1 1 0; width: auto; min-width: 0; padding: 12px 8px 14px; border-radius: 22px; }
  .hero-full .puffy-label { font-size: 14px; letter-spacing: 0.02em; }
  .hero-full .puffy-sub { font-size: 10.5px; }
  .hero-full .puffy-icon svg { width: 22px; height: 22px; }
  .hero-full .puffy-icon { margin-bottom: 2px; }
  .hero-stop-note { font-size: 11px; text-align: center; max-width: 90%; }
}
