@charset "UTF-8";

/* =========================================================
   いったんやすも。 LP  -  base / tokens
   ========================================================= */
:root{
  /* color */
  --c-bg:        #fbf6ef;   /* ページ外の地色 */
  --c-base:      #fffdfa;   /* LP本体の地色 */
  --c-cream:     #fdf4e9;   /* 薄いクリーム */
  --c-pink:      #fcefee;   /* 薄いピンク */
  --c-sage:      #eef3ef;   /* 薄いセージ */
  --c-text:      #3a3733;
  --c-text-thin: #6d675f;
  --c-main:      #2f6b5c;   /* メイン（落ち着いたグリーン） */
  --c-main-d:    #24564a;
  --c-accent:    #e0674f;   /* アクセント（テラコッタ） */
  --c-marker:    #ffe6a8;   /* マーカー */
  --c-line:      #e7ded1;
  --c-white:     #fff;

  /* cta */
  --cta-from:    #3f9a7d;
  --cta-to:      #2f6b5c;

  /* layout */
  --lp-w: 600px;
  --pad: 22px;

  /* font */
  --f-gothic: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --f-round:  "Zen Maru Gothic", "Noto Sans JP", -apple-system, "Hiragino Sans", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:16px; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  background:var(--c-bg);
  color:var(--c-text);
  font-family:var(--f-gothic);
  font-size:15px;
  line-height:1.9;
  font-feature-settings:"palt";
  letter-spacing:.02em;
  padding-bottom:82px; /* 追従CTA分 */
}

img{ max-width:100%; height:auto; display:block; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,p{ margin:0; }
a{ color:inherit; text-decoration:none; }

.lp{
  max-width:var(--lp-w);
  margin-inline:auto;
  background:var(--c-base);
  overflow:hidden;
  box-shadow:0 0 40px rgba(90,70,50,.06);
}

/* 共通パーツ ------------------------------------------- */
.marker{
  background:linear-gradient(transparent 58%, var(--c-marker) 58%);
  font-weight:700;
  padding:0 .1em;
}

.sp-only{ display:inline; }
@media (min-width:481px){ .sp-only{ display:none; } }

/* セクション見出し（リボン風） */
.sec-title{
  position:relative;
  text-align:center;
  font-family:var(--f-round);
  font-size:clamp(19px,5.2vw,24px);
  font-weight:700;
  line-height:1.5;
  color:var(--c-main-d);
  margin-bottom:26px;
}
.sec-title span{ position:relative; display:inline-block; padding:0 6px; }
.sec-title span::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-10px;
  height:4px; border-radius:4px;
  background:var(--c-marker);
}
.sec-title--light,
.sec-title--light span{ color:var(--c-white); }
.sec-title--light span::after{ background:rgba(255,255,255,.5); }

section{ padding:54px var(--pad); }

/* =========================================================
   CTAボタン
   ========================================================= */
.btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  width:100%;
  max-width:420px;
  margin-inline:auto;
  padding:16px 18px;
  border-radius:999px;
  text-align:center;
  font-family:var(--f-round);
  background:linear-gradient(180deg,var(--cta-from),var(--cta-to));
  color:var(--c-white);
  box-shadow:0 6px 0 #1f4a3f, 0 12px 20px rgba(47,107,92,.28);
  transition:transform .12s ease, box-shadow .12s ease;
  position:relative;
}
.btn::after{
  content:"";
  position:absolute; right:20px; top:50%;
  width:9px; height:9px;
  border-top:2.5px solid #fff; border-right:2.5px solid #fff;
  transform:translateY(-50%) rotate(45deg);
  opacity:.9;
}
.btn:hover{ transform:translateY(2px); box-shadow:0 4px 0 #1f4a3f, 0 8px 14px rgba(47,107,92,.26); }
.btn:active{ transform:translateY(6px); box-shadow:0 0 0 #1f4a3f, 0 4px 8px rgba(47,107,92,.24); }

.btn__main{ font-size:22px; font-weight:900; letter-spacing:.08em; line-height:1.3; }
.btn__sub{ font-size:11.5px; font-weight:500; opacity:.92; letter-spacing:.02em; line-height:1.4; }

.btn--slim{ padding:11px 18px; box-shadow:0 4px 0 #1f4a3f; }
.btn--slim .btn__main{ font-size:18px; }
.btn--slim .btn__sub{ font-size:10.5px; }

.cta-block{
  padding:30px var(--pad);
  background:var(--c-cream);
}

/* 追従CTA */
.fixed-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:50;
  padding:10px 16px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,253,250,.94);
  backdrop-filter:blur(6px);
  border-top:1px solid var(--c-line);
  transform:translateY(120%);
  transition:transform .28s ease;
}
.fixed-cta.is-show{ transform:translateY(0); }

/* =========================================================
   0. ファーストビュー
   ========================================================= */
.fv{
  background:
    radial-gradient(120% 60% at 50% 0%, #fdf1ea 0%, var(--c-pink) 45%, var(--c-cream) 100%);
  padding:34px var(--pad) 46px;
  text-align:center;
  position:relative;
}
.fv__inner{ position:relative; z-index:1; }

.fv__bubble{
  position:relative;
  display:inline-block;
  max-width:100%;
  background:var(--c-white);
  border:2px solid #4b4540;
  border-radius:26px;
  padding:14px 22px;
  box-shadow:0 4px 0 rgba(75,69,64,.12);
}
.fv__bubble::after,
.fv__bubble::before{
  content:"";
  position:absolute;
  left:26px;
  border-radius:50%;
  background:var(--c-white);
  border:2px solid #4b4540;
}
.fv__bubble::before{ width:14px; height:14px; bottom:-20px; }
.fv__bubble::after{ width:8px; height:8px; bottom:-34px; left:18px; }

.fv__bubble-text{
  font-family:var(--f-round);
  font-weight:700;
  font-size:clamp(17px,4.8vw,21px);
  line-height:1.6;
  color:#3a3733;
}

.fv__sub{
  margin-top:44px;
  font-family:var(--f-round);
  font-size:15px;
  color:var(--c-text-thin);
  letter-spacing:.1em;
}

/* イラスト枠 */
.fv__illust{
  margin:14px auto 0;
  max-width:300px;
}
figure{ margin:0; position:relative; }
figure .ph-label{ display:none; }
figure.is-placeholder img{ display:none; }
figure.is-placeholder .ph-label{ display:flex; }

.ph-label{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  aspect-ratio:4/3;
  border:2px dashed #cdbfae;
  border-radius:18px;
  background:rgba(255,255,255,.6);
  color:#a9998a;
  font-size:12px;
  line-height:1.6;
  text-align:center;
}
.ph-label small{ font-size:10.5px; opacity:.8; }
.ph-label--inline{ aspect-ratio:auto; padding:34px 16px; }

.fv__copybox{ margin-top:26px; }

.fv__copy{
  font-family:var(--f-round);
  font-weight:900;
  font-size:clamp(24px,6.8vw,32px);
  line-height:1.55;
  color:var(--c-main-d);
}

.fv__logo{
  margin-top:20px;
  font-family:var(--f-round);
  font-weight:900;
  font-size:clamp(28px,8.5vw,40px);
  letter-spacing:.04em;
  color:var(--c-main);
  line-height:1.3;
}
.fv__logo-dot{ color:var(--c-accent); }

.fv__lead{
  margin-top:14px;
  font-size:14px;
  line-height:1.95;
  color:var(--c-text-thin);
}

.fv__btn{ margin-top:26px; }

/* =========================================================
   3. Before / After
   ========================================================= */
.ba{ background:var(--c-base); }

.ba__col{ padding:20px 16px; border-radius:20px; }
.ba__col--before{ background:#f3f1ee; }
.ba__col--after{ background:var(--c-sage); }

.ba__label{
  text-align:center;
  font-family:var(--f-round);
  font-weight:700;
  font-size:14px;
  letter-spacing:.14em;
  margin-bottom:16px;
}
.ba__label--before{ color:#8c857b; }
.ba__label--after{ color:var(--c-main); }

/* イラスト × 吹き出し の2カラム */
.ba__body{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:16px;
  align-items:center;
}
.ba__illust{ width:100%; }
.ba__illust img{ border-radius:14px; }
.ba__illust .ph-label{
  aspect-ratio:3/4;
  border-radius:14px;
  font-size:10.5px;
  line-height:1.5;
  gap:2px;
  padding:6px;
  overflow:hidden;
  word-break:break-all;
}
.ba__illust .ph-label small{ font-size:9.5px; }

.bubbles{ display:grid; gap:10px; }

.bubble{
  position:relative;
  padding:12px 15px;
  background:var(--c-white);
  border:1.5px solid var(--c-line);
  border-radius:16px;
  font-size:13.5px;
  line-height:1.7;
}
/* 左向きのしっぽ（イラスト側を指す） */
.bubble::before,
.bubble::after{
  content:"";
  position:absolute;
  top:18px;
  width:0; height:0;
  border-style:solid;
}
.bubble::before{
  left:-10px;
  border-width:7px 10px 7px 0;
  border-color:transparent var(--c-line) transparent transparent;
}
.bubble::after{
  left:-8px;
  border-width:6px 8px 6px 0;
  border-color:transparent var(--c-white) transparent transparent;
}
.bubble--after{ border-color:#bcd6c9; font-weight:500; }
.bubble--after::before{ border-right-color:#bcd6c9; }

.ba__arrow{
  display:grid; place-items:center;
  padding:12px 0;
  color:var(--c-marker);
}

@media (min-width:481px){
  .ba__body{ grid-template-columns:140px 1fr; gap:20px; }
  .ba__illust .ph-label{ font-size:11.5px; }
}

/* =========================================================
   4. 課題提起
   ========================================================= */
.problem{ background:var(--c-cream); }

.problem__lead{
  font-family:var(--f-round);
  line-height:2.1;
  font-size:clamp(16px,4.4vw,19px);
  font-weight:700;
  line-height:1.85;
  text-align:center;
  color:var(--c-main-d);
  margin-bottom:22px;
}
.problem__text{ font-size:14px; line-height:1.95; }
.problem__text strong{ color:var(--c-accent); font-weight:900; }

.qlist{
  display:grid; gap:10px;
  margin:18px 0 22px;
}
.qlist li{
  position:relative;
  padding:12px 16px 12px 44px;
  background:var(--c-white);
  border-radius:12px;
  border:1.5px solid var(--c-line);
  font-size:14px;
  font-weight:500;
  line-height:1.7;
}
.qlist li::before{
  content:"?";
  position:absolute; left:14px; top:50%;
  transform:translateY(-50%);
  display:grid; place-items:center;
  width:20px; height:20px;
  border-radius:50%;
  background:var(--c-accent);
  color:#fff;
  font-family:var(--f-round);
  font-size:13px; font-weight:700;
  line-height:1;
}

/* =========================================================
   5. サービス説明
   ========================================================= */
.service{
  background:linear-gradient(180deg,var(--c-main) 0%, var(--c-main-d) 100%);
  color:var(--c-white);
  text-align:center;
}

.service__formula{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px 10px;
  margin-bottom:20px;
}
.service__item{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1.5px solid rgba(255,255,255,.4);
  font-family:var(--f-round);
  font-weight:700;
  font-size:15px;
}
.service__op{ font-size:16px; opacity:.75; font-weight:700; }

.service__lead{
  font-size:15px;
  line-height:1.95;
}
.service__lead strong{
  font-family:var(--f-round);
  font-weight:900;
  border-bottom:3px solid var(--c-marker);
  padding-bottom:1px;
}

.note-card{
  margin:24px auto 0;
  max-width:480px;
  padding:20px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.1);
  border:1.5px solid rgba(255,255,255,.28);
  font-size:13.5px;
  line-height:1.8;
}
.note-card__tags{
  display:flex; flex-wrap:wrap; justify-content:center; gap:7px;
  margin:12px 0;
}
.note-card__tags span{
  padding:4px 11px;
  border-radius:999px;
  background:var(--c-white);
  color:var(--c-main-d);
  font-size:12px;
  font-weight:700;
  line-height:1.6;
}

.service__close{
  max-width:420px;
  margin:26px auto 0;
  font-family:var(--f-round);
  font-size:clamp(15px,4.2vw,18px);
  font-weight:700;
  line-height:1.9;
}
.service__close .marker{ color:var(--c-text); }

/* 濃色背景の上のマーカーはベタ塗りにする */
.service .marker,
.founder .marker{
  background:var(--c-marker);
  border-radius:4px;
  padding:.12em .22em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

/* =========================================================
   6. こんな方へ
   ========================================================= */
.target{ background:var(--c-base); }

.checklist{ display:grid; gap:12px; }
.checklist li{
  position:relative;
  padding:16px 18px 16px 48px;
  background:var(--c-sage);
  border-radius:14px;
  font-size:14px;
  font-weight:500;
  line-height:1.75;
}
.checklist li::before{
  content:"";
  position:absolute; left:18px; top:20px;
  width:16px; height:9px;
  border-left:3px solid var(--c-main);
  border-bottom:3px solid var(--c-main);
  transform:rotate(-45deg);
  border-radius:1px;
}

/* =========================================================
   7. こんなサービスと違います
   ========================================================= */
.compare{ background:var(--c-pink); }

.compare__list{
  display:grid; gap:8px;
  max-width:460px; margin-inline:auto;
}
.compare__row{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  background:var(--c-white);
  border-radius:12px;
  font-size:13.5px;
}
.compare__who{ font-weight:700; color:var(--c-text); }
.compare__what{
  position:relative;
  padding-left:20px;
  color:var(--c-text-thin);
  font-size:13px;
  white-space:nowrap;
}
.compare__what::before{
  content:"";
  position:absolute; left:2px; top:50%;
  width:12px; height:1.5px;
  background:#cbbfb2;
}

.compare__arrow{
  display:grid; place-items:center;
  padding:14px 0;
  color:#f0cfc7;
}

.compare__ours{
  max-width:460px; margin-inline:auto;
  padding:24px 20px;
  border-radius:20px;
  background:var(--c-white);
  border:2.5px solid var(--c-main);
  text-align:center;
  box-shadow:0 8px 0 rgba(47,107,92,.12);
}
.compare__ours-name{
  font-family:var(--f-round);
  font-weight:900;
  font-size:19px;
  color:var(--c-main);
  margin-bottom:8px;
}
.compare__ours-text{ font-size:14px; line-height:1.85; }
.compare__ours-text strong{ font-family:var(--f-round); font-size:17px; color:var(--c-accent); }

/* =========================================================
   8. ご利用の流れ
   ========================================================= */
.flow{ background:var(--c-base); padding-bottom:0; }

.steps{ display:grid; gap:16px; }

.step{
  position:relative;
  padding:20px 18px;
  border-radius:18px;
  background:var(--c-cream);
  border:1.5px solid var(--c-line);
}
.step:not(:last-child)::after{
  content:"";
  position:absolute; left:50%; bottom:-13px;
  transform:translateX(-50%);
  border-style:solid;
  border-width:11px 9px 0 9px;
  border-color:var(--c-line) transparent transparent transparent;
  z-index:1;
}
.step__head{
  display:flex; align-items:center; gap:12px;
  margin-bottom:10px;
}
.step__num{
  flex:0 0 auto;
  display:inline-flex; align-items:baseline; gap:3px;
  padding:5px 12px;
  border-radius:999px;
  background:var(--c-main);
  color:#fff;
  font-family:var(--f-round);
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  line-height:1.4;
}
.step__num b{ font-size:16px; }
.step__title{
  font-family:var(--f-round);
  font-size:clamp(16px,4.4vw,18px);
  font-weight:700;
  line-height:1.5;
  color:var(--c-main-d);
}
.step__text{ font-size:14px; line-height:1.85; }
.step__form{ margin-top:16px; }

.flow .cta-block{ margin-top:36px; }

/* =========================================================
   9. 創業者メッセージ
   ========================================================= */
.founder{
  background:linear-gradient(180deg,#3b4a46,#2c3a36);
  color:#f4f1ec;
}
.founder__photo{
  width:120px; margin:0 auto 20px;
}
.founder__photo img{ border-radius:50%; aspect-ratio:1; object-fit:cover; }
.founder__photo .ph-label{ aspect-ratio:1; border-radius:50%; font-size:11px; }

.founder__body{
  max-width:480px; margin-inline:auto;
  display:grid; gap:16px;
  font-size:14px;
  line-height:2;
}
.founder__body .marker{ color:var(--c-text); }
.founder__sign{
  text-align:right;
  font-family:var(--f-round);
  font-weight:700;
  opacity:.9;
}
.founder__memo{
  max-width:480px; margin:24px auto 0;
  padding:12px 14px;
  border:1px dashed rgba(255,255,255,.35);
  border-radius:10px;
  font-size:11.5px;
  line-height:1.8;
  color:rgba(244,241,236,.7);
}

/* =========================================================
   10. FAQ
   ========================================================= */
.faq{ background:var(--c-base); }

.qa{
  border:1.5px solid var(--c-line);
  border-radius:14px;
  background:var(--c-white);
  overflow:hidden;
}
.qa + .qa{ margin-top:10px; }

.qa__q{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:16px 48px 16px 46px;
  font-family:var(--f-round);
  font-size:14.5px;
  font-weight:700;
  line-height:1.65;
  color:var(--c-main-d);
}
.qa__q::-webkit-details-marker{ display:none; }
.qa__q::before{
  content:"Q";
  position:absolute; left:16px; top:15px;
  display:grid; place-items:center;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--c-main);
  color:#fff;
  font-size:12px;
  line-height:1;
}
.qa__q::after{
  content:"";
  position:absolute; right:20px; top:22px;
  width:9px; height:9px;
  border-right:2.5px solid var(--c-main);
  border-bottom:2.5px solid var(--c-main);
  transform:rotate(45deg);
  transition:transform .2s ease;
}
.qa[open] .qa__q::after{ transform:rotate(-135deg); }

.qa__a{
  position:relative;
  padding:0 20px 18px 46px;
  font-size:13.5px;
  line-height:1.9;
  color:var(--c-text-thin);
}
.qa__a::before{
  content:"A";
  position:absolute; left:16px; top:1px;
  display:grid; place-items:center;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--c-cream);
  color:var(--c-accent);
  font-family:var(--f-round);
  font-size:12px;
  font-weight:700;
  line-height:1;
}

/* =========================================================
   11. 最終CTA / footer
   ========================================================= */
.last-cta{
  background:radial-gradient(120% 70% at 50% 0%, #fdf1ea 0%, var(--c-pink) 60%, var(--c-cream) 100%);
  text-align:center;
}
.last-cta__title{
  font-family:var(--f-round);
  font-weight:900;
  font-size:clamp(21px,5.8vw,27px);
  line-height:1.65;
  color:var(--c-main-d);
  margin-bottom:26px;
}
.last-cta__note{
  margin-top:18px;
  font-size:12px;
  line-height:1.8;
  color:var(--c-text-thin);
}

.footer{
  background:var(--c-main-d);
  color:rgba(255,255,255,.85);
  text-align:center;
  padding:30px var(--pad) 34px;
}
.footer__logo{
  font-family:var(--f-round);
  font-weight:900;
  font-size:20px;
  letter-spacing:.04em;
}
.footer__logo span{ color:#f0a08c; }
.footer__links{
  display:flex; flex-wrap:wrap; justify-content:center; gap:6px 18px;
  margin:16px 0 14px;
  font-size:12px;
}
.footer__links a{ opacity:.85; }
.footer__links a:hover{ opacity:1; text-decoration:underline; }
.footer__copy{ font-size:11px; opacity:.6; }

/* =========================================================
   PC 微調整
   ========================================================= */
@media (min-width:481px){
  body{ font-size:15.5px; padding-bottom:0; }
  section{ padding:66px 34px; }
  .cta-block{ padding:36px 34px; }
  .fv{ padding:44px 34px 56px; }
  .fixed-cta{ display:none; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
}

/* =========================================================
   料金と提供内容
   ========================================================= */
.price{ background:var(--c-cream); }

.price__free{
  max-width:440px;
  margin:-10px auto 22px;
  text-align:center;
  font-size:13.5px;
  line-height:1.8;
  color:var(--c-text-thin);
}

.price__card{
  max-width:460px;
  margin-inline:auto;
  padding:26px 20px 22px;
  border-radius:20px;
  background:var(--c-white);
  border:2.5px solid var(--c-main);
  box-shadow:0 8px 0 rgba(47,107,92,.12);
  text-align:center;
}
.price__name{
  font-family:var(--f-round);
  font-size:clamp(17px,4.6vw,20px);
  font-weight:900;
  color:var(--c-main-d);
  line-height:1.5;
}
.price__badge{
  display:inline-block;
  margin-top:12px;
  padding:5px 16px;
  border-radius:999px;
  background:var(--c-accent);
  color:#fff;
  font-family:var(--f-round);
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
}
.price__amount{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:3px;
  margin-top:10px;
  font-family:var(--f-round);
  color:var(--c-main-d);
  line-height:1.1;
}
.price__amount b{ font-size:clamp(42px,11.5vw,54px); font-weight:900; }
.price__amount span{ font-size:22px; font-weight:700; }
.price__amount i{ font-style:normal; font-size:13px; font-weight:500; color:var(--c-text-thin); }

.price__limit{
  margin-top:4px;
  font-size:12.5px;
  font-weight:700;
  color:var(--c-accent);
  letter-spacing:.04em;
}

.price__list{
  margin-top:22px;
  padding-top:20px;
  border-top:1px dashed var(--c-line);
  display:grid;
  gap:16px;
  text-align:left;
}
.price__list li{
  display:grid;
  grid-template-columns:26px 1fr;
  gap:11px;
  align-items:start;
}
.price__num{
  display:grid; place-items:center;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--c-main);
  color:#fff;
  font-family:var(--f-round);
  font-size:13px;
  font-weight:700;
  line-height:1;
}
.price__list b{
  display:block;
  font-family:var(--f-round);
  font-size:14.5px;
  font-weight:700;
  color:var(--c-main-d);
  line-height:1.5;
  margin-bottom:3px;
}
.price__list div{ font-size:13px; line-height:1.8; color:var(--c-text-thin); }

.price__exclude{
  max-width:460px;
  margin:22px auto 0;
  padding:20px 18px;
  border-radius:16px;
  background:var(--c-white);
  border:1.5px solid var(--c-line);
}
.price__exclude-title{
  font-family:var(--f-round);
  font-size:14px;
  font-weight:700;
  color:var(--c-text);
  margin-bottom:12px;
}
.price__exclude ul{ display:grid; gap:8px; }
.price__exclude li{
  position:relative;
  padding-left:20px;
  font-size:13px;
  line-height:1.8;
  color:var(--c-text-thin);
}
.price__exclude li::before{
  content:"";
  position:absolute; left:4px; top:.82em;
  width:9px; height:1.5px;
  background:var(--c-accent);
}
.price__exclude-note{
  margin-top:14px;
  padding-top:14px;
  border-top:1px dashed var(--c-line);
  font-size:12px;
  line-height:1.85;
  color:var(--c-text-thin);
}

.price__hl{
  display:inline !important;
  font-size:inherit !important;
  color:var(--c-main-d) !important;
  font-weight:700;
  background:linear-gradient(transparent 58%, var(--c-marker) 58%);
}

/* ---------- 無料モニター募集 ---------- */
.monitor{
  max-width:460px;
  margin:22px auto 0;
  padding:22px 20px;
  border-radius:16px;
  background:var(--c-white);
  border:1.5px solid var(--c-line);
}
.monitor__title{
  font-family:var(--f-round);
  font-size:15px;
  font-weight:700;
  color:var(--c-main-d);
  margin-bottom:10px;
}
.monitor__title--sub{
  margin-top:20px;
  padding-top:18px;
  border-top:1px dashed var(--c-line);
}
.monitor__text{
  font-size:13.5px;
  line-height:1.95;
}
.monitor__list{ display:grid; gap:9px; }
.monitor__list li{
  position:relative;
  padding-left:24px;
  font-size:13.5px;
  line-height:1.8;
}
.monitor__list li::before{
  content:"";
  position:absolute; left:3px; top:.52em;
  width:13px; height:7px;
  border-left:2.5px solid var(--c-main);
  border-bottom:2.5px solid var(--c-main);
  transform:rotate(-45deg);
}
.monitor__note{
  margin-top:14px;
  padding-top:14px;
  border-top:1px dashed var(--c-line);
  font-size:12px;
  line-height:1.85;
  color:var(--c-text-thin);
}
