@charset "utf-8";

/* ===== Theme Vars ===== */
:root{
  --tod-green:#28a745;
  --tod-green-dark:#1e7e34;
  --cta-max:750px;
}

/* ===== Base ===== */
*{ box-sizing:border-box }

body{
  margin:0;
  font-family:"Noto Sans JP",sans-serif;
  background:#f5f7fa;
  color:#222;
}

/* ===== Hero ===== */
.hero{
  width:100%;
  text-align:center;
  background:#9fd7f5;   /* 背景色はそのまま */
  padding:0rem 0rem 2rem;
}
.hero-image{
  display:block;
  max-width:var(--cta-max);
  width:100%;
  height:auto;
  margin:0 auto 1.25rem auto;
}

/* ===== CTA Button (全ボタン共通) ===== */
.cta-btn {
  display: inline-block;
  width: 100%;
  max-width: 750px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: var(--tod-green);
  border-radius: 999px; /* 全部カプセル型に統一 */
  border: none;
  box-shadow: 0 6px 18px rgba(40,167,69,.28);
  transition:
    transform .12s ease,
    background .25s ease,
    box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  outline: 0;
}

/* hover/active/focus */
.cta-btn:hover {
  background: var(--tod-green-dark);
  transform: translateY(-2px);
}
.cta-btn:active {
  transform: translateY(0) scale(.97);
}
.cta-btn:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(30,126,52,.35);
}

/* シャイン演出（全ボタン共通） */
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,.28) 45%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.28) 55%,
    transparent 100%);
  transform: translateX(-120%) skewX(-20deg);
  filter: blur(.4px);
  pointer-events: none;
  opacity: 0;
}
.cta-btn:hover::before,
.cta-btn:focus-visible::before {
  opacity: 1;
  animation: btn-shine 850ms ease;
}
@keyframes btn-shine {
  from { transform: translateX(-120%) skewX(-20deg); }
  to   { transform: translateX(120%)  skewX(-20deg); }
}

/* 中のテキストは前面 */
.cta-btn > * { position: relative; z-index: 1; }



/* ===== Content ===== */

/* 背景セクション（全幅） */
.bg-section {
  width: 100%;
  padding: 4rem 1rem; /* 上下の余白をつける */
}

/* 背景色をセクションごとに変える */
.bg-1 { background-color: #FFF6D5; } /* 薄いイエロー */
.bg-2 { background-color: #E6F7E6; } /* ライトグリーン */
.bg-3 { background-color: #EAF7FF; } /* ライトブルー */
.bg-4 { background-color: #FFF0F5; } /* ライトピンク */
.bg-5 { background-color: #F5F5FF; } /* 薄いラベンダー */
.bg-6 { background-color: #FAFAFA; } /* ライトグレー */



.content-section{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  padding:2rem;
  margin-bottom:0.5rem;
}
.content-section h2{
  font-size:1.5rem;
  margin:0 0 1rem;
  color:#007b55;
}
.content-section p{ font-size:1.05rem; margin:0 }


/* ===== Responsive ===== */
@media (max-width:600px){
  .hero{ padding:1.5rem 1rem }
  .cta-btn{ font-size:1rem; border-radius:12px }
  .content-section{ padding:1.2rem }
}

/* ===== Hero Patterns（必要なら選択） ===== */
:root{
  --brand-yellow:#fff266;
  --brand-green:#28a745;
  --accent:#3ddc84;
  --ink:#111;
}
.hero{ position: relative; overflow: hidden; }
.hero::before, .hero::after{ content:""; position:absolute; inset:0; pointer-events:none; }

/* 例: hero--mesh */
.hero.hero--mesh{
  background: radial-gradient(1200px 600px at 10% 0% , rgba(61,220,132,.30), transparent 60%),
              radial-gradient(900px 500px  at 90% 10%, rgba(255,255,255,.45), transparent 65%),
              radial-gradient(700px 400px  at 60% 100%, rgba(255,255,255,.35), transparent 65%),
              var(--brand-yellow);
}
.hero.hero--mesh::after{
  background: radial-gradient(800px 400px at 20% 30%, rgba(255,255,255,.18), transparent 60%),
              radial-gradient(600px 300px at 80% 70%, rgba(61,220,132,.15), transparent 65%);
  animation: meshFloat 12s ease-in-out infinite alternate;
  opacity:.9;
}
@keyframes meshFloat{
  from{ transform: translate3d(-1%, -1%, 0) }
  to  { transform: translate3d(1%, 1%, 0) }
}


/* ===== Hero 記念バッジ ===== */

/* 記念バッジ（パーツ画像） */
/* 左上バッジ */
.hero-badge--left {
  position: absolute;
  top: 10px;     /* 少し余白を残して配置 */
  left: 10px;
  height: clamp(40px, 10vw, 70px); /* ぐっと小さめに調整 */
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
  pointer-events: none;
}

/* スマホ用：さらに控えめ */
@media (max-width: 420px){
  .hero-badge--left {
    top: 6px;
    left: 6px;
    height: clamp(35px, 14vw, 60px);
  }
}



/* ===== CTA フワッと出現 ===== */
.cta-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.cta-btn.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== フローティングCTA ===== */
.float-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  padding:
    .75rem
    max(1rem, env(safe-area-inset-right))
    calc(.75rem + env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 -10px 30px rgba(0,0,0,.08);
  display: none;
  z-index: 999;
}
.float-cta__inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 .5rem;
  text-align:center;
}
.float-cta .cta-btn {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  transform: none;
}
.float-cta[data-show="true"] {
  display: block;
  animation: floatIn .32s ease-out both;
}
.float-cta[data-show="false"] {
  animation: floatOut .22s ease-in both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(16px); }
}

/* 動きを控えるユーザー設定の配慮 */
@media (prefers-reduced-motion: reduce) {
  .cta-btn { transition: none !important; transform: none !important; opacity: 1 !important; }
  .float-cta { animation: none !important; }
}


/* ===== 波区切り ===== */
:root {
  --wave-height: 120px;
  --wave-shadow: rgba(0,0,0,.04);
}

/* ベース */
.ao-wave {
  position: relative;
  height: var(--wave-height);
  line-height: 0;
  overflow: hidden;
  /* 直前の背景色を指定（HTML側のstyleで --wave-from を上書き） */
  background: var(--wave-from, #ffffff);
}

/* SVG共通 */
.ao-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ao-wave path {
  /* 次の背景色を指定（HTML側のstyleで --wave-to を上書き） */
  fill: var(--wave-to, #ffffff);
  stroke: var(--wave-shadow);
  stroke-width: 1;
}

/* 下方向（デフォルト） */
.ao-wave--down svg {
  transform: none;
}

/* 上方向（反転させて再利用） */
.ao-wave--up svg {
  transform: scaleY(-1);
}

/* 高さのレスポンシブ調整 */
@media (max-width: 900px) {
  :root { --wave-height: 100px; }
}
@media (max-width: 600px) {
  :root { --wave-height: 80px; }
}


/* ===== ふわっと表示===== */

/* 初期状態（非表示） */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* 表示状態 */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Plans ===== */

/* 幅を他セクションと統一（= .content-section と同じ 900px） */
.plancontainer{
  max-width: 900px;     /* 1100px → 900px に */
  margin: 0 auto;
  padding: 40px 20px;   /* 60px → 少し軽く */
}

/* レイアウト */
.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;            /* 28px → 24px */
}
@media (min-width: 880px){
  .grid{ grid-template-columns: 1fr 1fr; }
}

/* カード本体（ベース） */
.plan-card{
  position: relative;
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  border-color: #e6eef3;
}

/* 主役カード（左）を軽く強調 */
.plan-card--primary{
  box-shadow: 0 10px 28px rgba(40,167,69,.12);
  transform: translateY(-2px);
}
.plan-card--primary:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(40,167,69,.16);
}

/* タイトル & 説明 */
.plan-card h3{
  margin: 0 0 10px;
  font-size: 1.25rem;           /* 22px 相当 */
  color: var(--tod-green-dark);
}
.plan-card .desc{
  color: #64748b;
  font-size: 0.98rem;
  margin-bottom: 14px;
}

/* バッジ */
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: radial-gradient(circle at top left, #ffd84d, #ffb300);
  color: #111;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  margin-bottom: 14px;
}
.badge img{
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; padding: 2px; object-fit: cover;
}

/* おすすめ（箇条書き） */
.recommend{
  position: relative;
  background: #f8faf8;
  padding: 14px;
  font-size: .95rem;
  border-radius: 12px;
  line-height: 1.65;
  margin-top: 10px;
  margin-bottom: 18px;
  border: 1px solid #e5e7eb;
}
.recommend::before{
  content: "";
  position: absolute;
  top: -9px; left: 22px;
  border-width: 0 9px 9px 9px; border-style: solid;
  border-color: transparent transparent #f8faf8 transparent;
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.05));
}
.recommend p{ margin: 0 0 6px; font-weight: 700; color: var(--tod-green-dark); }
.recommend ul{ margin: 0; padding-left: 20px; }
.recommend li{ margin-bottom: 4px; }

/* CTA 内のボタン幅は自動で揃う（既存 .cta-btn） */

/* モバイル最適化 */
@media (max-width: 600px){
  .plancontainer{ padding: 28px 16px; }
  .plan-card{ padding: 22px 18px; }
  .badge{ font-size: .9rem; padding: 7px 12px; }
  .plan-card h3{ font-size: 1.1rem; }
}




/* ===== 料金例 ===== */


.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 750px;
  margin: 40px auto;
  padding: 0 20px;
}

@media (min-width: 880px){
  .price-cards {
    grid-template-columns: 1fr 1fr 1fr; /* PCでは3列 */
  }
}

.price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
  margin:10px 0px 10px;
	
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.price-card img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* 画像にも角丸をつけると統一感UP */
}


/* コンテンツ内の画像（キャンペーン・説明・料金例など共通） */
.content-img img {
  display: block;
  max-width: 100%;   /* 親幅に合わせて縮小 */
  height: auto;      /* 縦横比を維持 */
  margin: 16px auto; /* 上下に余白 */
  border-radius: 12px; /* デザイン統一のため角丸 */
}


/* ===== コンテンツエリア見出し===== */

h2{
font-size:1.8rem;
margin-bottom:24px;
color:var(--tod-green-dark,#1e7e34);
text-align:center;
font-weight:800;
letter-spacing:.03em;
}
.deal-headline{
font-size:1.35rem;
color:var(--tod-green,#28a745);
margin:22px 0 12px;
position:relative;
}

.deal-headline::after{
content:"";
position:absolute;
left:0; bottom:-4px;
width:60px; height:4px;
background:var(--tod-green,#28a745);
border-radius:2px;
}

.deal-lead{
font-size:1.05rem;
font-weight:600;
color:#475569;
margin-bottom:12px;
}

.highlight{
font-size:1.15rem;
font-weight:700;
color:#0f8051;
background:linear-gradient(90deg, #e8fff0 0%, #ffffff 100%);
padding:8px 12px;
border-radius:8px;
display:inline-block;
margin:10px 0;
}

.deal-amount{ font-size:1.25rem; color:#0f8051; font-weight:800; }
.deal-limit{ color:#64748b; font-size:.9rem; margin-left:6px; }
.content-img{
display:block;
max-width:100%;
height:auto;
margin:14px auto;
}


/* ===== トド電AI===== */

.ai-section{
color: var(--tod-green-dark,#1e7e34); margin: 0 0 10px;
}
.ai-brand{ display:flex; flex-direction:column; align-items:center; gap:10px; }
.ai-logo{ width:min(260px, 60%); height:auto; display:block; }
.ai-lead{ color:#475569; font-weight:600; margin:0; }


/* バッジ */
.ai-badges{ list-style:none; padding:0; margin: 18px auto 8px; display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.ai-badges li{
background:#f1fcf5; color:#0f5132; border:1px solid #e0f4e6; border-radius:999px;
padding:8px 12px; font-size:.95rem; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.ai-badges span{ font-weight:800; color:#0f8051; }


/* 画像とキャプション */
.ai-visual{ text-align:center; margin: 14px 0; }
.ai-caption{ color:#64748b; font-size:.92rem; margin: 6px 0 0; }


/* ステップ */
.ai-steps{ counter-reset: step; list-style:none; padding:0; margin: 10px 0 6px; }
.ai-steps li{ display:flex; gap:12px; align-items:flex-start; padding:14px 12px; border-bottom:1px dashed #e5e7eb; }
.ai-steps li:last-child{ border-bottom:0; }
.step-icon{
flex:0 0 34px; height:34px; border-radius:10px;
background: linear-gradient(135deg, #28a745, #20bd6b);
position:relative;
}
.step-icon::after{
content: counter(step); counter-increment: step;
position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-weight:800;
}
.step-text h3{ margin:0 0 4px; font-size:1.05rem; color:#1e7e34; }
.step-text p{ margin:0; color:#334155; }


/* ギャラリー */
.ai-gallery{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.ai-gallery figure{ margin:0; }
.ai-gallery figcaption{ text-align:center; color:#64748b; font-size:.9rem; margin-top:6px; }


/* 注意書き */
.ai-note{ margin-top:18px; background:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:14px 16px; color:#334155; }
.ai-note strong{ display:inline-block; margin-bottom:6px; font-size:.95rem; color:#111827; }
.ai-note ul{ margin:0; padding-left: 1.1em; }


/* 既存のユーティリティとの整合 */
.content-img{ display:block; max-width:100%; height:auto; margin:12px auto; border-radius:12px; }
.nowrap{ white-space:nowrap; }


/* レスポンシブ */
@media (max-width: 780px){
.ai-gallery{ grid-template-columns: 1fr; }
.ai-head h2{ font-size:1.6rem; }
}
@media (max-width: 600px){
.ai-section{ padding: 26px 16px; margin: 30px auto; }
.ai-lead{ font-size:.98rem; }
.ai-badges li{ font-size:.9rem; }
.step-text h3{ font-size:1rem; }
}

p.ai-highlight{
font-size:1.3rem;
font-weight:600;
text-align:center;
margin: 20px auto;
line-height:1.6;
}
span.highlight-green{
color:#0f8051;
font-weight:800;
background:linear-gradient(transparent 60%, #fff266 60%);
padding:0 4px;
border-radius:4px;
}
p.ai-high{ font-size:1.05rem; line-height:1.9; margin:10px 0 6px; color:#111827; font-weight:600; }
p.hl{ font-weight:800; color:#0f8051; position:relative; }
p.hl::after{ content:""; position:absolute; left:-2px; right:-2px; bottom:.15em; height:.6em; background:#fff266; opacity:.9; z-index:-1; border-radius:4px; }
@media(max-width:600px){ .ai-high{ font-size:1rem; line-height:1.8 } }


/* ===== 切替エリア===== */

/* ===== 切替がスムーズ（リデザイン） ===== */
.switch-section{ max-width: 1080px; margin: 40px auto; padding: 0 16px; }
.switch-title{ text-align:center; font-size:1.9rem; margin: 0 0 18px; color: var(--tod-green-dark,#1e7e34); font-weight:800; letter-spacing:.02em; }


/* 3ポイント */
.switch-points {
  list-style: none;
  margin: 8px 0 6px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.switch-points li {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  text-align: center;
}

.switch-img {
  display: block;
  width: 60px;     /* ちょうどよいサイズ感 */
  height: auto;
  margin: 0 auto 12px;
}

.switch-points h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #111;
}

.switch-points p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

/* スマホでは縦並び */
@media (max-width: 900px) {
  .switch-points {
    grid-template-columns: 1fr;
  }
  .switch-img {
    width: 50px; /* 少し小さめに */
    margin-bottom: 10px;
  }
}

/* タイムライン */
.switch-steps{ list-style:none; margin: 24px 0 0; padding:0; counter-reset: st; }
.switch-steps li{ display:grid; grid-template-columns: 40px 1fr; gap:12px; align-items:start; position:relative; padding: 14px 0; }
.switch-steps li::before{ content:""; position:absolute; left:20px; top:0; bottom:0; width:2px; background: #e5e7eb; }
.switch-steps li:last-child::before{ height: 60%; bottom:auto; }
.step-num{ display:grid; place-items:center; width:40px; height:40px; background:#fff; border:2px solid #28a745; color:#28a745; border-radius:999px; font-weight:800; }
.step-body h4{ margin:0 0 4px; font-size:1.05rem; color:#1e7e34; }
.step-body p{ margin:0; color:#334155; line-height:1.7; }
.switch-steps li:first-child::before {
  top: 50%;   /* 丸の中心から下に線を伸ばす */
}
.switch-steps li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
  z-index: 0; /* ★ 背面に配置 */
}

.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid #28a745;
  color: #28a745;
  border-radius: 999px;
  font-weight: 800;
  position: relative;
  z-index: 1; /* ★ 丸を前面に配置 */
}

/* 補足ノート */
.switch-note{ margin-top: 18px; background:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:14px 16px; color:#334155; }
.switch-note ul{ margin:0; padding-left: 1.1em; }
.switch-note li{ margin:6px 0; }


/* セクション末尾CTA */
.switch-cta{ text-align:center; margin-top: 18px; }
.switch-cta .cta-btn{ max-width: 520px; }


/* レスポンシブ */
@media (max-width: 900px){ .switch-points{ grid-template-columns: 1fr; } }
@media (max-width: 600px){ .switch-title{ font-size:1.6rem } }


/* ===== FAQ ===== */

.faq-item{ padding:16px 0; border-bottom:1px solid #e6e9ee }

/* 質問ボタン */
.faq-q-btn{
  display:flex; align-items:flex-start; gap:10px;
  width:100%; background:#ecf9f0; border:1px solid #d8efe3;
  color:#137c4c; font-weight:700; text-align:left;
  padding:12px 14px; border-radius:12px; cursor:pointer;
}
.faq-q-btn:focus-visible{ outline:0; box-shadow:0 0 0 3px #fff,0 0 0 6px rgba(19,124,76,.25) }

/* 開閉アイコン（矢印） */
.faq-q-btn::after{
  content:""; margin-left:auto; width:10px; height:10px;
  border-right:2px solid currentColor; border-bottom:2px solid currentColor;
  transform:rotate(-45deg) translateY(2px); transition:transform .25s ease;
}
.js-accordion.is-open .faq-q-btn::after{ transform:rotate(45deg) translateY(-2px) }

/* 回答パネル（スライド＆フェード） */
.faq-a{
  display:flex; align-items:flex-start; gap:10px;
  background:#fff; border:1px solid #eef1f5; color:#334155;
  line-height:1.7; border-radius:12px; margin-top:10px;

  max-height:0; overflow:hidden; opacity:0;
  transition:max-height .35s ease, opacity .35s ease, padding .35s ease;
  padding:0 14px; /* 開くまで上下0 */
}
.js-accordion.is-open .faq-a{
  max-height:800px; opacity:1; padding:12px 14px;
}

/* アイコン */
.qa-icon{ width:32px; height:32px; flex:0 0 32px; filter:drop-shadow(0 1px 2px rgba(0,0,0,.08)) }

.faq-q-btn {
  display: flex;
  align-items: center;   /* アイコンと文字を縦中央揃え */
  gap: 10px;
  width: 100%;
  background: #ecf9f0;
  border: 1px solid #d8efe3;
  color: #137c4c;
  font-weight: 700;
  font-size: 1rem;       /* ボタン全体の文字サイズを統一 */
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.faq-q-btn span {
  font-size: inherit;     /* 親と同じサイズ */
  line-height: 1.4;       /* 行間を安定させる */
  display: inline-block;  /* アイコンと高さを揃える */
}

.faq-q-btn .qa-icon {
  width: 28px;
  flex-shrink: 0;         /* アイコンが潰れないように固定 */
}

/* 吊り下げ用の余白と基準 */
.has-hanger{
  position: relative;
  /* 画像ぶんだけ上部に余白を足す（カード内の文字が被らないように） */
  padding-top: calc(2rem + clamp(40px, 10vw, 80px));
}

/* トドック画像：カードの上端から“ぶら下げる” */
.todock-hang{
  position: absolute;
  top: calc(-2 * clamp(45px, 8vw, 70px)); /* 上に突き出させる */
  left: 28px;                              /* 好きな位置に調整（centerにしたければ left:50%; transformに続けて translateX(-50%)） */
  width: clamp(120px, 22vw, 240px);        /* ほどよく可変 */
  height: auto;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));
  transform-origin: 50% 10%;               /* 頭のあたりを支点に */
  animation: todock-swing 3.5s ease-in-out infinite;
}

/* ふわっとゆれる（好みで角度は増減OK） */
@keyframes todock-swing{
  0%,100% { transform: rotate(0deg); }
  25%     { transform: rotate(2.2deg); }
  50%     { transform: rotate(0deg); }
  75%     { transform: rotate(-2.2deg); }
}

/* 動きが苦手な利用者配慮 */
@media (prefers-reduced-motion: reduce){
  .todock-hang{ animation: none; }
}


.promo-join{
padding: 48px 20px;
text-align:center;
border-radius:24px;
position:relative;
overflow:hidden;
opacity:0;
transform:translateY(20px);
transition:opacity .6s ease, transform .6s ease;
}
.promo-join.show{
opacity:1;
transform:translateY(0);
}


p .promo-eyebrow{
font-weight:800;
font-size:1.4rem;
color:#1a1a1a;
margin:0 0 14px;
letter-spacing:.05em;
text-align: center;
}

p .promo-amount{
font-weight:900;
font-size:clamp(10.1rem,11vw,6.5rem);
line-height:1;
color:var(--brand-green);
margin:0 auto 16px;
display:inline-block;
text-align: center;
}

p .promo-amount .unit{
font-size:0.4em;
margin-left:8px;
font-weight:900;
color:#1a1a1a;
background:linear-gradient(transparent 65%, var(--brand-yellow) 65%);
border-radius:4px;
padding:0 4px;
}

/*
@media (max-width: 600px){
.promo-amount{
font-weight:900;
font-size:clamp(7.1rem,11vw,6.5rem);
line-height:1;
color:var(--brand-green);
margin:0 auto 16px;
display:inline-block;
text-align: center;
}
**/

.promo-amount .unit{
font-size:0.25em;
margin-left:8px;
font-weight:900;
color:#1a1a1a;
background:linear-gradient(transparent 65%, var(--brand-yellow) 65%);
border-radius:4px;
padding:0 4px;
}
}


.promo-catch{
margin:0;
font-size:2.2rem;
font-weight:900;
color:#111;
display:inline-block; padding:4px 12px;
background:linear-gradient(transparent 65%, var(--brand-yellow) 65%);
border-radius:8px;
}


section .js-count{
font-weight:900;
font-size:clamp(7.1rem,11vw,6.5rem);
line-height:1;
color:var(--brand-green);
margin:0 auto 16px;
display:inline-block;
text-align: center;
}

/* カウントアップ” */
/* 親を中央寄せ（保険） */
.promo-join{ text-align:center; }

/* 数字＋テキストの縦並びを中央に */
.promo-amount{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← 水平中央 */
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

/* 内側 section の初期余白をリセットして扱いやすく */
.promo-amount > section{
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

/* 数字を大きく、レスポンシブに縮む */
.promo-amount .js-count{
  display: inline-block;
  font-weight: 900;
  font-size: clamp(10.6rem, 10vw, 6rem);
  letter-spacing: .02em;
  color: var(--brand-green, #28a745);
}

/* 「ポイントプレゼント！」は一段下で少し小さく */
.promo-amount .unit{
	display: inline-block;
	font-weight: 800;
	font-size: clamp(2.1rem, 3.6vw, 2rem);
	letter-spacing: .06em;
	color:#1a1a1a;
	background:linear-gradient(transparent 65%, var(--brand-yellow) 65%);
	border-radius:4px;
	padding:0 4px;
	margin:5px 0 6px;
}

/* スマホの余白を少し広めに（任意） */
@media (max-width: 480px){
  .promo-amount{ gap: 8px; }
}

@media (max-width: 480px){
  /* 極小画面ではもっと抑える */
  .promo-amount .js-count{
    font-size: clamp(5.1rem, 14vw, 3.4rem);
  }
  .promo-amount .unit{
    font-size: clamp(1rem, 4.5vw, 1.6rem);
  }
}



/* フッターデザイン” */

:root{
  --footer-bg:#0F2B1E;
  --footer-text:#EAF7EE;
  --footer-dim:#CDE8D6;
  --footer-link:#B7F5CB;
}

.site-footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding: 40px 16px 110px;
}

.footer-cta{
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(6px);
}
.footer-cta__lead{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--footer-dim);
}

.footer-nav{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0 16px;
}
.footer-col h4{
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #fff;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; }
.footer-col li{ margin: 6px 0; }
.footer-col a{
  color: var(--footer-link);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: opacity .2s ease, border-color .2s ease;
}
.footer-col a:hover{
  opacity: .9;
  border-color: rgba(183,245,203,.45);
}

/* 連絡先 */
.footer-col--contact .footer-tel{ margin:.25rem 0 0; font-weight:700; }
.footer-col--contact .footer-hours{ margin:.2rem 0 0; color: var(--footer-dim); font-size:.95rem; }

/* 下段バー */
.footer-bar{
  max-width: 980px;
  margin: 12px auto 0;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-copy{ color: var(--footer-dim); }
.to-top{
  color:#fff;
  font-size:.95rem;
  text-decoration:none;
  opacity:.9;
}
.to-top:hover{ opacity:1; }

/* レスポンシブ */
@media (max-width: 900px){
  .footer-nav{ grid-template-columns: 1fr 1fr; }
  .footer-bar{ flex-direction: column; gap: 8px; }
}
@media (max-width: 560px){
  .footer-nav{ grid-template-columns: 1fr; }
}

/* ===== 年間おトク額 比較 ===== */
.saving-conditions{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:10px 12px;
  margin:10px 0 12px;
  color:#334155;
  font-size:.95rem;
}
.saving-conditions strong{ color:#111827; }

.saving-comparison{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin:8px 0 6px;
}
@media (min-width: 860px){
  .saving-comparison{ grid-template-columns: repeat(3, 1fr); }
}

.saving-card{
  position:relative;
  background:#fff;
  border:1px solid #eef1f4;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:16px 14px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.saving-card:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.10); }

.saving-card--accent{
  border:2px solid var(--tod-green,#28a745);
  box-shadow:0 10px 28px rgba(40,167,69,.14);
}

/* おすすめバッジ（アクセントカードのみ表示） */
.saving-badge{
  position:absolute; top:12px; left:12px;
  padding:4px 10px;
  border-radius:999px;
  font-weight:800; font-size:.85rem;
  color:#154;
  background:linear-gradient(135deg,#fff266,#ffe27a);
  border:1px solid rgba(0,0,0,.06);
}

.saving-plan{
  margin:6px 0 8px;
  font-size:1.05rem;
  color:#111827;
  font-weight:800;
}

.saving-amount{
  margin:0;
  font-size:1rem;
  color:#475569;
  line-height:1.2;
}
.saving-amount strong{
  display:block;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height:1.1;
  color: var(--tod-green,#28a745);
  font-weight:900;
  letter-spacing:.02em;
  text-shadow: 0 8px 18px rgba(40,167,69,.18);
}
.saving-amount span{ display:inline-block; margin:2px 4px 0; }

/* セクション内の余白となじませる */
.section-2 .saving-conditions,
.section-2 .saving-comparison{ max-width: 900px; margin-left:auto; margin-right:auto; }

.saving-conditions p {
	font-size:13px;
}

/* ===== おとなりさん紹介キャンペーン 見出し ===== */
.neighbor-cp{
  --cp-blue:#1f66a6;          /* メイン青 */
  --cp-blue-dark:#174d7d;
  --cp-gray:#3a4a5a;
  max-width:900px;
  padding:10px 16px 14px;
  text-align:center;
  color:var(--cp-gray);
}
.cp-eyebrow{
  margin:0 0 8px; 
  font-weight:700;
  letter-spacing:.04em;
  font-size:clamp(.9rem,2.4vw,1.05rem);
}
.cp-title{
  margin:5px 0 5px;
  line-height:1.05;
  color:var(--cp-blue);
  font-weight:900;
}
.cp-title .main{
  display:inline-block;
  font-size:clamp(2rem,8.8vw,4.2rem); /* おとなりさん（大） */
  color: var(--brand-green, #28a745);
}
.cp-title .sub{
  display:inline-block;
  font-size:clamp(1.6rem,6.6vw,3.2rem); /* 紹介キャンペーン（中） */
  letter-spacing:.06em;
  color: var(--brand-green, #28a745);
}
.cp-deadline{
  margin:10px 0 6px;
  font-weight:900;
  color:var(--cp-blue-dark);
  letter-spacing:.04em;
  display:flex; gap:.5em; justify-content:center; align-items:center;
  font-size:clamp(1.1rem,4vw,1.6rem);
}
.cp-deadline .year{
  font-size:.9em;
}
.cp-deadline .date em{
  font-style:normal;
  font-size:1.2em;
}
.cp-deadline .badge{
  display:inline-grid; place-items:center;
  width:1.6em; height:1.6em; margin:0 .2em;
  border-radius:999px; background:#ff5747; color:#fff; font-weight:900;
  font-size:.7em; letter-spacing:.08em;
}

.cp-divider{
  height:6px;
  background: linear-gradient(90deg, var(--cp-blue) 0, var(--cp-blue-dark) 100%);
  border-radius:6px;
  margin:12px auto;
  width:min(720px, 90%);
	
}
.cp-desc{
  margin:10px 0;
  font-weight:700;
  line-height:1.8;
  font-size:clamp(1rem,2.8vw,1.15rem);
}
.cp-desc .mark{
  font-weight:900;
  color:#e63a2e;               /* 画像の赤強調イメージ */
  position:relative;
}
.cp-desc .mark::after{
  content:"";
  position:absolute; left:-2px; right:-2px; bottom:.2em; height:.55em;
  background:#ffe6e2; z-index:-1; border-radius:4px; /* ほんのり下線マーカー */
}

/* 余白微調整（スマホ） */
@media (max-width: 480px){
  .cp-divider{ height:5px }
}



/* === Pricing Transparency Box === */
.pricing-note{
  max-width: 900px;
  margin: 16px auto 0;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.pricing-note__title{
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tod-green-dark,#1e7e34);
}
.pricing-note__lead{
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.8;
  font-weight: 600;
}

/* 数式風の内訳ピル */
.pricing-note__math{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 10px 0 8px;
}
.pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.pill--base{  background:#f1fcf5; color:#0f5132; border-color:#e0f4e6; }
.pill--usage{ background:#fff8e6; color:#7a4d00; border-color:#ffecbd; }
.pill--equip{ background:#f7eef7; color:#5a2b6a; border-color:#ecd8f0; }
.pill--total{
  background: linear-gradient(135deg, #28a745, #20bd6b);
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 18px rgba(40,167,69,.18);
}

.math-plus, .math-eq{
  font-weight: 900;
  color: #94a3b8;
  padding: 0 .2em;
}

/* 補足 */
.pricing-note__tips{
  margin: 8px 0 0;
  padding-left: 1em;
  color:#64748b;
  font-size: .95rem;
}
.pricing-note__tips li{ margin: 4px 0; }

/* レスポンシブ微調整 */
@media (max-width: 560px){
  .pricing-note{ padding: 14px 14px; }
  .pricing-note__lead{ line-height: 1.7; }
  .math-plus, .math-eq{ padding: 0 .1em; }
}

/* === Price-card と同じ箱に入れる前提の中身調整 === */
.price-transparency{
  display: block;               /* price-cardの中身をテキスト用に */
  text-align: left;
  padding: 16px;                /* 既存 .price-card と揃える */
}

.pt-title{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tod-green-dark,#1e7e34);
}
.pt-lead{
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.8;
  font-weight: 600;
}

/* 数式風のピル */
.pt-math{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 10px 0 8px;
}
.pt-pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.pt-pill--base{  background:#f1fcf5; color:#0f5132; border-color:#e0f4e6; }
.pt-pill--usage{ background:#fff8e6; color:#7a4d00; border-color:#ffecbd; }
.pt-pill--equip{ background:#f7eef7; color:#5a2b6a; border-color:#ecd8f0; }
.pt-pill--total{
  background: linear-gradient(135deg, #28a745, #20bd6b);
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 18px rgba(40,167,69,.18);
}
.pt-op{ font-weight:900; color:#94a3b8; padding:0 .15em; }

.pt-tips{
  margin: 8px 0 0;
  padding-left: 1em;
  color:#64748b;
  font-size:.95rem;
}
.pt-tips li{ margin: 4px 0; }

/* スマホ微調整 */
@media (max-width:560px){
  .pt-lead{ line-height:1.7; }
}

/* === price-card内のレイアウト最適化（並び改善） === */
.price-transparency{ display:block; text-align:left; padding:16px; }

/* タイトル/リード（既存と同等） */
.pt-title{ margin:0 0 8px; font-size:1.05rem; font-weight:800; color:var(--tod-green-dark,#1e7e34); }
.pt-lead{ margin:0 0 14px; color:#334155; line-height:1.85; font-weight:600; }

/* 等式ライン：折返し前提のセンター配置 */
.eq-line{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px 12px; margin: 10px 0px 10px}
.eq-group{ display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }

/* オペレーターの見た目を控えめなチップに */
.eq-op{ display:inline-grid; place-items:center; min-width:26px; height:26px; padding:0 6px; border-radius:999px; font-weight:900; color:#64748b; background:#fff; border:1px solid #e5e7eb; box-shadow:0 1px 0 rgba(255,255,255,.8) inset; }
.eq-op.eq-eq{ color:#0f8051; border-color:#cfe9da; background:#f3fbf6; }

/* ピル（既存定義を踏襲） */
.pt-pill{ display:inline-block; padding:8px 12px; border-radius:999px; font-weight:800; font-size:.95rem; line-height:1; border:1px solid #e5e7eb; box-shadow:0 1px 0 rgba(255,255,255,.8) inset; white-space:nowrap; }
.pt-pill--base{  background:#f1fcf5; color:#0f5132; border-color:#e0f4e6; }
.pt-pill--usage{ background:#fff8e6; color:#7a4d00; border-color:#ffecbd; }
.pt-pill--equip{ background:#f7eef7; color:#5a2b6a; border-color:#ecd8f0; }
.pt-pill--total{ background:linear-gradient(135deg,#28a745,#20bd6b); color:#fff; border-color:transparent;}


/* 備考 */
.pt-tips{ margin:20px 0 0; padding-left:1em; color:#64748b; font-size:.95rem; }
.pt-tips li{ margin:4px 0; }

/* --- レスポンシブ：スマホは"縦スタック"で崩れない＆見やすい --- */
@media (max-width:560px){
  .pt-lead{ line-height:1.7; }
  /* 1列グリッドに切替：ピルと演算子を縦に積む */
  .eq-line{ display:grid; grid-auto-rows:auto; justify-items:center; gap:8px; }
  /* 各グループは縦並び（ピル→演算子）。nowrapで“＋”の孤立を防止 */
  .eq-group{ display:grid; grid-auto-flow:row; justify-items:center; gap:6px; white-space:normal; }
  .pt-pill{ font-size:.92rem; padding:7px 10px; }
  .eq-op{ min-width:22px; height:22px; font-size:.9rem; }
  /* 合計ピル（最後のグループ）は演算子を非表示にして強調 */
  .eq-total .eq-op{ display:none !important; }
  .eq-total .pt-pill--total{ transform:translateZ(0); }
}

/* 料金まとめカード：3カラムを等幅・等間隔・同じ高さに */
.go-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3等分 */
  gap: 14px;                                        /* 等間隔 */
  align-items: stretch;                              /* 各セルの高さを揃える */
}

.go-cell{
  background:#fff;
  border:1px solid #e6e9ee;
  border-radius:12px;
  padding:14px;
  text-align:center;

  /* 同じ高さ＆中身を中央寄せ */
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:120px;           /* 必要なら調整 */
}

/* 数字の見やすさ（桁ズレ防止＆行揃え） */
.go-value{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  font-size:1.6rem;
  font-variant-numeric: tabular-nums; /* 等幅数字 */
}

/* レスポンシブ：タブレット→2列、スマホ→1列 */
@media (max-width: 980px){
  .go-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .go-grid{ grid-template-columns: 1fr; }
}

/* ===== フル幅＆タイポ強化 ===== */
/* ラッパーの箱感を外して横いっぱいに */
.gas-onecard.gas-onecard--full{
  background: transparent; border: none; box-shadow: none;
  padding: 0; margin: 0; width: 100%;
}

/* 3枚を等幅でフル活用（余白はカード間のみ） */
.go-grid{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px; align-items:stretch;
}

/* カード本体（フラット＆上品な影） */
.go-cell{
  background:#fff; border:1px solid #e8ecf2; border-radius:14px;
  padding:22px 50px; text-align:center; min-height:132px;
  display:flex; flex-direction:column; justify-content:center;
  box-shadow:0 2px 10px rgba(16,24,40,.04);
}

/* ラベル／値／注記のタイポグラフィ */
.go-label{ font-weight:800; color:#136a34; letter-spacing:.02em; margin-bottom:8px; font-feature-settings:"palt" 1; }
.go-value{ display:inline-flex; align-items:baseline; gap:8px; line-height:1.05; font-size:2rem; font-variant-numeric:tabular-nums; }
.go-value strong{ font-weight:800; }
.go-unit{ font-size:1.05rem; color:#3b4758; }
.go-note{ margin-top:8px; font-size:.95rem; color:#6b778c; }

/* タブレット→2列、スマホ→1列 */
@media (max-width: 980px){ .go-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 600px){
  .go-grid{ grid-template-columns:1fr; }
  .go-cell{ min-height:120px; padding:18px 120px; }
  .go-value{ font-size:1.5rem; }
}

/* 料金まとめエリアの ul 左インデントを打ち消し */
.gas-onecard .go-grid,
.gas-summary .gs-grid,
.gas-pricing .gp-plans {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style: none !important;
}

/* 念のため li のデフォルトもリセット */
.gas-onecard .go-grid > li,
.gas-summary .gs-grid > li,
.gas-pricing .gp-plans > li {
  list-style: none;
}


/* 3倍リボン */
.ribbon{ 
  position: absolute; 
  top: 10px; 
  left: 10px; 
  display: inline-flex; 
  align-items: center; 
  gap: 4px; 
  color: #fff; 
  background: linear-gradient(135deg, var(--ribbon), #ff7a7c);
  border-radius: 999px; 
  padding: 6px 10px; 
  font-weight: 900; 
  box-shadow: 0 8px 20px rgba(255,77,79,.25);
}
.ribbon-main{ font-size: .9rem; }
.ribbon-x{ font-size: 1.15rem; line-height: 1; transform: translateY(-1px); }
.ribbon-sub{ font-size: .95rem; }

/* 数値エリア */
.amount-wrap{ 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 10px; 
  justify-items: center;
}
.amount-current{ 
  display: inline-flex; 
  align-items: baseline; 
  gap: 10px; 
  color: var(--ink);
}
.amount-current .num{ 
  font-weight: 900; 
  font-size: clamp(2.4rem, 6vw, 4.2rem); 
  line-height: 1; 
  letter-spacing: .01em; 
  font-variant-numeric: tabular-nums; 
  text-shadow: 0 10px 28px rgba(16,138,0,.15);
}
.amount-current .unit{ 
  font-size: clamp(1rem, 2.4vw, 1.25rem); 
  color: #334155; 
  font-weight: 800;
}

/* 通常ポイント（参考表示） */
.amount-base{ 
  display: inline-flex; 
  align-items: baseline; 
  gap: 6px; 
  color: #64748b;
  margin-bottom: 5px;
}
.amount-base .base-label{ 
  background: #eef2f7; 
  color: #334155; 
  padding: 2px 8px; 
  border-radius: 999px; 
  font-weight: 800; 
  font-size: 1.95rem;
}
.amount-base .base-num{
  position: relative; 
  font-weight: 900; 
  font-variant-numeric: tabular-nums;
}
/* 取り消し線（少し上に） */
.amount-base .base-num::after{ 
  content: ""; 
  position: absolute; 
  left: -2px; 
  right: -2px; 
  top: 50%; 
  height: 2px; 
  background: repeating-linear-gradient(90deg, #ff9aa0 0 10px, #ffa7ac 10px 20px);
  transform: translateY(-50%) rotate(-2deg); 
  opacity: .9;
}
.amount-base .base-unit{ font-size: 1rem; }

/* 備考 */
.bonus-note{ 
  margin: 10px 0 0; 
  color: #667085; 
  font-size: .92rem;
}

/* レスポンシブ（小さめの画面で余白最適化） */
@media (max-width: 560px){
  .promo-bonus{ padding: 12px 12px; }
  .bonus-hero{ padding: 16px 12px; }
  .ribbon{ top: 8px; left: 8px; padding: 5px 9px; }
}


.countup-block{
	margin-bottom: 10px;
}

/* バッジ行：中央寄せ＋下の数値と少し間隔 */
.countup-block .badge-row{
  display:flex;
  justify-content:center;
  margin-top:6px;
  margin-bottom:6px;
}

/* ピル型バッジ（周囲に合わせたやさしい緑トーン） */
.badge-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:1.12rem;
  line-height:1;
  border:1px solid #d8efe3;
  background:#ecf9f0;     /* 淡いグリーン */
  color:#0f5132;          /* 文字は深い緑 */
  box-shadow:0 1px 0 rgba(255,255,255,.8) inset, 0 4px 10px rgba(16,24,40,.05);
}

/* “3” を少しだけ強調（過度に派手にしない） */
.badge-pill .badge-x{
  font-size:1.85em;
  font-weight:900;
  margin:0 .05em 0 .1em;
}

/* もし青系にしたい場合（周辺がブルーのセクション用）：.badge--blue を付与 */
.badge--blue{
  border-color:#cfe3ff;
  background:#eaf4ff;
  color:#0b4a8a;
}

/* スマホ微調整 */
@media (max-width:560px){
  .badge-pill{ padding:4px 10px; font-size:.9rem; }
}

/* 行の整列 */
.promo-amount .badge-row{
  display:flex; justify-content:center; margin-bottom:6px;
}

/* ===== ヒーローカード ===== */
.saving-hero2{
  /* 横いっぱい・角丸大きめ・グラデ強め */
  width: 100%;
  border-radius: 20px;
  padding: clamp(18px, 3.5vw, 32px);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(120% 120% at 85% 0%, rgba(255,255,255,.15), transparent 55%),
    linear-gradient(135deg, #2ac06a, #16a34a 45%, #0e8a3b);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.6vw, 10px);
  position: relative; /* 矢印用 */
}


/* ラベル */
.sv2-cap{
  display: inline-block;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .08em;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(3px);
}

/* 金額（数字主役） */
.sv2-amt{
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
}
.sv2-num{
  font-size: clamp(2.2rem, 8.2vw, 4.8rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  /* 縁取り + グロー ※白背景上でも読める */
  text-shadow:
    0 2px 0 rgba(0,0,0,.10),
    0 18px 40px rgba(0,0,0,.25),
    0 0 36px rgba(255,255,255,.35);
}
.sv2-unit{
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  font-weight: 800;
  text-shadow: 0 2px 0 rgba(0,0,0,.10);
}

/* サブコピー */
.sv2-copy{
  margin: 0;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  text-shadow: 0 1px 0 rgba(0,0,0,.12);
  opacity: .98;
}

/* 下向き矢印（次ブロックへの誘導） */
.sv2-arrow{
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  color: #98a2b3;
  font-weight: 900;
}

/* 親の背景が淡色でも濃色でも読めるように、外余白は親に任せる */
.saving-hero2 + *{ margin-top: 18px; }

/* スマホ最適化 */
@media (max-width: 560px){
  .saving-hero2{ border-radius: 16px; }
}

/* 上部サブ見出し（やさしい白チップ） */
.sv2-sub{
  margin: 0 0 .25rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  color:#fff;
  font-weight: 800;
  letter-spacing: .02em;
  display: inline-block;
}

/* 金額の数字をさらに大きく（0も含め全桁を強調） */
.sv2-num{
  font-size: clamp(4.9rem, 9.8vw, 9.4rem); /* ←大きく */
  letter-spacing: .01em;
}

/* もしHTML内に .sv2-arrow が残っていても非表示にする */
.sv2-arrow{ display:none !important; }

/* 下向き矢印（中央寄せ・周囲デザインになじむ薄グレー） */
.down-arrow{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px 0 10px;     
  font-weight: 900;
  color: #98a2b3;      /* 優しいグレーで主張控えめ */
  line-height: 1;
  transform: translateY(2px);
}

/* === 共通ホバー（price-cardに合わせた持ち上がり） === */
.hover-card{
transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}
.hover-card:hover{
transform: translateY(-2px);
box-shadow: 0 16px 36px rgba(0,0,0,.12);
}


/* 数字をさらに大きく（0も含め全桁を強調） */
.sv2-num{ font-size: clamp(2.8rem, 10vw, 5.8rem); letter-spacing: .01em; }
.sv2-num strong{ font-weight: 900; }
/* 数字の形を整える（等幅/ライニング/必要ならスラッシュゼロ） */
.sv2-num{ font-variant-numeric: tabular-nums lining-nums; font-feature-settings: "tnum" 1, "lnum" 1; }


/* === “シャキーン”光のスキャン === */
.shine-on-view{ position: relative; overflow: hidden; }
.shine-on-view::after{
content: ""; position: absolute; inset: 0; pointer-events: none;
background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
transform: translateX(-120%);
opacity: 0; mix-blend-mode: screen;
}
/* 表示時に一度だけスキャンする */
.shine-on-view.is-visible::after{ opacity: 1; animation: heroShine 1.4s cubic-bezier(.22,.61,.36,1) 0s 1; }
@keyframes heroShine{ to { transform: translateX(130%); opacity: 0; } }


/* モーション控えめ設定を尊重 */
@media (prefers-reduced-motion: reduce){
.hover-card, .hover-card:hover{ transition: none; transform: none; box-shadow: inherit; }
.shine-on-view::after{ display: none; }
}

/* ラッパー：重なりの土台を用意（上の装飾より前面に） */
.saving-hero-wrap{
  position: relative;
  width: 100%;
  z-index: 3;                     /* セクションの矢印等より前へ */
}

p.info{
	font-size:65%;
	
}


/* 行を中央寄せに */
.countup-block .deadline-row.center{
  display:flex;
  justify-content:center;
  margin: 4px 0 6px;   /* 上下は好みで調整 */
}

.deadline-ghost{
  position:relative;
  display:inline-block;
  color:#116a34;
  font-weight:800;
  letter-spacing:.02em;
  text-align: :center;
}

.deadline-ghost::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-3px; height:3px;
  background: linear-gradient(90deg,#e4f7ec,transparent 70%);
  border-radius:3px;
}
.deadline-ghost strong{ font-weight:900; }

/* カードの器 */
.simulator.card{
  background:#fff; border:1px solid #e6e9ee; border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  padding:18px 20px;
}
.sim-ttl{ margin:0 0 10px; font-weight:900; color:#111; }

/* 入力レイアウト */
.sim-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; align-items:end; }
.sim-field{ position:relative; display:flex; flex-direction:column; gap:6px; }
.sim-label{ font-weight:800; color:#136a34; }
.sim-input{
  width:100%; padding:10px 12px; border:1px solid #e5e7eb; border-radius:12px;
  background:#fff; font-size:1rem; outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.sim-input:focus{ border-color:#86e0b2; box-shadow: 0 0 0 4px rgba(22,163,74,.15); }
.sim-input--num{ padding-right:56px; }
.sim-suffix{
  position:absolute; right:10px; bottom:10px; color:#64748b; font-weight:800;
}
.sim-hint{ color:#94a3b8; }

/* ボタン */
.sim-btn{
  grid-column: span 1;
  padding:12px 14px; border:none; border-radius:12px; font-weight:900;
  background:linear-gradient(135deg,#28a745,#20bd6b); color:#fff; cursor:pointer;
  box-shadow:0 10px 24px rgba(32,189,107,.25);
  transition:transform .2s ease, box-shadow .2s ease;
}
.sim-btn:hover{ transform: translateY(-1px); box-shadow:0 16px 36px rgba(32,189,107,.3); }

/* 結果表示 */
.sim-result{ margin-top:12px; }
.result-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.result-card{
  background:#fff; border:1px solid #e6e9ee; border-radius:12px; padding:12px;
}
.result-card--coop{ border-color:#cfe9da; background:linear-gradient(180deg,#f3fbf6,#ffffff); }
.rcap{ display:inline-block; font-weight:800; color:#64748b; margin-bottom:4px; }
.rcap--green{ color:#0f8051; }
.rnum{ margin:0; display:flex; align-items:baseline; gap:8px; }
.rnum #nowPrice, .rnum #coopPrice{ font-size:1.6rem; font-weight:900; font-variant-numeric:tabular-nums; }
.runit{ color:#475569; font-weight:800; }

/* おトク表示 */
.save-line{ margin:10px 0 0; text-align:center; font-size:1.05rem; color:#111; }
.save-badge{ display:inline-block; padding:2px 8px; border-radius:999px; font-weight:800; background:#ecf9f0; color:#0f5132; border:1px solid #d8efe3; }
.save-gray{ color:#64748b; }

/* レスポンシブ */
@media (max-width:960px){ .sim-grid{ grid-template-columns: 1fr 1fr 1fr; } .sim-btn{ grid-column: span 1; } }
@media (max-width:680px){
  .sim-grid{ grid-template-columns:1fr; }
  .result-row{ grid-template-columns:1fr; }
}

/* === 節約ヒーロー：攻めのインパクト === */
.save-impact{ margin-top: 10px; }
.impact-hero{
  position: relative;
  border-radius: 18px;
  padding: clamp(16px, 3.2vw, 28px);
  text-align: center;
  color: #1b1b1b;
  background: linear-gradient(135deg,#ffe98a,#ffcf4d,#ffb703);
  box-shadow: 0 18px 40px rgba(255,183,3,.28);
  overflow: hidden;
  transform: translateZ(0);             /* アニメのジャギ抑制 */
  animation: impactPop .5s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes impactPop{
  from{ transform: scale(.98); opacity:.0; }
  to{   transform: scale(1);   opacity:1;  }
}

.impact-cap{
  display:inline-block;
  padding:.35rem .8rem;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.08em;
  background: rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
  color:#0f5132;
}

.impact-amt{
  margin:.25rem 0 0;
  display:inline-flex; align-items:baseline; gap:.6rem;
  color:#111;
}
.impact-num{
  font-size: clamp(2.4rem, 9vw, 5.6rem);  /* ← デカく！ */
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  text-shadow: 0 2px 0 rgba(255,255,255,.8);
}
.impact-unit{ font-weight: 900; color:#2a2a2a; }

.impact-yr{
  margin:.25rem 0 0;
  font-weight: 900; letter-spacing:.02em;
  color:#0f5132;
}

.impact-burst{
  position:absolute; inset:-40% -10% auto -10%;
  height: 200%;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.45), transparent 55%),
              radial-gradient(circle at 15% 20%, rgba(255,255,255,.35), transparent 50%),
              radial-gradient(circle at 85% 10%, rgba(255,255,255,.25), transparent 50%);
  animation: burstSweep 1.2s ease-out .15s both;
  pointer-events:none;
  mix-blend-mode: screen;
}
@keyframes burstSweep{
  from{ transform: scale(1.1) translateY(10%); opacity:.0; }
  to  { transform: scale(1);   opacity:1; }
}

/* 例えコピー（攻め色を一点だけ使用） */
.impact-compare{
  margin: 8px 0 0;
  text-align: center;
  font-size: 1.05rem;
  color:#1f2937;
}
.impact-compare b{ color:#ff2f00; font-weight:900; }

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce){
  .impact-hero{ animation:none; }
  .impact-burst{ display:none; }
}


/* ====== 引き算スタイル ====== */
/* 結果の簡潔表示 */
.save-brief{ margin:10px 0 0; text-align:center; }
.save-brief__month{
  margin:0; font-weight:900; font-size:1.2rem; color:#111;
  display:flex; justify-content:center; align-items:baseline; gap:.4rem;
}
.save-brief__month b{ font-size:1.6rem; font-variant-numeric:tabular-nums; }
.save-brief .unit{ color:#475569; font-weight:800; }
.save-brief .label{ color:#116a34; font-weight:900; }
.save-brief .save-percent{ color:#64748b; font-weight:700; }
.save-brief__year{ margin:.2rem 0 0; color:#334155; }

/* インパクト帯（攻め→上品へ） */
.save-impact{ margin-top: 10px; }
.impact-hero{
  border-radius: 16px;
  padding: clamp(14px, 3vw, 24px);
  text-align:center;
  color:#222;
  background: linear-gradient(135deg,#ffe79a,#ffd55b,#ffbf1a);
  box-shadow: 0 10px 28px rgba(255,191,26,.20);
  position:relative;
  overflow:hidden;
}
.impact-cap{
  display:inline-block; padding:.3rem .7rem; border-radius:999px;
  background: rgba(255,255,255,.35); border:1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(3px); color:#0f5132; font-weight:900; letter-spacing:.05em;
}
.impact-amt{ margin:.3rem 0 0; display:inline-flex; align-items:baseline; gap:.5rem; }
.impact-num{
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  font-weight:900; line-height:1; font-variant-numeric:tabular-nums;
  text-shadow:none; letter-spacing:.01em;
}
.impact-unit{ color:#2a2a2a; font-weight:800; }
.impact-yr{ margin:.15rem 0 0; color:#0f5132; font-weight:900; }

/* 光の演出は控えめに（グロー削減） */
.impact-burst{ display:none; } /* ←演出を切る。必要なら元に戻してOK */

/* 例え文は小さく・行間広めで読みやすく */
.impact-compare{
  margin:8px 0 0; text-align:center; color:#475569; font-size:.98rem; line-height:1.7;
}
.impact-compare b{ color:#e11d48; } /* 年間額だけ差し色 */

/* 周辺カードとの一体感（角丸・影の強さを合わせる） */
.result-card{ border-radius:12px; box-shadow:0 2px 10px rgba(0,0,0,.04); }

/* 見出し・数値の行間を統一して、詰まり過ぎを防ぐ */
.rnum #nowPrice, .rnum #coopPrice, .impact-num{ line-height:1.05; }

/* グリッドの間隔を少し広げて要素間の“呼吸”を作る */
.result-row{ gap: 10px; }
.simulator.card{ padding:18px 18px; }

/* ヒーロー数字を主役に（柔らかいハロ＆グロス） */
.impact-hero{ position:relative; }
.impact-amt{ position:relative; }

.impact-amt::before{
  /* 数字の背後に円形の淡い光 */
  content:"";
  position:absolute; inset:auto 0 0 0; height:70%;
  margin:auto; translate:0 10%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
  filter: blur(8px); opacity:.7; pointer-events:none;
}
.impact-num{
  text-shadow: 0 1px 0 rgba(255,255,255,.7), 0 12px 28px rgba(0,0,0,.14);
}
.impact-num::after{
  /* 斜めの細いハイライトを一度だけ走らせる */
  content:""; position:absolute; inset:-8px -14px;
  background: linear-gradient(100deg, transparent 45%, rgba(255,255,255,.7) 50%, transparent 55%);
  transform: translateX(-120%); opacity:.0; mix-blend-mode: screen;
}
.save-impact.pop .impact-num::after{
  animation: glossSweep 1.2s cubic-bezier(.22,.61,.36,1) .2s both;
}
@keyframes glossSweep{ to{ transform:translateX(120%); opacity:.9; } }

/* 割引率チップ（主張は強いが小面積） */
.impact-chip{
  display:inline-block; margin-top:.25rem;
  padding:.25rem .6rem; border-radius:999px; font-weight:900;
  background:#0f5132; color:#fff; font-size:.9rem;
  box-shadow:0 6px 16px rgba(15,81,50,.25);
}

/* 紙吹雪（小さめ・1回だけ） */
.impact-confetti{ position:absolute; inset:0; pointer-events:none; overflow:visible; }
.confetti{
  position:absolute; width:7px; height:10px; border-radius:2px;
  opacity:0; transform: translateY(-10px) rotate(0deg);
  animation: confDrop 900ms ease-out forwards;
}
@keyframes confDrop{
  0%   { opacity:0; transform:translateY(-10px) rotate(0deg); }
  20%  { opacity:1; }
  100% { opacity:0; transform:translateY(80px) rotate(240deg); }
}

/* 料金シミュレーション下の訴求バナー */
.compare-banner{
  margin-top: 14px;
  padding: 22px 16px 26px;
  border-radius: 16px;
  color: #fff;
  background: radial-gradient(140% 120% at 10% 0%, rgba(255,255,255,.18), transparent 55%),
              linear-gradient(135deg, #2493e6, #1c74d9);
  box-shadow: 0 10px 28px rgba(28,116,217,.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 吹き出し */
.cb-bubble{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin: 0 0 10px;
  color: #1170c9;
  background: #fff;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .05em;
  box-shadow: 0 2px 0 rgba(0,0,0,.06);
  position: relative;
}
.cb-bubble::after{
  content:"";
  position:absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  width: 12px; height: 12px; background:#fff; rotate: 45deg;
  box-shadow: 2px 2px 0 rgba(0,0,0,.04);
}
/* ぱきっとした“ひらめき”線 */
.cb-spark{
  width: 18px; height: 12px; position: relative; display:inline-block;
}
.cb-spark::before, .cb-spark::after{
  content:""; position:absolute; top:50%; left:50%; width: 12px; height: 2px;
  background:#fff; border-radius:2px;
}
.cb-spark--left::before{ transform: translate(-80%,-220%) rotate(25deg); }
.cb-spark--left::after { transform: translate(-80%,-20%) rotate(-25deg); }
.cb-spark--right::before{ transform: translate(-20%,-220%) rotate(-25deg); }
.cb-spark--right::after { transform: translate(-20%,-20%) rotate(25deg); }

/* 見出し＋黄色ライン */
.cb-headline{
  margin: 0;
  font-size: clamp(1.2rem, 3.8vw, 2rem);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.25;
  position: relative;
  display: inline-block;
}
.cb-underline{
  display:block;
  width: min(560px, 88%);
  margin: 6px auto 0;
}

/* レスポンシブ微調整 */
@media (max-width:560px){
  .compare-banner{ padding: 18px 12px 22px; }
  .cb-bubble{ gap:8px; padding:7px 12px; }
}

/* シミュレーションバナー画像（半分サイズ＆中央揃え） */
.simu-img{
  text-align: center;
}
.simu-img img{
  display: inline-block;
  max-width: 50%;   /* 横幅を半分に */
  height: auto;
}

/* ===== ゴールド認定セクション ===== */
.gold-cert{
  background:#fff;
  padding:18px 20px;
  color:#111;
}

.gold_img{
	text-align: center;
	margin-bottom: 20px;
}
/* ヘッダー：タイトル＋バッジ */
.gc-head{
  display:flex; align-items:center; gap:16px;
  justify-content:space-between;
}
.gc-title{
  margin:0;
  font-size: clamp(1.25rem, 3.4vw, 1.8rem);
  font-weight:900; line-height:1.5;
  color:#116a34;
}
.gc-title strong{ color:#0f8051; }

.gc-badge{
  margin:0; text-align:center;
}
.gc-badge img{
  width:min(290px, 24vw); height:auto; display:block; margin-inline:auto;
}
.gc-badge figcaption{
  margin:10px 0px 10px; font-size:.9rem; color:#334155; font-weight:700;
}

/* リード文 */
.gc-lead{
  margin:10px 0 6px;
  color:#334155; line-height:1.8;
}

/* 本文ブロック */
.gc-block{ margin-top:12px; }
.gc-sub{
  margin:0 0 6px; padding-left:10px;
  border-left:4px solid #20bd6b;
  font-weight:900; color:#0f5132;
}
.gc-list{ margin:6px 0 0 1.2em; }
.gc-list li{ margin:.3em 0; line-height:1.7; }
.gc-note{
  margin-top:6px; color:#475569; font-size:.95rem; line-height:1.8;
}

/* 下段カード */
.gc-cards{
  margin-top:14px;
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
.gc-card{
  background:linear-gradient(180deg,#f6fff9,#ffffff);
  border:1px solid #e0efe7;
  border-radius:12px; padding:12px;
}
.gc-card-ttl{
  margin:4px 0 6px;
  font-weight:900; color:#0f8051; font-size:1.15rem; line-height:1.3;
}
.gc-card p{ margin:0; color:#334155; line-height:1.8; }

/* 小さなチップ */
.gc-chip{
  display:inline-block; padding:2px 10px; border-radius:999px;
  font-weight:900; font-size:.85rem; color:#0f5132;
  background:#ecf9f0; border:1px solid #d8efe3;
}
.gc-chip--safe{ background:#fff8d5; border-color:#ffe39b; color:#a45f00; }

/* スマホ */
.sp{ display:none; }
@media (max-width: 700px){
  .gc-head{ flex-direction:column; align-items:flex-start; }
  .gc-badge img{ width:min(190px, 38vw); }
  .gc-cards{ grid-template-columns:1fr; }
  .sp{ display:inline; }
}

.gc-card_img img{
	width: 30%;
	text-align: center;	
}
.gc-card_img{
	text-align: center;
}



/* ヒーロー帯の土台 */
#saveImpact { position: relative; }
#saveImpact .impact-hero{
  position: relative;
  overflow: visible;              /* 親で切らない（←重要） */
}

/* 紙吹雪コンテナ：前面＆はみ出しOK */
#saveImpact .impact-confetti{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 5;
}

/* 紙吹雪の見た目とアニメ */
#saveImpact .confetti{
  position: absolute;
  width: 7px; height: 10px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-10px) rotate(0deg);
  animation: confDrop 900ms ease-out forwards; /* JSでdelayだけ上書き */
}

@keyframes confDrop{
  0%   { opacity: 0; transform: translateY(-10px) rotate(0deg); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(120px) rotate(240deg); }
}

/* 低モーション設定の端末では無効化（任意） */
@media (prefers-reduced-motion: reduce){
  #saveImpact .confetti{ animation: none !important; }
}

/* 土台 */
#saveImpact { position: relative; }
#saveImpact .impact-hero{ position: relative; overflow: visible; }

/* コンテナは前面・はみ出しOK */
#saveImpact .impact-confetti{
  position: absolute; inset: 0;
  pointer-events: none; overflow: visible; z-index: 5;
}

/* 枠線を完全に無効化 */
.ao-wave path{ stroke: none !important; stroke-width: 0 !important; }

.ao-wave{ margin-bottom:-1px; }              /* 次の背景と1px重ねる */

/* まずは全waveの枠線を殺す */
.ao-wave path{
  stroke: none !important;
  stroke-width: 0 !important;
}
/* モバイルでだけ波の下を 1〜2px 重ねる */
@media (max-width: 600px){
  .ao-wave{ margin-bottom: -2px; }  /* 次の背景にかぶせる */
	
}
@media (max-width:600px){
  .ao-wave--down svg{ transform: translateY(1px); }
}




html { scroll-behavior: smooth; }