/* ============================================================
   価値観の合うお客さまと出会う LP
   ============================================================ */

:root {
  --gold: #ae9b65;
  --gold-dark: #8f7d4c;
  --gold-light: #c8b884;
  --red: #d6272c;
  --dark: #1e1e1e;
  --ink: #333;
  --cream: #f5f1e8;
  --beige: #efe9dc;
  --line: #ddd5c2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Serif JP", serif;
  color: var(--ink);
  font-size: 16px;
  background: #f1efea;
  -webkit-font-smoothing: antialiased;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  line-height: 2;
}

.lp {
  max-width: 1366px;
  margin: 0 auto;
  background: var(--cream);
  overflow: hidden;
}

.section-inner {
  padding: 100px 5%;
  max-width: 1000px;
  margin: 0 auto;
}
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
/* ---------- 共通見出し ---------- */
.heading {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 50px;
  color: var(--ink);
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

/* ---------- 共通CTA ---------- */

.cta {
  display: inline-block;
  /* align-items: center; */
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #1e1e1e, #616161);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  padding: 15px 46px;
  border-radius: 50px;
  box-shadow:
    0 4px 0 #403d3d,
    0 6px 12px rgba(0, 0, 0, 0.25);
  line-height: 1.5;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  position: relative;
}
.cta::after {
  content: "▶";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cta:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #7d6c40;
}
.cta__arrow {
  font-size: 11px;
}
.cta--fv {
  margin-top: 6px;
}

.cta--faq {
  margin-top: 30px;
}
.cta-attention {
  color: var(--gold-light);
}
/* ============================================================
   FV
   ============================================================ */
.fv {
  background: url("../img/fv-bg.webp") center/cover no-repeat;
  position: relative;
}
.fv::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url(../img/scroll-icon.webp) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  z-index: 1;
}
.fv__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 30px;
}

.fv__lead {
  font-size: 28px;
}
.fv__badge {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  padding: 0 1%;
  display: inline-block;
  background-color: var(--red);
  line-height: 1.4;
}
.fv__title {
  margin-top: 30px;
}
.fv__title-sub {
  display: block;
  font-size: 46px;
}
.fv__title-main {
  display: block;
  font-size: 93px;
}
.underline {
  display: block;
  width: 100%;
  max-width: 640px;
  height: 14px;
  margin: 0 auto;
}

.fv__title-full {
  font-size: 37px;
  background: #ae9b65;
  color: #fff;
  padding: 0 2%;
  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    18px 100%,
    0 50%
  );
}
.fullsapo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.fullsapo-wrap::before,
.fullsapo-wrap::after {
  content: "";
  display: inline-block;
  width: 150px;
  height: 2px;
  background-color: #ae9b65;
}

/* 価格ボックス */
.fv__price {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  border: 2px solid #ae9b65;
  margin: 26px 0 24px;
  padding: 14px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.fv__price-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.fv__price-cell {
  flex: 1;
  text-align: center;
  padding: 2px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1.4;
  border-right: 1px dashed var(--line);
}
.fv__price-cell:last-child {
  border-right: none;
}
.fv__price-cell--list {
  color: #555;
  font-weight: 500;
}
.fv__price-cell--list small {
  font-size: 14px;
  color: #888;
  line-height: 1.4;
  font-weight: 500;
  font-family: sans-serif;
}

.fv__price-label {
  font-size: 18px;
  background-color: red;
  color: #fff;
  font-weight: 700;
  font-family: sans-serif;
  padding: 1% 2%;
  margin-right: 10px;
}
.fv__price-num {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 54px;
  color: var(--red);
  line-height: 1;
}
.fv__price-unit {
  font-size: 40px;
}
.price-tax {
  font-size: 14px;
}

/* ============================================================
   悩み
   ============================================================ */
.problem {
  background: #eeeeee;
}
.problem__lead {
  text-align: center;
  color: var(--ink);
  font-family: sans-serif;
}
.problem__text {
  text-align: center;
  font-family: sans-serif;
  color: #444;
  margin-top: 30px;
}

.problem__list {
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  padding: 2% 2%;
  color: #fff;
  text-decoration: underline;
}
.problem__list li {
  text-shadow: #4a4128;
  padding-left: 30px;
}
.problem__item {
  display: flex;
  align-items: flex-start;
  margin-top: 5px;
}
.problem__item:first-child {
  margin-top: 0;
}
.problem__item::before {
  content: "";
  display: inline-block;
  height: 26px;
  width: 26px;
  background: url(../img/check-box.webp) no-repeat left top/contain content-box;
  flex: 0 0 26px;
}
.problem__list--1 {
  background-image: linear-gradient(
    90deg,
    #ae9b65 1%,
    #beb088 65%,
    #cec4aa 85%,
    #eeeeee
  );
  width: 80%;
  position: relative;
  margin-top: 30px;
}
.problem__list--1::before {
  content: "";
  display: inline-block;
  height: 230px;
  width: 230px;
  background: url(../img/problem-img_1.webp) no-repeat left top/contain
    content-box;
  position: absolute;
  top: -50px;
  right: -150px;
}

.problem__list--2 {
  background-image: linear-gradient(
    90deg,
    #eeeeee 1%,
    #cec4aa 8%,
    #beb088 16%,
    #ae9b65
  );
  width: 85%;
  margin-left: auto;
  position: relative;
  margin-top: 30px;
}
.problem__list--2::before {
  content: "";
  display: inline-block;
  height: 250px;
  width: 250px;
  background: url(../img/problem-img_2.webp) no-repeat left top/contain
    content-box;
  position: absolute;
  top: -30px;
  left: -120px;
}
.problem__list--2 .problem__item {
  padding-left: 50px;
}
.problem__list--3 {
  color: var(--red);
  font-weight: 500;
  position: relative;
  width: 80%;
}
.problem__list--3::after {
  content: "";
  display: inline-block;
  height: 300px;
  width: 300px;
  background: url(../img/problem-img_3.webp) no-repeat left top/contain
    content-box;
  position: absolute;
  top: -50px;
  right: -150px;
}
.problem__list--3 .problem__item {
  padding-left: 0;
}

.problem__text--attention {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  font-family: "Noto Serif JP", serif;
  margin-top: 30px;
}
.problem__text--em {
  font-weight: 700;
  color: var(--gold-dark);
  font-family: "Noto Serif JP", serif;
}

/* チェックリスト */
.checklist {
  margin: 24px 0;
}
.checklist li {
  position: relative;
  background: linear-gradient(180deg, #efe6cd, #e4d7b3);
  border: 1px solid #d3c290;
  border-radius: 6px;
  padding: 13px 14px 13px 40px;
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 500;
  color: #4a4128;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 大切なのは */
.important {
  text-align: center;
  background-color: #f8f8f8;
  position: relative;
}
.important::after {
  content: "";
  position: absolute;
  height: 60px;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%); /* ココ */
  background-color: #f8f8f8; /* デモは赤色の部分 */
  left: 0;
  bottom: 0; /* topにピッタリくっつけたいので0にする */
  transform: translateY(100%);
  z-index: 100;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}
.important__inner {
  padding-bottom: 50px;
}
.important::before {
  content: "";
  width: 300px;
  height: 300px;
  display: inline-block;
  background-image: url(../img/problem-img_4.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.important__banner {
  max-width: 150px;
  margin: 0 auto 20px;
}

.important__left {
  text-align: left;
}
.important__left p {
  font-family: sans-serif;
  margin-top: 48px;
}

.important__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  line-height: 1.4;
  background-color: #333;
  display: inline-block;
  padding: 1% 2%;
}
.problem__list--3 {
  margin-top: 30px;
}

/* ============================================================
   私の考えるX運用
   ============================================================ */
.concept {
  background: url("../img/concept-bg.jpg") center/cover no-repeat;
  position: relative;
}
.concept__inner {
  position: relative;
  padding: 120px 5% 100px;
}
.concept__inner::before {
  content: "";
  display: inline-block;
  height: 400px;
  width: 400px;
  background: url(../img/concept-img.webp) no-repeat left top/contain
    content-box;
  position: absolute;
  top: 21%;
  left: 51px;
  position: absolute;
}

.concept__title {
  max-width: 530px;
  margin: 0 auto 26px;
  text-align: center;
}
.concept__right {
  width: 53%;
  margin-left: auto;
}

.text-left {
  text-align: left;
}

.concept__list {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  margin-top: 24px;
}
.text-center {
  text-align: center;
}
.concept__text {
  font-family: sans-serif;
  color: #444;
  margin-top: 30px;
}
.concept__key-massage {
  text-align: center;
  margin-top: 30px;
}

.concept__text--attention {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 1% 2%;
  line-height: 1.4;
  display: inline-block;
  font-weight: 900;
}
.concept__text--attention span {
  color: var(--gold-light);
}
.concept__box {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 18px;
  text-align: center;
  margin-bottom: 26px;
}
.concept__box p {
  font-size: 13px;
  color: #4a4128;
  margin-bottom: 8px;
}
.concept__box p:nth-child(-n + 2) {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--gold-dark);
}
.concept__box p:last-child {
  margin-bottom: 0;
  margin-top: 12px;
}

/* ============================================================
   サポート内容
   ============================================================ */
.support {
  background: #f8f8f8;
}
.support__hedding {
  margin: 0;
  padding: 0;
}

.support__lead {
  font-family: sans-serif;
}
.support__text {
  text-align: center;
  margin-top: 30px;
  font-family: sans-serif;
}

.support__list {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  position: relative;
  margin-top: 30px;
}
.support__list::after {
  content: "";
  display: inline-block;
  height: 400px;
  width: 400px;
  background: url(../img/service-img.webp) no-repeat left top/contain
    content-box;
  position: absolute;
  top: 70%;
  right: 1%;
  transform: translateY(-50%);
}
.support__item span {
  color: var(--red);
}
.support__item p {
  line-height: 1.5;
  border-bottom: 2px dotted var(--gold-dark);
}
.support__list li {
  margin-top: 10px;
  display: flex;
}
.support__list li::before {
  content: "■";
  display: inline-block;
  color: #ae9b65;
  margin-right: 16px;
}
.support__photo {
  max-width: 370px;
}

/* ============================================================
   サポートの流れ
   ============================================================ */
.flow {
  background: url("../img/flow-bg.jpg") center/cover no-repeat;
}

.flow__item {
  background: #fff;
  padding: 3% 5%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  position: relative;
}
.flow__item::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -8px;
  left: -8px;
}
.flow__item--1::before {
  background-image: url(../img/item-num-1.webp);
}
.flow__item--2::before {
  background-image: url(../img/item-num-2.webp);
}
.flow__head {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}
.flow__body {
  margin-top: 20px;
  font-family: sans-serif;
}
.flow__body a {
  text-decoration: underline;
  color: blue;
}

/* ============================================================
   サービス内容・価格
   ============================================================ */
.price {
  background: #ffffff;
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
}
.price__table th,
.price__table td {
  border: 1px solid var(--line);
  padding: 14px 12px;
  text-align: left;
  vertical-align: middle;
  font-size: 24px;
}
.price__table th {
  background: #ae9b65;
  width: 200px;
  font-weight: 700;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.price__table p {
  font-size: 16px;
  margin-top: 16px;
  font-family: sans-serif;
}

.price__table small {
  font-size: 14px;
  color: #888;
}

.price-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.price__note-box {
  padding: 16px 16px;
  text-align: center;
}
.price__note-box h3 {
  background-color: var(--red);
  color: #fff;
  display: inline-block;
  padding: 1% 3%;
}
.note-body {
  margin-top: 10px;
  font-family: sans-serif;
}
.note-body:last-child {
  margin-bottom: 0;
}
.note-body span {
  text-decoration: underline;
}
.price__photo {
  max-width: 350px;
}

/* ============================================================
   返金保証
   ============================================================ */
.guarantee {
  background: linear-gradient(180deg, #2a2a2a, #151515);
  background: url("../img/guarantee-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.guarantee__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 4px solid #d0b15d;
  padding: 26px 12px;
  background: #ae9b65;
  position: relative;
}
.guarantee__card::before {
  display: inline-block;
  content: "";
  width: 100px;
  height: 190px;
  background-image: url(../img/problem-img.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 10%;
  right: 30px;
}
.guarantee__card::after {
  display: inline-block;
  content: "";
  width: 100px;
  height: 190px;
  background-image: url(../img/problem-img.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 10%;
  left: 30px;
  transform: scale(-1, 1);
}
.guarantee__card p {
  font-family: sans-serif;
  font-weight: 900;
}
.guarantee__laurel {
  font-size: 54px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.guarantee__inner {
  text-align: center;
  flex: 1;
}
.guarantee__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.guarantee__inner p {
  line-height: 1.8;
  text-decoration: underline;
}
.cta-wrap {
  margin-top: 26px;
}
.micro-copy {
  color: #e31b1b;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: end;
}
.micro-copy::after,
.micro-copy::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
}
.micro-copy::before {
  background: url(../img/hukidashi.webp) no-repeat;
  transform: scale(-1, 1);
  margin-right: 10px;
}
.micro-copy::after {
  background: url(../img/hukidashi.webp) no-repeat;
}

/* ============================================================
   無料コンサル案内
   ============================================================ */
.contact {
  background: url("../img/guide-bg.webp") top/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}
.contact::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url(../img/scroll-icon.webp) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}
.contact__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.contact__text {
  font-family: sans-serif;
}

.contact__arrow {
  color: var(--gold-light);
  font-size: 20px;
  margin-top: 14px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: url("../img/faq-bg.webp") center/cover repeat;
}
.faq__list {
  margin-top: 6px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.faq__item summary {
  cursor: pointer;
  position: relative;
  padding: 14px 40px 14px 16px;
  font-size: 20px;
  font-weight: 700;
  color: #4a4128;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
.faq__item summary::marker {
  display: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::before {
  content: "Q";
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  flex: 0 0 22px;
}
.faq__item summary::after {
  content: "＋";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 700;
  transition: transform 0.2s;
}
.faq__item[open] summary::after {
  content: "－";
}
.faq__answer {
  padding: 0 16px 16px 53px;
  position: relative;
  border-top: 1px solid var(--beige);
  padding-top: 14px;
  display: flex;
  align-items: center;
}
.faq__answer::before {
  content: "A";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 22px;
  height: 22px;
  background: #8a8a8a;
  color: #fff;
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 22px;
}
.faq__answer p {
  color: #555;
  font-weight: 400;
  font-family: sans-serif;
}
.cta-box {
  text-align: center;
}
.text-red {
  color: var(--red);
}
.text-gold {
  color: var(--gold-light);
}

/* ============================================================
   フッター
   ============================================================ */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 26px 18px;
}
.footer__links {
  font-size: 11px;
  margin-bottom: 10px;
}
.footer__links a {
  color: #fff;
  text-decoration: underline;
}
.footer__copy {
  font-size: 10px;
  color: #777;
}

/* ============================================================
   レスポンシブ（狭幅微調整）
   ============================================================ */
@media (max-width: 425px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .section-inner {
    position: relative;
    padding: 70px 5%;
  }
  .problem__lead,
  .problem__text,
  .concept__text,
  .support__text {
    text-align: left;
  }
  .fv::before {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }

  .fv__inner {
    padding: 20px 20px 60px;
  }
  .fv__lead {
    font-size: 20px;
    line-height: 1.5;
  }
  .fv__badge {
    margin-top: 10px;
    font-size: 24px;
  }
  .fv__title-sub {
    font-size: 22px;
  }
  .fv__title-main {
    font-size: 48px;
    line-height: 1;
    margin-top: 18px;
  }
  .fv__title-full {
    font-size: 28px;
    width: 72%;
  }

  .fullsapo-wrap {
    justify-content: space-between;
    margin-top: 30px;
    gap: 5px;
  }

  .fullsapo-wrap::before,
  .fullsapo-wrap::after {
    width: 15%;
  }
  .fv__price-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .fv__price-cell {
    justify-content: flex-start;
    font-size: 20px;
  }
  .cell__1 {
    grid-column: 1 / -1; /* 1つ目だけ横いっぱい */
    aspect-ratio: auto;
    border-right: 0;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 5%;
    flex-direction: row;
    align-items: end;
    justify-content: center;
  }
  .fv__price-cell--list small {
    font-size: 13px;
    text-align: left;
  }
  .fv__price-label {
    background-color: var(--red);
  }
  .problem {
    position: relative;
    z-index: 0;
  }
  .problem__list--1,
  .problem__list--2 {
    background-image: none;
    background-color: #ae9b65;
    width: 100%;
  }
  .problem__list--1::before {
    height: 180px;
    width: 180px;
    top: -160px;
    right: -20px;
    z-index: -1;
  }
  .problem__list--2::before {
    height: 200px;
    width: 200px;
    top: -110px;
    left: 66%;
    z-index: -1;
  }
  .problem__list li {
    padding-left: 0;
  }
  .problem__text:nth-child(-n + 2) {
    text-align: center;
  }
  .problem__text--attention {
    text-align: left;
  }
  .problem__list--3::after {
    height: 190px;
    width: 190px;
    top: 0px;
    right: -130px;
  }
  .concept__right {
    width: 100%;
  }
  .concept__text--2 {
    margin-top: 380px;
  }
  .concept__inner::before {
    height: 400px;
    width: 400px;
    top: 53%;
    left: 50%;
    transform: translateX(-50%);
  }
  .support__list {
    margin-top: 290px;
    font-size: 20px;
    z-index: 0;
  }
  .support__list::after {
    content: "";
    display: inline-block;
    height: 400px;
    width: 400px;
    background: url(../img/service-img.webp) no-repeat left top / contain
      content-box;
    position: absolute;
    z-index: -1;
    top: -77%;
    right: 50%;
    transform: translateX(50%);
  }
  .support__list li::before {
    margin-right: 8px;
  }

  .flow__head {
    margin-left: 20px;
  }
  .price-flex {
    flex-direction: column;
  }
  .price__note-box {
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }
  .note-body {
    text-align: left;
  }
  .price__photo {
    max-width: 100%;
  }
  .cta {
    border-radius: 80px;
    width: 100%;
    line-height: 1.2;
    font-size: 26px;
    padding: 15px 26px;
  }
  .heading {
    font-size: 40px;
  }
  .problem__list {
    font-size: 18px;
    padding: 3% 2%;
  }
  .problem__list--2 .problem__item {
    padding-left: 0;
  }
  .problem__list li {
    padding-bottom: 0;
  }
  .problem__item::before {
    height: 20px;
    width: 20px;
    flex: 0 0 20px;
  }
  .problem__text--attention {
    font-size: 20px;
  }
  .important::before {
    width: 200px;
    height: 200px;
  }
  .important__text {
    font-size: 26px;
    padding: 3% 3%;
  }
  .concept__list {
    font-size: 18px;
    line-height: 1.8;
  }
  .concept__title {
    width: 90%;
  }
  .concept__text--attention {
    font-size: 24px;
    padding: 2% 4%;
    width: 100%;
  }
  .flow__head {
    font-size: 21px;
    margin-top: 20px;
  }
  .price__table th {
    width: 20%;
    font-size: 20px;
  }
  .guarantee__title {
    font-size: 40px;
  }
  .micro-copy {
    font-size: 18px;
  }
  .contact__title {
    font-size: 30px;
  }
  .contact::before {
    width: 70px;
    height: 70px;
    bottom: -30px;
  }
  .guarantee__card::before {
    width: 70px;
    height: 70px;
    bottom: 72%;
    right: 10px;
  }
  .guarantee__card::after {
    width: 70px;
    height: 70px;
    bottom: 72%;
    left: 10px;
  }
  .guarantee__inner p {
    text-align: left;
    margin-top: 20px;
  }
}
