@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  color: #181210;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

img {
  vertical-align: middle;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.heading__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.heading__main-en {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 22px;
  font-family: "Space Grotesk", sans-serif;
  color: #2b8cee;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3333333333em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .heading__main-en {
    font-size: 14px;
  }
}
.heading__main-en::before, .heading__main-en::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: 2px;
  background-color: #2b8cee;
  border-radius: 2px;
}
.heading__main-en::before {
  left: 0;
}
.heading__main-en::after {
  right: 0;
}
.heading__main-en--yellow {
  color: #ffe32e;
}
.heading__main-en--yellow::before, .heading__main-en--yellow::after {
  background-color: #ffe32e;
}
.heading__main-en--yellow-ffe8 {
  color: #ffe823;
}
.heading__main-en--yellow-ffe8::before, .heading__main-en--yellow-ffe8::after {
  background-color: #ffe823;
}
.heading__main-en--white {
  color: #fff;
}
.heading__main-en--white::before, .heading__main-en--white::after {
  background-color: #fff;
}
.heading__main-jp {
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .heading__main-jp {
    font-size: 36px;
  }
}
.heading__main-jp--fs40 {
  font-size: 4rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .heading__main-jp--fs40 {
    font-size: 36px;
    line-height: 1.8em;
  }
}
.heading__main-jp--fs32 {
  font-size: 3.2rem;
  line-height: 1.25em;
}
@media screen and (max-width: 767px) {
  .heading__main-jp--fs32 {
    font-size: 20px;
    line-height: 1.6em;
  }
}
.heading__main-jp--fs24 {
  font-size: 2.4rem;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .heading__main-jp--fs24 {
    font-size: 18px;
  }
}
.heading__main-jp--white {
  color: #fff;
}
.heading__subheading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  color: #0762bf;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .heading__subheading {
    font-size: 20px;
    line-height: 1.6em;
  }
}
.heading__subheading span {
  position: relative;
  padding: 0 30px;
  text-align: center;
}
.heading__subheading span::before, .heading__subheading span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background-color: #0762bf;
  border-radius: 2px;
}
.heading__subheading span::before {
  left: -5px;
  rotate: 45deg;
}
.heading__subheading span::after {
  right: -5px;
  rotate: -45deg;
}

.button {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: 25px 66px;
  border-radius: 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffff50), to(#ffe32e));
  background-image: linear-gradient(to right, #ffff50, #ffe32e);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25em;
  color: #0762bf;
  margin-inline: auto;
  -webkit-filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.1));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    max-width: 400px;
    padding: 10px 66px 10px 75px;
    font-size: 18px;
    min-height: 80px;
  }
}
.button::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 15px;
  width: 117px;
  aspect-ratio: 117/175;
  background: url("../public/img/icons/woman-pointing.svg") no-repeat center/100% 100%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .button::before {
    bottom: -3px;
    left: 16px;
    width: 59px;
  }
}
.button:hover .button__arrow::before {
  -webkit-transform: translate(calc(-50% + 5px), -50%);
          transform: translate(calc(-50% + 5px), -50%);
}
.button--blue {
  background-image: -webkit-gradient(linear, left top, right top, from(#9ad3ff), to(#48a3f3));
  background-image: linear-gradient(to right, #9ad3ff, #48a3f3);
  color: #fff;
}
.button--plain {
  padding: 14px 74px;
  min-height: 110px;
  max-width: 875px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .button--plain {
    text-align: center;
  }
}
.button--plain::before {
  display: none;
}
.button__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
}
.button__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 13px;
  background: url("../public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.button__bubble {
  position: absolute;
  left: 50%;
  top: -31px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 226px;
  padding: 4px 5px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6666666667em;
  color: #0762bf;
  text-align: center;
  border-radius: 28px;
  background-color: #fff;
  border: 1px solid #0762bf;
}
@media screen and (max-width: 767px) {
  .button__bubble {
    top: -19px;
    max-width: 148px;
    padding-block: 3.5px;
    font-size: 14px;
  }
}
.button__bubble::before, .button__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 14px 8px 0;
}
@media screen and (max-width: 767px) {
  .button__bubble::before, .button__bubble::after {
    border-width: 11px 6px 0;
  }
}
.button__bubble::before {
  top: 100%;
  border-color: #0762bf transparent transparent;
}
.button__bubble::after {
  top: calc(100% - 2px);
  border-color: #fff transparent transparent;
}

.banner-amazon__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(600px + 8%);
}
@media screen and (max-width: 767px) {
  .banner-amazon__container {
    max-width: 100%;
  }
}
.banner-amazon__image {
  max-width: 600px;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .banner-amazon__image {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.banner-amazon__text {
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .banner-amazon__text {
    font-size: 12px;
  }
}

.footer__copyright {
  padding-block: 20px;
  background: #436487;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-block: 22px;
    font-size: 10px;
  }
}

.sticky-banner {
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 20px 0;
  width: 100%;
  background: rgba(255, 227, 46, 0.9);
  z-index: 999;
  line-height: 1.15;
  letter-spacing: normal;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .sticky-banner {
    gap: 7.5px;
  }
}
.sticky-banner.active {
  opacity: 1;
  visibility: visible;
}
.sticky-banner__cta-text {
  width: 338px;
}
@media screen and (max-width: 767px) {
  .sticky-banner__cta-text {
    width: 169px;
  }
}
.sticky-banner__cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 37px;
  width: 590px;
  font-size: 32px;
  font-weight: 500;
  padding: 4px;
  background-color: #003378;
  border-radius: 12px;
  position: relative;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .sticky-banner__cta-btn {
    width: 295px;
    gap: 18.5px;
    padding: 2px;
    border-radius: 6px;
  }
}
.sticky-banner__cta-btn:hover {
  background-color: #00439a;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.sticky-banner__cta-btn:hover .cta__btn__badge {
  color: #00439a;
}
.sticky-banner__cta-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../public/img/sticky-banner/cta-btn-arrow.png") no-repeat center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 85%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sticky-banner__cta-btn::after {
    width: 12px;
    height: 12px;
    left: 85%;
  }
}
.sticky-banner__cta-btn-badge {
  color: #003378;
  background-color: #fff;
  width: 182px;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  padding: 8px 0 9px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .sticky-banner__cta-btn-badge {
    width: 91px;
    font-size: 16px;
    padding-block: 4px 4.5px;
  }
}
.sticky-banner__cta-btn-text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sticky-banner__cta-btn-text {
    font-size: 16px;
  }
}

.lp-u__wrapper {
  width: 100%;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .lp-u__wrapper {
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__wrapper--no-padding-sp {
    padding-inline: 0;
  }
}
.lp-u__mv {
  position: relative;
}
@media screen and (min-width: 1920px) {
  .lp-u__mv {
    height: auto;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
  }
}
.lp-u__mv-sp-gradient {
  display: none;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-sp-gradient {
    pointer-events: none;
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#0c4cbb), to(#003378));
    background-image: linear-gradient(to bottom, #0c4cbb, #003378);
    opacity: 0.2;
  }
}
.lp-u__mv-upper {
  padding-block: 54px 84px;
  position: relative;
  z-index: 1;
  background: url("../public/img/lp-u/blue-splash.svg") no-repeat top right/1214px 722px;
  background-color: #55a1ee;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .lp-u__mv-upper {
    padding-top: 104px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-upper {
    background-position: -225px 0;
    background-size: 1035px 615px;
    height: calc(100% - 55px);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-block: 72px 88px;
  }
}
.lp-u__mv-upper::before, .lp-u__mv-upper::after {
  content: "";
  pointer-events: none;
  position: absolute;
}
.lp-u__mv-upper::before {
  right: -285px;
  bottom: -147px;
  width: calc(480px + (808 - 480) * (100vw - 768px) / 1152);
  aspect-ratio: 808/1011;
  background: url("../public/img/lp-u/right-buildings.png") no-repeat center/contain;
}
@media screen and (min-width: 1920px) {
  .lp-u__mv-upper::before {
    width: 808px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-upper::before {
    right: -103px;
    bottom: unset;
    top: 0;
    width: 282px;
  }
}
.lp-u__mv-upper::after {
  left: -169px;
  bottom: 0;
  width: calc(400px + (661 - 400) * (100vw - 768px) / 1152);
  aspect-ratio: 661/580;
  background: url("../public/img/lp-u/left-buildings.png") no-repeat center/contain;
}
@media screen and (min-width: 1920px) {
  .lp-u__mv-upper::after {
    width: 661px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-upper::after {
    left: -83px;
    width: 230px;
  }
}
.lp-u__mv-logo {
  position: absolute;
  left: 48px;
  top: 48px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-logo {
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 146px;
  }
}
.lp-u__mv-title {
  position: relative;
  z-index: 1;
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
  font-size: 7.4rem;
  letter-spacing: 0.05em;
  line-height: 1.3513513514em;
  color: #fff;
  text-align: center;
  -webkit-filter: drop-shadow(20px 20px 16px rgba(0, 67, 154, 0.3));
          filter: drop-shadow(20px 20px 16px rgba(0, 67, 154, 0.3));
  margin-bottom: 39px;
}
@media screen and (max-width: 1024px) {
  .lp-u__mv-title {
    font-size: calc(46px + (74 - 46) * (100vw - 768px) / 1152);
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-title {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    font-size: 28px;
    padding-inline: 4%;
    margin-bottom: 60px;
    white-space: nowrap;
  }
}
.lp-u__mv-title .top {
  display: inline-block;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-title .top {
    margin-bottom: 7px;
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
}
.lp-u__mv-title .big {
  font-size: 9.2rem;
  color: #2a2d26;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 1px 9px;
  min-width: 110px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .lp-u__mv-title .big {
    font-size: calc(70px + (92 - 70) * (100vw - 768px) / 1152);
    min-width: unset;
    padding: 7px 6px 13px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-title .big {
    font-size: 48px;
    padding: 0 11.3px;
    min-height: 72px;
  }
}
.lp-u__mv-title .mr {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-title .mr {
    margin-right: 4px;
  }
}
.lp-u__mv-title .medium {
  font-size: 8.4rem;
}
@media screen and (max-width: 1024px) {
  .lp-u__mv-title .medium {
    font-size: calc(60px + (84 - 60) * (100vw - 768px) / 1152);
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-title .medium {
    font-size: 36px;
  }
}
.lp-u__mv-title .colored {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #fffd97), color-stop(40%, #ffe823));
  background-image: linear-gradient(to bottom, #fffd97 60%, #ffe823 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(20px 20px 16px rgba(0, 67, 154, 0.3));
          filter: drop-shadow(20px 20px 16px rgba(0, 67, 154, 0.3));
}
.lp-u__mv-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-content {
    max-width: 400px;
    padding-inline: 4%;
  }
}
.lp-u__mv-lower {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-lower {
    margin-top: 20px;
  }
}
.lp-u__mv-intro {
  padding-bottom: 13px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.lp-u__mv-intro-head {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-head {
    grid-template-columns: 1fr auto;
    text-align: right;
  }
}
.lp-u__mv-intro-head::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 1/1;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #fff), color-stop(50%, #0762bf));
  background-image: linear-gradient(to bottom right, #fff 50%, #0762bf 50%);
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-head::before {
    left: unset;
    right: 113px;
    -webkit-transform: unset;
            transform: unset;
  }
}
.lp-u__mv-intro-subheading {
  position: relative;
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.0833333333em;
  color: #2a2d26;
  padding-inline: 25px;
  border-top-left-radius: 10px;
}
@media screen and (max-width: 980px) {
  .lp-u__mv-intro-subheading {
    font-size: 20px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-subheading {
    font-size: 12px;
    padding: 2.5px 30px 2.5px 0;
  }
}
.lp-u__mv-intro-subheading--blue {
  background-color: #0762bf;
  color: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
  padding-inline: 0 20px;
}
.lp-u__mv-intro-bubble {
  position: absolute;
  left: 50%;
  top: -23px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 266px;
  border-radius: 20px;
  border: 1px solid #0762bf;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: normal;
  color: #0762bf;
  height: 30px;
}
@media screen and (max-width: 980px) {
  .lp-u__mv-intro-bubble {
    top: -28px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-bubble {
    font-size: 10px;
    top: -23px;
    height: unset;
    padding: 3.5px 7px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: unset;
    right: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}
.lp-u__mv-intro-bubble::before, .lp-u__mv-intro-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 11px 6px 0;
}
.lp-u__mv-intro-bubble::before {
  top: 100%;
  border-color: #0762bf transparent transparent;
}
.lp-u__mv-intro-bubble::after {
  top: calc(100% - 2px);
  border-color: #fff transparent transparent;
}
.lp-u__mv-intro-heading {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  color: #0762bf;
  text-align: center;
  margin-top: 13px;
}
@media screen and (max-width: 980px) {
  .lp-u__mv-intro-heading {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-heading {
    font-size: 20px;
  }
}
.lp-u__mv-intro-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
  }
}
.lp-u__mv-intro-list-item {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #fff;
  text-align: center;
  padding: 2.5px 5px;
  border-radius: 22px;
  border: 1px solid #fff;
}
@media screen and (max-width: 980px) {
  .lp-u__mv-intro-list-item {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-list-item {
    font-size: 14px;
    padding-inline: 3.5px;
  }
}
.lp-u__mv-intro-list-item--mw {
  max-width: 339px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-intro-list-item--mw {
    max-width: 100%;
  }
}
.lp-u__mv-note {
  position: relative;
  width: 100%;
  padding-block: 34px 30px;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.125em;
  color: #fff;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0c4cbb), to(#003378));
  background-image: linear-gradient(to bottom, #0c4cbb, #003378);
}
@media screen and (max-width: 980px) {
  .lp-u__mv-note {
    font-size: 24px;
    padding-block: 28px 24px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-note {
    font-size: 18px;
    line-height: 1.5555555556em;
    padding-block: 20px;
    background: url("../public/img/lp-u/note-bg.svg") no-repeat center/100% 100%;
  }
}
.lp-u__mv-note::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 28px 102px 0;
  border-color: #55a1ee transparent transparent;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-note::before {
    border-width: 19px 67.5px;
    display: none;
  }
}
.lp-u__mv-btn {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-btn {
    margin-block: 40px;
  }
}
.lp-u__success-container {
  padding: 62px 32px 64px;
  border-radius: 30px;
  background: url("../public/img/lp-u/darkblue-splash.svg") no-repeat 377px 0/1926px 1441px;
  background-color: #0762bf;
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-u__success-container {
    background-position: -243px 0;
    background-size: 1236px 925px;
    padding: 59px 8.53%;
    border-radius: 0;
    margin-top: 25px;
  }
}
.lp-u__success-block {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.lp-u__success-content-wrap {
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  padding: 40px;
  margin-top: 87px;
}
@media screen and (max-width: 767px) {
  .lp-u__success-content-wrap {
    padding: 40px 20px 20px;
    margin-top: 40px;
  }
}
.lp-u__success-bubble {
  position: absolute;
  display: block;
  z-index: 1;
  right: -40px;
  top: -50px;
  width: 126px;
  aspect-ratio: 126/128;
  font: 700 2.4rem "Space Grotesk", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.3333333333em;
  color: #0762bf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-u__success-bubble {
    width: 94px;
    aspect-ratio: 94/96;
    font-size: 16px;
    right: -21px;
    top: -48px;
  }
}
.lp-u__success-bubble::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-15deg);
          transform: translate(-50%, -50%) rotate(-15deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 81.5%;
  height: 81.5%;
  background: url("../public/img/lp-u/bubble.svg") no-repeat center/100% 100%;
}
.lp-u__success-content {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .lp-u__success-content {
    gap: 20px;
  }
}
.lp-u__success-title {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6666666667em;
  color: #181210;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .lp-u__success-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__success-title {
    font-size: 20px;
  }
}
.lp-u__success-title .colored {
  font: 700 5.6rem "Space Grotesk", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.0714285714em;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(55%, #ff5124), color-stop(45%, #d62323));
  background-image: linear-gradient(to bottom, #ff5124 55%, #d62323 45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .lp-u__success-title .colored {
    font-size: 32px;
  }
}
.lp-u__success-title .white {
  color: #fff;
  background-color: #181210;
  display: inline-block;
  line-height: 1;
  padding: 4px 6.3px 8px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .lp-u__success-title .white {
    padding: 3px 3.5px 4px;
  }
}
.lp-u__success-info {
  display: grid;
  grid-template-columns: 366px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #181210;
}
@media screen and (max-width: 1080px) {
  .lp-u__success-info {
    gap: 30px;
  }
}
@media screen and (max-width: 980px) {
  .lp-u__success-info {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__success-info {
    font-size: 14px;
    gap: 20px;
  }
}
.lp-u__success-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .lp-u__success-profile {
    gap: 10px;
  }
}
.lp-u__success-profile-icon {
  display: block;
  width: 110px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-u__success-profile-icon {
    width: 72px;
  }
}
.lp-u__success-profile-info-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .lp-u__success-profile-info-upper {
    gap: 5px;
  }
}
.lp-u__success-profile-name {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .lp-u__success-profile-name {
    font-size: 18px;
  }
}
.lp-u__success-profile-age {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #2b8cee;
  background-color: #eef5fe;
  border-radius: 14px;
  padding-inline: 11px;
}
@media screen and (max-width: 767px) {
  .lp-u__success-profile-age {
    font-size: 10px;
    padding-inline: 8px;
  }
}
.lp-u__success-purchase {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 16px 40px;
  border-radius: 10px;
  background-color: #eff4f9;
  color: #2a2d26;
}
@media screen and (max-width: 1080px) {
  .lp-u__success-purchase {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__success-purchase {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 15px;
    width: 100%;
  }
}
.lp-u__success-purchase-heading {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 2.0833333333em;
}
@media screen and (max-width: 767px) {
  .lp-u__success-purchase-heading {
    font-size: 16px;
    line-height: normal;
  }
}
.lp-u__success-purchase-list-item {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp-u__success-purchase-list-item {
    font-size: 12px;
  }
}
.lp-u__register {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .lp-u__register {
    padding-block: 40px 60px;
  }
}
.lp-u__register-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .lp-u__register-content {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding-inline: 4%;
  }
}
.lp-u__register-block {
  padding: 40px 10px 190px;
  border-radius: 30px;
  background-color: #fffbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-u__register-block {
    padding: 20px 15px;
    border-radius: 20px 20px 0 0;
    gap: 10px;
  }
}
.lp-u__register-block--blue {
  background-color: #ecf7ff;
}
@media screen and (max-width: 767px) {
  .lp-u__register-block--blue {
    border-radius: 0 0 20px 20px;
  }
}
.lp-u__register-heading {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: #181210;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp-u__register-heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__register-heading {
    font-size: 18px;
  }
}
.lp-u__register-block-icon {
  display: block;
  aspect-ratio: 213/168;
}
@media screen and (max-width: 767px) {
  .lp-u__register-block-icon {
    width: 150px;
  }
}
.lp-u__register-list {
  width: 100%;
  max-width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 767px) {
  .lp-u__register-list {
    gap: 10px;
  }
}
.lp-u__register-list-item {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 36px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #181210;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-u__register-list-item {
    padding: 15px 35px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
.lp-u__register-list-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 20px;
  aspect-ratio: 1/1;
  background: url("../public/img/icons/check-blue.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .lp-u__register-list-item::before {
    position: relative;
    left: unset;
    top: unset;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.lp-u__register-btn {
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp-u__register-btn {
    position: relative;
    left: unset;
    bottom: unset;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 20px;
  }
}
.lp-u__reasons {
  position: relative;
  padding-block: 100px 80px;
  background-color: #eef5fe;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-u__reasons {
    padding: 60px 8% 80px;
  }
}
.lp-u__reasons::before, .lp-u__reasons::after {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 872px;
  width: calc(600px + (872 - 600) * (100vw - 768px) / 1152);
  aspect-ratio: 872/556;
  background: url("../public/img/lp-u/reasons-building.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp-u__reasons::before, .lp-u__reasons::after {
    width: 251px;
  }
}
.lp-u__reasons::before {
  left: -360px;
  bottom: -81px;
}
@media screen and (max-width: 767px) {
  .lp-u__reasons::before {
    left: -125px;
    bottom: 0;
  }
}
.lp-u__reasons::after {
  right: -349px;
  bottom: -132px;
}
@media screen and (max-width: 767px) {
  .lp-u__reasons::after {
    right: -126px;
    bottom: 0;
  }
}
.lp-u__reasons-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.lp-u__reasons-text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #181210;
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .lp-u__reasons-text {
    font-size: 16px;
    margin-top: 24px;
  }
}

.lp-m__section {
  width: 100%;
}
.lp-m__chance {
  background-color: #eef5fe;
}
.lp-m__chance-banner {
  position: relative;
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
  background-color: #2b8cee;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-banner {
    padding: 0 4%;
    font-size: 16px;
  }
}
.lp-m__chance-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/lp-m/chance-bg.svg") no-repeat center/cover;
}
.lp-m__chance-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 70px 0;
  border-color: #2b8cee transparent transparent;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-banner::after {
    bottom: -15px;
    border-width: 15px 35px 0;
  }
}
.lp-m__chance-content {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-content {
    padding-bottom: 60px;
  }
}
.lp-m__chance-table {
  position: relative;
  display: table;
  border-spacing: 8px;
  width: 100%;
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table {
    padding-top: 100px;
    border-spacing: 2px;
  }
}
.lp-m__chance-table th,
.lp-m__chance-table td {
  padding: 12px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table th,
  .lp-m__chance-table td {
    padding: 8px;
    font-size: 10px;
  }
}
.lp-m__chance-table thead th {
  text-align: left;
}
.lp-m__chance-table thead th:first-of-type {
  width: 170px;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table thead th:first-of-type {
    width: 60px;
  }
}
.lp-m__chance-table thead th:not(:first-of-type) {
  position: relative;
  padding: 16px 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table thead th:not(:first-of-type) {
    padding: 12px 8px;
  }
}
.lp-m__chance-table thead th:last-of-type {
  border-radius: 0 10px 10px 0;
}
.lp-m__chance-table thead th.bg-yellow, .lp-m__chance-table thead th.bg-blue {
  color: #fff;
}
.lp-m__chance-table thead th.bg-yellow::before, .lp-m__chance-table thead th.bg-blue::before {
  content: "";
  position: absolute;
  bottom: 45px;
  left: 50%;
  translate: -50% 0;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .lp-m__chance-table thead th.bg-yellow::before, .lp-m__chance-table thead th.bg-blue::before {
    bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table thead th.bg-yellow::before, .lp-m__chance-table thead th.bg-blue::before {
    bottom: 45px;
  }
}
.lp-m__chance-table thead th.bg-yellow {
  background-color: #ffff50;
  color: #0762bf;
}
.lp-m__chance-table thead th.bg-yellow::before {
  width: 240px;
  background-image: url("../public/img/lp-m/chance-table-01.svg");
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table thead th.bg-yellow::before {
    width: 140px;
  }
}
.lp-m__chance-table thead th.bg-blue {
  background-color: #0762bf;
  color: #fff;
}
.lp-m__chance-table thead th.bg-blue::before {
  width: 157px;
  background-image: url("../public/img/lp-m/chance-table-02.svg");
}
@media screen and (max-width: 767px) {
  .lp-m__chance-table thead th.bg-blue::before {
    width: 100px;
  }
}
.lp-m__chance-table tbody th {
  border-radius: 10px 0 0 10px;
  text-align: left;
}
.lp-m__chance-table tbody td {
  text-align: center;
}
.lp-m__chance-table tbody td:last-of-type {
  border-radius: 0 10px 10px 0;
}
.lp-m__benefit-container {
  margin-top: 90px;
  max-width: calc(1200px + 8%);
}
@media screen and (max-width: 1024px) {
  .lp-m__benefit-container {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__benefit-container {
    margin-top: 40px;
  }
}
.lp-m__benefit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 85px;
  width: 100%;
  margin-top: 44px;
  padding: 44px 100px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .lp-m__benefit-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__benefit-content {
    gap: 20px;
    margin-top: 20px;
    padding: 40px 32px;
  }
}
.lp-m__benefit-col--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .lp-m__benefit-col--image {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__benefit-col--image {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.lp-m__benefit-heading {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 3.2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 1024px) {
  .lp-m__benefit-heading {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__benefit-heading {
    font-size: 20px;
    text-align: left;
  }
}
.lp-m__benefit-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-block: 30px 0;
  max-width: 415px;
}
@media screen and (max-width: 1024px) {
  .lp-m__benefit-images {
    margin-block: 20px 0;
  }
}
.lp-m__benefit-text {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 1024px) {
  .lp-m__benefit-text {
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__benefit-text {
    padding-inline: 0;
    font-size: 16px;
  }
}
.lp-m__wealth {
  padding-top: 130px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-m__wealth {
    padding-top: 60px;
  }
}
.lp-m__wealth-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .lp-m__wealth-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__wealth-title {
    gap: 0;
    line-height: 1.3333333333em;
  }
}
.lp-m__wealth-title div.box {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px;
  background-color: #2b8cee;
  border-radius: 10px;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .lp-m__wealth-title div.box {
    font-size: 12px;
    line-height: 2em;
  }
}
.lp-m__wealth-figure-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(1200px + 8%);
}
@media screen and (max-width: 767px) {
  .lp-m__wealth-figure-container {
    max-width: 100%;
  }
}
.lp-m__wealth-figure {
  position: relative;
  width: 100%;
  padding-inline: 100px;
  margin: 48px 0 80px;
}
@media screen and (max-width: 767px) {
  .lp-m__wealth-figure {
    margin-block: 0 60px;
    padding: 40px 0 0;
  }
}
.lp-m__wealth-figure::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  height: 330px;
  left: 0;
  top: 63px;
  background-color: #eef5fe;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .lp-m__wealth-figure::before {
    top: 60px;
    height: 322px;
  }
}
.lp-m__smarg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__smarg {
    gap: 10px;
  }
}
.lp-m__smarg-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-col {
    margin-left: -5vw;
  }
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-col--right {
    margin-left: unset;
    margin-right: -5vw;
  }
}
.lp-m__smarg-col--right .lp-m__smarg-image-text {
  left: unset;
  right: 0;
  background-color: #0762bf;
  border-radius: 20px 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-col--right .lp-m__smarg-image {
    border-radius: 20px 0 0 20px;
  }
}
.lp-m__smarg-image {
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 20px rgba(0, 51, 120, 0.2);
          box-shadow: 0 20px 20px rgba(0, 51, 120, 0.2);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-image {
    border-radius: 0 20px 20px 0;
  }
}
.lp-m__smarg-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 32px;
  padding: 15px;
  background-color: #fff;
  border-radius: 0 20px;
  color: #2b8cee;
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-image-text {
    width: 100%;
    border-radius: 0 !important;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__smarg-image-text {
    padding: 5px;
  }
}
.lp-m__smarg-x {
  width: 40px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-x {
    margin: auto 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__smarg-x {
    margin-bottom: 10px;
  }
}
.lp-m__smarg-text {
  padding: 32px 0 42px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__smarg-text {
    font-size: 20px;
    padding-bottom: 40px;
  }
}
.lp-m__smarg-text span.box {
  padding: 5px 10px;
  border-radius: 5px;
}
.lp-m__smarg-text span.white-bg {
  margin-right: 5px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-text span.white-bg {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.lp-m__smarg-text span.bg-blue {
  margin: 0 5px;
  background-color: #0762bf;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .lp-m__smarg-text span.bg-blue {
    margin: 5px 0;
  }
}
.lp-m__smarg-arrow {
  height: 80px;
}
.lp-m__point-block:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .lp-m__point-block:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.lp-m__point-head {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-m__point-head {
    margin-bottom: 20px;
  }
}
.lp-m__point-num {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #2b8cee;
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  color: #2b8cee;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-m__point-heading {
    font-size: 24px;
  }
}
.lp-m__point-heading span.bg-blue {
  margin: 0 5px;
  padding: 2px 6px;
  background-color: #2b8cee;
  border-radius: 8px;
  color: #fff;
}
.lp-m__point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.lp-m__point-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .lp-m__point-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .lp-m__point-content--row {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .lp-m__point-content-heading {
    text-align: center;
  }
}
.lp-m__point-image {
  margin-left: -30px;
}
@media screen and (max-width: 1024px) {
  .lp-m__point-image {
    width: 90%;
    margin-left: 0;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__point-image {
    margin-bottom: -10px;
  }
}
.lp-m__point-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
  height: 160px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 51, 120, 0.2);
          box-shadow: 0 10px 20px rgba(0, 51, 120, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .lp-m__point-icon {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__point-icon {
    height: 84px;
  }
}
.lp-m__point-icon img {
  max-width: 120px;
}
@media screen and (max-width: 1024px) {
  .lp-m__point-icon img {
    max-width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__point-icon img {
    max-width: 40px;
  }
}
.lp-m__point-text {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media screen and (max-width: 767px) {
  .lp-m__point-text {
    width: 100%;
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.625em;
  }
}
.lp-m__point-text--fs20 {
  font-size: 2rem;
}
.lp-m__point-text--p3 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-m__point-text--p3 {
    padding: 0 16px;
    font-size: 16px;
    text-align: left;
  }
}
.lp-m__point-ul {
  margin-top: 10px;
}
.lp-m__point-li {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .lp-m__point-li {
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.lp-m__point-li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 16px;
  aspect-ratio: 1/1;
  background: url("../public/img/lp-m/ic-arrow-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp-m__point-li::before {
    top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__point-li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.lp-m__why-banner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-m__why-banner {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}
.lp-m__why-deco {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 50px;
  overflow: hidden;
}
.lp-m__why-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 25%;
  left: 50%;
  translate: -50% 0;
  width: 650px;
  height: 650px;
  background-color: #eef5fe;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .lp-m__why-deco::before {
    width: 340px;
    height: 340px;
  }
}
.lp-m__why-deco img {
  width: 342px;
}
@media screen and (max-width: 767px) {
  .lp-m__why-deco img {
    width: 200px;
  }
}
.lp-m__why-heading {
  position: relative;
  width: 100%;
  min-height: 75px;
  background-color: #0762bf;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-m__why-heading {
    font-size: 18px;
  }
}
.lp-m__why-heading::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  translate: -50% 0;
  border-style: solid;
  border-width: 30px 70px 0;
  border-color: #0762bf transparent transparent;
}
@media screen and (max-width: 767px) {
  .lp-m__why-heading::before {
    bottom: -15px;
    border-width: 15px 35px 0;
  }
}
.lp-m__why-arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 40px;
  margin: 30px auto;
  padding-top: 3px;
  background-color: #2b8cee;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .lp-m__why-arrow {
    width: 100px;
    height: 32px;
    font-size: 18px;
  }
}
.lp-m__why-arrow::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #2b8cee transparent transparent;
  border-width: 12px 65px 0;
}
@media screen and (max-width: 767px) {
  .lp-m__why-arrow::before {
    border-width: 12px 50px 0;
  }
}
.lp-m__why-text {
  margin-bottom: 80px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-m__why-text {
    margin-bottom: 60px;
    font-size: 14px;
  }
}
.lp-m__why-text span.highlight {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #ffff50;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .lp-m__why-text span.highlight {
    padding: 5px 50px;
  }
}
.lp-m__why-text span.highlight-sm {
  display: inline-block;
  background-color: #ffff50;
  border-radius: 5px;
  line-height: 1.5em;
}
.lp-m__why-text span.big {
  display: inline-block;
  margin-top: 20px;
  font-size: 3.2rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp-m__why-text span.big {
    font-size: 20px;
  }
}
.lp-m__checklist-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 800px;
  margin: 32px auto 0;
  padding: 22px 175px 22px 125px;
  border: 1px solid #8dc9fe;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .lp-m__checklist-wrap {
    width: 90%;
    padding: 20px 65px;
  }
}
@media screen and (max-width: 767px) {
  .lp-m__checklist-wrap {
    padding: 20px;
  }
}
.lp-m__checklist-wrap--point03 {
  padding: 14px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .lp-m__checklist-wrap--point03 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px;
  }
}
.lp-m__checklist {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.lp-m__checklist-deco {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .lp-m__checklist-deco {
    right: -15px;
    bottom: -30px;
    width: 60px;
  }
}
.lp-m__checklist-deco--right {
  position: relative;
  bottom: unset;
  right: unset;
  width: 186px;
}
@media screen and (max-width: 767px) {
  .lp-m__checklist-deco--right {
    position: absolute;
    right: -18px;
    width: 110px;
  }
}
.lp-m__checklist-item {
  position: relative;
  padding-left: 48px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp-m__checklist-item {
    padding-left: 40px;
    font-size: 16px;
  }
}
.lp-m__checklist-item::before {
  content: url("../public/img/lp-m/ic-checkbox.svg");
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
}

.lp-l__support {
  padding-block: 100px;
  background: #003378;
}
@media screen and (max-width: 767px) {
  .lp-l__support {
    padding-block: 60px;
  }
}
.lp-l__support-list {
  margin-block: 48px 112.7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}
@media screen and (max-width: 820px) {
  .lp-l__support-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp-l__support-list {
    padding-inline: 5%;
    margin-block: 44px 55px;
    gap: 7px;
  }
}
.lp-l__support-item {
  min-height: 280px;
  border-radius: 20px;
  background: #fff;
  padding: 18px 11px 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-l__support-item {
    min-height: 230px;
  }
}
.lp-l__support-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2b8cee;
}
@media screen and (max-width: 767px) {
  .lp-l__support-number {
    font-size: 14px;
  }
}
.lp-l__support-heading {
  font-size: 2rem;
  line-height: 1.75em;
  min-height: 3.5em;
}
@media screen and (max-width: 767px) {
  .lp-l__support-heading {
    font-size: 14px;
  }
}
.lp-l__testimonials {
  padding-block: 100px;
  background: #e4f1ff;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonials {
    padding-block: 60px;
  }
}
.lp-l__testimonial-list {
  margin-block: 48px 100px;
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-list {
    gap: 6px;
    padding-inline: 4%;
    margin-bottom: 40px;
  }
}
.lp-l__testimonial-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 64px;
  min-height: 318px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .lp-l__testimonial-item {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-item {
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6.34%;
  }
}
.lp-l__testimonial-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 64px;
  border-right: 5px solid #2b8cee;
}
@media screen and (max-width: 820px) {
  .lp-l__testimonial-profile {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-profile {
    border-right: none;
    border-bottom: 2px solid #2b8cee;
    padding-bottom: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.lp-l__testimonial-profile-inner {
  min-width: 205px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-profile-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}
.lp-l__testimonial-icon {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-icon {
    margin-bottom: 0;
  }
}
.lp-l__testimonial-profile-details {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-profile-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.lp-l__testimonial-name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-name {
    font-size: 16px;
  }
}
.lp-l__testimonial-description {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-description {
    font-size: 12px;
  }
}
.lp-l__testimonial-gender-age {
  padding: 5px 14px;
  background: #eef5fe;
  border-radius: 15px;
  font-size: 1.6rem;
  color: #0762bf;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-gender-age {
    margin-top: 10px;
    padding: 3px 10px;
    font-size: 12px;
  }
}
.lp-l__testimonial-review {
  padding-left: 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-review {
    padding-left: 0;
  }
}
.lp-l__testimonial-statement {
  margin-bottom: 40px;
  font-size: 3.2rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-statement {
    margin-block: 20px;
    font-size: 20px;
  }
}
.lp-l__purchased-property {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  background: #eef5fe;
  border-radius: 10px;
  padding: 16px 40px;
}
@media screen and (max-width: 767px) {
  .lp-l__purchased-property {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
    padding: 10px 20px;
    letter-spacing: normal;
  }
}
.lp-l__purchased-property-label {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-l__purchased-property-label {
    font-size: 16px;
  }
}
.lp-l__testimonial-bullets {
  font-size: 1.6rem;
  line-height: 1.8em;
  padding-left: 7px;
}
@media screen and (max-width: 767px) {
  .lp-l__testimonial-bullets {
    font-size: 12px;
  }
}
.lp-l__testimonial-bullets li {
  list-style-type: disc;
  padding-left: 7px;
}
.lp-l__testimonial-bullets li::marker {
  content: "•";
  font-size: 2rem;
}
.lp-l__button-margin {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .lp-l__button-margin {
    margin-top: 40px;
  }
}
.lp-l__qa {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .lp-l__qa {
    padding-block: 60px;
  }
}
.lp-l__qa-list {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}
.lp-l__qa-item {
  border: 1px solid #b1cdf2;
  border-radius: 10px;
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .lp-l__qa-item {
    padding: 20px 17px;
  }
}
.lp-l__qa-question {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .lp-l__qa-question {
    font-size: 18px;
    padding-right: 42px;
  }
}
.lp-l__qa-question::before, .lp-l__qa-question::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 3px;
  background: #2b8cee;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lp-l__qa-question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.lp-l__qa-question.active {
  color: #2b8cee;
}
.lp-l__qa-question.active::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.lp-l__qa-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-inline: 16px;
  border-radius: 10px;
  background: #eef5fe;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .lp-l__qa-answer {
    font-size: 14px;
  }
}
.lp-l__qa-answer.active {
  margin-top: 10px;
  padding-block: 16px;
}
@media screen and (max-width: 767px) {
  .lp-l__qa-answer.active {
    margin-top: 36px;
  }
}

.overflow {
  overflow: hidden;
}

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

.tablet {
  display: none;
}
@media screen and (max-width: 980px) {
  .tablet {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-max {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc-max {
    display: none;
  }
}

.max-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .max-sp {
    display: block;
  }
}

.link {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #003378;
}

.bold {
  font-weight: 700;
}

.color-white {
  color: #fff;
}

.color-blue2b {
  color: #2b8cee;
}

.color-blue07 {
  color: #0762bf;
}

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

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}