.flex-for-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-top:10px;
}

.flex-img {
  flex: 0 0 250px;
  width: 250px;
  height: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
}

.clear {
  clear: both;
}

.clearfix:after {
  clear: both;
}

body {
  font-size: 13px;
  font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.2;
}
.fixed-btn {
  position: fixed;
  display: flex;
  z-index: 17;
  align-items: center;
  justify-content: flex-end;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  text-align: right;
  padding: 10px;
}
:root{
  --ink:#132A33;         /* 本文色：白背景でコントラスト比 14:1 以上 */
  --teal:#0C5A96;        /* イトマンブルー（見出し・ラベル用、白背景で約7:1のコントラスト） */
  --teal-pale:#E7F1FA;   /* セクション背景（薄い青） */
  --coral:#C5502F;       /* CTA・強調（白文字でも十分なコントラスト） */
  --coral-pale:#FBEAE3;
  --sun:#F5A93C;         /* 元気・活力を表すサンシャインカラー */
  --sun-pale:#FFF2DC;
  --gold:#8A6416;        /* データ強調（白背景での文字利用を想定し濃いめ） */
  --white:#FFFFFF;
  --line:#D7E2ED;
}
*{box-sizing:border-box;}
.ico{
  width:1em; height:1em; display:inline-block;
  vertical-align:-0.15em; flex-shrink:0;
}
html{scroll-behavior:smooth; font-size:112.5%;} /* 基準18px相当 */
body{
  margin:0;
  font-family:'Noto Sans JP', sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.9;
  -webkit-font-smoothing:antialiased;
  font-size:1rem;
  padding-bottom:88px; /* 固定申込バーの高さ分の余白 */
}
h1,h2,h3,.display{
  font-family:'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-weight:900;
  letter-spacing:0.01em;
  line-height:1.55;
}
.mono{
  font-family:'JetBrains Mono', monospace;
  font-weight:700;
  font-variant-numeric: tabular-nums;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;}
.wrap{max-width:1040px;margin:0 auto;padding:0 24px;}
section{ position:relative; scroll-margin-top:78px; }

/* ---------- ヘッダー・ジャンプメニュー ---------- */
.site-header{
  position:sticky; top:0; z-index:1001;
  background:rgba(255,255,255,0.97);
  border-bottom:2px solid var(--line);
  padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between;
}
.site-header .brand{
  font-family:'Zen Maru Gothic',sans-serif; font-weight:700; font-size:1.05rem; color:var(--ink);
  text-decoration:none;
}
.menu-btn{
  background:var(--white); border:2px solid var(--teal); color:var(--teal);
  border-radius:10px; width:50px; height:46px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
  cursor:pointer; padding:0;
}
.menu-btn span{ width:24px; height:3px; background:var(--teal); border-radius:2px; display:block; }
.menu-btn .label{ display:none; }
.header-right{ display:flex; align-items:center; gap:10px; margin-top: 15px; }
.font-ctrl{
  display:flex; align-items:center; gap:2px;
  border:2px solid var(--teal); border-radius:10px; padding:3px;
  background:var(--white);
}
.font-btn{
  width:34px; height:38px; border:none; background:transparent; color:var(--teal);
  font-weight:700; border-radius:7px; cursor:pointer;
  display:flex; align-items:center; justify-content:center; padding:0;
  font-family:inherit;
}
.font-btn:hover{ background:var(--teal-pale); }
.font-btn.small-a{ font-size:0.8rem; }
.font-btn.big-a{ font-size:1.25rem; }
.font-ctrl .divider{ width:1px; height:22px; background:var(--line); }
@media (max-width:420px){
  .site-header{ padding:10px 12px; }
  .site-header .brand{ font-size:0.88rem; }
  .font-btn{ width:30px; height:34px; }
  .menu-btn{ width:44px; height:40px; }
}

.nav-overlay{
  position:fixed; inset:0; background:rgba(15,42,56,0.4); z-index:1002;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.nav-overlay.open{ opacity:1; pointer-events:auto; }

.nav-panel{
  position:fixed; top:0; right:-100%; bottom:0; width:min(320px,86vw);
  background:var(--white); z-index:1003;
  box-shadow:-10px 0 30px rgba(15,42,56,0.2);
  padding:22px 22px 30px;
  overflow-y:auto;
  transition:right .3s ease;
}
.nav-panel.open{ right:0; }
.nav-panel .nav-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.nav-panel .nav-ttl{ font-weight:700; font-size:1.05rem; color:var(--ink); }
.nav-close{
  background:none; border:none; font-size:1.6rem; line-height:1; color:var(--ink);
  cursor:pointer; padding:4px 8px;
}
.nav-panel a{
  display:block; padding:15px 6px; font-size:1.1rem; font-weight:700;
  color:var(--ink); text-decoration:none; border-bottom:1px solid var(--line);
}
.nav-panel a:hover{ color:var(--teal); }
.nav-panel a.nav-cta{
  margin-top:18px; text-align:center; background:var(--coral); color:#fff;
  border-radius:100px; border:none; padding:16px;
}
@media (prefers-reduced-motion: reduce){
  .nav-panel{ transition:none; }
  .nav-overlay{ transition:none; }
}

a:focus-visible, button:focus-visible{
  outline:3px solid var(--coral);
  outline-offset:3px;
}

/* ---------- レーンロープ（装飾のみ／可読性に影響しない） ---------- */
.lane-rope{
  position:absolute; left:10px; top:0; bottom:0; width:6px;
  background: repeating-linear-gradient(180deg,
    var(--coral) 0px, var(--coral) 22px,
    #fff 22px, #fff 30px,
    var(--teal) 30px, var(--teal) 52px,
    #fff 52px, #fff 60px);
  border-radius:6px;
  opacity:0.5;
}
@media (max-width:900px){ .lane-rope{display:none;} }
.depth-shell{position:relative;}

/* ---------- HERO ---------- */
.hero{
  background: linear-gradient(180deg, #F7FCFB 0%, var(--teal-pale) 100%);
  overflow:hidden;
}
.hero-photo-full{ position:relative; width:100%; }
.hero-photo-full .photo-slot{
  aspect-ratio:16/9; border-radius:0; border-width:0 0 2px 0; margin:0;
}
@media (min-width:640px){ .hero-photo-full .photo-slot{aspect-ratio:21/9;} }
.hero-new-ribbon{
  position:absolute; top:22px; left:22px; z-index:3;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--coral); color:#fff; font-weight:700; font-size:0.98rem;
  padding:9px 20px; border-radius:100px;
  box-shadow:0 8px 20px rgba(0,0,0,0.22);
  margin-left: 80px;
}
.hero-card{
  position:relative; z-index:2;
  max-width:640px; margin:-64px auto 0;
  background:var(--white); border-radius:24px;
  box-shadow:0 20px 46px rgba(15,42,56,0.16);
  padding:38px 34px 34px;
}
@media (max-width:640px){
  .hero-card{ margin-top:0; border-radius:0; box-shadow:none; padding:32px 20px 8px; }
}
.hero-text{text-align:left;}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white);
  border:2px solid var(--teal);
  color:var(--teal);
  padding:10px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:1.05rem;
  margin-bottom:22px;
}
.nowrap-phrase{display:inline-block; white-space:nowrap;}
.hero h1{
  font-size:clamp(1.9rem, 4vw, 2.6rem);
  margin:0 0 20px;
}
.hero h1 .accent{
  color:var(--teal);
  display:block;
  font-size:clamp(1.15rem,2.1vw,1.4rem);
  margin-bottom:14px;
}
.hero h1 .num{ color:var(--coral); }
.hero p.lead{
  font-size:1.15rem;
  margin:0 0 32px;
  color:#1c3a46;
}
.trust-strip{
  display:flex; flex-wrap:wrap; gap:10px 22px;
  margin-top:22px; padding-top:20px; border-top:1px solid var(--line);
}
.trust-strip .item{
  display:flex; align-items:center; gap:8px;
  font-size:0.98rem; font-weight:700; color:var(--teal);
}

/* ---------- 写真プレースホルダー（共通） ---------- */
.photo-slot{
  background:repeating-linear-gradient(135deg, #EAF1F8, #EAF1F8 12px, #DCE9F5 12px, #DCE9F5 24px);
  border:2px dashed #9DBAD6;
  border-radius:18px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding:28px 26px;
  color:#33505b;
}
.photo-slot .cam{font-size:2.4rem; margin-bottom:10px;}
.photo-slot .ttl{font-weight:700; font-size:1.05rem; color:var(--ink); margin-bottom:8px;}
.photo-slot .desc{font-size:0.92rem; line-height:1.7; color:#3f5c66; max-width:420px;}
.photo-slot .tag{
  display:inline-block; margin-top:12px; font-size:0.8rem; font-weight:700;
  color:var(--teal); background:var(--white); padding:3px 12px; border-radius:100px;
  border:1px solid var(--teal);
}
.cta-btn{
  display:inline-block;
  background:var(--coral);
  color:#fff;
  font-family:-apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight:700;
  font-size:1.35rem;
  padding:24px 52px;
  border-radius:100px;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(197,80,47,0.35);
  transition:transform .2s ease, box-shadow .2s ease;
  min-height:44px;
}
.cta-btn:hover{transform:translateY(-3px); box-shadow:0 14px 30px rgba(197,80,47,0.45);}
.cta-sub{margin-top:18px; font-size:1.05rem; color:#2d4b56; font-weight:500;}

.btn-row{display:flex; flex-wrap:wrap; gap:16px; align-items:center;}
.cta-btn.outline{
  background:var(--white); color:var(--coral); border:2px solid var(--coral);
  box-shadow:none; padding:22px 46px;
}
.cta-btn.outline:hover{ background:var(--coral-pale); }
.step-badge{
  display:inline-block; font-size:0.9rem; font-weight:700; color:var(--teal);
  background:var(--teal-pale); border:1.5px solid var(--teal);
  padding:4px 14px; border-radius:100px; margin-bottom:10px;
}

/* ---------- 申込みステップ導線 ---------- */
.apply-steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  max-width:720px; margin:44px auto 0;
}
@media (max-width:680px){ .apply-steps{grid-template-columns:1fr;} }
.apply-step{
  background:var(--white); border:2px solid var(--line);
  border-radius:16px; padding:22px 18px; text-align:center; color:var(--ink);
}
.apply-step .num-circle{
  width:38px; height:38px; border-radius:50%; background-color: #00479D;; color:#fff;
  display:flex; align-items:center; justify-content:center; margin:0 auto 12px;
  font-family:'JetBrains Mono',monospace; font-weight:700; font-size:1.05rem;
}
.apply-step .lbl{font-weight:700; font-size:1.05rem; margin-bottom:6px; color:var(--ink);}
.apply-step .sub{font-size:0.9rem; color:#3f5c66;}
@media (min-width:681px){
  .apply-step{position:relative;}
  .apply-step:not(:last-child)::after{
    content:'→'; position:absolute; right:-24px; top:44%; color:var(--teal); font-size:1.3rem; font-weight:700;
  }
}

/* ---------- 共通セクション ---------- */
.section-inner{padding:72px 24px;}
.kicker{
  font-size:1rem; font-weight:700; letter-spacing:0.08em;
  color:var(--teal);
  margin-bottom:12px;
}
h2.sec-title{
  font-size:clamp(1.55rem,3.2vw,2.15rem);
  margin:0 0 18px;
  color:var(--ink);
}
.sec-desc{max-width:680px; font-size:1.15rem; margin-bottom:46px; color:#2d4b56;}

.zone-pale{background:var(--teal-pale);}
.zone-white{background:var(--white);}
.zone-coral{background:var(--coral-pale);}

/* ---------- 差の可視化カード ---------- */
.gap-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px;}
@media (max-width:640px){.gap-grid{grid-template-columns:1fr;}}
.gap-card{
  background:var(--white);
  border:2px solid var(--line);
  border-radius:20px;
  padding:60px 28px 28px;
}
.gap-card .who{font-weight:700; font-size:1.2rem; margin-bottom:22px; color:var(--teal);}
.bars-wrap{ position:relative; }
.bar-row{display:flex; align-items:center; gap:14px;}
.bar-row + .bar-row{ margin-top:16px; }
.bar-row-label{width:6.2rem; flex-shrink:0; font-size:1rem; color:#33505b; font-weight:500;}
.bar-track{flex:1; height:28px; background:#EAF1F8; overflow:hidden; border:1px solid var(--line);}
.bar-fill{height:100%; border-radius:14px;}
.bar-fill.life{background:#3E7FB8;}
.bar-fill.health{background:var(--coral);}
.bar-row-val{width:4.4rem; flex-shrink:0; text-align:right; font-size:1.05rem;}
/* トラック領域の実際の座標に合わせて重ねる強調帯・吹き出し */
.gap-zone{ position:absolute; top:0; bottom:0; pointer-events:none; }
.gap-zone .band{
  position:absolute; top:-8px; bottom:-8px;
  background:repeating-linear-gradient(135deg, rgba(197,80,47,0.16) 0 8px, rgba(197,80,47,0.28) 8px 16px);
  border-left:3px dashed var(--coral);
  border-right:3px dashed var(--coral);
  border-radius:8px;
}
.gap-zone .callout{
  position:absolute; bottom:calc(100% + 12px);
  transform:translateX(-50%);
  white-space:nowrap;
  background:var(--coral); color:#fff; font-weight:700;
  padding:8px 16px; border-radius:100px; font-size:1.15rem;
  box-shadow:0 8px 18px rgba(197,80,47,0.4);
}
.gap-zone .callout::after{
  content:''; position:absolute; left:50%; top:100%; transform:translateX(-50%);
  border-width:7px 7px 0; border-style:solid; border-color:var(--coral) transparent transparent;
}
.gap-axis-note{
  max-width:640px; margin:14px auto 0; text-align:center;
  font-size:0.9rem; color:#9FC8E8;
}
.gap-note{
  max-width:640px; margin:14px auto 0; text-align:center;
  font-size:1.05rem; color:#5c7a84; background:var(--coral-pale);
  border-radius:10px; padding:14px 22px;
}
/* トラック領域の実際の座標に合わせて重ねる強調帯・吹き出し */
.gap-zone{ position:absolute; top:0; bottom:0; pointer-events:none; }
.gap-zone .band{
  position:absolute; top:-8px; bottom:-8px;
  background:repeating-linear-gradient(135deg, rgba(197,80,47,0.16) 0 8px, rgba(197,80,47,0.28) 8px 16px);
  border-left:3px dashed var(--coral);
  border-right:3px dashed var(--coral);
  border-radius:8px;
}
.gap-zone .callout{
  position:absolute; bottom:calc(100% + 12px);
  transform:translateX(-50%);
  white-space:nowrap;
  background:var(--coral); color:#fff; font-weight:700;
  padding:8px 16px; border-radius:100px; font-size:1.15rem;
  box-shadow:0 8px 18px rgba(197,80,47,0.4);
}
.gap-zone .callout::after{
  content:''; position:absolute; left:50%; top:100%; transform:translateX(-50%);
  border-width:7px 7px 0; border-style:solid; border-color:var(--coral) transparent transparent;
}
.gap-note{
  max-width:640px; margin:36px auto 0; text-align:center;
  font-size:1.05rem; color:#5c7a84; background:var(--coral-pale);
  border-radius:10px; padding:14px 22px;
}

/* ---------- 3本柱 ---------- */
.pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
@media (max-width:760px){.pillars{grid-template-columns:1fr;}}
.pillar{
  background:var(--white);
  border:2px solid var(--line);
  border-radius:18px;
  padding:34px 26px;
  text-align:center;
}
.pillar .icon-circle{
  width:72px; height:72px; border-radius:50%;
  margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
  background:var(--teal-pale);
  font-size:2rem;
  border:2px solid var(--teal);
}
.pillar h3{color:var(--ink); font-size:1.3rem; margin:0 0 10px;}
.pillar p{color:#33505b; font-size:1.05rem; margin:0;}
.status{
  display:inline-block; margin-top:0; margin-left:6px; font-size:0.85rem; font-weight:700;
  background:var(--coral-pale); padding:4px 12px; border-radius:100px;
  color:var(--coral); vertical-align:middle;
}
.pillar .status{ margin-top:14px; margin-left:0; font-size:0.95rem; padding:5px 16px; }

/* ---------- 5つの違い ---------- */
.diff-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
@media (max-width:820px){.diff-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:520px){.diff-grid{grid-template-columns:1fr;}}
.diff-card{
  background:var(--white);
  border:2px solid var(--line);
  border-radius:16px;
  padding:26px 22px;
  text-align:center;
}
.diff-card .n{font-size:2rem; margin-bottom:12px;}
.diff-card h4{color:var(--ink); font-size:1.1rem; margin:0 0 10px; line-height:1.5;}
.diff-card p{color:#33505b; font-size:1rem; margin:0;}

/* ---------- プログラムの流れ ---------- */
.flow-cols{display:grid; grid-template-columns:1fr 1fr; gap:44px;}
@media (max-width:720px){.flow-cols{grid-template-columns:1fr;}}
.flow-col h3{
  font-size:1.15rem; color:var(--white);
  background:var(--teal);
  display:inline-block; padding:10px 22px; border-radius:100px;
  margin-bottom:24px;
  font-family:'Zen Maru Gothic',sans-serif;
  font-weight:700;
}
.flow-step{
  display:flex; gap:16px; align-items:flex-start;
  padding:14px 0;
  border-left:3px solid var(--line);
  padding-left:22px;
  margin-left:10px;
  position:relative;
}
.flow-step::before{
  content:attr(data-n);
  position:absolute; left:-19px; top:12px;
  width:32px; height:32px; border-radius:50%;
  background-color:#00479D; color:#fff;
  font-size:0.95rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono',monospace;
}
.flow-step .t{color:var(--ink); font-size:1.05rem; font-weight:500;}
.flow-note{margin-top:24px; font-size:1rem; color:#33505b;}

/* ---------- 効果測定 ---------- */
.measure-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media (max-width:820px){.measure-grid{grid-template-columns:repeat(2,1fr);}}
.measure-card{
  background:var(--white); border:2px solid var(--line); border-radius:16px; padding:28px 20px; text-align:center;
}
.measure-card .em{font-size:2.2rem; margin-bottom:12px;}
.measure-card h4{font-size:1.05rem; margin:0 0 8px; color:var(--ink);}
.measure-card p{font-size:1rem; margin:0; color:var(--teal); font-weight:700;}

/* ---------- クラス区分 ---------- */
.tier-list{display:flex; flex-direction:column; gap:18px; max-width:720px; margin:0 auto;}
.tier-card{
  display:flex; gap:18px; align-items:flex-start;
  background:var(--white); border:2px solid var(--line); border-radius:16px;
  padding:24px 26px;
}
.tier-num{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  background:var(--teal-pale); border:2px solid var(--teal); color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.2rem; font-family:'JetBrains Mono',monospace;
}
.tier-card.high .tier-num{ background:var(--coral-pale); border-color:var(--coral); color:var(--coral); }
.tier-title{font-size:1.25rem; font-weight:700; color:var(--ink); margin:2px 0 8px;}
.tier-desc{font-size:1.05rem; color:var(--teal); font-weight:500; text-decoration:underline; text-underline-offset:3px;}
.tier-card.high .tier-desc{ color:var(--coral); }

/* ---------- 料金 ---------- */
.price-box{
  max-width:540px; margin:0 auto; text-align:center;
  background:var(--white); border-radius:24px; padding:48px 32px;
  border:2px solid var(--line);
}
.price-box .label{font-size:1.1rem; color:#33505b; margin-bottom:10px; font-weight:500;}
.price-box .amount{font-size:3.2rem; color:var(--coral);}
.price-box .amount .yen{font-size:1.5rem; margin-right:6px;}
.price-box .amount .tax{font-size:1.1rem; color:#33505b; margin-left:8px;}
.price-box .incl{font-size:1rem; color:#5c7a84; margin-top:14px;}
.fee-list{
  max-width:520px; margin:20px auto 0;
  background:var(--white); border:2px solid var(--line); border-radius:16px;
  overflow:hidden;
}
.fee-attention{
  max-width:520px; margin:20px auto 0;
}
.fee-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px; font-size:1.05rem;
}
.fee-row + .fee-row{ border-top:1px solid var(--line); }
.fee-name{color:var(--ink); font-weight:500;}
.fee-val{font-weight:700; color:var(--ink); display:flex; align-items:center; gap:8px;}
.fee-val.free{color:var(--teal);}

/* ---------- FAQ ---------- */
.faq-tentative-note{
  max-width:760px; margin:0 auto 30px; background:var(--coral-pale);
  border-radius:12px; padding:16px 22px; font-size:0.98rem; color:#7a4530; line-height:1.8;
}
.faq-list{max-width:760px; margin:0 auto;}
.faq-item{
  background:var(--white); border:2px solid var(--line); border-radius:14px;
  margin-bottom:14px; overflow:hidden;
}
.faq-item summary{
  cursor:pointer; list-style:none; padding:20px 24px;
  font-weight:700; font-size:1.08rem; color:var(--ink);
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+'; font-size:1.5rem; color:var(--teal); flex-shrink:0;
  transition:transform .2s ease; line-height:1;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item .a{ padding:0 24px 22px; font-size:1rem; color:#33505b; line-height:1.85; }
.tag-tentative{
  display:inline-block; font-size:0.72rem; font-weight:700; color:var(--coral);
  background:var(--coral-pale); padding:2px 10px; border-radius:100px; margin-left:4px;
  white-space:nowrap;
}

/* ---------- 最終CTA ---------- */
.final-cta{
  background: linear-gradient(135deg, var(--sun-pale) 0%, #FCE0C9 45%, #E8F5F1 100%);
  padding:80px 24px 64px;
  text-align:center;
}
.final-cta .badge{background:var(--white); border-color:var(--coral); color:var(--coral);}
.final-cta h2{color:var(--ink); font-size:clamp(1.6rem,3.6vw,2.3rem); margin:0 0 20px;}
.final-cta p{color:#3f5c66; font-size:1.15rem; max-width:560px; margin:0 auto 36px;}
.final-cta .cta-btn{background:var(--coral); box-shadow:0 10px 26px rgba(197,80,47,0.35);}
/* ---------- ご家族の方へ ---------- */
.family-grid{display:grid; grid-template-columns:0.95fr 1.05fr; gap:48px; align-items:center;}
@media (max-width:880px){ .family-grid{grid-template-columns:1fr;} }
.family-points{list-style:none; margin:26px 0 34px; padding:0;}
.family-points li{
  display:flex; gap:14px; align-items:flex-start;
  font-size:1.08rem; color:var(--ink); margin-bottom:16px;
}
.family-points li .ck{
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  background:var(--teal); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:0.95rem; font-weight:700; margin-top:2px;
}
.share-row{display:flex; flex-wrap:wrap; gap:14px;}
.share-btn{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); border:2px solid var(--teal); color:var(--teal);
  font-weight:700; font-size:1rem; padding:13px 22px; border-radius:100px;
  text-decoration:none; cursor:pointer; font-family:'Noto Sans JP',sans-serif;
}
.share-btn.line{border-color:#06C755; color:#06C755;}
.share-btn:hover{background:var(--teal-pale);}

/* ---------- 当日の流れ・持ち物 ---------- */
.day-flow{display:flex; flex-wrap:wrap; gap:14px 10px; margin:28px 0;}
.day-flow-step{
  flex:1 1 110px; background:var(--teal-pale); border-radius:14px;
  padding:16px 12px; text-align:center; position:relative;
}
.day-flow-step .n{
  display:block; font-family:'JetBrains Mono',monospace; font-weight:700;
  color:var(--teal); font-size:0.85rem; margin-bottom:6px;
}
.day-flow-step .t{font-size:0.95rem; font-weight:700; color:var(--ink);}
@media (min-width:600px){
  .day-flow-step:not(:last-child)::after{
    content:'→'; position:absolute; right:-14px; top:50%; transform:translateY(-50%);
    color:var(--teal); font-weight:700; font-size:1.1rem;
  }
}
.items-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:8px 0 28px;}
@media (max-width:520px){ .items-grid{grid-template-columns:1fr;} }
.items-card{ background:var(--white); border:2px solid var(--line); border-radius:14px; padding:18px 20px; }
.items-card .ttl{font-weight:700; color:var(--teal); margin-bottom:8px; font-size:1rem;}
.items-card p{font-size:0.95rem; color:#33505b; margin:0; line-height:1.7;}

/* ---------- 固定申込バー ---------- */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:1000;
  background:rgba(255,255,255,0.97);
  border-top:2px solid var(--line);
  box-shadow:0 -6px 20px rgba(15,42,56,0.12);
  padding:12px 20px calc(12px + env(safe-area-inset-bottom));
  display:flex; align-items:center; justify-content:center; gap:16px;
}
.sticky-cta .msg{
  font-size:1.05rem; font-weight:700; color:var(--ink);
  display:none;
}
@media (min-width:640px){ .sticky-cta .msg{display:inline;} }
.sticky-cta .cta-btn{
  font-size:1.1rem; padding:14px 34px;
  box-shadow:0 6px 16px rgba(197,80,47,0.35);
}

/* footer{
  background:#0A1E27; 
  color:#B7D4D3;
  text-align:center; padding:34px 24px; font-size:0.95rem;
}
footer .logo{color:#fff; font-weight:700; font-family:'Zen Maru Gothic',sans-serif; margin-bottom:10px; font-size:1.15rem;} */

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .cta-btn{transition:none;}
}