:root {
  --bg: #fff;
  --soft: #fff6ef;
  --text: #222;
  --muted: #666;
  --line: #e7e7e7;
  --brand: #ff7a00;
  --brand2: #ff9a3d;
  --dark: #1f2a36;

  --radius: 16px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .08);
  --container: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #383e45;
  max-width: 430px;
  font-family: "游ゴシック体", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  margin: 0 auto;
  padding-bottom: 140px;

}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.c-note {
  margin-top: 22px;
  font-size: clamp(12px, 3.2vw, 16px);
  color: #222222;
  text-align: left;
  line-height: 1.6;
  width: 77%;
  margin: 0 auto;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.c-note::before {
  content: "※ ";
  font-weight: 700;
}

@font-face {
  font-family: "KeiFont";
  src: url("fonts/keifont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.kfont {
  font-family: "keifont", sans-serif;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section--soft {
  background: var(--soft);
}

.section__title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  letter-spacing: .02em;
}

/* Placeholder */
.ph {
  border: 1px dashed #ccc;
  background: #fafafa;
  border-radius: 12px;
  min-height: 140px;
  display: grid;
  place-items: center;
  color: #999;
}

.ph--hero {
  min-height: 260px;
}

.header {
  background: #fff;
     padding-top: 16px;

  padding-bottom: 16px;

  /* 下に影 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  position: relative;
  z-index: 50;
}

/* ===== 横並びにする ===== */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 両端に配置 */
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8px;
}

/* 画像サイズ調整 */
.header__img {
  height: clamp(55px, 16vw, 65px);
  width: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .15s;
}

.btn--wide {
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
}

.btn--primary {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: #fff;
  border-color: var(--line);
}

.btn--line {
  background: #14c755;
  color: #fff;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  z-index: 100;
  max-width: 430px;
  margin: 0 auto;
}

.sticky {
  margin-top: -9%;
}

.fv {
  background: url("./img_webp/co_fv.webp") center top / cover no-repeat;
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #FFFAEA;
  z-index: 2;
}

.fv__inner {
  margin: 0 auto;
  text-align: center;
  position: relative;
}


.fv__img {
  width: 100%;
  max-width: 600px;
  margin: 0px auto 8px;
  display: block;
}

.fv__main-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 20px; */
  margin: -16px 0;
}
.fv__main-img {
  /* width: 45%; */
  /* max-width: 300px; */
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}

.fv__boxes {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  gap: 7px;
  margin-top: -4%;
}


.fv__box {
  background: #F7931E;
  color: white;
  border-radius: 21px;
  border: 2px solid #FFBA69;
  width: 31%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: center;
  /* ← 縦中央 */
  align-items: center;
  /* ← 横中央 */
  text-align: center;
}

.fv__box p {
  margin: 0;
  font-size: 19px;
  margin-top: 8%;
  margin-bottom: 12%;
}

.fv__box strong {
  font-size: 53px;
  font-weight: 900;
  letter-spacing: 1px;

  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.1), 0 8px 15px rgba(0, 0, 0, 0.06);
}

.fv_small {
  font-size: 31px;
}

.fv__cta {
  width: 94%;
  margin-top: 4%;
}


/* ===== Section2 ===== */
.section2 {
  background: #FFFAEA;
  padding-top: 45px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.section2__inner {
  margin: 0 auto;
  text-align: center;
}

.section2__img {
  width: 100%;
  display: block;
  margin: 0 auto 11px;
}

.qcard {
  position: relative;
  width: 100%;
  max-width: 700px;
  /* 好きに */
  margin: 0 auto;
}

.qcard__bg {
  width: 98%;
  display: block;
  margin: 0 auto;
}

/* 文字を載せるエリア */
.qcard__text {
  width: 96%;
  margin: 0 auto;
  position: absolute;
  right: 2%;
  top: 20%;
  bottom: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #222;
  font-size: clamp(16px, 4.3vw, 18px);
  line-height: 1.7;
  font-weight: 700;
}

/* 中央の1行 */
.qcard__mid {
  font-size: 1.05em;
  font-weight: 800;
}

/* 赤文字強調 */
.qcard__strong {
  font-family: "M PLUS 1p", sans-serif;
  color: #E60012;
  font-size: clamp(24px, 6.5vw, 31px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* 0%の%だけちょい小さく等もできる */
.qcard__strong span {
  font-size: 1.3em;
}




.section3 {
  position: relative;
  padding: 26px 0 70px;
  overflow: hidden;
}

.section3__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  /* background-size: cover 相当 */
  object-position: center top;
  z-index: 0;
}

.section3__inner {
  position: relative;
  z-index: 1;

  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section3__img {
  width: 100%;
  display: block;
  margin: 0 auto 22px;
}

/* ②の「画像＋文字」 */
.section3__overlay {
  position: relative;
  /* ←これが基準 */
  display: inline-block;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 22px;
}

.section3__text {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0px; */
  color: #fff;
  text-align: center;
}

/* 小さい吹き出しっぽい行 */
.section3__text-top {
  background: #D50213;
  color: #fff;
  font-weight: 900;
  padding: 0px 8px;
  border-radius: 999px;
  font-size: clamp(20px, 5.3vw, 23px);
}

.section3__text-under {
  background: #F7931E;
  color: #fff;
  font-weight: 900;
  padding: 0px 8px;
  border-radius: 999px;
  font-size: clamp(20px, 5.3vw, 23px);
}


/* メイン文字（縁取り風） */
.section3__text-main {
  font-weight: 900;
  font-size: clamp(28px, 7vw, 52px);
  letter-spacing: -0.04em;
  text-shadow:
    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000,
    0 8px 18px rgba(0, 0, 0, .25);
}

.rateWrap {
  display: inline-flex;
  align-items: baseline;
  gap: .04em;
  /* 92 と % の間 */
  line-height: 1;
  font-family: "KeiFont", sans-serif;
  letter-spacing: -0.02em;
  margin-top: 3%;
}

.rate92 {
  position: relative;
  display: inline-block;
  font-size: clamp(72px, 22vw, 95px);

  background: linear-gradient(to bottom, #FFF45B 0%, #FF8900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ratePct {
  position: relative;
  display: inline-block;
  font-size: clamp(34px, 10vw, 46px);
  /* ← %だけ小さく */

  background: linear-gradient(to bottom, #FFF45B 0%, #FF8900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rate92::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 14px #000;

  z-index: -1;
}


.ratePct::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 14px #000;

  z-index: -1;
}


.section3__rate-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}



.section3__repeat-rate {
  display: flex;
  /* ← 追加 */
  align-items: baseline;
  /* ← 重要 */
  justify-content: center;

  font-family: "KeiFont", sans-serif;
  font-size: clamp(56px, 16vw, 78px);
  font-weight: 900;
  color: #000;
  margin-top: 1px;
  letter-spacing: -0.03em;
  margin-top: 3%;

}



.section3__repeat-rate .percent {
  font-size: 0.6em;
  margin-left: 2px;
}

.section3__repeat-rate .wave {
  font-size: 25px;
  margin: 0 8px;
}


.section3__img.cta {
  width: 96%;
  margin-top: -11%;
}


.section4 {
  padding: 10px 0;
}

.section4__inner {
  margin: 0 auto;
  text-align: center;
  margin-top: -7%;
  margin-bottom: 8%;
}

.section4__lead {
  font-family: 'KeiFont';
  position: relative;
  display: inline-block;
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 700;
  margin-bottom: 0px;
}


.c-lead-title {
  font-family: 'KeiFont', sans-serif;
  position: relative;
  font-size: clamp(47px, 6vw, 47px);
  /* ←順番も修正 */
  font-weight: 700;
  color: #F7931E;
  margin-top: 2%;
  margin-bottom: 0;
}


/* 左：\ */
.section4__lead::before {
  font-family: sans-serif;
  content: "\\";
  margin-right: 8px;
  font-weight: 900;
}

/* 右：/ */
.section4__lead::after {
  font-family: sans-serif;
  content: "/";
  margin-left: 8px;
  font-weight: 900;
}

.section4__img {
  width: 98%;
  max-width: 850px;
  /* margin: 0 auto 24px; */
  display: block;
  margin: 0 auto;
  margin-top: 7%;
}

/* ===== 3つ横並び ===== */
.section4__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-top: -3%;
}

.section4__steps p {
  width: 33%;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

/* 5分だけ強調 */
.section4__steps .strong {
  font-size: 1.3em;
  font-weight: 900;
}



.section5 {
  background: #F7E8D7;
  padding: 56px 0 70px;
}

.section5__inner {
  width: min(420px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.section5__sub {
  margin: 14px 0 -5px;
  color: #333;
}

/* 共通注意文（左揃え＆ぶら下げ） */
.c-note {
  text-align: left;
  line-height: 1.6;
  color: #555;
  font-size: clamp(12px, 3.5vw, 16px);
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.c-note--tight {
  margin: 0 auto;
  margin-top: 2%;

}

.section5 .c-lead-title {
  font-size: clamp(39px, 6vw, 39px);
}


/* フォーム */
.sim {
  background: transparent;
}

.sim__row {
  margin: 0 auto;
  width: 95%;
  display: grid;
  grid-template-columns: 73px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.section5 .sim__label {
  font-weight: 800;
  font-size: 22px;
}

.sim__field {
  background: #fff;
  border: 1px solid #5F5757;
  padding: 12px 12px;
}

.sim__select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
}

.sim__field--select{
  position: relative;
}

.sim__field--select::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;              /* 三角サイズ */
  height: 10px;
  background: url("./img_webp/triangle.webp") no-repeat center;
  background-size: contain;
  pointer-events: none;     /* クリック邪魔しない */
  z-index: 3;
}

.sim__select, .sim__input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 18px;
  background: transparent;
  color: #D9D9D9;
}

.sim__field--money {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sim__yen {
  font-weight: 800;
}

/* 質問 */
.sim__question {
  margin: 22px 0 12px;
  font-weight: 500;
  font-size: 22px;
}

.sim__toggle {
  display: flex;
  justify-content: center;
  gap: 37px;
}

.sim__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(119px, 32.32vw, 139px);
  padding: 9px 11px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  color: #111;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}


.sim__pill input {
  display: none;
}

/* 選択時 */
.sim__pill input:checked+span {
  color: #fff;
}

/* 親も色変える */
.sim__pill input:checked {
  /* これは効かないので、下で親を変える */
}

/* 親を変えるテク */
.sim__pill:has(input:checked) {
  background: #14c755;
  /* 緑 */
  border-color: #14c755;
  color: #fff;
}

/* 還元率 */
.sim__rate {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}

.sim__rate-label {
  text-align: left;
  font-weight: 800;
  font-size: 18px;
}

/* ボタン */
.sim__btn {
  margin: 22px auto 22px;
  width: 92%;
  border: 0;
  padding: 18px 16px;
  border-radius: 999px;
  background: #F7931E;
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  box-shadow: 0 16px 24px rgba(0, 0, 0, .18);
  cursor: pointer;
}

.simResult {
  margin: 0 auto;
  width: 95%;
  margin-top: 18px;
  background: #fff;
  border: 3px solid #F7931E;
  border-radius: 22px;
  padding: 22px 16px 16px;
}


.simResult__lead {
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 10px;
}

.simResult__money {
  margin: 0 0 10px;
  font-weight: 900;
  color: #111;
}

.simResult__num {
  font-style: keifont;
  font-size: clamp(46px, 12.56vw, 54px);
  color: #F7931E;
  letter-spacing: -0.02em;
  font-weight: 900;
  font-family: 'KeiFont';
}

.simResult__yen {
  font-family: 'KeiFont';
  font-weight: 900;
  font-size: 36px;
  margin-left: 2px;
  color: #F7931E;
}

.simResult__tail {
  font-size: 20px;
}

.simResult__cta {
  width: 100%;
  display: block;
}

.comma {
  font-size: 0.6em;
  /* ←ここで大きさ調整 */
  margin: 0 2px;
}

.sim__select {
  color: #111; /* 通常色 */
}

/* 未選択状態のとき */
.sim__select:required:invalid {
  color: #D9D9D9;
}

/* option自体 */
.sim__select option {
  color: #111;
}

.sim__input {
  color: #D9D9D9;
  opacity: 0.3;
}

.sim__input.is-active {
  color: #111;
  opacity: 1.0;
}

.section6 {
  padding: 40px 0 24px;
  text-align: center;
}

.section6__inner {
  width: min(420px, 92vw);
  margin: 0 auto;
}

.section6__img {
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}

/* ② 重ね用 */
.section6__overlay {
  position: relative;
}

/* 画像の中の文字 */
.section6__text-overlay {
  position: absolute;
  top: 14%;
  /* ← ここで縦位置調整 */
  left: 50%;
  transform: translate(-50%, 81%);
  width: 90%;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

/* 下の注意文 */
.section6__note {
  font-family: "keifont";
  margin-top: 16px;
  font-size: clamp(14px, 4.5vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}


.section7 {
  position: relative;
  overflow: visible;
  padding: 0px 0 208px;
}

/* 背景画像（HTML置き） */
.section7__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.section7__inner {
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  margin: 0 auto;
  text-align: center;
  padding-top: 48px;
}

/* タイトル（文字） */
.section7__title {
  font-family: "KeiFont", sans-serif;
  color: #F7931E;
  font-size: clamp(34px, 9vw, 44px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.section7__reasons {
  margin: 0 auto;
  /* width: 99%; */
  display: grid;
  gap: 3%;
  margin-top: 9%;
}

.reason {
  position: relative;
  width: 100%;
}

.reason__bg {
  width: 100%;
  display: block;
  height: 100%;
}





.reason__content {
  position: absolute;
  inset: 0;
  /* 上下左右いっぱいに広げる */
  padding: 20px;
}

.reason__point b {
  font-size: 20px;
}

.reason__ttl {
  font-family: 'KeiFont';
  position: absolute;
  top: 9%;
  left: 16%;
  color: #fff;
  font-weight: 900;
  font-size: clamp(22.5px, 6vw, 25px);
  margin: 0;
}

.reason__big {
  font-size: 1.3em;
}

.reason__big92 {
  font-size: 1.5em;
  font-weight: 900;
}



.reason__img {
  width: 100%;
  height: auto;
  display: block;
}

.reason__text {
  position: absolute;
  bottom: 3%;
  right: 2%;
  width: 53%;
  text-align: left;
  font-size: clamp(13px, 3.8vw, 16px);
  line-height: 1.4;
  color: #222;
}


.reason__media {
  position: relative;
  /* ← 基準 */
  width: 100%;
}

.reason__overlay-text {
  width: 100%;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "keifont";
  font-size: clamp(18px, 6vw, 24px);
  text-align: center;
}

.reason_text_bold{
  font-weight: 600;
}

.section7__q {
  width: 84%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: clamp(14.6px, 4.2vw, 18px);
  line-height: 1.5;
  text-align: left;
}

/* Q4 */
.section7__qmark {
  color: #F7931E;
  font-size: 30px;
  white-space: nowrap;
  /* ← 折り返し防止 */
}

.section7__qimg {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.section7 .c-note--tight {
  margin-top: -6%;
  white-space: nowrap;
  font-size: clamp(11px, 2.8vw, 12px);
}


/* ===== Section8 ===== */
.section8{
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section8__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.section8__inner{
  position: relative;
  z-index: 1;
  width: min(420px, 92vw);
  margin: 0 auto;
  padding: 29px 0 9px;
}

/* ===== タイトル全体 ===== */
.cta8__title{
  margin: 0;
  line-height: 2.3;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta8__line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.cta8__word {
  position: relative;
  display: inline-block;
  font-size: clamp(36px, 9vw, 40px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(to bottom, #FF3C00 0%, #FFC247 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 白フチ（中） */
.cta8__word::before{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;

  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;

  color: transparent;
  -webkit-text-stroke: 11px #fff;
  font-family: "M PLUS Rounded 1c", sans-serif !important;
}

.cta8__word::after{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -2;

  transform: translate(1px, 6px);

  color: transparent;
  -webkit-text-fill-color: transparent;

  /* ✅ 黒の“厚み” */
  -webkit-text-stroke: 11px #000;
  font-family: "M PLUS Rounded 1c", sans-serif !important;
}

/* ===== 92だけ別枠（大きい） ===== */
.cta8__numWrap{
  position: relative;
  display: inline-block;
}

.cta8__spark {
  position: absolute;
    top: -35%;
    left: -27%;
    width: 38%;
    height: auto;
    z-index: 3;
}

/* 92のグラデ＋フチ＋立体 */
.cta8__num{
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  font-size: clamp(61px, 16vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;

  background: linear-gradient(to bottom, #ffb347 0%, #ff7a00 60%, #e85d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 白フチ */
.cta8__num::before{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;

  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;

  color: transparent;
  -webkit-text-stroke: 15px #fff;
  font-family: "M PLUS Rounded 1c", sans-serif !important;
  letter-spacing: -0.1em;
  left: -8%;
}

.cta8__num::after{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -2;

  transform: translate(1px, 7px);

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 14px #000;
  font-family: "M PLUS Rounded 1c", sans-serif !important;
   letter-spacing: -0.1em;
  left: -11%;
}

.cta8__pct{
  font-size: clamp(40px, 7.6vw, 46px);
  position: relative;
}

/* 白フチを細く */
.cta8__pct::before{
  -webkit-text-stroke: 12px #fff;
  left:-3%;
top:-4%;
}

/* 黒立体を細く */
.cta8__pct::after{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -2;

  transform: translate(4px, 4px);

  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 12px #000;  /* ←太すぎると尖りやすい */

  filter: none; /* ←これが一番効く */
  left: -13%;
}

.cta8__triangle {
  width: 40%;
  margin: 15px auto -1px;
  display: block;
}

/* CTAボタン（画像） */
.cta8__btn{
  display: block;
  width: 100%;
}

.cta8__btnImg{
  width: 100%;
  display: block;
}




.section9{
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* 背景はHTMLのimg */
.section9__bg,
.section9__bg2{
  width: 100%;
  display: block;
}

/* 文字・中身は全部重ねる */
.section9__inner_genkinka,
.section9__ans-bubble,
.section9__ans-lead,
.section9__ans-alert,
.section9__diagram,
.s9__example,
.s9__case,
.s9__steps{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* =======================
   上：お悩み部分（既存）
======================= */
.section9__inner_genkinka {
  position: absolute;
  text-align: center;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}

.section9__title{
  font-family: "keifont";
  font-size:40px;
  color: #222222;
  margin-bottom: 0px;
}

.section9__text {
  font-family: sans-serif;
  font-weight: 900;
  font-size: 19px;
  margin-top: 11px;
  margin-bottom: -4px;
}

/* =======================
   下：回答エリア
   ※ここからの top は
   「上の背景の高さ」によって調整
======================= */

.section9__ans-bubble {
  position: absolute;
  font-family: "keifont";
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  padding: 18px 18px;
  background: url(./img_webp/sec9_fukidashi.webp) no-repeat center;
  background-size: contain;
  text-align: center;
  font-weight: 900;
  font-size: clamp(24px, 6.3vw, 27px);
  color: #fff;
}
.section9__ans-lead {
  top: 23.5%;
  width: 100%;
  text-align: center;
  font-size: clamp(19px, 5vw, 23px);
  font-weight: 800;
  color: #111;
}
.section9__ans-alert {
  top: 24%;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  text-align: center;
  font-size: clamp(30px, 8vw, 34px);
  font-weight: 900;
  color: #E12433;
  text-decoration: underline;
  text-decoration-thickness: 2px;   /* 太さ */
  text-underline-offset: 4px;  
}

.section9__diagram {
  top: 29.5%;
  width: 94%;
  left: 50%;}

  .s9__example {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
}

.s9__example img{
  margin: 0 auto;
  width: 52.5%;
  display: block;
}

.s9__example span {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}


.s9__case {
  top: 54%;
  width: 100%;
  text-align: center;
  font-size: 23px;
  font-weight: 900;
  color: #111;
}

.s9__case span {
  font-weight: 1000;
  font-size: 32px;
}

/* =======================
   ステップ（テキスト下に画像）
======================= */
.s9__steps{
  top: 58.5%;
  width: 90%;
}

/* 縦ライン */
.s9__steps{
  --rail-x: 22px;
}
.s9__steps::before {
  content: "";
  position: absolute;
  left: var(--rail-x);
  top: 10px;
  bottom: 30%;
  left: 8%;
  width: 4px;
  border-radius: 999px;
  background: #111;
}

/* 各ステップ */
.step{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 20px 0;
  position: relative;
}


.step__num {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  position: relative;
  left: calc(var(--rail-x) - 18px);
}

.step__body{ padding-top: 4px; }

.step__text {
  font-size: clamp(19px, 5vw, 22px);
  font-weight: 900;
  line-height: 1.3;
  color: #111;
  margin: 0 0 10px 0;
}

.step__highlight{
  font-weight: 1000;
  font-size: 1.2em;   /* 少し大きく */
}

.note{
  font-size: 11px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin: -6px 0 10px 0;
}

.step__img{
  width: 100%;
  height: auto;
  display: block;
}


.section9{
  position: relative;
  z-index: 1;
}

.section8--overlap {
  position: relative;
  z-index: -1;
  margin-top: -14%;
  padding-top: 12%;
}



.section10 {
  margin: 0 auto;
  /* padding: 63px 14px 34px; */
  text-align: center;
  padding-top: 17%;
  padding-bottom: 19%;
  width: 85%;
}

.section10__title{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: 30px;
  color: #F7931E;
  font-family: "keifont";
}

/* FAQ枠 */
.faq{ display: grid;
  gap: 12px; }

/* 質問ボタン（オレンジ帯） */
.faq-q{
  width: 100%;
  border: 2px solid #F7931E;
  background: #F7931E;
  color: #fff;
  padding: 6px 12px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.faq-q__left{
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.qaBadge {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 0;
  flex: 0 0 auto;
  font-size: 23px;
}
.qaBadge--q{
  color: #fff;
}
.qaBadge--a{
  color: #F7931E;
}

.faq-q__text{
  font-size: 14px;
  line-height: 1.4;
}

/* 右の▼ */
.faq-q__icon{
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex: 0 0 auto;
}

/* 開いたとき ▼を上向きに */
.faq-item.is-open .faq-q__icon{
  transform: rotate(-135deg);
}

/* 回答（白枠＋オレンジ枠） */
.faq-a{
  border: 2px solid #F7931E;
  background: #fff;
  margin-top: -2px; /* 質問の枠とピッタリつなぐ */
}

.faq-a__inner{
  padding: 12px 12px 14px;
}

.faq-a__row{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  text-align: left;
}

.faq-a__text{
  font-size: 13px;
  line-height: 1.7;
  color: #222;
}


.section11{
  margin: 0 auto;
  position: relative; /* 念のため */

  background: url("./img_webp/co_message_back3.webp") no-repeat top center;
  background-size: 100% auto; /* 横引き伸ばし感を減らすならこれ */
  background-position: center top; /* ここだけ調整 */

  padding: 20px 16px 30px;
}

.section11.is-open{
  background: url("./img_webp/co_message_back4.webp") no-repeat top center;
  background-size: 100% auto;
  background-position: center top; /* ここだけ調整 */
}

/* ✅ ここがNGだった：absoluteやめる */
.section11__content{
  position: relative;   /* or 何も書かないでもOK */
  inset: auto;          /* もし残ってたら無効化 */
  padding: 18px 0 22px; /* ← section11の左右paddingあるので横は0でOK */
}


.section11__title{
  margin: 14px 0 12px;
  font-weight: 900;
  font-size: clamp(30px, 8vw, 40px);
  color: #fff;
  letter-spacing: .02em;
  text-shadow: 0 2px 0 rgba(0,0,0,.08);
}

.section11__card {
  border-radius: 14px;
  padding: 14px 14px 18px;
  text-align: left;
  margin-top: 26%;
}

.section11__short p, .section11__full p {
  margin: 0 0 12px;
  font-size: clamp(12.5px, 3.4vw, 15px);
  line-height: 1.4;
  color: #222;
}

/* 「もっと見る」状態のときだけ、下に薄いフェード（1枚目っぽく） */
.section11.is-collapsed .section11__card{
  position: relative;
}
.section11.is-collapsed .section11__card::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 62px;       /* ボタン上で止める */
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events:none;
}

.section11__btn {
  display: block;
  width: 106px;
  margin: 10px auto 0;
  padding: 5px 14px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  /* font-weight: 900; */
  font-size: 14px;
  cursor: pointer;
}





/* =========================
   section12
========================= */

.section12{
  max-width: 420px;
  margin: 0 auto;
  padding: 0px 18px 40px;
}

.section12__title{
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #222;
}

.section12__table{
  font-size: 13px;
}

.section12 .row{
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.section12 .label{
  width: 110px;
  font-weight: 700;
  color: #333;
}

.section12 .value{
  flex: 1;
  line-height: 1.7;
  color: #333;
}

/* =========================
   footer
========================= */

.footer{
  margin: 0 auto;
  background: #474747;
  color: #fff;
  padding: 14px 18px;
}

.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer__policy{
  color: #fff;
  text-decoration: underline;
}


/* =========================
   Privacy page
========================= */

.privacy{
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 18px 14px 24px;
}

.privacy__brand{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 6px 6px;
}

.privacy__logo{
  width: 140px;
  height: auto;
  display: block;
}

.privacy__tel{
  text-align: right;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.privacy__telNum{
  display: block;
  font-size: 14px;
}

.privacy__telTime{
  display: block;
  font-size: 10px;
  opacity: .75;
}

.privacy__title {
  text-align: center;
  font-weight: 900;
  font-size: 17px;
  margin: 14px 0 1px;
  color: #111;
}

.privacy__card {
  padding: 14px 14px 16px;
  color: #222;
  font-size: 12.5px;
}

.privacy__card h2{
  margin: 14px 0 6px;
  font-size: 13px;
  font-weight: 200;
}

.privacy__card p{
  margin: 0 0 10px;
}

.privacy__card ul{
  margin: 0 0 10px 1.2em;
  padding: 0;
}

.privacy__card li{
  margin: 0 0 6px;
}

.privacy__actions{
  display: flex;
  justify-content: center;
  margin: 14px 0 0;
}

.privacy__back {
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  /* font-weight: 900; */
  font-size: 14px;
  padding: 1px 36px;
  cursor: pointer;
}






