@charset "UTF-8";

/*=========================
reset
=========================*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}

a,
button {
  cursor: revert
}

ol,
ul,
menu,
summary {
  list-style: none
}

ol {
  counter-reset: revert
}

img {
  max-width: 100%;
  vertical-align: middle;
}

table {
  border-collapse: collapse
}

input,
textarea {
  -webkit-user-select: auto
}

textarea {
  white-space: revert
}

meter {
  -webkit-appearance: revert;
  appearance: revert
}

:where(pre) {
  all: revert;
  box-sizing: border-box
}

::placeholder {
  color: unset
}

:where([hidden]) {
  display: none
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto
}

:where([draggable="true"]) {
  -webkit-user-drag: element
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box
}

::-webkit-details-marker {
  display: none
}

/*=========================
root
=========================*/
:root {
  --main: #2B6088;
  --accent: #B3436B;
}

/*=========================
common
=========================*/
* {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  counter-reset: number 0;
  font-weight: 600;
  color: #000;
  background: url("../img/main-bg.webp") center top / 100% no-repeat;

  @media (max-width: 767px) {
    background-image: url("../img/main-bg_sp.webp");
  }
}

a {
  color: #242424;
  text-decoration: none;
  transition: ease-in .2s;

  &:hover {
    transition: ease-in .2s;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.text-base {
  font-size: clamp(13px, 11.786px + 0.324vw, 18px);
  line-height: 2;
}

.container-m {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.container-s {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.pc-only {
  @media (max-width: 767px) {
    display: none;
  }
}

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

/*--- セクションフェードイン ---*/
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;

  &.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=========================
PC/追従CTA
=========================*/
.fixed-cta {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

  @media (max-width: 767px) {
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;
    width: 100%;
    bottom: 10px;
    gap: 5px;
  }

  .fixed-cta__btn {
    a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 10px 0 0 10px;
      width: clamp(70px, 63.333px + 0.868vw, 80px);
      aspect-ratio: 80 / 150;
      font-weight: 600;
      font-size: clamp(14px, 12.544px + 0.388vw, 20px);
      color: #fff;
      line-height: 1.25;
      text-align: center;

      @media (max-width: 767px) {
        flex-direction: row;
        width: 100%;
        height: 50px;
        border-radius: 5px;
        aspect-ratio: initial;
      }
    }

    a:hover {
      filter: brightness(1.1);
    }
  }

  .fixed-cta__btn--line {
    a {
      background: linear-gradient(90deg, #06C755 0%, #01B0B3 100%);
      gap: 14px;

      &::before {
        content: "";
        background: url("../img/cta_line_icon.svg") center center / contain no-repeat;
        width: 25px;
        aspect-ratio: 38 / 35;
        display: inline-block;
      }

      @media (max-width: 767px) {
        &::before {
          width: 14px;
        }
      }
    }
  }

  .fixed-cta__btn--tel {
    a {
      background: linear-gradient(90deg, #3E4D54 0%, #55788C 100%);
      gap: 9px;

      &::before {
        content: "";
        background: url("../img/cta_tel_icon.svg") center center / contain no-repeat;
        width: 24px;
        aspect-ratio: 1 / 1;
        display: inline-block;
      }

      @media (max-width: 767px) {
        &::before {
          width: 14px;
        }
      }

      small {
        display: block;
        font-size: 11px;
      }
    }
  }
}

/*=========================
hero
=========================*/
/*=========================
本気で結果を出したい方へ
=========================*/
section.seriously {
  @media (max-width: 767px) {
    margin-top: 40px;
  }

  .seriously__inner {
    width: min(960px, 90%);
    margin: 0 auto;
  }

  .seriously__heading {
    width: clamp(260px, 196.893px + 16.828vw, 520px);
    margin: 0 auto clamp(15px, 11.359px + 0.971vw, 30px);
  }

  .seriously__banner {
    img {
      border-radius: 10px;
      box-shadow: 0 0 15px 0 rgba(43, 96, 136, 0.10);
      overflow: hidden;

      @media (max-width: 767px) {
        border-radius: 5px;
      }
    }
  }

  .common-counseling {
    margin-top: clamp(40px, 35.146px + 1.294vw, 60px);
  }
}

.common-counseling {
  .common-counseling__heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 12.602px + 0.906vw, 30px);
    font-weight: 600;
    margin-bottom: clamp(15px, 11.359px + 0.971vw, 30px);

    &::before,
    &::after {
      content: "";
      width: clamp(13px, 10.573px + 0.647vw, 23px);
      height: clamp(13px, 10.573px + 0.647vw, 23px);
      background: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2584 19.5L2.88128e-05 2.12073e-06L22.5167 1.52262e-07L11.2584 19.5Z' fill='%2302B2A8'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
      display: inline-block;
    }
  }

  .common-counseling__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 7.573px + 0.647vw, 20px);

    @media (max-width: 767px) {
      grid-template-columns: 1fr;
      min-width: 280px;
      width: 70%;
      margin: 0 auto;
    }

    .cta-line,
    .cta-tel {
      a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        width: 100%;
        aspect-ratio: 470 / 100;
        background: linear-gradient(90deg, #06C755 0%, #01B0B3 100%);
        color: #fff;
        font-weight: 700;
        font-size: clamp(18px, 15.087px + 0.777vw, 30px);

        @media (max-width: 767px) {
          border-radius: 5px;
          aspect-ratio: 280 / 60;
        }
      }

      a:hover {
        filter: brightness(1.1);
      }
    }

    .cta-line {
      a {
        background: linear-gradient(90deg, #06C755 0%, #01B0B3 100%);
        padding-left: 30px;

        @media (max-width: 767px) {
          padding-left: 0;
        }

        &::before {
          content: "";
          position: absolute;
          left: clamp(20px, 15.146px + 1.294vw, 40px);
          background: url("../img/cta_line_icon.svg") center center / contain no-repeat;
          width: clamp(20px, 15.631px + 1.165vw, 38px);
          aspect-ratio: 38 / 35;
          display: inline-block;
        }
      }
    }

    .cta-tel {
      a {
        background: linear-gradient(90deg, #3E4D54 0%, #55788C 100%);
        padding-left: 20px;

        @media (max-width: 767px) {
          padding-left: 0;
        }

        &::before {
          content: "";
          position: absolute;
          left: clamp(20px, 15.146px + 1.294vw, 40px);
          background: url("../img/cta_tel_icon.svg") center center / contain no-repeat;
          width: clamp(18px, 13.388px + 1.23vw, 37px);
          aspect-ratio: 1 / 1;
          display: inline-block;
        }

        small {
          display: block;
          font-size: clamp(12px, 10.544px + 0.388vw, 18px);
        }
      }
    }
  }

  .common-counseling__lead {
    background: linear-gradient(90deg, rgba(241, 244, 246, 0.00) 0%, #F1F4F6 30%, #F1F4F6 70%, rgba(241, 244, 246, 0.00) 100%);
    font-weight: 700;
    font-size: clamp(13px, 11.301px + 0.453vw, 20px);
    color: var(--main);
    text-align: center;
    padding: 16px 0;
    margin-top: clamp(15px, 11.359px + 0.971vw, 30px);
  }

  .common-counseling__notes {
    font-weight: 600;
    font-size: clamp(10px, 9.029px + 0.259vw, 14px);
    text-align: center;
    margin-top: clamp(15px, 11.359px + 0.971vw, 30px);
  }
}

section.case {
  padding-bottom: clamp(60px, 38.155px + 5.825vw, 150px);

  @media (max-width: 767px) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .case__heading {
    margin-top: clamp(60px, 50.291px + 2.589vw, 100px);
    margin-bottom: clamp(30px, 27.573px + 0.647vw, 40px);

    .ja {
      position: relative;
      display: flex;
      align-items: center;
      gap: clamp(10px, 2.718px + 1.942vw, 40px);
      font-weight: 600;
      font-size: clamp(22px, 16.417px + 1.489vw, 45px);

      &::before,
      &::after {
        content: "";
        height: 6px;
        display: inline-block;
        flex-grow: 1;
        background: linear-gradient(270deg, #E1ECF4 0%, rgba(255, 255, 255, 0.00) 100%);
      }

      &::after {
        background: linear-gradient(90deg, #E1ECF4 0%, rgba(255, 255, 255, 0.00) 100%);
      }
    }

    .en {
      text-align: center;
      margin-top: 5px;
    }
  }
}

section.order-made {
  .order-made-intro {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(20px, 15.146px + 1.294vw, 40px) clamp(15px, 7.718px + 1.942vw, 45px);
    grid-template-columns: min(340px, 40%) 1fr;
    background-color: #fff;
    width: min(1200px, 90%);
    margin: 0 auto;
    border: 5px #D3E6EF solid;
    border-radius: 20px;
    padding: clamp(30px, 22.718px + 1.942vw, 60px) clamp(20px, -4.272px + 6.472vw, 120px);
    margin-top: -6.77vw;

    @media (max-width: 767px) {
      grid-template-columns: 1fr;
    }

    &::after {
      content: "";
      position: absolute;
      top: calc(100% + 5px);
      left: 50%;
      transform: translateX(-50%);
      width: clamp(80px, 60.583px + 5.178vw, 160px);
      aspect-ratio: 170 / 40;
      display: block;
      background: url("data:image/svg+xml,%3Csvg width='170' height='40' viewBox='0 0 170 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M85 40L0 0H170L85 40Z' fill='url(%23paint0_linear_441_4226)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_441_4226' x1='85' y1='-0.372389' x2='85' y2='49.7794' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2377BEF5'/%3E%3Cstop offset='1' stop-color='%232B6088'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A") center center / contain no-repeat;
    }

    .order-made-intro__lead {
      grid-column: 1 / -1;
    }

    .order-made-intro__img {
      @media (max-width: 767px) {
        width: 65%;
        margin: 0 auto;
      }
    }

    .order-made-intro__list {
      align-self: center;
    }

    .order-made-intro__list-title {
      position: relative;
      font-weight: bold;
      font-size: clamp(16px, 13.816px + 0.583vw, 25px);
      color: var(--main);
      padding-left: clamp(30px, 26.359px + 0.971vw, 45px);

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: clamp(22px, 18.117px + 1.036vw, 38px);
        aspect-ratio: 38 / 36;
        display: inline-block;
        background: url("../img/icon_check.svg") center center / contain no-repeat;
      }
    }

    .order-made-intro__list-text {
      font-size: clamp(12px, 11.029px + 0.259vw, 16px);
      margin-top: clamp(5px, 3.786px + 0.324vw, 10px);
      padding-left: clamp(30px, 26.359px + 0.971vw, 45px);
    }

    .order-made-intro__list-text+.order-made-intro__list-title {
      margin-top: clamp(10px, 2.718px + 1.942vw, 40px);
    }
  }

  .order-made-overview {
    position: relative;
    background-color: #FAFEFF;
    width: min(1200px, 90%);
    margin: 0 auto;
    border: 5px #D3E6EF solid;
    border-radius: 20px;
    padding: clamp(30px, 22.718px + 1.942vw, 60px) clamp(20px, -4.272px + 6.472vw, 120px);
    margin-top: clamp(10px, 6.359px + 0.971vw, 25px);

    .order-made-overview__lead {
      position: relative;
      margin-bottom: clamp(20px, 17.573px + 0.647vw, 30px);

      &::after {
        content: "";
        width: clamp(40px, 35.146px + 1.294vw, 60px);
        height: 1px;
        border-top: clamp(2px, 1.757px + 0.065vw, 3px) var(--main) solid;
        display: block;
        margin: clamp(15px, 12.573px + 0.647vw, 25px) auto 0;
      }
    }

    .order-made-overview__lead-text {
      line-height: 1.8;
      text-align: center;
      font-size: clamp(16px, 12.602px + 0.906vw, 30px);

      @media (max-width: 767px) {
        line-height: 1.5
      }

      strong {
        font-weight: bold;
        font-size: clamp(18px, 13.631px + 1.165vw, 36px);
        color: var(--main);
      }
    }

    .order-made-overview__lead-text+.order-made-overview__lead-text {
      @media (max-width: 767px) {
        margin-top: 10px;
        font-size: clamp(14px, 10.117px + 1.036vw, 30px);
      }
    }

    .order-made-overview__text {
      strong {
        font-weight: bold;
        color: var(--accent);
      }
    }
  }

  .order-made-list {
    margin-top: clamp(40px, 30.291px + 2.589vw, 80px);

    .order-made-list__item {
      position: relative;
      display: grid;
      grid-template-columns: 80px 1fr min(400px, 30%);
      grid-template-rows: auto 1fr;
      gap: clamp(20px, 15.146px + 1.294vw, 40px);
      background: linear-gradient(0deg, #E1F7FF 0%, #EFF7FA 100%);
      padding: clamp(40px, 30.291px + 2.589vw, 80px) 0;
      width: calc(100% - (100% - 1200px) / 4);
      overflow: hidden;

      @media (max-width: 1300px) {
        width: calc(100% - 20px);
      }

      @media (max-width: 767px) {
        grid-template-columns: 35px 1fr;
      }

      .order-made-list__num {
        grid-column: 1;
        grid-row: 1 / -1;

        @media (max-width: 767px) {
          grid-row: 1 / 3;
        }
      }

      .order-made-list__head {
        grid-column: 2;

        &::after {
          content: "";
          width: clamp(35px, 31.359px + 0.971vw, 50px);
          height: 1px;
          border-top: 3px #036180 solid;
          display: block;
          margin-top: clamp(20px, 17.573px + 0.647vw, 30px);
        }

        .order-made-list__title {
          font-size: clamp(22px, 16.417px + 1.489vw, 45px);
        }

        .order-made-list__subtitle {
          font-weight: bold;
          font-size: clamp(16px, 13.816px + 0.583vw, 25px);
          color: #036180;
          margin-top: clamp(5px, 3.786px + 0.324vw, 10px);
        }
      }

      .order-made-list__img {
        grid-column: 3;
        grid-row: 1 / -1;
        align-self: flex-end;

        @media (max-width: 767px) {
          grid-column: 1 / 3;
          grid-row: 3;
        }
      }

      .order-made-list__text {
        grid-column: 2;

        @media (max-width: 767px) {
          grid-column: 1 / 3;
        }

        strong {
          color: #036180;
          font-weight: 700;
        }
      }

      .order-made-list__obj {
        position: absolute;
        bottom: 0;
        right: 0;

        img {
          @media (max-width: 767px) {
            height: 25px;
          }
        }
      }
    }

    .order-made-list__item+.order-made-list__item {
      margin-top: clamp(30px, 25.146px + 1.294vw, 50px);
    }

    .order-made-list__item:nth-child(odd) {
      border-radius: 0 20px 20px 0;
      padding-left: calc((100% - 1200px) / 2);
      padding-right: calc((100% - 1200px) / 4);

      @media (max-width:1300px) {
        padding-left: 40px;
        padding-right: 20px;
      }
    }

    .order-made-list__item:nth-child(even) {
      border-radius: 20px 0 0 20px;
      padding-left: calc((100% - 1200px) / 4);
      padding-right: calc((100% - 1200px) / 2);
      margin-left: auto;

      @media (max-width: 1300px) {
        padding-left: 20px;
        padding-right: 40px;
      }

      .order-made-list__obj {
        left: 0;
        right: initial;
      }
    }

    .order-made-list__item:nth-child(2) {
      background: linear-gradient(0deg, #DCF7F5 0%, #EFFAF8 100%);

      .order-made-list__head {
        &::after {
          border-top-color: #007B7F;
        }

        .order-made-list__subtitle {
          color: #007B7F;
        }
      }

      .order-made-list__text {
        strong {
          color: #007B7F;
          font-weight: 700;
        }
      }
    }

    .order-made-list__item:nth-child(3) {
      background: linear-gradient(0deg, #DEF0FF 0%, #EEF7FF 100%);

      .order-made-list__head {
        &::after {
          border-top-color: #29589E;
        }

        .order-made-list__subtitle {
          color: #29589E;
        }
      }

      .order-made-list__text {
        strong {
          color: #29589E;
          font-weight: 700;
        }
      }
    }

    .order-made-list__item:nth-child(4) {
      background: linear-gradient(0deg, #E4ECFF 0%, #EFF4FF 100%);

      .order-made-list__head {
        &::after {
          border-top-color: #3C4DB2;
        }

        .order-made-list__subtitle {
          color: #3C4DB2;
        }
      }

      .order-made-list__text {
        strong {
          color: #3C4DB2;
          font-weight: 700;
        }
      }
    }
  }
}

section.simulation {
  padding: clamp(60px, 38.155px + 5.825vw, 150px) 0;
  background: url("../img/simulation_bg.webp") center center / cover no-repeat;

  .simulation__inner {
    width: min(1200px, 90%);
    margin: 0 auto;
  }

  .simulation__heading {
    font-weight: bold;
    font-size: clamp(18px, 15.087px + 0.777vw, 30px);
    text-align: center;
    color: var(--main);
    margin-bottom: clamp(30px, 27.573px + 0.647vw, 40px);
  }

  .simulation__lead {
    text-align: center;

    @media (max-width: 767px) {
      text-align: left;
    }
  }

  .simulation-box {
    background-color: #fff;
    border-radius: 20px;
    padding: clamp(30px, 22.718px + 1.942vw, 60px) clamp(20px, -4.272px + 6.472vw, 120px);
    margin-top: clamp(30px, 22.718px + 1.942vw, 60px);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);

    .simulation-box__title {
      margin-bottom: clamp(20px, 17.573px + 0.647vw, 30px);
      font-weight: 600;
      font-size: clamp(16px, 12.602px + 0.906vw, 30px);
      text-align: center;
    }

    .simulation-box__table {
      @media (max-width: 767px) {
        max-width: 550px;
      }
    }
  }
}

section.reuse-counseling {
  background: url("../img/reuse-counseling_bg.webp") center center / cover no-repeat;
  padding: clamp(60px, 38.155px + 5.825vw, 150px) 0;

  @media (max-width: 767px) {
    background-image: url("../img/reuse-counseling_bg_sp.webp");
  }

  .reuse-counseling__inner {
    width: min(960px, 90%);
    margin: 0 auto;
  }

  .reuse-counseling__heading {
    font-weight: 600;
    font-size: clamp(20px, 15.146px + 1.294vw, 40px);
    text-align: center;
    margin-bottom: clamp(30px, 20.291px + 2.589vw, 70px);
  }

  .banner-monitor {
    margin: clamp(40px, 30.291px + 2.589vw, 80px) 0;
    box-shadow: 0 0 15px 0 rgba(43, 96, 136, 0.10);
    border-radius: 10px;
    overflow: hidden;

    @media (max-width: 767px) {
      border-radius: 5px;
    }
  }

  .common-counseling {
    .common-counseling__lead {
      background: linear-gradient(90deg, rgba(241, 244, 246, 0.00) 0%, #FFF 30%, #FFF 70%, rgba(241, 244, 246, 0.00) 100%);
    }
  }
}

section.reuse-counseling--postpone {
  .reuse-counseling__heading {
    font-size: clamp(20px, 15.631px + 1.165vw, 38px);
  }
}

.counseling-message {
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);
  padding: clamp(60px, 50.291px + 2.589vw, 100px) clamp(20px, 0.583px + 5.178vw, 100px);
  width: min(1200px, 90%);
  margin: 0 auto;

  .counseling-message__obj {
    position: absolute;
    width: clamp(40px, 27.864px + 3.236vw, 90px);
    aspect-ratio: 1 / 1;
  }

  .counseling-message__obj--tl {
    top: clamp(10px, 7.573px + 0.647vw, 20px);
    left: clamp(10px, 7.573px + 0.647vw, 20px);
    background: url("../img/counseling-message_obj.svg") center center / contain no-repeat;
  }

  .counseling-message__obj--tr {
    top: clamp(10px, 7.573px + 0.647vw, 20px);
    right: clamp(10px, 7.573px + 0.647vw, 20px);
    background: url("../img/counseling-message_obj.svg") center center / contain no-repeat;
    transform: rotate(90deg);
  }

  .counseling-message__obj--br {
    bottom: clamp(10px, 7.573px + 0.647vw, 20px);
    right: clamp(10px, 7.573px + 0.647vw, 20px);
    background: url("../img/counseling-message_obj.svg") center center / contain no-repeat;
    transform: rotate(180deg);
  }

  .counseling-message__obj--bl {
    bottom: clamp(10px, 7.573px + 0.647vw, 20px);
    left: clamp(10px, 7.573px + 0.647vw, 20px);
    background: url("../img/counseling-message_obj.svg") center center / contain no-repeat;
    transform: rotate(270deg);
  }

  .counseling-message__title {
    font-size: clamp(18px, 12.660px + 1.424vw, 40px);
    text-align: center;
    margin-bottom: clamp(30px, 25.146px + 1.294vw, 50px);
  }

  .counseling-message__text {}
}

.invite-box {
  display: grid;
  grid-template-columns: 1fr min(400px, 40%);
  gap: 40px 30px;

  @media (max-width: 767px) {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .invite-box__title {
    grid-column: 1 / 3;
    border-top: 1px var(--main) solid;
    border-bottom: 1px var(--main) solid;
    font-weight: bold;
    font-size: clamp(16px, 12.602px + 0.906vw, 30px);
    text-align: center;
    color: var(--main);
    padding: 20px 0;

    @media (max-width: 767px) {
      margin-bottom: 25px;
    }
  }

  .invite-box__img {
    grid-column: 2;
    grid-row: 2;

    @media (max-width: 767px) {
      min-width: 220px;
      width: 70%;
      margin: 0 auto 20px;
    }
  }

  .invite-box__text {
    grid-column: 1;
    grid-row: 2;
  }
}

section.worries {
  position: relative;
  z-index: 2;
  background: url("../img/worries_bg.webp") center left / cover no-repeat;
  padding: clamp(40px, 25.437px + 3.883vw, 100px) 0;

  @media (max-width: 767px) {
    background-image: url("../img/worries_bg_sp.webp");
  }

  &::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    background: url("data:image/svg+xml,%3Csvg width='752' height='70' viewBox='0 0 752 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M752 0H0L376.392 70L752 0Z' fill='%236A6F73'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
    width: 752px;
    height: 40px;
    display: block;
  }

  @media (max-width: 767px) {
    &::after {
      width: 110px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3Csvg width='110' height='20' viewBox='0 0 110 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 0H0L55.0573 20L110 0Z' fill='%236A6F73'/%3E%3C/svg%3E%0A");
    }
  }

  .worries__inner {
    width: min(570px, 90%);
    margin: 0 auto;

    @media (max-width: 767px) {
      max-width: 400px;
    }
  }
}

section.misunderstanding {
  background: url("../img/misunderstanding_bg.webp") center top / 100% no-repeat;
  padding-top: clamp(60px, 28.447px + 8.414vw, 190px);
  padding-bottom: clamp(60px, 35.728px + 6.472vw, 160px);

  @media (max-width: 767px) {
    background-image: url("../img/misunderstanding_bg.webp");
  }

  .misunderstanding__heading {
    max-width: 697px;
    width: 100%;
    margin: 0 auto clamp(15px, 12.573px + 0.647vw, 25px);
  }

  .misunderstanding__lead {
    text-align: center;
    margin-bottom: clamp(15px, 13.786px + 0.324vw, 20px);

    @media (max-width: 767px) {
      text-align: left;
    }

    &::after {
      content: "";
      width: 1px;
      height: clamp(30px, 22.718px + 1.942vw, 60px);
      border-left: 1px #000 solid;
      margin: clamp(20px, 17.573px + 0.647vw, 30px) auto 0;
      display: block;
    }
  }

  .misunderstanding__item {
    display: grid;
    grid-template-columns: clamp(80px, 65.437px + 3.883vw, 140px) 1fr clamp(220px, 176.311px + 11.65vw, 400px);
    grid-template-rows: auto 1fr;
    align-items: center;

    @media (max-width: 767px) {
      display: flex;
      flex-direction: column;
    }
  }

  .misunderstanding__item+.misunderstanding__item {
    margin-top: clamp(40px, 32.718px + 1.942vw, 70px);
  }

  .misunderstanding__num {
    grid-column: 1;

    @media (max-width: 767px) {
      width: 80px;
    }
  }

  .misunderstanding__title {
    grid-column: 2;
    font-weight: 700;
    font-size: clamp(20px, 15.146px + 1.294vw, 40px);

    @media (max-width: 767px) {
      margin-bottom: 20px;
      text-align: center;
    }

    strong {
      background: linear-gradient(359deg, #000 -0.38%, #7C94A7 92.62%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

  .misunderstanding__img {
    grid-column: 3;
    grid-row: 1 / -1;
    margin-left: clamp(20px, 15.146px + 1.294vw, 40px);

    @media (max-width: 767px) {
      margin-left: 0;
      margin-bottom: 20px;
      min-width: 220px;
      width: 70%;
    }
  }

  .misunderstanding__text {
    grid-column: 2;
    text-align: left;

    strong {
      color: var(--accent);
      font-weight: 700;
    }
  }
}

section.features {
  .features__inner {
    background: url("../img/features_bg.webp") center center / cover no-repeat;
    padding-top: clamp(50px, 37.864px + 3.236vw, 100px);
    padding-bottom: clamp(60px, 38.155px + 5.825vw, 150px);

    @media (max-width: 767px) {
      background-image: url("../img/features_bg_sp.webp");
    }
  }

  .features__heading {
    width: clamp(216px, 151.922px + 17.087vw, 480px);
    margin: 0 auto clamp(30px, 27.573px + 0.647vw, 40px);
  }

  .features__list {
    width: min(1200px, 90%);
    margin: 0 auto;
  }

  .features__item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 15px 0 rgba(43, 96, 136, 0.10);
    padding: clamp(40px, 35.146px + 1.294vw, 60px) clamp(20px, -4.272px + 6.472vw, 120px);
  }

  .features__num {
    width: clamp(60px, 50.291px + 2.589vw, 100px);
    margin: 0 auto 20px;
  }

  .features__title {
    font-weight: 600;
    font-size: clamp(18px, 12.660px + 1.424vw, 40px);
    margin-bottom: clamp(20px, 15.146px + 1.294vw, 40px);
    text-align: center;
  }

  .features__text {
    margin-bottom: clamp(20px, 15.146px + 1.294vw, 40px);

    strong {
      font-weight: 700;
      color: var(--accent);
    }
  }

  .features__notes {
    font-size: clamp(10px, 9.515px + 0.129vw, 12px);
    text-align: center;
    margin-top: 20px;
  }

  .features__img {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

  .features__item:nth-child(1) {
    .features__img {
      max-width: 725px;
    }
  }

  .features__item+.features__item {
    margin-top: clamp(30px, 25.146px + 1.294vw, 50px);
  }
}

section.doctor {
  background: url("../img/doctor_bg.webp") center center / cover no-repeat;
  padding: clamp(60px, 38.155px + 5.825vw, 150px) 0;

  .doctor__inner {
    background-color: #fff;
    border-radius: 20px;
    width: min(1200px, 90%);
    margin: 0 auto;
    padding: clamp(40px, 30.291px + 2.589vw, 80px) clamp(20px, -4.272px + 6.472vw, 120px);
  }

  .doctor__heading {
    font-size: clamp(22px, 17.631px + 1.165vw, 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(13px, 10.087px + 0.777vw, 25px);
    margin-bottom: clamp(30px, 22.718px + 1.942vw, 60px);

    &::before {
      content: "";
      display: inline-block;
      width: clamp(24px, 16.476px + 2.006vw, 55px);
      aspect-ratio: 55 / 16;
      background: url("../img/doctor-heading_left.svg") center center / contain no-repeat;
    }

    &::after {
      content: "";
      display: inline-block;
      width: clamp(24px, 16.476px + 2.006vw, 55px);
      aspect-ratio: 55 / 16;
      background: url("../img/doctor-heading_right.svg") center center / contain no-repeat;
    }
  }

  .doctor-profile {
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 40px;

    @media (max-width: 767px) {
      display: flex;
      flex-direction: column;
    }

    .doctor-profile__img {
      grid-column: 1;
      grid-row: 1 / 3;

      @media (max-width: 767px) {
        min-width: 180px;
        width: 60%;
        margin: 0 auto;
      }
    }

    .doctor-profile__name {
      grid-column: 2 / 4;
      grid-row: 1;
      margin-bottom: 30px;

      @media (max-width: 767px) {
        text-align: center;
        margin-top: clamp(25px, 23.786px + 0.324vw, 30px);
      }
    }

    .doctor-profile__name-small {
      font-size: clamp(13px, 11.786px + 0.324vw, 18px);

      @media (max-width: 767px) {
        margin-bottom: 5px;
      }
    }

    .doctor-profile__name-ja {
      font-size: clamp(25px, 22.573px + 0.647vw, 35px);
    }

    .doctor-profile__name-en {
      margin-left: 16px;

      @media (max-width: 767px) {
        display: block;
        margin: 0;
        line-height: 1;
      }
    }
  }

  .doctor-career {
    background-color: #FBFBFB;

    .doctor-career__title {
      background-color: #E7F0F7;
      font-weight: 700;
      font-size: clamp(14px, 13.029px + 0.259vw, 18px);
      color: var(--main);
      padding: 3px 15px 5px;

      @media (max-width: 767px) {
        text-align: center;
      }
    }

    .doctor-career__list {
      padding: 20px;

      .doctor-career__item {
        position: relative;
        padding-left: 0.75em;
        font-size: clamp(13px, 12.272px + 0.194vw, 16px);

        &::before {
          content: "";
          position: absolute;
          top: 0.6em;
          left: 0;
          width: clamp(5px, 4.515px + 0.129vw, 7px);
          height: clamp(5px, 4.515px + 0.129vw, 7px);
          background-color: var(--main);
          border-radius: 50%;
          display: inline-block;
        }
      }

      .doctor-career__item+.doctor-career__item {
        margin-top: 5px;
      }
    }
  }

  .doctor-career+.doctor-career {
    @media (max-width: 767px) {
      margin-top: 15px;
    }
  }

  .metabolic-domino {
    display: grid;
    grid-template-columns: 1fr min(330px, 35%);
    gap: 20px clamp(30px, 22.718px + 1.942vw, 60px);
    margin-top: 60px;

    @media (max-width: 767px) {
      display: flex;
      flex-direction: column;
    }

    .metabolic-domino__title {
      font-weight: 700;
      font-size: clamp(18px, 17.029px + 0.259vw, 22px);
      color: var(--main);
      line-height: 1.7;
      border-bottom: 1px var(--main) solid;
      padding-bottom: 20px;

      @media (max-width: 767px) {
        text-align: center;
      }
    }

    .metabolic-domino__img {
      grid-column: 2;
      grid-row: 1 / 3;

      @media (max-width: 767px) {
        min-width: 220px;
        width: 60%;
        margin: 0 auto;
      }
    }

    .metabolic-domino__img-caption {
      display: flex;
      align-items: center;
      font-size: clamp(10px, 8.544px + 0.388vw, 16px);
      margin-bottom: clamp(5px, 3.786px + 0.324vw, 10px);

      &::before {
        content: "";
        background: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.49524 11.25L4.76539e-05 1.2235e-06L12.9904 8.78432e-08L6.49524 11.25Z' fill='%232B6088'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
        width: clamp(10px, 8.786px + 0.324vw, 15px);
        height: clamp(10px, 8.786px + 0.324vw, 15px);
        display: inline-block;
      }
    }

    .metabolic-domino__text1,
    .metabolic-domino__text2 {
      strong {
        font-weight: 700;
        color: var(--accent);
      }
    }

    .metabolic-domino__text2 {
      grid-column: 1 / 3;
      grid-row: 3;
    }
  }
}

.reuse-counseling--domino {
  .invite-box {
    .invite-box__title {
      font-size: clamp(16px, 13.816px + 0.583vw, 25px);
    }
  }
}

section.price {
  padding-top: clamp(60px, 38.155px + 5.825vw, 150px);
  padding-bottom: clamp(60px, 45.437px + 3.883vw, 120px);

  .price__table {
    img {
      @media (max-width: 767px) {
        max-width: 700px;
      }
    }
  }

  .price__notes {
    font-size: clamp(10px, 9.029px + 0.259vw, 14px);
    text-align: right;
    margin-top: clamp(15px, 13.786px + 0.324vw, 20px);

    @media (max-width: 767px) {
      text-align: left;
    }
  }
}

.section-heading {
  margin-bottom: clamp(40px, 35.146px + 1.294vw, 60px);
  text-align: center;

  .section-heading__en {
    img {
      height: clamp(38px, 24.893px + 3.495vw, 92px);
    }
  }

  .section-heading__ja {
    font-size: clamp(18px, 15.087px + 0.777vw, 30px);
    margin-top: clamp(10px, 8.058px + 0.518vw, 18px);
  }
}

section.flow {
  background-color: #F8F8F8;
  padding-top: clamp(70px, 48.155px + 5.825vw, 160px);
  padding-bottom: clamp(90px, 65.728px + 6.472vw, 190px);

  .flow-list {
    .flow-list__item {
      display: grid;
      grid-template-columns: min(340px, 50%) 1fr;
      gap: clamp(15px, 8.932px + 1.618vw, 40px);
      background-color: #fff;
      padding: clamp(20px, 10.291px + 2.589vw, 60px) clamp(20px, -4.272px + 6.472vw, 120px);
      border-radius: clamp(10px, 7.573px + 0.647vw, 20px);
      height: auto;

      @media (max-width: 767px) {
        display: flex;
        flex-direction: column;
      }
    }

    .flow-list__title {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: clamp(6px, 0.175px + 1.553vw, 30px);
    }

    .flow-list__num {
      height: clamp(30px, 22.718px + 1.942vw, 60px);
    }

    .flow-list__label {
      font-size: clamp(16px, 10.175px + 1.553vw, 40px);
    }

    .flow-list__img {
      @media (max-width: 767px) {
        min-width: 220px;
        width: 60%;
        margin: 0 auto;
      }
    }
  }

  .flow-swiper-wrapper {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;

    @media (max-width: 1200px) {
      width: calc(100% - 150px);
    }

    @media (max-width: 767px) {
      width: calc(100% - 70px);
    }
  }

  .flow-swiper-button-next {
    position: absolute;
    z-index: 2;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 52px;
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, var(--main, #2B6088) 0%, #68A1CD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    @media (max-width: 767px) {
      right: -25px;
      width: 25px;
      height: 31px;
    }

    &::after {
      content: "";
      display: block;
      width: 12px;
      height: 23px;
      background: url("data:image/svg+xml,%3Csvg width='15' height='25' viewBox='0 0 15 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.691891 0.722658L12.6919 12.2227L0.691892 23.7227' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
    }

    @media (max-width: 767px) {
      &::after {
        width: 8px;
        height: 14px;
      }
    }
  }

  .flow-swiper-button-prev {
    position: absolute;
    z-index: 2;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 52px;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(270deg, var(--main, #2B6088) 0%, #68A1CD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    @media (max-width: 767px) {
      left: -25px;
      width: 25px;
      height: 31px;
    }

    &::after {
      content: "";
      display: block;
      width: 12px;
      height: 23px;
      background: url("data:image/svg+xml,%3Csvg width='15' height='25' viewBox='0 0 15 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4453 0.722658L1.44528 12.2227L13.4453 23.7227' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
    }

    @media (max-width: 767px) {
      &::after {
        width: 8px;
        height: 14px;
      }
    }
  }

  .flow-swiper-pagination {
    position: absolute;
    top: calc(100% + 30px);
    justify-content: center;
    display: flex;

    .swiper-pagination-bullet {
      opacity: 1;
      background: #D9D9D9;
      margin: 0 6px;
    }

    .swiper-pagination-bullet-active {
      background: var(--main);
    }
  }
}

section.faq {
  padding-top: clamp(60px, 40.583px + 5.178vw, 140px);
  padding-bottom: clamp(80px, 60.583px + 5.178vw, 160px);

  .section-heading__en {
    img {
      height: clamp(55px, 39.951px + 4.013vw, 117px);
    }
  }

  .faq-list {
    .faq-list__item+.faq-list__item {
      margin-top: clamp(30px, 27.573px + 0.647vw, 40px);
    }

    .faq-list__q {
      position: relative;
      cursor: pointer;
      border-radius: 6px;
      overflow: hidden;
      background: linear-gradient(270deg, #8AABC7 0%, #5B7B9A 100%);
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: clamp(15px, 11.359px + 0.971vw, 30px);
      padding-right: clamp(40px, 37.573px + 0.647vw, 50px);

      &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: clamp(15px, 11.359px + 0.971vw, 30px);
        transform: translateY(-50%);
        background: url("data:image/svg+xml,%3Csvg width='25' height='15' viewBox='0 0 25 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.722046 13.4453L12.222 1.44531L23.722 13.4453' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A") center center / contain no-repeat;
        width: clamp(12px, 9.330px + 0.712vw, 23px);
        aspect-ratio: 23 / 12;
      }
    }

    .faq-list__q-icon {
      background-color: #4B5C6C;
      width: clamp(70px, 67.573px + 0.647vw, 80px);
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;

      @media (max-width: 767px) {
        aspect-ratio: initial;
        width: clamp(21px, 12.412px + 2.29vw, 30px);
        height: 100%
      }

      &::before {
        content: "";
        background: url("../img/faq-q.svg") center center / contain no-repeat;
        display: block;
        width: clamp(12px, 7.874px + 1.1vw, 29px);
        aspect-ratio: 29 / 40;
      }
    }

    .faq-list__q-label {
      grid-column: 2;
      color: #fff;
      font-size: clamp(14px, 11.330px + 0.712vw, 25px);
      padding: 15px 0;
    }

    .faq-list__q.show {
      &::after {
        transform: rotate(180deg);
      }
    }

    .faq-list__a {
      display: none;
      border-radius: 6px;
      background-color: #F6F6F6;
      margin-top: 10px;
      padding: clamp(20px, 15.146px + 1.294vw, 40px) clamp(20px, 10.291px + 2.589vw, 60px);
    }
  }
}

section.about {
  padding-bottom: clamp(60px, 33.301px + 7.12vw, 170px);

  .about__inner {
    display: grid;
    grid-template-columns: 1fr 50%;
    column-gap: 60px;

    @media (max-width: 767px) {
      display: flex;
      flex-direction: column;
    }
  }

  .about__heading {
    grid-column: 1 / -1;
  }

  .about-info {
    .about-info__title {
      border-bottom: 1px var(--main) solid;
      font-weight: 700;
      font-size: clamp(16px, 13.816px + 0.583vw, 25px);
      color: var(--main);
      padding-bottom: clamp(15px, 13.786px + 0.324vw, 20px);
    }

    .about-info__list {}

    .about-info__item {
      border-bottom: 1px #BACAD6 dotted;
      display: grid;
      grid-template-columns: clamp(70px, 65.146px + 1.294vw, 90px) 1fr;
      padding: clamp(15px, 13.786px + 0.324vw, 20px) 0;
    }

    .about-info__label {
      font-weight: 700;
      color: var(--main);
      font-size: clamp(13px, 11.786px + 0.324vw, 18px);
      line-height: 2;
    }

    .about-info__text {
      font-size: clamp(13px, 11.786px + 0.324vw, 18px);
      line-height: 2;

      a {
        color: var(--main);
        text-decoration: underline;
      }

      a:hover {
        text-decoration: none;
      }
    }

    .color-blue {
      color: var(--main);
      font-weight: 700;
    }
  }
}

section.guideline {
  background-color: #F9FEFF;
  padding: clamp(60px, 55.146px + 1.294vw, 80px) 0;

  .guideline-box {
    strong {
      font-weight: 700;
      color: var(--main);
    }

    .guideline-box__heading {
      font-weight: 700;
      font-size: clamp(15px, 13.786px + 0.324vw, 20px);
      color: var(--main);
      padding-bottom: 10px;
      border-bottom: 1px var(--main) solid;
      margin-bottom: clamp(10px, 7.573px + 0.647vw, 20px);
    }

    .guideline-box__title {
      font-weight: 700;
      font-size: clamp(13px, 12.272px + 0.194vw, 16px);
      color: var(--main);
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .guideline-box__text {
      font-size: clamp(11px, 10.272px + 0.194vw, 14px);
      line-height: 2;
    }
  }

  .guideline-box+.guideline-box {
    margin-top: 40px;
  }
}

footer {
  background-color: #505050;
  padding: 14px;
  font-size: clamp(12px, 11.515px + 0.129vw, 14px);
  text-align: center;
  color: #fff;
  line-height: 1;

  @media (max-width: 767px) {
    padding-bottom: 70px;
  }
}