@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: 10px;
  color: #06141a;
  scroll-behavior: smooth;
}

.image {
  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;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 24px 48px 0;
  width: 100%;
  height: 88px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 16px 16px 0;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    gap: 0;
  }
}
.header.active {
  padding: 0 0 0 48px;
  height: 64px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 58, 145, 0.1);
          box-shadow: 0 5px 10px rgba(0, 58, 145, 0.1);
}
@media screen and (max-width: 1200px) {
  .header.active {
    padding: 8px;
  }
}
.header.active .header__logo-nav {
  padding-top: 0;
}
.header.active .header__logo {
  width: 137px;
  height: 32px;
}
@media screen and (max-width: 1200px) {
  .header.active .header__logo {
    width: 102px;
    height: 24px;
  }
}
.header.active .header__cta {
  gap: 0;
}
.header.active .header__cta-link {
  border-radius: 0;
}
@media screen and (max-width: 1200px) {
  .header.active .header__cta-link {
    border-radius: 42px;
  }
}
.header__logo-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  padding-top: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__logo-nav {
    padding-top: 0;
  }
}
.header__logo {
  width: 177px;
  height: 41px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 102px;
    height: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.header__nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav-link:hover {
  color: #0092e5;
}
.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__cta-link {
  width: 216px;
  height: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border-radius: 42px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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: 1200px) {
  .header__cta-link {
    height: 48px;
    font-size: 12px;
  }
}
.header__cta-link--fee {
  text-align: center;
  background-color: #0092e5;
}
@media screen and (max-width: 1200px) {
  .header__cta-link--fee {
    display: none;
  }
}
.header__cta-link--fee:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
          box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
}
.header__cta-link--line {
  background-color: #06c755;
}
.header__cta-link--line:hover {
  -webkit-box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
          box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
}
.header__cta-line-logo {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 1200px) {
  .header__cta-line-logo {
    margin-right: 8px;
    width: 24px;
    height: 24px;
  }
}

.footer {
  height: 64px;
  position: relative;
  padding: 20px;
  background-color: #000;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.1666666667em;
  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;
}

.pageup {
  position: absolute;
  bottom: 48px;
  right: 48px;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .pageup {
    bottom: 64px;
    right: 0;
    left: 0;
    margin: 0 auto;
    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;
  }
}
.pageup__wrap {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.lp-top__hero {
  position: relative;
}
.lp-top__hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.lp-top__hero-top {
  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;
  position: relative;
  padding-block: 168px 67px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-top {
    padding-block: 127px 104px;
  }
}
.lp-top__hero-highlight {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #0092e5;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-highlight {
    font-size: 20px;
  }
}
.lp-top__hero-highlight .border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 56px;
  border: 2px solid #0092e5;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-highlight .border {
    height: 27px;
  }
}
.lp-top__hero-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  right: -69px;
  width: 57px;
  height: 35px;
  background: url("./public/img/top/bird.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-highlight::after {
    right: -51px;
    width: 37px;
    height: 23px;
  }
}
.lp-top__hero-subtitle {
  position: relative;
  margin-block: 24px 10px;
  width: 473px;
  height: 56px;
  font-size: 3.2rem;
  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: 767px) {
  .lp-top__hero-subtitle {
    margin-block: 16px 8px;
    width: 305px;
    height: 36px;
    font-size: 20px;
  }
}
.lp-top__hero-subtitle .fs24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-subtitle .fs24 {
    font-size: 16px;
  }
}
.lp-top__hero-subtitle::before, .lp-top__hero-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #06141a;
  -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
          clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.lp-top__hero-subtitle::before {
  top: 0;
}
.lp-top__hero-subtitle::after {
  bottom: 0;
}
.lp-top__hero-title {
  width: 482px;
  height: 91px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-title {
    width: 311px;
    height: 59px;
  }
}
.lp-top__hero-logo {
  margin-top: 64px;
  width: 346px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-logo {
    margin-top: 48px;
    width: 208px;
    height: 48px;
  }
}
.lp-top__hero-mv {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 275px;
  height: 298px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-mv {
    left: -4%;
    width: 89px;
    height: 96px;
  }
}
.lp-top__hero-bottom {
  gap: 24px;
  position: relative;
  padding-block: 32px;
  background-color: #003a91;
  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: 1200px) {
  .lp-top__hero-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .lp-top__hero-bottom {
    padding-block: 24px;
  }
}
.lp-top__hero-bottom::after {
  content: "";
  display: block;
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 36px solid #003a91;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-bottom::after {
    top: -28px;
  }
}
.lp-top__hero-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.lp-top__hero-feature-item {
  position: relative;
  width: 206px;
  height: 182px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #d6ca80;
  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-top__hero-feature-item {
    width: 142px;
    height: 125px;
    font-size: 14px;
  }
}
.lp-top__hero-feature-item .fs24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-feature-item .fs24 {
    font-size: 16px;
  }
}
.lp-top__hero-feature-item-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lp-top__hero-cta {
  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-top__hero-cta-link {
  width: 420px;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 42px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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-top__hero-cta-link {
    width: 343px;
    font-size: 16px;
  }
}
.lp-top__hero-cta-link--fee span, .lp-top__hero-cta-link--line span {
  position: relative;
}
.lp-top__hero-cta-link--fee span::after, .lp-top__hero-cta-link--line span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background: url("./public/img/top/arrow-cta.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lp-top__hero-cta-link--fee {
  background-color: #0092e5;
  -webkit-box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
          box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
}
.lp-top__hero-cta-link--fee span::after {
  right: -22px;
}
.lp-top__hero-cta-link--fee:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.lp-top__hero-cta-link--fee:hover span::after {
  right: -25px;
}
.lp-top__hero-cta-link--line {
  background-color: #06c755;
  -webkit-box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
          box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
}
.lp-top__hero-cta-link--line span::after {
  right: -30px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-cta-link--line span::after {
    right: -22px;
  }
}
.lp-top__hero-cta-link--line:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.lp-top__hero-cta-link--line:hover span::after {
  right: -33px;
}
@media screen and (max-width: 767px) {
  .lp-top__hero-cta-link--line:hover span::after {
    right: -25px;
  }
}
.lp-top__hero-line-logo {
  width: 56px;
  height: 56px;
}
.lp-top__problem-container {
  gap: 32px;
  padding-block: 64px 91px;
  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-top__problem-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding-block: 24px 91px;
  }
}
.lp-top__problem-image {
  width: 198px;
  height: 239px;
}
@media screen and (max-width: 767px) {
  .lp-top__problem-image {
    width: 128px;
    height: 154px;
  }
}
.lp-top__problem-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: 8px;
}
@media screen and (max-width: 767px) {
  .lp-top__problem-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.lp-top__problem-item h2 {
  padding: 12px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  border-radius: 32px;
  background-color: #d6dcdc;
}
@media screen and (max-width: 767px) {
  .lp-top__problem-item h2 {
    font-size: 14px;
  }
}
.lp-top__pricing {
  position: relative;
  background-color: #f2f6f6;
}
.lp-top__pricing::before {
  content: "";
  position: absolute;
  top: -67px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 98px;
  height: 135px;
  background: url("./public/img/top/pricing-arrow.svg") no-repeat;
}
.lp-top__pricing-container {
  padding-block: 92px 60px;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-container {
    padding-block: 92px 64px;
  }
}
.lp-top__pricing-header {
  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-top__pricing-header {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.lp-top__pricing-title h2 {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-title h2 {
    font-size: 20px;
    line-height: 1;
    text-align: end;
  }
}
.lp-top__pricing-quota {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-quota {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lp-top__pricing-quota-system {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-quota-system {
    font-size: 40px;
    line-height: 1;
  }
}
.lp-top__pricing-bubble {
  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;
  padding-left: 23px;
  width: 170px;
  height: 54px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0092e5;
  background: url("./public/img/top/pricing-bubble.svg") no-repeat;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-bubble {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 6px;
    padding-left: 0;
    width: 113px;
    height: 53px;
    font-size: 10px;
    background: url("./public/img/top/pricing-bubble-sp.svg") no-repeat;
  }
}
.lp-top__pricing-bubble .fs20 {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-bubble .fs20 {
    font-size: 16px;
  }
}
.lp-top__pricing-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  gap: 4px;
  margin: 4px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
    font-size: 16px;
  }
}
.lp-top__pricing-price span {
  display: block;
}
.lp-top__pricing-price .magenta {
  font-size: 4.8rem;
}
.lp-top__pricing-price .fs64 {
  font-size: 6.4rem;
}
.lp-top__pricing-price .oswald {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.lp-top__pricing-price::after {
  content: "※";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-price::after {
    content: "";
  }
}
.lp-top__pricing-price-top, .lp-top__pricing-price-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}
.lp-top__pricing-note {
  margin: 16px auto;
  padding: 10px 52px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #cb0051;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-note {
    padding: 10px 32px;
  }
}
.lp-top__pricing-disclaimer {
  position: relative;
  margin-inline: auto;
  padding-left: 12px;
  width: 637px;
  font-size: 1.2rem;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-disclaimer {
    padding-inline: 4%;
    width: 100%;
  }
}
.lp-top__pricing-disclaimer::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .lp-top__pricing-disclaimer::before {
    content: "";
  }
}
.lp-top__compare {
  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;
  gap: 15px;
  margin-top: 48px;
}
.lp-top__compare-text {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.lp-top__compare-text::before, .lp-top__compare-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 4px;
  height: 22px;
  background-color: #0092e5;
  border-radius: 2px;
}
.lp-top__compare-text::before {
  -webkit-transform: rotate(-26deg);
          transform: rotate(-26deg);
  left: -24px;
}
.lp-top__compare-text::after {
  -webkit-transform: rotate(26deg);
          transform: rotate(26deg);
  right: -16px;
}
.lp-top__compare-link {
  width: 420px;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #0092e5;
  border-radius: 42px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
          box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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-top__compare-link {
    width: 343px;
  }
}
.lp-top__compare-link span {
  position: relative;
}
.lp-top__compare-link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background: url("./public/img/top/arrow-cta.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lp-top__compare-link:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.lp-top__compare-link:hover span::after {
  right: -33px;
}
.lp-top__property {
  background-color: #f2f6f6;
}
.lp-top__property--comparison {
  padding-block: 16px 96px;
}
@media screen and (max-width: 767px) {
  .lp-top__property--comparison {
    padding-block: 14px 96px;
  }
}
.lp-top__property--comparison .lp-top__property-container::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .lp-top__property--comparison .lp-top__property-container {
    padding: 24px 16px 48px;
  }
}
.lp-top__property--comparison .lp-top__property-header {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lp-top__property--comparison .lp-top__property-header {
    margin-bottom: 24px;
  }
}
.lp-top__property-container {
  position: relative;
  margin-left: 74px;
  padding: 48px 77px 64px 64px;
  max-width: 1126px;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-container {
    margin-left: 0;
    padding: 24px 16px 104px;
    max-width: 100%;
  }
}
.lp-top__property-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 461px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(80%, #fff), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 80%, #fff 100%);
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-container::before {
    height: 477px;
  }
}
.lp-top__property-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.lp-top__property-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-left: -138px;
  padding: 24px 64px 24px 74px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  color: #fff;
  background-color: #0092e5;
}
@media screen and (max-width: 767px) {
  .lp-top__property-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    margin-left: -32px;
    padding: 24px 0 24px 32px;
    width: calc(100% + 32px);
    font-size: 20px;
  }
}
.lp-top__property-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-left: 74px solid transparent;
  border-top: 66px solid #2e6ca8;
}
@media screen and (max-width: 767px) {
  .lp-top__property-title::after {
    border-left: 16px solid transparent;
    border-top: 14px solid #2e6ca8;
  }
}
.lp-top__property-desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp-top__property-desc {
    font-size: 14px;
    line-height: 1.7142857143em;
    text-align: start;
  }
}
.lp-top__property-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 1200px) {
  .lp-top__property-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp-top__property-list {
    gap: 24px;
  }
}
.lp-top__property-left, .lp-top__property-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-left, .lp-top__property-right {
    gap: 24px;
  }
}
.lp-top__property-item--spotlight .lp-top__property-detail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.lp-top__property-item--spotlight .lp-top__property-image {
  width: 100%;
  height: auto;
}
.lp-top__property-item--spotlight .lp-top__property-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 17%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lp-top__property-item--spotlight .lp-top__property-info {
    grid-template-columns: auto auto;
    gap: 4px;
  }
}
.lp-top__property-item-title {
  margin-bottom: 16px;
  padding-left: 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #003a91;
  border-left: 4px solid #003a91;
}
@media screen and (max-width: 767px) {
  .lp-top__property-item-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.lp-top__property-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.6%;
}
@media screen and (max-width: 767px) {
  .lp-top__property-detail {
    gap: 8px;
  }
}
.lp-top__property-image {
  width: 213px;
  height: 141px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-image {
    width: 147px;
    height: 98px;
  }
}
.lp-top__property-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 44.93%;
}
@media screen and (max-width: 767px) {
  .lp-top__property-info {
    gap: 4px;
    width: 100%;
  }
}
.lp-top__property-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.lp-top__property-info-item--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .lp-top__property-info-item--space-between {
    max-width: 204px;
  }
}
.lp-top__property-info-label {
  min-width: 80px;
  height: 24px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #d6d6d6;
  border-radius: 4px;
  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-top__property-info-label {
    min-width: 64px;
    font-size: 10px;
  }
}
.lp-top__property-info-detail {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .lp-top__property-info-detail {
    font-size: 14px;
  }
}
.lp-top__property-info-detail .oswald {
  margin-right: 4px;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-top__property-info-detail .oswald {
    font-size: 20px;
  }
}
.lp-top__property-link {
  position: absolute;
  bottom: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 420px;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #003a91;
  border-radius: 42px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 70, 175, 0.3);
          box-shadow: 0 10px 20px rgba(0, 70, 175, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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-top__property-link {
    bottom: 64px;
    width: 311px;
  }
}
.lp-top__property-link span {
  position: relative;
}
.lp-top__property-link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background: url("./public/img/top/arrow-cta.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lp-top__property-link:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.lp-top__property-link:hover span::after {
  right: -33px;
}
.lp-top__property-comparison-image {
  margin-inline: auto;
  max-width: 579px;
}
.lp-top__property-comparison-container {
  margin: 12px auto 24px;
  padding: 16px 0;
  max-width: 578px;
  background-color: #edf3f6;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-comparison-container {
    margin: 24px auto;
  }
}
.lp-top__property-comparison-note {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .lp-top__property-comparison-note {
    font-size: 10px;
    line-height: 2em;
  }
}
.lp-top__property-comparison-note .price {
  display: inline-block;
  margin-right: 24px;
  width: 139px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-comparison-note .price {
    margin-right: 16px;
    width: 116px;
  }
}
.lp-top__property-comparison-note .fee {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .lp-top__property-comparison-note .fee {
    margin-left: 16px;
  }
}
.lp-top__property-comparison-disclaimer {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-top__property-comparison-disclaimer {
    font-size: 16px;
    line-height: 1.625em;
  }
}
.lp-top__service {
  margin-top: 27px;
  background: url("./public/img/top/bg-hero.png") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .lp-top__service {
    margin-top: 0;
  }
}
.lp-top__service-container {
  padding-block: 69px 162px;
}
@media screen and (max-width: 767px) {
  .lp-top__service-container {
    padding-block: 96px 48px;
  }
}
.lp-top__service-heading {
  font-size: 4.8rem;
  text-align: center;
  color: #003a91;
}
@media screen and (max-width: 767px) {
  .lp-top__service-heading {
    font-size: 32px;
  }
}
.lp-top__service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .lp-top__service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 8px;
  }
}
.lp-top__service-item-image {
  margin-inline: auto;
  max-width: 270px;
}
.lp-top__service-title {
  margin-block: 24px 16px;
  font-size: 3.2rem;
  text-align: center;
  color: #003a91;
}
@media screen and (max-width: 767px) {
  .lp-top__service-title {
    font-size: 20px;
  }
}
.lp-top__service-desc {
  font-size: 1.6rem;
  line-height: 1.625em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-top__service-desc {
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.lp-top__purchase-note {
  margin: 80px auto 30px;
  width: 568px;
  height: 42px;
  font-size: 2rem;
  font-weight: 700;
  color: #003a91;
  background-color: #d6d6d6;
  border-radius: 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-top__purchase-note {
    margin: 80px auto 24px;
    width: 343px;
    height: 42px;
    font-size: 14px;
  }
}
.lp-top__purchase-title, .lp-top__purchase-desc {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-top__purchase-title, .lp-top__purchase-desc {
    font-size: 20px;
    line-height: 1.5em;
  }
}
.lp-top__purchase-title {
  margin-bottom: 33px;
}
.lp-top__purchase-title .highlight {
  position: relative;
}
.lp-top__purchase-title .highlight::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 230px;
  height: 5px;
  background: url("./public/img/top/dot.svg") no-repeat;
}
@media screen and (max-width: 767px) {
  .lp-top__purchase-title .highlight::after {
    width: 145px;
    background: url("./public/img/top/dot-sp.svg") no-repeat;
  }
}

.simulator {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.simulator__inputs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 3.58%;
  border-radius: 16px 16px 0 0;
  padding: 32.5px 2%;
  background: #edf3f6;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .simulator__inputs {
    padding: 24px 2%;
  }
}
.simulator__inputs::before {
  content: "";
  position: absolute;
  bottom: -30px;
  border-style: solid;
  border-width: 41px 20px 0;
  border-color: #edf3f6 transparent transparent transparent;
  width: 0;
  height: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .simulator__inputs::before {
    left: 40%;
  }
}
.simulator__inputs-price {
  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) {
  .simulator__inputs-price {
    width: 100%;
  }
}
.simulator__form-input {
  margin: 0 8px 0 14px;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .simulator__form-input {
    width: 128px;
    margin: 0 8px 0 16px;
  }
}
.simulator__form-input input {
  border: 2px solid #0092e5;
  border-radius: 8px;
  padding: 11.5px 6%;
  width: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1.15625em;
  text-align: right;
  background: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
          box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
}
@media screen and (max-width: 767px) {
  .simulator__form-input input {
    padding: 17px 8px;
    font-size: 20px;
    line-height: 1.3703703704em;
  }
}
.simulator__form-input input::-webkit-input-placeholder {
  color: #d6d6d6;
}
.simulator__form-input input::-moz-placeholder {
  color: #d6d6d6;
}
.simulator__form-input input:-ms-input-placeholder {
  color: #d6d6d6;
}
.simulator__form-input input::-ms-input-placeholder {
  color: #d6d6d6;
}
.simulator__form-input input::placeholder {
  color: #d6d6d6;
}
.simulator__compute {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid transparent;
  border-radius: 42px;
  padding: 26px 2%;
  width: 100%;
  max-width: 189px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.25em;
  color: #fff;
  background: #cb0051;
  -webkit-box-shadow: 0 10px 20px rgba(203, 0, 81, 0.3);
          box-shadow: 0 10px 20px rgba(203, 0, 81, 0.3);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.simulator__compute:hover {
  cursor: pointer;
  border-color: #cb0051;
  color: #cb0051;
  background: #fff;
}
.simulator__compute:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(7404%) hue-rotate(318deg) brightness(95%) contrast(111%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(7404%) hue-rotate(318deg) brightness(95%) contrast(111%);
}
.simulator__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .simulator__text {
    font-size: 16px;
    line-height: 1.875em;
  }
}
.simulator__text--label {
  font-size: 2.4rem;
  line-height: 1.2083333333em;
}
@media screen and (max-width: 767px) {
  .simulator__text--label {
    font-size: 20px;
    line-height: 1.45em;
  }
}
.simulator__text--currency {
  font-size: 3.2rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .simulator__text--currency {
    font-size: 20px;
    line-height: 2.4em;
  }
}
.simulator__text--paragraph {
  font-size: 1.6rem;
  line-height: 1.625em;
}
.simulator__result-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .simulator__result-price {
    margin-top: 5px;
  }
}
.simulator__price {
  display: block;
  margin: 0 10px;
  font-size: 8rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .simulator__price {
    font-size: 48px;
    margin: 0 8px 0 0;
  }
}
.simulator__price--torino {
  color: #cb0051;
}
.simulator__price.fs-64 {
  font-size: 6.4rem;
}
@media screen and (max-width: 767px) {
  .simulator__price.fs-64 {
    font-size: 40px;
  }
}
.simulator__results-column {
  display: grid;
  grid-template-columns: 54.17% 45.83%;
}
.simulator__results-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border: 4px solid #0092e5;
  padding: 45px 2%;
}
@media screen and (max-width: 767px) {
  .simulator__results-content {
    -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;
    padding: 25px 2% 15px;
  }
}
.simulator__results-content:first-child {
  border-radius: 0 0 0 16px;
}
.simulator__results-content--original {
  border-radius: 0 0 16px;
  border-color: #bcbcbc;
}
.simulator__results-title {
  padding: 22.5px 2%;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2083333333em;
  text-align: center;
  color: #fff;
  background: #0092e5;
}
@media screen and (max-width: 767px) {
  .simulator__results-title {
    padding: 25px 2% 15px;
    font-size: 16px;
    line-height: 1.5em;
  }
}
.simulator__results-title--original {
  color: #06141a;
  background: #bcbcbc;
}
.simulator__results-notice {
  display: none;
  border: 4px solid #003a91;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  padding: 23px 2%;
  text-align: center;
}
.simulator__contact-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  margin: 20px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6666666667em;
  color: #003a91;
}
@media screen and (max-width: 767px) {
  .simulator__contact-link {
    font-size: 20px;
  }
}
.simulator__contact-link img {
  position: absolute;
  top: 57%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(1686%) hue-rotate(217deg) brightness(95%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(1686%) hue-rotate(217deg) brightness(95%) contrast(101%);
}
.simulator__contact-link:hover {
  text-decoration: underline;
}

.lp-mid__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp-mid__container {
    max-width: 100%;
  }
}
.lp-mid__simulator {
  margin-top: -104px;
  padding-bottom: 92px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .lp-mid__simulator {
    margin-top: 0;
  }
}
.lp-mid__simulator-head-blk {
  position: relative;
  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;
  background: url("./public/img/lp-middle/siimulator-head-bg.svg") no-repeat center/cover;
  padding-block: 160px;
  width: 100%;
  height: 180px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (max-width: 475px) {
  .lp-mid__simulator-head-blk {
    background: url("./public/img/lp-middle/siimulator-head-bg-sp.svg") no-repeat center/cover;
    padding-block: 55px;
    height: 122px;
    margin-bottom: 24px;
  }
}
.lp-mid__simulator-head-blk::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 63px 36px 0;
  border-color: #003a91 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 475px) {
  .lp-mid__simulator-head-blk::after {
    border-width: 28px 16px 0;
  }
}
.lp-mid__simulator-heading {
  position: relative;
  width: 100%;
  max-width: 590px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .lp-mid__simulator-heading {
    max-width: 48.5%;
    min-width: 182px;
  }
}
.lp-mid__simulator-label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 5px 24px 6px;
  color: #003a91;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
  text-align: center;
  border: 2px solid #003a91;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .lp-mid__simulator-label {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.lp-mid__simulator-title {
  color: #003a91;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.1666666667em;
  text-align: center;
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .lp-mid__simulator-title {
    font-size: 32px;
    line-height: 1.5em;
    margin-bottom: 32px;
  }
}
.lp-mid__simulator-point-blk {
  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;
  gap: 16px;
  margin-top: 33px;
}
.lp-mid__simulator-point-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70px;
  height: 70px;
}
.lp-mid__simulator-point-desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp-mid__simulator-point-desc {
    font-size: 16px;
  }
}
.lp-mid__simulator-point-desc .blue {
  color: #0092e5;
}
.lp-mid__property {
  position: relative;
  background: #edf3f6;
  padding-block: 72px 64px;
}
@media screen and (max-width: 767px) {
  .lp-mid__property {
    padding-block: 48px 64px;
  }
}
.lp-mid__property::before {
  content: "";
  background: url("./public/img/lp-middle/triangle.svg") no-repeat center/contain;
  width: 128px;
  height: 48px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp-mid__property::before {
    width: 64px;
    height: 24px;
  }
}
.lp-mid__property-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .lp-mid__property-row {
    gap: 24px;
  }
}
.lp-mid__property-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -101px;
  width: 100%;
  max-width: 374px;
}
@media screen and (max-width: 767px) {
  .lp-mid__property-img {
    margin-top: unset;
    max-width: 128px;
  }
}
.lp-mid__property-heading {
  color: #003a91;
  font-size: 4.8rem;
  line-height: 1.3333333333em;
  margin-bottom: 24px;
}
@media screen and (max-width: 1080px) {
  .lp-mid__property-heading {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-mid__property-heading {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 12px;
  }
}
.lp-mid__property-text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6666666667em;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .lp-mid__property-text {
    font-size: 14px;
    line-height: 1.7142857143em;
    margin-bottom: 24px;
  }
}
.lp-mid__cta-blk {
  position: relative;
  background: #003a91;
  padding: 48px;
  border-radius: 16px;
  margin-top: -16px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .lp-mid__cta-blk {
    padding: 40px 16px;
    border-radius: 8px;
    margin-top: 0;
  }
}
.lp-mid__cta-blk.white {
  background: #fff;
}
.lp-mid__cta-blk.white .lp-mid__cta-heading {
  color: #003a91;
}
.lp-mid__cta-blk.white .lp-mid__cta-btn {
  border: none;
}
.lp-mid__cta-heading {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .lp-mid__cta-heading {
    margin-bottom: 24px;
  }
}
.lp-mid__cta-row {
  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;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .lp-mid__cta-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp-mid__cta-btn {
  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;
  background: #0092e5;
  color: #fff;
  width: 100%;
  max-width: 420px;
  height: 80px;
  padding: 14px;
  outline: none;
  border: 3px solid #fff;
  border-radius: 42px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
          box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (max-width: 767px) {
  .lp-mid__cta-btn {
    max-width: 311px;
    border-width: 2px;
  }
}
.lp-mid__cta-btn span {
  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;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp-mid__cta-btn span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-mid__cta-btn span {
    font-size: 16px;
  }
}
.lp-mid__cta-btn span::after {
  content: "";
  background: url("./public/img/lp-middle/caret.svg") no-repeat center/contain;
  width: 8px;
  height: 10px;
  margin-left: 24px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (max-width: 980px) {
  .lp-mid__cta-btn span::after {
    margin-left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lp-mid__cta-btn span::after {
    margin-left: 16px;
  }
}
.lp-mid__cta-btn.line {
  background: #06c755;
  -webkit-box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
          box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
}
.lp-mid__cta-btn.line span::before {
  content: "";
  background: url("./public/img/lp-middle/line-icon.svg") no-repeat center/contain;
  width: 56px;
  height: 56px;
  margin-right: 8px;
}
.lp-mid__cta-btn:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.lp-mid__cta-btn:hover span::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.lp-mid__reasons {
  padding-block: 48px 96px;
  background: -webkit-gradient(linear, left top, right top, from(#0092e5), to(#3ab8ff));
  background: linear-gradient(to right, #0092e5, #3ab8ff);
  overflow: hidden;
}
.lp-mid__reasons-heading {
  width: 100%;
  max-width: 593px;
  margin-inline: auto;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .lp-mid__reasons-heading {
    max-width: 343px;
    margin-bottom: 16px;
  }
}
.lp-mid__reasons-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .lp-mid__reasons-text {
    font-size: 16px;
    line-height: 1.625em;
  }
}
.lp-mid__reasons-splide {
  margin-top: 96px;
}
.lp-mid__reasons-splide .splide__track {
  overflow: visible !important;
}
.lp-mid__reasons-splide .splide__pagination {
  bottom: -35px;
  gap: 15px;
}
.lp-mid__reasons-splide .splide__pagination__page {
  background: #cbe5f2;
  margin: 0;
  opacity: 1;
}
.lp-mid__reasons-splide .splide__pagination__page.is-active {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  background: #003a91;
}
.lp-mid__reasons-card {
  position: relative;
  width: 100%;
  max-width: 373px;
  padding: 54px 19px 27px;
  background: #fff;
  border: 5px solid #cbe5f2;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 58, 145, 0.3);
          box-shadow: 0 10px 20px rgba(0, 58, 145, 0.3);
  min-height: 292px;
}
@media screen and (max-width: 767px) {
  .lp-mid__reasons-card {
    max-width: 279px;
    padding: 55px 24px 30px;
    border-radius: 5px;
  }
}
.lp-mid__reasons-card::before {
  content: attr(data-index);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #edf3f6;
  font: 500 12.8rem "Oswald", sans-serif;
  z-index: 0;
}
.lp-mid__reasons-content {
  position: relative;
  z-index: 2;
}
.lp-mid__reasons-card-icon-blk {
  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;
  position: absolute;
  top: -48.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 97px;
  height: 97px;
  background: #cbe5f2;
  border-radius: 50%;
}
.lp-mid__reasons-card-icon {
  width: 64px;
  height: 64px;
}
.lp-mid__reasons-card-heading {
  color: #003a91;
  font-size: 3.2rem;
  line-height: 1.25em;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .lp-mid__reasons-card-heading {
    font-size: 20px;
    line-height: 1.5em;
  }
}
.lp-mid__reasons-card-desc {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .lp-mid__reasons-card-desc {
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.lp-mid__service {
  padding-block: 64px 136px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service {
    padding-block: 64px 141px;
  }
}
.lp-mid__service-heading {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.3333333333em;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-heading {
    font-size: 32px;
    line-height: 1.5em;
    margin-bottom: 32px;
  }
}
.lp-mid__service-intro {
  font-size: 1.6rem;
  line-height: 1.625em;
  text-align: center;
}
.lp-mid__service-list {
  margin-top: 39px;
  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;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-list {
    margin-top: 48px;
    gap: 28px;
  }
}
.lp-mid__service-blk {
  position: relative;
  background: #edf3f6;
  padding: 24px 10.5%;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-blk {
    padding: 24px 4.6%;
  }
}
.lp-mid__service-blk::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  border-style: solid;
  border-width: 16px 8px 0;
  border-color: #b1d8eb transparent transparent transparent;
}
.lp-mid__service-blk:last-child::after {
  display: none;
}
.lp-mid__service-blk-list {
  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: 48px;
}
.lp-mid__service-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-mid__service-item::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: -33px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  border-style: solid;
  border-width: 16px 8px 0;
  border-color: #b1d8eb transparent transparent transparent;
}
.lp-mid__service-item:last-child::after {
  display: none;
}
.lp-mid__service-step-blk {
  margin-right: 48px;
  color: #0092e5;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-step-blk {
    margin-right: 29px;
  }
}
.lp-mid__service-step {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-step {
    font-size: 14px;
    line-height: 1.8571428571em;
  }
}
.lp-mid__service-step-num {
  display: block;
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  margin-top: -18px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-step-num {
    font-size: 32px;
    margin-top: -12px;
  }
}
.lp-mid__service-icon-blk {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  background: #fff;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-icon-blk {
    width: 72px;
    height: 72px;
  }
}
.lp-mid__service-icon {
  width: 56px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-icon {
    width: 40px;
  }
}
.lp-mid__service-title {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-title {
    font-size: 20px;
    line-height: 1.5em;
  }
}
.lp-mid__service-desc {
  font-size: 1.6rem;
  line-height: 1.625em;
}
.lp-mid__service-box {
  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;
  width: 100%;
  min-height: 80px;
  padding: 20px;
  border: 2px solid #003a91;
  border-radius: 8px;
  margin-top: 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-box {
    padding: 10px;
  }
}
.lp-mid__service-box.linear {
  background-color: #003a91;
  opacity: 1;
  background-image: repeating-linear-gradient(-70deg, #003e9b, #003e9b 15px, #003a91 15px, #003a91 30px);
}
.lp-mid__service-box.linear .lp-mid__service-box-text {
  color: #fff;
}
.lp-mid__service-box-text {
  position: relative;
  display: block;
  color: #003a91;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-box-text {
    font-size: 18px;
  }
}
.lp-mid__service-box-text .yellow {
  color: #ffef8b;
}
.lp-mid__service-box-text .lg {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-box-text .lg {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .lp-mid__service-box-text.warning {
    padding-block: 6px 14px;
  }
}
.lp-mid__service-box-text.warning::before {
  content: "!";
  width: 32px;
  height: 24px;
  background: #ffef8b;
  color: #003a91;
  border-radius: 50%;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  .lp-mid__service-box-text.warning::before {
    display: block;
    margin-inline: auto;
    margin-bottom: 8px;
  }
}
.lp-mid__service-note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6666666667em;
}
.lp-mid__consult {
  background: #003a91;
  padding-block: 25px 66.5px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .lp-mid__consult {
    padding-block: 0 48px;
  }
}
.lp-mid__consult .lp-mid__cta-blk {
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  .lp-mid__consult .lp-mid__cta-blk {
    margin-top: 0;
  }
}
.lp-mid__consult-head-blk {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding-right: 4.5%;
}
@media screen and (max-width: 767px) {
  .lp-mid__consult-head-blk {
    -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;
    gap: 24px;
    padding-right: 0;
  }
}
.lp-mid__consult-image {
  width: 100%;
  max-width: 355px;
  margin-top: -130px;
}
@media screen and (max-width: 767px) {
  .lp-mid__consult-image {
    max-width: 155px;
    margin-top: -75px;
  }
}
.lp-mid__consult-heading {
  max-width: 720px;
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.3333333333em;
  margin-bottom: 70px;
}
@media screen and (max-width: 1260px) {
  .lp-mid__consult-heading {
    font-size: clamp(3.6rem, 3.8vw, 4.8rem);
  }
}
@media screen and (max-width: 767px) {
  .lp-mid__consult-heading {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
  }
}

.top-lw__title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-lw__title {
    font-size: 32px;
  }
}
.top-lw__bubble {
  position: relative;
  margin: 0 auto 34px;
  width: 100%;
  max-width: 729px;
  padding: 26px 31px 26px 44px;
  background-color: #fff;
  color: #003a91;
  border-radius: 16px;
  border: 4px solid #cbe5f2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-lw__bubble {
    margin: 0 auto 51px;
    padding: 28px 20px 20px;
  }
}
.top-lw__bubble::before, .top-lw__bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-lw__bubble::before {
  bottom: -29px;
  border-left: 16px solid transparent;
  border-right: 15px solid transparent;
  border-top: 27px solid #cbe5f2;
}
.top-lw__bubble::after {
  bottom: -22px;
  border-left: 15px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid #fff;
}
.top-lw__bubble-icon {
  position: absolute;
  top: -28px;
  left: 0;
  margin: 0 auto;
  right: 0;
}
.top-lw__bubble-txt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 767px) {
  .top-lw__bubble-txt {
    font-size: 16px;
  }
}
.top-lw__tstm {
  padding: 87px 0 64px;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm {
    padding: 88px 0 64px;
  }
}
.top-lw__tstm-splide {
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-splide {
    padding: 0;
    padding-bottom: 88px;
  }
}
.top-lw__tstm-splide .splide__arrow {
  opacity: 9;
  width: 64px;
  height: 64px;
  background-color: #0092e5;
  background-repeat: no-repeat;
  background-size: 13px 24px;
  background-position: center;
}
.top-lw__tstm-splide .splide__arrow--prev {
  background-image: url("./public/icon/arrow-left.svg");
  left: 0;
}
.top-lw__tstm-splide .splide__arrow--next {
  background-image: url("./public/icon/arrow-right.svg");
  right: 0;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-splide .splide__arrow--prev,
  .top-lw__tstm-splide .splide__arrow--next {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-splide .splide__arrows {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 24px;
    gap: 8px;
    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;
  }
}
.top-lw__tstm-splide .splide__arrow svg {
  display: none;
}
.top-lw__tstm-splide .splide__pagination__page {
  margin: 8px;
  background-color: #cbe5f2;
}
.top-lw__tstm-splide .splide__pagination__page.is-active {
  background-color: #0092e5;
  -webkit-transform: none;
          transform: none;
}
.top-lw__tstm-splide .splide__pagination {
  bottom: -8px;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-splide .splide__pagination {
    bottom: -8px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top-lw__tstm-track .splide__track {
  overflow: visible;
}
.top-lw__tstm-list {
  padding-bottom: 56px !important;
}
.top-lw__tstm-slide {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 48px;
  max-width: 1024px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(6, 20, 26, 0.1);
          box-shadow: 0 10px 20px rgba(6, 20, 26, 0.1);
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-slide {
    padding: 24px 24px 61px;
  }
}
.top-lw__tstm-slide::before {
  content: "";
  top: 0;
  left: 0;
  right: auto;
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("./public/icon/border.svg") center/contain no-repeat;
}
.top-lw__tstm-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-bottom: 15px;
  }
}
.top-lw__tstm-img {
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-img {
    width: 96px;
    height: 96px;
  }
}
.top-lw__tstm-info-txt {
  display: block;
  margin-bottom: 14px;
  position: relative;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #0092e5;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-info-txt {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.top-lw__tstm-info-txt::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 30px;
  background-color: #0092e5;
}
.top-lw__tstm-heading {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-heading {
    font-size: 16px;
  }
}
.top-lw__tstm-txt {
  display: block;
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .top-lw__tstm-txt {
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.top-lw__faq {
  background-color: #f8f8f8;
  padding: 64px 0 128px;
}
@media screen and (max-width: 767px) {
  .top-lw__faq {
    padding: 66px 0 128px;
  }
}
.top-lw__faq-list {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-list {
    margin-top: 22px;
  }
}
.top-lw__faq-item {
  padding: 34px 48px 26px;
  min-height: 85px;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-item {
    padding: 28px 16px 24px;
    min-height: initial;
  }
}
.top-lw__faq-item.active .top-lw__faq-header-wrap {
  padding-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-item.active .top-lw__faq-header-wrap {
    padding-bottom: 14px;
  }
}
.top-lw__faq-item.active .top-lw__faq-header-wrap .top-lw__faq-icon {
  top: 30%;
}
.top-lw__faq-item.active .top-lw__faq-header-wrap .top-lw__faq-icon span:first-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}
.top-lw__faq-item.active .top-lw__faq-header-wrap .top-lw__faq-icon span:last-child {
  background-color: #0092e5;
}
.top-lw__faq-item.active .top-lw__faq-content {
  display: block;
  max-height: 500px;
}
.top-lw__faq-item.active .top-lw__faq-content::after {
  opacity: 1;
}
.top-lw__faq-header-wrap {
  cursor: pointer;
  position: relative;
  padding-right: 97px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-header-wrap {
    gap: 15px;
    padding-right: 40px;
  }
}
.top-lw__faq-title {
  position: relative;
  padding-left: 64px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-title {
    font-size: 16px;
    padding-left: 40px;
  }
}
.top-lw__faq-title::before {
  content: "Q";
  position: absolute;
  top: -7px;
  left: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: #0092e5;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 2em;
  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) {
  .top-lw__faq-title::before {
    top: -2px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.top-lw__faq-icon {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  width: 32px;
  height: 32px;
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-lw__faq-icon span {
  position: absolute;
  display: block;
  background-color: #0092e5;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.top-lw__faq-icon span:first-child {
  width: 4px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-icon span:first-child {
    width: 3px;
    height: 20px;
  }
}
.top-lw__faq-icon span:last-child {
  width: 24px;
  height: 4px;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-icon span:last-child {
    width: 19px;
    height: 3px;
  }
}
.top-lw__faq-bg {
  padding-inline: 72px 48px;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-bg {
    padding-inline: 0;
  }
}
.top-lw__faq-inner {
  padding: 24px;
}
.top-lw__faq-content {
  background-color: #edf3f6;
  border-radius: 8px;
  position: relative;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-lw__faq-content-txt {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top-lw__faq-content-txt {
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.top-lw__cnt {
  padding: 64px 0 128px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#498ff8), to(#003e9b));
  background-image: linear-gradient(to bottom, #498ff8, #003e9b);
}
.top-lw__cnt--complete {
  margin-top: 88px;
  background-image: none;
  background-color: #fff;
}
.top-lw__cnt-desc {
  display: block;
  margin: 32px 0 48px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.625em;
  color: #fff;
}
.top-lw__form {
  margin-top: 48px;
  background-color: #edf3f6;
  border-radius: 16px;
  padding: 64px 164px;
}
@media screen and (max-width: 767px) {
  .top-lw__form {
    padding: 64px 16px;
  }
}
.top-lw__form-steps-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-lw__form-steps-wrap {
    max-width: initial;
  }
}
.top-lw__cnt-wrap {
  margin-top: 32px;
  width: 100%;
}
.top-lw__cnt-wrap:first-child {
  margin-top: 0;
}
.top-lw__cnt-item {
  font-size: 1.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-lw__cnt-item {
    width: 100%;
  }
}
.top-lw__cnt-item:first-child {
  margin-top: 0;
}
.top-lw__cnt-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top-lw__cnt-item-title {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.top-lw__cnt-item-title::after {
  content: "必須";
  width: 3.6rem;
  height: 2.3rem;
  border-radius: 3px;
  background-color: #cb0051;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-lw__cnt-item-title::after {
    font-size: 1.3rem;
  }
}
.top-lw__cnt-item.optional .top-lw__cnt-item-title::after {
  display: none;
}
.top-lw__cnt-item-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
.top-lw__cnt-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top-lw__cnt-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-lw__cnt-radio [type=radio] {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 50% !important;
}
.top-lw__cnt-radio [type=radio]::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background-color: #0092e5;
  border-radius: 50%;
}
.top-lw__cnt-radio [type=radio]:checked::after {
  opacity: 1;
}
.top-lw__cnt-radio label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  cursor: pointer;
}
.top-lw__cnt-txtbox, .top-lw__cnt-txtarea {
  width: 100%;
  height: 48px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding-left: 15px;
}
.top-lw__cnt-txtbox::-webkit-input-placeholder, .top-lw__cnt-txtarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #d6d6d6;
}
.top-lw__cnt-txtbox::-moz-placeholder, .top-lw__cnt-txtarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #d6d6d6;
}
.top-lw__cnt-txtbox:-ms-input-placeholder, .top-lw__cnt-txtarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #d6d6d6;
}
.top-lw__cnt-txtbox::-ms-input-placeholder, .top-lw__cnt-txtarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #d6d6d6;
}
.top-lw__cnt-txtbox::placeholder, .top-lw__cnt-txtarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #d6d6d6;
}
.top-lw__cnt-txtarea {
  font-family: "Noto Sans JP", sans-serif;
  height: 128px;
  padding: 15px;
  resize: none;
}
.top-lw__form-chk-wrap {
  margin: 0 auto;
}
.top-lw__count-blk {
  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;
}
.top-lw__count-list {
  counter-reset: case;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .top-lw__count-list {
    gap: 48px;
  }
}
@media screen and (max-width: 365px) {
  .top-lw__count-list {
    gap: 32px;
  }
}
.top-lw__count-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: case;
}
.top-lw__count-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 74px;
  width: 45px;
  height: 4px;
  background-image: url("./public/icon/dotted.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: invert(88%) sepia(0%) saturate(0%) hue-rotate(173deg) brightness(93%) contrast(90%);
          filter: invert(88%) sepia(0%) saturate(0%) hue-rotate(173deg) brightness(93%) contrast(90%);
}
@media screen and (max-width: 767px) {
  .top-lw__count-item:not(:last-child)::after {
    width: 34px;
    left: 73px;
  }
}
@media screen and (max-width: 365px) {
  .top-lw__count-item:not(:last-child)::after {
    left: 69px;
  }
}
.top-lw__count-item::before {
  content: "" counter(case, decimal-leading-zero);
  position: absolute;
  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;
  width: 24px;
  height: 24px;
  background-color: #727171;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
}
.top-lw__count-item--active::before {
  content: "" counter(case, decimal-leading-zero);
  position: absolute;
  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;
  width: 24px;
  height: 24px;
  background-color: #0092e5;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
}
.top-lw__count-item--active span {
  color: #000;
}
.top-lw__count-item--active::after {
  -webkit-filter: none !important;
          filter: none !important;
}
.top-lw__form-complete {
  text-align: center;
}
.top-lw__form-title {
  display: block;
  margin-bottom: 20px;
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .top-lw__form-title {
    font-size: 30px;
  }
}
.top-lw__form-txt {
  font-size: 1.6rem;
  font-weight: 500;
}
.top-lw__count-txt {
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 34px;
  color: #727171;
}
.top-lw__notice {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
  padding: 8px 4px 20px 20px;
  height: 128px;
  overflow-y: auto;
  overflow-x: hidden;
}
.top-lw__notice-inner {
  position: relative;
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 767px) {
  .top-lw__notice-inner {
    padding-right: 20px;
  }
}
.top-lw__notice-inner::-webkit-scrollbar {
  position: relative;
  top: 101px;
  width: 3px;
}
.top-lw__notice-inner::-webkit-scrollbar-thumb {
  background-color: #000;
  min-height: 80px;
  border-radius: 1px;
}
.top-lw__notice-txt {
  font-size: 1.2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6666666667em;
}
.top-lw__opr {
  position: relative;
  background-color: #edf3f6;
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .top-lw__opr {
    padding: 64px 0 229px;
  }
}
.top-lw__opr-txt {
  margin: 32px 0 48px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.top-lw__opr-img {
  display: block;
  margin: 0 auto;
}
.top-lw__opr-container {
  margin-top: 24px;
}
.top-lw__opr-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  background-color: #fff;
  padding: 14px;
}
@media screen and (max-width: 767px) {
  .top-lw__opr-row {
    gap: 28px;
  }
}
.top-lw__opr-row:nth-child(even) {
  background-color: #edf3f6;
}
.top-lw__opr-title, .top-lw__opr-info {
  width: 100%;
}
.top-lw__opr-title {
  text-align: right;
  max-width: 270px;
}
@media screen and (max-width: 767px) {
  .top-lw__opr-title {
    max-width: 100px;
  }
}
.top-lw__opr-info {
  max-width: 393px;
}
@media screen and (max-width: 767px) {
  .top-lw__opr-info {
    max-width: 190px;
  }
}
.top-lw__row-txt {
  font-size: 1.4rem;
  line-height: 1.4285714286em;
}
.top-lw__btn-wrap {
  margin-top: 46px;
  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;
  gap: 30px;
}
.top-lw__btn {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
  width: 300px;
  height: 80px;
  border-radius: 42px;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #0092e5;
  -webkit-box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
          box-shadow: 0 10px 20px rgba(0, 161, 233, 0.3);
}
.top-lw__btn::before {
  content: "";
  position: absolute;
  inset: 8px 30px 2px auto;
  margin: auto;
  display: block;
  width: 7px;
  height: 14px;
  background-image: url("./public/icon/btn-arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-lw__btn:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.top-lw__btn:hover::before {
  inset: 8px 27px 2px auto;
}
.top-lw__btn--inquries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  background-color: #06c755;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 1.6rem;
  line-height: 1.3125em;
}
.top-lw__btn--inquries:hover {
  -webkit-box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
          box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
}
.top-lw__btn--return::before {
  display: none;
}
.top-lw__btn--disabled {
  pointer-events: none;
  opacity: 0.5;
}

.overflow {
  overflow: hidden;
}

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

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

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

.royalblue {
  color: #003a91;
}

.cyan {
  color: #0092e5;
}

.magenta {
  color: #cb0051;
}

.cream {
  color: #ffef8b;
}

.white {
  color: #fff;
}

.anchor {
  display: block;
  position: relative;
  top: -64px;
  visibility: hidden;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.wpcf7-list-item {
  position: relative;
}

.wpcf7-list-item [type=checkbox] {
  position: absolute;
  opacity: 0;
}

.wpcf7-list-item [type=checkbox] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}

.wpcf7-list-item [type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #d6d6d6;
  background: #fff;
  border-radius: 4px;
}

.wpcf7-list-item [type=checkbox] + .wpcf7-list-item-label::after {
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 9px;
  width: 3px;
  border-bottom: 3px solid #0092e5;
  border-right: 3px solid #0092e5;
  position: absolute;
  top: 5px;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-radio .wpcf7-list-item {
  margin: 0 0 0 4px !important;
}

.wpcf7-checkbox .wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-spinner {
  display: none !important;
}