@charset "utf-8";

/* ===== Theme Vars ===== */
:root{
  --tod-green:#e94e2e;
  --tod-green-dark:#d53e1e;
  --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:#FFF2CC;   /* 背景色はそのまま */
  padding:0rem 1rem 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: #FFF9ED; } /* 薄いイエロー */
.bg-2 { background-color: #EDE7DB; } /* ライトグリーン */
.bg-3 { background-color: #F4E3E3; } /* ライトブルー */
.bg-4 { background-color: #EAE2D8; } /* ライトピンク */
.bg-5 { background-color: #E6E6F0; } /* 薄いラベンダー */
.bg-6 { background-color: #FAFAFA; } /* ライトグレー */



.content-section{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:8px;
  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 {
  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-bottom: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:1rem;
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.2rem, 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; }

/* ===== おとなりさん紹介キャンペーン 見出し ===== */
.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 }
}

/* =========================================
   Soft Breathing Gradient（やわらか呼吸）
   - ヒーローの上半分に暖色グラデを重ねて“呼吸”する
   - テキスト/CTA可読性を保つため発光は控えめ
   ========================================= */
.hero.hero--paper{
  /* ヒーローの地色（雪と同化しにくい落ち着いた暖色） */
  background: #F2E7D8; /* 既存の #fff266 から置換してOK */
}

/* 上半分だけにグラデを敷く：呼吸（明滅＋ごく小さなにじみ） */
.hero.hero--paper::before{
  content:"";
  position:absolute; inset:-8% -6% -20% -6%;
  pointer-events:none; z-index:1; /* 画像の上、CTAより下にしたいなら後述の調整参照 */

  /* 暖色レイヤー（上部中心に集まるやわらかグラデ） */
  background:
    radial-gradient(120% 60% at 50% 0%,
      rgba(255, 196, 120, .28), rgba(255, 196, 120, 0) 60%),
    radial-gradient(100% 50% at 20% 0%,
      rgba(255, 175,  90, .20), rgba(255, 175,  90, 0) 60%),
    radial-gradient(100% 50% at 80% 0%,
      rgba(255, 220, 180, .18), rgba(255, 220, 180, 0) 60%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 85%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 85%);

  mix-blend-mode: multiply;      /* 背景になじませる */
  filter: blur(4px);
  opacity: .75;

  /* “呼吸”アニメ：明滅＋わずかな揺らぎ（超軽量） */
  animation:
    breathPulse 11s ease-in-out infinite,
    breathDrift 17s ease-in-out infinite;
}

/* CTAを最前面に出したい場合（必要ならON） */
/*
.cta-btn{ position:relative; z-index: 3; }
*/

@keyframes breathPulse{
  0%,100% { opacity:.60; filter: blur(4px); }
  50%     { opacity:.92; filter: blur(6px); }
}

/* 背景レイヤーを少しだけ上下に漂わせる */
@keyframes breathDrift{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* 動きが苦手な利用者の設定を尊重 */
@media (prefers-reduced-motion: reduce){
  .hero.hero--paper::before{ animation:none; opacity:.85; filter: blur(5px); }
}


/* 2ボタングループのレイアウト */
.float-cta__inner .cta-btn-group{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  max-width:980px;
  margin:0 auto;
}

/* 幅があれば横並び */
@media (min-width:640px){
  .float-cta__inner .cta-btn-group{ grid-template-columns:1fr 1fr; }
}
/* フロート内ボタンの余白を均一に */
.float-cta .cta-btn{ margin:0; max-width:100%; }

/* LINEボタンのカラーバリアント */
.cta-btn--line{
  background:#06C755;
  box-shadow:0 6px 18px rgba(6,199,85,.28);
}
.cta-btn--line:hover{ background:#05b94d; }
.cta-btn--line:focus-visible{
  box-shadow:0 0 0 3px #fff, 0 0 0 6px rgba(6,199,85,.35);
}

/* ==== Hero CTA 2列レイアウト ==== */
.hero-cta{
  max-width: 780px;
  margin: 24px auto 0;
  padding: 0 16px;
}

/* グループ自体をグリッド化 */
.hero-cta .cta-btn-group{
  display: grid;
  grid-template-columns: 1fr;   /* モバイルは縦2段 */
  gap: 12px;
}

/* 幅600px以上で横2列 */
@media (min-width: 600px){
  .hero-cta .cta-btn-group{
    grid-template-columns: 1fr 1fr;
	display: flex;
  justify-content: center; /* 横中央揃え */
  align-items: center; /* 縦位置も中央揃え */
  gap: 20px; /* ボタンの間隔 */
  flex-wrap: wrap; /* スマホで折り返し対応 */  
  }
}

/* ヒーロー内のボタンは等幅・等高に、中央寄せマージンを打ち消す */
.hero-cta .cta-btn{
  display: flex;                /* 高さ揃え＆中央寄せ */
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;              /* 既存の max-width 上書き */
  margin: 0;                    /* 既存の margin:auto を無効化 */
  min-height: 56px;             /* 好みで調整：見栄えが揃う */
}

/* LINEバリアント（未設定なら） */
.hero-cta .cta-btn--line{
  background:#06C755;
  box-shadow:0 6px 18px rgba(6,199,85,.28);
}
.hero-cta .cta-btn--line:hover{ background:#05b94d; }
.hero-cta .cta-btn--line:focus-visible{
  box-shadow:0 0 0 3px #fff, 0 0 0 6px rgba(6,199,85,.35);
}

/* 見出し＆本文の整え（既存トーンに合わせる） */
.lead-title{
  margin: 6px 0 6px;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  text-align: center;
  color: var(--tod-green-dark,#1e7e34);
  letter-spacing: .02em;
}
.lead-mark{
  background: linear-gradient(transparent 65%, var(--brand-yellow,#fff266) 65%);
  border-radius: 6px; padding: 0 .2em;
}
.lead-sub{
  margin: 2px 0 14px;
  text-align: center;
  color: #475569;
  font-weight: 600;
  font-size: 1.05rem;
}
.lead-text{
  margin: 10px 0 6px;
  color: #334155;
  line-height: 1.9;
  font-size: 1.02rem;
}

/* 画像の丸みと影（content-imgに乗せる） */
.content-img img{
  border-radius: 14px;

}

/* スマホ微調整 */
@media(max-width:600px){
  .lead-sub{ font-size: 1rem; }
}


/* ===== Fancy Eyebrow（上部ラベル）===== */
.fancy-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  color: #0f5132;
  background: radial-gradient(circle at 30% 30%, #fffbe2 0%, #fff266 60%, #ffe97a 100%);
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
  margin: 0 auto 10px;
  text-align: center;
}

/* 小さな絵文字を彩りとして */
.fancy-eyebrow .emoji {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 1px rgba(255,255,255,.4));
}

/* 装飾ライン */
.fancy-eyebrow .line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(40,167,69,.2), rgba(40,167,69,.6), rgba(40,167,69,.2));
  border-radius: 2px;
  margin-left: 6px;
}

/* フェードイン時の軽い浮きアニメ（既存fadeinと相性良し） */
@keyframes eyebrowFloat {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fancy-eyebrow {
  animation: eyebrowFloat .7s ease-out both;
}

/* スマホ対応 */
@media(max-width:600px){
  .fancy-eyebrow{ font-size: .95rem; padding: 6px 14px; }
}
/* ===== “新規加入特典”をグッと目立たせる・調和版 ===== */
.eyebrow-pro{
  /* pill */
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px;
  border-radius:999px;
  font-weight:900; letter-spacing:.06em;
  font-size:1.02rem;
  color:#0f5132;
  /* brand yellowに寄せたグラデ＋微光沢 */
  background:
    radial-gradient(120% 140% at 20% 10%, rgba(255,255,255,.85), transparent 38%),
    linear-gradient(135deg, var(--brand-yellow,#fff266), #ffe27a);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:
    0 8px 24px rgba(0,0,0,.08),
    0 1px 0 rgba(255,255,255,.7) inset,
    0 -2px 8px rgba(255,255,255,.25) inset;
  margin: 0 auto 8px;
}

/* 左のアイコンをさりげなく */
.eyebrow-pro .icon{ font-size:1.15rem; filter: drop-shadow(0 1px 0 rgba(255,255,255,.6)); }

/* 斜めの“シャイン”走査（動きが苦手な人は止める） */
.eyebrow-pro .shine{
  position:relative; overflow:hidden; border-radius:999px;
}
.eyebrow-pro .shine::after{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg,
     transparent 0%,
     rgba(255,255,255,.55) 48%,
     rgba(255,255,255,.85) 50%,
     rgba(255,255,255,.55) 52%,
     transparent 100%);
  transform: translateX(-140%) skewX(-20deg);
  pointer-events:none;
  border-radius:inherit;
  animation: eyebrowShine 1800ms ease-in-out infinite;
}
@keyframes eyebrowShine{
  from{ transform: translateX(-140%) skewX(-20deg); }
  to  { transform: translateX(140%)  skewX(-20deg); }
}
@media (prefers-reduced-motion: reduce){
  .eyebrow-pro .shine::after{ animation:none; opacity:.5; }
}

/* 周囲との色調整（緑の発光をうっすら） */
.eyebrow-pro{
  box-shadow:
    0 8px 24px rgba(0,0,0,.08),
    0 0 0 3px rgba(40,167,69,.08); /* var(--tod-green)の薄発光 */
}

/* スマホで少し控えめに */
@media (max-width:600px){
  .eyebrow-pro{ padding:8px 14px; font-size:.98rem; }
}

/* ===== “新規加入特典” 上品ラベル ===== */
.eyebrow-pro {
  display: inline-block;
  position: relative;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: #0f5132;
  background: linear-gradient(135deg, #fffbe8 0%, #fff266 40%, #ffe27a 100%);
  border: 1px solid rgba(0,0,0,.04);
  box-shadow:
    0 4px 14px rgba(0,0,0,.06),
    0 1px 0 rgba(255,255,255,.6) inset;
  text-align: center;
  margin: 0 auto 14px;
  overflow: hidden;
}

/* 光のスリット演出 */
.eyebrow-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,.6) 45%,
    rgba(255,255,255,.9) 50%,
    rgba(255,255,255,.6) 55%,
    transparent 100%);
  transform: translateX(-130%) skewX(-20deg);
  animation: eyebrowShine 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes eyebrowShine {
  from { transform: translateX(-130%) skewX(-20deg); }
  to   { transform: translateX(130%) skewX(-20deg); }
}

/* 微妙な浮遊感 */
.eyebrow-pro {
  animation: eyebrowFloat .6s ease-out both;
}
@keyframes eyebrowFloat {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ダークグリーンのシャドウリムでコープトーン統一 */
.eyebrow-pro {
  box-shadow:
    0 6px 16px rgba(0,0,0,.06),
    0 0 0 3px rgba(40,167,69,.08);
}

/* スマホ調整 */
@media (max-width:600px) {
  .eyebrow-pro {
    font-size: .98rem;
    padding: 8px 20px;
  }
}

/* ===== 中央に大きめ配置 ===== */
.promo-eyebrow-wrap{
  text-align:center;
  margin-top: 40px;
  margin-bottom: 18px;
}

.eyebrow-pro.center-ver{
  display:inline-block;
  padding:14px 40px;
  font-size:1.2rem;
  font-weight:900;
  background: linear-gradient(135deg, #fffbe8 0%, #fff266 45%, #ffe27a 100%);
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 0 0 4px rgba(40,167,69,.08);
  border:1px solid rgba(0,0,0,.05);
  animation: eyebrowFloat .6s ease-out both;
}

@media(max-width:600px){
  .eyebrow-pro.center-ver{
    font-size:1.45rem;
    padding:10px 28px;
  }
}

/* ===== 灯油積立セクション ===== */
.deposit .lead-title{ margin-top: 4px; }
.deposit .lead-sub{ margin: 6px 0 18px; }

/* 2カラム */
.dep-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start;
}
@media(max-width:900px){ .dep-grid{ grid-template-columns:1fr; } }

/* 説明側 */
.tier-cards{
  list-style:none; margin:14px 0 10px; padding:0;
  display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px;
}
@media(max-width:780px){ .tier-cards{ grid-template-columns:1fr; } }

.tier-cards li{
  position:relative; background:#fff; border:1px solid #eef1f4; border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  padding:14px 12px; text-align:center; transition:transform .25s ease, box-shadow .25s ease;
}
.tier-cards li:hover{ transform: translateY(-2px); box-shadow:0 12px 28px rgba(0,0,0,.10); }

.tier-head{ margin:0 0 6px; color:#111827; font-weight:800; }
.tier-rate{ margin:0; color:#475569; }
.tier-rate .num{
  display:inline-block; font-weight:900; font-size: clamp(1.6rem, 3.2vw, 2rem);
  color: var(--tod-green,#28a745); text-shadow: 0 6px 16px rgba(40,167,69,.18);
}
.tier-accent{ border:2px solid var(--tod-green,#28a745); box-shadow:0 10px 28px rgba(40,167,69,.12); }
.tier-badge{
  position:absolute; top:10px; right:10px;
  padding:4px 10px; border-radius:999px; font-weight:800; font-size:.82rem;
  background:linear-gradient(135deg,#fff266,#ffe27a); color:#154; border:1px solid rgba(0,0,0,.06);
}

.dep-links{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-top:10px; }
.dep-link{
  color:#1e7e34; text-decoration:none; border-bottom:1px dashed rgba(30,126,52,.4);
}
.dep-link:hover{ opacity:.9; border-color: rgba(30,126,52,.7); }
.dep-cta{ max-width: 340px; }

/* 右カラム：カード */
.dep-aside{ display:grid; gap:14px; }
.dep-card{
  background:#fff; border:1px solid #eef1f4; border-radius:16px; padding:16px 14px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.dep-card.soft{ background:#f8fafc; }

.dep-eyebrow{
  margin:0 0 6px; font-weight:800; letter-spacing:.06em; color:#64748b; font-size:.95rem;
}
.dep-note{ margin:0 0 6px; color:#334155; }
.dep-small{ margin:8px 0 0; color:#64748b; font-size:.92rem; }
.dep-bonus{ margin:2px 0 0; font-size:1.05rem; color:#0f5132; font-weight:800; }

/* カウントアップの見栄え（使い回し強化） */
.deposit .promo-amount .js-count{
  font-size: clamp(3rem, 6.6vw, 3.8rem);
}
.deposit .promo-amount .unit{
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
}

/* 中央バッジ（既存のeyebrow-proを大きめで） */
.center-ver{
  display:inline-block; padding:10px 26px; font-size:1.05rem; margin-bottom: 10px;
}

/* コンテナの新レイアウト */
.depositV2 { padding: 24px 22px; }
.depV2-top{
  display:grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: start;
}
@media(max-width:900px){ .depV2-top{ grid-template-columns:1fr; } }

.depV2-lead .lead-title{ margin: 6px 0 6px; }
.depV2-lead .lead-sub{ margin: 4px 0 12px; }
.depV2-lead .lead-text{ margin: 8px 0 0; }

/* 年間試算カード（右） */
.depV2-card{
  background:#fff; border:1px solid #eef1f4; border-radius:16px; padding:16px 14px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.depV2-eyebrow{ margin:0 0 6px; font-weight:800; letter-spacing:.06em; color:#64748b; font-size:.95rem; }
.depV2-note{ margin:0 0 6px; color:#334155; }
.depV2-foot{ margin:8px 0 0; color:#64748b; font-size:.92rem; }
.depositV2 .promo-amount .js-count{ font-size: clamp(2.6rem, 6vw, 3.6rem); }
.depositV2 .promo-amount .unit{ font-size: clamp(1.05rem, 2.4vw, 1.25rem); }

/* ティア行（下段・横一列） */
.depV2-tiers{
  list-style:none; margin:16px 0 10px; padding:0;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
}
@media(max-width:780px){ .depV2-tiers{ grid-template-columns:1fr; } }
.depV2-tiers li{
  position:relative; text-align:center;
  background:#fff; border:1px solid #eef1f4; border-radius:14px; padding:14px 12px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.depV2-tiers li:hover{ transform: translateY(-2px); box-shadow:0 12px 26px rgba(0,0,0,.10); }
.t-head{ margin:0 0 6px; color:#111827; font-weight:800; }
.t-rate{ margin:0; color:#475569; }
.t-rate span{
  display:inline-block; font-weight:900; font-size: clamp(1.6rem, 3.2vw, 2rem);
  color: var(--tod-green,#28a745);
  text-shadow: 0 6px 16px rgba(40,167,69,.18);
}
.t-accent{ border:2px solid var(--tod-green,#28a745); box-shadow:0 10px 28px rgba(40,167,69,.12); }
.t-badge{
  position:absolute; top:10px; right:10px; font-style:normal;
  padding:4px 10px; border-radius:999px; font-weight:800; font-size:.82rem;
  background:linear-gradient(135deg,#fff266,#ffe27a); color:#154; border:1px solid rgba(0,0,0,.06);
}

/* 詳細リンク・ボーナス・CTAの“縦締め” */
.depV2-bottom{
  display:grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items:center;
  margin-top: 8px;
}
@media(max-width:780px){ .depV2-bottom{ grid-template-columns:1fr; } }

.depV2-link{
  color:#1e7e34; text-decoration:none; border-bottom:1px dashed rgba(30,126,52,.45);
}
.depV2-link:hover{ opacity:.9; border-color: rgba(30,126,52,.8); }

.depV2-bonus{
  background:#f8fafc; border:1px solid #e6eef3; border-radius:12px;
  padding:10px 12px; color:#0f5132; font-weight:800;
}
.depV2-cta{ max-width: 320px; }

/* ==== 共通：縦スタック補助 ==== */
.vstack{ display:flex; flex-direction:column; gap: 10px; }
.v-img img{ border-radius:14px; box-shadow:0 8px 24px rgba(0,0,0,.08); }
.v-copy{ display:flex; flex-direction:column; gap:6px; }
.v-points{ grid-template-columns:1fr !important; }

/* ==== 灯油積立：縦版 ====*/
.depositV3{ display:flex; flex-direction:column; gap: 14px; }

/* 年間試算カード */
.depV3-card{
  background:#fff; border:1px solid #eef1f4; border-radius:16px; padding:16px 14px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.depV3-eyebrow{ margin:0 0 6px; font-weight:800; letter-spacing:.06em; color:#64748b; font-size:.95rem; }
.depV3-note{ margin:0 0 6px; color:#334155; }
.depV3-foot{ margin:8px 0 0; color:#64748b; font-size:.92rem; }
.depositV3 .promo-amount .js-count{ font-size: clamp(2.6rem, 6vw, 3.6rem); }
.depositV3 .promo-amount .unit{ font-size: clamp(1.05rem, 2.4vw, 1.25rem); }

/* ティア：縦並び */
.depV3-tiers{
  list-style:none; margin:6px 0 4px; padding:0;
  display:grid; grid-template-columns:1fr; gap:12px;
}
.depV3-tiers li{
  position:relative; text-align:center;
  background:#fff; border:1px solid #eef1f4; border-radius:14px; padding:14px 12px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}
.depV3-tiers .t-head{ margin:0 0 6px; color:#111827; font-weight:800; }
.depV3-tiers .t-rate{ margin:0; color:#475569; }
.depV3-tiers .t-rate span{
  display:inline-block; font-weight:900; font-size: clamp(1.6rem, 5.2vw, 2rem);
  color: var(--tod-green,#28a745);
  text-shadow: 0 6px 16px rgba(40,167,69,.18);
}
.depV3-tiers .t-accent{ border:2px solid var(--tod-green,#28a745); box-shadow:0 10px 28px rgba(40,167,69,.12); }
.depV3-tiers .t-badge{
  position:absolute; top:10px; right:10px; font-style:normal;
  padding:4px 10px; border-radius:999px; font-weight:800; font-size:.82rem;
  background:linear-gradient(135deg,#fff266,#ffe27a); color:#154; border:1px solid rgba(0,0,0,.06);
}

/* 詳細リンク・特典・CTAを“縦締め” */
.depV3-link{
  color:#1e7e34; text-decoration:none; border-bottom:1px dashed rgba(30,126,52,.45);
  width:max-content; /* 下線が短く見やすい */
}
.depV3-link:hover{ opacity:.9; border-color: rgba(30,126,52,.8); }

.depV3-bonus{
  background:#f8fafc; border:1px solid #e6eef3; border-radius:12px;
  padding:10px 12px; color:#0f5132; font-weight:800;
}
.depV3-cta{ max-width: 340px; align-self: start; }

/* PCでだけ横にもできるスイッチ（任意） */
@media(min-width:980px){
  /* 英断：積立セクションだけは“数字カード→ティア横3列”に切替たい場合
  .depositV3{ gap: 18px; } 
  .depV3-tiers{ grid-template-columns: repeat(3,1fr); }
  */
}

/* ===== ポイント案内ブロック ===== */
.point-rule{ display:flex; flex-direction:column; gap:14px; }

/* 数字の島 */
.point-card{
  background:#fff; border:1px solid #eef1f4; border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  padding:16px 14px; text-align:center;
}
.point-eyebrow{
  margin:0 0 6px; font-weight:800; letter-spacing:.06em; color:#64748b; font-size:.95rem;
}
.point-lead{ margin:0; line-height:1.2; }
.point-lead .big{
  display:inline-block; font-weight:900; font-size: clamp(2rem, 6vw, 3rem);
  color:#111827;
}
.point-lead .big.green{ color: var(--tod-green,#28a745); text-shadow:0 6px 16px rgba(40,167,69,.18); }
.point-lead .unit{ margin:0 .25em; color:#334155; font-size: clamp(1rem, 2.4vw, 1.2rem); }
.point-note{ margin:8px 0 0; color:#64748b; }

/* タイル */
.point-tiles{
  list-style:none; padding:0; margin:0;
  display:grid; gap:14px; grid-template-columns:1fr 1fr;
}
@media(max-width:780px){ .point-tiles{ grid-template-columns:1fr; } }
.point-tiles li{
  background:#fff; border:1px solid #eef1f4; border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  padding:14px 12px; text-align:center;
}
.point-tiles li.soft{ background:#f8fafc; }
.tile-head{ margin:0 0 6px; color:#111827; font-weight:800; }
.tile-body{ margin:0; color:#1f2937; font-size:1.05rem; }
.tile-foot{ margin:6px 0 0; color:#64748b; font-size:.95rem; }

/* タイムライン（3/21→翌3/20→3/25頃） */
.timeline{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:10px;
  margin:4px 0 2px;
}
.timeline .bar{
  position:relative; height:6px; background:linear-gradient(90deg,#e2f7ea,#c8f0d8);
  border-radius:999px; overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.timeline .bar i{
  position:absolute; top:-6px; left:50%; width:12px; height:18px; border-radius:6px;
  background: var(--tod-green,#28a745);
  box-shadow:0 4px 14px rgba(40,167,69,.25);
  transform: translateX(-50%);
}
.timeline span{ color:#0f5132; font-weight:800; font-size:.95rem; }

/* 備考 */
.point-caution{
  background:#fffbec; border:1px solid #ffe7a6; border-radius:12px;
  padding:10px 12px; color:#5c4a00; font-size:.95rem;
}
.point-caution strong{ color:#0f5132; }

/* スケジュール：2カード+矢印で役割を明確に */
.schedule-cards{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items:center;
  justify-items:center;
  margin-top: 6px;
}
@media(max-width:620px){
  .schedule-cards{ grid-template-columns:1fr; }
  .sched-arrow{ transform: rotate(90deg); }
}

.sched-item{
  width:100%;
  background:#fff; border:1px solid #eef1f4; border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:10px 12px; text-align:center;
}
.sched-label{
  margin:0 0 4px; font-weight:800; letter-spacing:.04em; color:#0f5132; font-size:.95rem;
}
.sched-value{
  margin:0; font-size:1.05rem; color:#111827;
}
.sched-note{
  margin:6px 0 0; color:#64748b; font-size:.9rem; line-height:1.5;
}
.sched-arrow{
  font-weight:900; color:#94a3b8; padding:0 6px; font-size:1.2rem;
}

/* ❶ セクション全体を縦一列＆密度アップ */
.point-rule{
  display:flex;
  flex-direction:column;
  gap:12px;           /* セクション内の基本間隔 */
  padding-top:16px;
  padding-bottom:16px;
}

/* ❷ 基本付与カード（数字の島）をコンパクトに */
.point-card{
  padding:12px 12px;  /* 上下を詰める */
  margin:0;
}
.point-lead{ line-height:1.1; margin-bottom:4px; }
.point-note{ margin-top:4px; font-size:.9rem; }

/* ❸ 下段カード群を“常に1カラム”に */
.point-tiles{
  display:grid;
  grid-template-columns:1fr !important;  /* ← 常に縦一列 */
  gap:10px;
  margin:6px 0 4px;
}
.point-tiles li{
  padding:25px 10px 25px;                /* 内側も詰める */
}

/* 「長くご利用で」タイルの行間と余白をさらに圧縮 */
.tile-head{ margin:0 0 2px; line-height:1.2; font-size:.98rem; }
.tile-body{ margin:0; line-height:1.3; font-weight:700; font-size:1rem; }
.tile-foot{ margin:4px 0 0; line-height:1.4; font-size:.9rem; color:#64748b; }

/* ❹ 「付与スケジュール」を縦並びに（矢印は下向きに） */
.schedule-cards{
  display:grid;
  grid-template-columns:1fr;  /* ← 常に縦一列 */
  gap:8px;
  justify-items:stretch;
}
.sched-item{ padding:10px 12px; }
.sched-arrow{
  text-align:center;
  font-weight:900; color:#94a3b8;
  transform: rotate(90deg);   /* ↓ に見えるように */
}

/* ❺ 備考ボックスもコンパクトに */
.point-caution{
  margin-top:8px;
  padding:8px 10px;
  font-size:.9rem;
}

.point-rule {
  background: linear-gradient(to bottom, #ffffff 0%, #F5FFF7 100%);
}

/* ===== ホームタンク無料点検 ===== */
.tankcheck{ display:flex; flex-direction:column; gap:12px; text-align:center; }
.tankcheck .lead-title{ margin:0 0 4px; }
.tankcheck .lead-sub{ margin:0 0 10px; }

.tankcheck-img img{
  width:60%; max-width:520px; border-radius:16px;
  margin-inline:auto;
}

/* 説明文 */
.tankcheck-copy{ max-width:720px; margin-inline:auto; }
.tankcheck-copy p{ margin:6px 0; }
.tankcheck-copy strong{ color: var(--tod-green,#1e7e34); }

/* チェック項目カード */
.tankcheck-list{
  list-style:none; padding:0; margin:6px 0;
  display:grid; gap:10px;
  grid-template-columns: 1fr;           /* 縦一列 */
}
@media(min-width:880px){
  .tankcheck-list{ grid-template-columns: 1fr 1fr; } /* PCで2列 */
}
.tankcheck-list li{
  display:flex; align-items:flex-start; gap:8px;
  background:#fff; border:1px solid #eef1f4; border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:10px 12px; text-align:left;
}
.tankcheck-list .chk{
  flex:0 0 22px; height:22px; line-height:22px; text-align:center;
  border-radius:6px; background: linear-gradient(135deg, var(--tod-green,#28a745), #20bd6b);
  color:#fff; font-weight:900; box-shadow:0 2px 8px rgba(40,167,69,.22);
}
.tankcheck-list p{ margin:0; color:#1f2937; line-height:1.6; }
.tankcheck-list p strong{ color:#0f5132; }

/* 3ステップ（縦） */
.tankcheck-steps{
  list-style:none; padding:0; margin:4px 0 0;
  display:grid; gap:8px;
}
.tankcheck-steps li{
  display:grid; grid-template-columns:auto 1fr; gap:10px; align-items:center;
  background:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:10px 12px; text-align:left;
}
.step-num{
  width:28px; height:28px; border-radius:50%; display:grid; place-items:center;
  background: radial-gradient(circle at 30% 30%, #fff266, #ffd84d);
  color:#154; font-weight:900; box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.step-title{ margin:0; font-weight:800; color:#111827; }
.step-note{ margin:2px 0 0; color:#64748b; font-size:.95rem; }

/* 注意 */
.tankcheck-note{
  background:#FFFDEB; border:none; border-radius:12px;
  padding:8px 10px; color:#6b5b00; font-size:.9rem; margin-top:4px;
}

.section-divider{
  display:flex; align-items:center; gap:10px;
  margin:28px 0 28px;
}
.section-divider::before,
.section-divider::after{
  content:""; flex:1; height:1px;
  background:linear-gradient(90deg, transparent, #dbe7df 40%, #bfe8cc 60%, transparent);
}
.divider-label{
  display:inline-block;
  padding:5px 12px;
  font-weight:800; font-size:.95rem; letter-spacing:.04em;
  color:#0f5132;
  background:#f1fcf5; border:1px solid #e0f4e6; border-radius:999px;
  box-shadow:0 2px 6px rgba(0,0,0,.04);
}

/* ===== 灯油定期配達まとめセクション ===== */
.delivery-feature{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}
.delivery-feature .lead-title{ margin:0 0 4px; }
.delivery-feature .lead-sub{ margin:0 0 10px; }

.delivery-img img{
  width:100%; max-width:520px; border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

/* 本文 */
.delivery-copy{
  max-width:740px; margin-inline:auto;
  color:#334155; line-height:1.9; font-size:1.02rem;
}
.delivery-copy strong{ color: var(--tod-green,#28a745); }

/* 3つの特長カード */
.delivery-points{
  list-style:none; padding:0; margin:10px 0 0;
  display:grid; gap:14px;
  grid-template-columns: 1fr;
}
@media(min-width:880px){
  .delivery-points{ grid-template-columns: repeat(3, 1fr); }
}

.delivery-points li{
  background:#fff; border:1px solid #eef1f4; border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  padding:16px 14px; text-align:center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.delivery-points li:hover{
  transform: translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.delivery-points .icon{
  width:48px; height:auto; margin-bottom:8px;
}
.delivery-points h3{
  margin:0 0 6px;
  color:var(--tod-green-dark,#1e7e34);
  font-size:1.1rem; font-weight:800;
}
.delivery-points p{
  margin:0;
  color:#475569;
  font-size:.96rem;
  line-height:1.6;
}

/* ===== 配達メリット：文章の“揃え” ===== */
.delivery-summary{ max-width:740px; margin: 6px auto 0; margin-bottom: 25px;}
.benefit-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:10px; /* 各項目の間隔を一定に */
}
.benefit-list li{
  display:grid; grid-template-columns:auto 1fr; gap:10px; align-items:flex-start;
  background:#fff; border:1px solid #eef1f4; border-radius:12px;
  padding:10px 12px; box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.b-icon{
  display:inline-grid; place-items:center;
  width:22px; height:22px; border-radius:6px;
  background:linear-gradient(135deg, var(--tod-green,#28a745), #20bd6b);
  color:#fff; font-weight:900; font-size:.9rem;
  box-shadow:0 2px 8px rgba(40,167,69,.22);
  margin-top:2px;
}
.benefit-list p{
  margin:0; color:#334155; line-height:1.7; font-size:1.02rem;
}
.benefit-list strong{ color:#0f5132; }
.benefit-list .num{
  font-weight:900;
  background:linear-gradient(transparent 65%, #fff6a8 65%);
  border-radius:4px; padding:0 .15em;
}

/* スマホ微調整 */
@media (max-width:600px){
  .benefit-list li{ padding:10px; }
  .benefit-list p{ font-size:1rem; line-height:1.65; }
}


/* ===== お申し込み〜ご利用開始までの流れ ===== */
.apply-flow{
  display:flex;
  flex-direction:column;
  gap:14px;
  text-align:left;
  max-width:900px;
  margin-inline:auto;
}
.apply-flow .lead-title{ text-align:center; margin:0 0 4px; }
.apply-flow .lead-sub{ text-align:center; margin:0 0 14px; }

.apply-steps{
  list-style:none;
  padding:0;
  margin-top:20px;
  counter-reset: flow;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ステップカード */
.apply-steps li{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap:12px;
  background:#fff;
  border:1px solid #eef1f4;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:14px 16px;
  position:relative;
}
.apply-steps li:not(:last-child)::after{
  content:"";
  position:absolute;
  left:20px;
  bottom:-14px;
  width:2px;
  height:14px;
  background:#dbe7df;
}

.step-icon{
  display:grid;
  place-items:center;
  width:40px; height:40px;
  background: radial-gradient(circle at top left, #fff266, #ffd84d);
  border-radius:50%;
  font-weight:900;
  color:#154;
  font-size:1.1rem;
  box-shadow:0 3px 8px rgba(0,0,0,.06);
}
.step-body h3{
  margin:0 0 6px;
  font-size:1.05rem;
  color:var(--tod-green-dark,#1e7e34);
  font-weight:800;
}
.step-body p{
  margin:0;
  color:#334155;
  line-height:1.7;
  font-size:.98rem;
}

/* 補足 */
.apply-note{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:10px 14px;
  color:#64748b;
  font-size:.9rem;
  margin-top:10px;
}

/* スマホ調整 */
@media(max-width:600px){
  .apply-steps li{
    grid-template-columns:32px 1fr;
    padding:12px 14px;
  }
  .step-icon{ width:32px; height:32px; font-size:1rem; }
}

/* テキストの行間を少しだけ詰めて、カード高さを揃える */
.step-body p{ line-height: 1.65; }

/* カードの影と角丸を統一（既存の他カードと合わせる） */
.apply-steps li{
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

/* ===== 申込みフロー（apply-steps）：確実に直す版 ===== */

/* 1) 左レールを親に1本だけ */
.apply-steps{
  position: relative;
  counter-reset: applystep;
  display: flex;
  flex-direction: column;
  gap: 16px;                 /* ← 間隔を変えるならここだけ */
}
.apply-steps::before{
  content:"";
  position:absolute;
  left:20px; top:0; bottom:0;
  width:2px; background:#dbe7df;
}

/* 2) 各カード */
.apply-steps li{
  position: relative;
  display:grid;
  grid-template-columns:40px 1fr;
  gap:12px;
  background:#fff;
  border:1px solid #eef1f4;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:14px 16px;
}

/* 3) 黄丸はカウンターで自動採番（中のテキストは消す） */
.apply-steps .step-icon{
  position:relative;
  z-index:1;                          /* レールより前面 */
  width:40px; height:40px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff266, #ffd84d);
  box-shadow:0 3px 8px rgba(0,0,0,.06);
  color:#154; font-weight:900;
  display:grid; place-items:center;
  font-size:1.1rem;
}
.apply-steps .step-icon::after{
  content: counter(applystep);
  counter-increment: applystep;
}
/* HTMLに数字を書いていても重複表示させない */
.apply-steps .step-icon { font-size:0; }
.apply-steps .step-icon::after{ font-size:1.1rem; }

/* 4) テキスト */
.apply-steps .step-body h3{
  margin:0 0 6px; font-size:1.05rem;
  color:var(--tod-green-dark,#1e7e34); font-weight:800;
}
.apply-steps .step-body p{
  margin:0; color:#334155; line-height:1.65; font-size:.98rem;
}

/* 5) モバイル微調整 */
@media(max-width:600px){
  .apply-steps{ gap:14px; }
  .apply-steps li{ grid-template-columns:32px 1fr; padding:12px 14px; }
  .apply-steps .step-icon{ width:32px; height:32px; }
}

/* ===== 他社比較 ===== */
.compare-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}
.compare-section .lead-title{ margin:0 0 4px; }
.compare-section .lead-sub{ margin:0 0 10px; }

.compare-table-wrap{
  width:100%;
  overflow-x:auto;
  margin:10px 0 14px;
}

.compare-table{
  width:100%;
  max-width:880px;
  border-collapse:collapse;
  margin-inline:auto;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  overflow:hidden;
  font-size:.98rem;
}
.compare-table th,
.compare-table td{
  padding:12px 10px;
  border-bottom:1px solid #e6e9ee;
  line-height:1.6;
}
.compare-table th{
  background:#f1fcf5;
  color:#0f5132;
  font-weight:800;
}
.compare-table th.feature{
  width:34%;
  text-align:center;
}
.compare-table th.coop{
  width:33%;
  text-align:center;
}
.compare-table th.others{
  width:33%;
  text-align:center;
}
.compare-table td{
  vertical-align:middle;
}
.compare-table td.highlight{
  background:linear-gradient(90deg,#f7fff9 0%,#e9fdee 100%);
  font-weight:700;
  color:#1e7e34;
}
.compare-table td strong{ color:#0f5132; }

.compare-message{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:12px 16px;
  font-size:1.02rem;
  color:#111827;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  max-width:780px;
  line-height:1.8;
}
.compare-message strong{ color:var(--tod-green-dark,#1e7e34); }

@media(max-width:600px){
  .compare-table th,
  .compare-table td{ padding:10px 8px; font-size:.92rem; }
  .compare-message{ font-size:.95rem; }
}

/* ===== 注意事項セクション ===== */
.caution-section{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:20px 18px;
  max-width:880px;
  margin-inline:auto;
  color:#334155;
}
.caution-title{
  text-align:left;
  font-size:1.25rem;
  font-weight:800;
  color:var(--tod-green-dark,#1e7e34);
  margin:0 0 10px;
  border-left:6px solid var(--tod-green,#28a745);
  padding-left:10px;
}
.caution-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.caution-list li{
  position:relative;
  line-height:1.75;
  font-size:.96rem;
  padding-left:20px;
}
.caution-list li::before{
  content:"※";
  position:absolute;
  left:0;
  color:#999;
  font-weight:700;
}
.caution-list strong{
  color:#0f5132;
  font-weight:700;
}

/* 背景トーン調整（全体にやさしいベージュ系を） */
.bg-section.bg-6{
  background:#faf9f6;
}

/* スマホ最適化 */
@media(max-width:600px){
  .caution-section{ padding:16px 14px; }
  .caution-title{ font-size:1.1rem; }
  .caution-list li{ font-size:.92rem; }
}

/* ===== 特徴カードの画像スタイル ===== */
.switch-points .feature-img {
  margin: 8px 0 10px;
}

.switch-points .feature-img img {
  width: 180px;              /* アイコンサイズ */
  height: auto;
  display: inline-block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.08));
  transition: transform .25s ease;
}


/* モバイルで少し小さめに */
@media (max-width: 600px){
  .switch-points .feature-img img {
    width: 120px;
  }
}

/* ===== 新規加入特典ボーナス（華やかバージョン） ===== */
.pop-bonus{
  position:relative;
  text-align:center;
  background: linear-gradient(135deg, #f1fcf5 0%, #e8fff0 100%);
  border:2px solid #cdebd5;
  border-radius:14px;
  padding:12px 18px;
  font-weight:800;
  color:#0f5132;
  font-size:1.05rem;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  overflow:hidden;
}

/* キラッと光るライン */
.pop-bonus::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.6) 50%, transparent 70%);
  opacity:0;
  animation: bonusShine 4s linear infinite;
  pointer-events:none;
}
@keyframes bonusShine{
  0%{ transform:translateX(-120%); opacity:0; }
  40%{ opacity:1; }
  60%{ opacity:1; }
  100%{ transform:translateX(120%); opacity:0; }
}

/* 絵文字アイコン */
.pop-bonus .icon{
  font-size:1.3rem;
  margin-right:6px;
}

/* “1,000ポイント”を強調 */
.pop-bonus .highlight{
  display:inline-block;
  color:#1e7e34;
  background:linear-gradient(transparent 60%, #fff266 60%);
  padding:0 4px;
  border-radius:4px;
}

/* スマホ調整 */
@media(max-width:600px){
  .pop-bonus{ font-size:.95rem; padding:10px 14px; }
  .pop-bonus .icon{ font-size:1.1rem; }
}

/* href に line.me を含むリンクだけを“白地＋緑枠”に */
a[href*="lin.ee" i]{
  background:#fff !important;
  color:#06C755 !important;               /* LINEグリーン */
  border:2px solid #06C755 !important;
  box-shadow:0 6px 16px rgba(0,0,0,.08) !important;
  font-weight:800; letter-spacing:.02em;
}
a[href*="lin.ee" i]:hover{ background:#E9FCEA !important; }
a[href*="lin.ee" i]:active{ transform:translateY(1px); }
a[href*="lin.ee" i]:focus-visible{ outline:3px solid #BDF5CB; outline-offset:2px; }



html { scroll-behavior: smooth; }