@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: #333;
  scroll-behavior: smooth;
}

picture,
img {
  display: block;
}

.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;
}

.btn {
  position: relative;
  width: 480px;
  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) {
  .btn {
    width: 100%;
    max-width: 480px;
  }
}
.btn:has(.btn__caption) {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .btn:has(.btn__caption) {
    padding-top: 10px;
  }
}
.btn:hover .btn__inner {
  background-size: 300% 100%;
  background-position: right center;
}
.btn--green .btn__inner {
  --btn-gradient: linear-gradient(to right, #96ee57 0%, #07b34d 100%);
  -webkit-box-shadow: 0 4px 4px rgba(61, 153, 99, 0.25);
          box-shadow: 0 4px 4px rgba(61, 153, 99, 0.25);
}
.btn--green .btn__caption {
  color: #07b34d;
}
.btn--green .btn__arrow::before {
  background-image: url("../public/img/icons/btn-right-green.svg");
}
.btn__inner {
  --btn-gradient: linear-gradient(to right, #4cc8e6 0%, #1fafcc 100%);
  gap: 16px;
  width: 100%;
  height: 100px;
  padding: 5px;
  background-image: var(--btn-gradient);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  border: 4px solid #fff;
  border-radius: 60px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  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) {
  .btn__inner {
    gap: 12px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .btn__inner {
    gap: 8px;
    height: 64px;
  }
}
.btn__caption {
  pointer-events: none;
  position: absolute;
  top: 0;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #1fafcc;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 10%;
  line-height: 1em;
  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) {
  .btn__caption {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .btn__caption {
    padding: 5px 15px;
    font-size: 14px;
  }
}
.btn__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 10%;
}
@media screen and (max-width: 1024px) {
  .btn__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .btn__text {
    font-size: 20px;
  }
}
.btn__arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .btn__arrow {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .btn__arrow {
    width: 16px;
    height: 16px;
  }
}
.btn__arrow::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 10px;
  height: 10px;
  background: url("../public/img/icons/btn-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn__arrow::before {
    width: 6px;
    height: 6px;
  }
}

.bubble-heading {
  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;
  width: auto;
}
.bubble-heading--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bubble-heading--white .bubble-heading__title {
  color: #fff;
}
.bubble-heading--white .bubble-heading__subtitle {
  background-color: #fff;
  color: #1fafcc;
}
.bubble-heading--white .bubble-heading__subtitle::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.bubble-heading__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 10%;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .bubble-heading__title {
    font-size: 40px;
    padding-top: 8px;
  }
}
.bubble-heading__subtitle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 24px;
  background-color: #1fafcc;
  border-radius: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .bubble-heading__subtitle {
    font-size: 16px;
  }
}
.bubble-heading__subtitle::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: url("../public/img/icons/bubble-bottom.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .bubble-heading__subtitle::before {
    bottom: -9px;
    width: 10px;
    height: 10px;
  }
}

.heading-underline {
  font: 700 4rem "Zen Maru Gothic", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .heading-underline {
    font-size: 24px;
  }
}
.heading-underline::after {
  content: "";
  width: 80px;
  height: 5px;
  background-color: #1fafcc;
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.heading {
  font: 700 4.8rem "Zen Maru Gothic", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 32px;
  }
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 18px 0 40px;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 16px 4% 0;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  pointer-events: all;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    -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: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__logo-image {
    width: 144px;
  }
}
.header__logo-text {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .header__logo-text {
    font-size: 12px;
  }
}
.header__btn {
  position: relative;
  width: 300px;
  pointer-events: all;
  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) {
  .header__btn {
    width: 100%;
  }
}
.header__btn:hover .header__btn-inner {
  background-size: 300% 100%;
  background-position: right center;
}
.header__btn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  padding: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#96ee57), to(#07b34d));
  background-image: linear-gradient(to right, #96ee57 0%, #07b34d 100%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  border: 2px solid #fff;
  border-radius: 60px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__btn-inner {
    height: 40px;
  }
}
.header__btn-circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #07b34d;
  font-size: 1.6rem;
  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) {
  .header__btn-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.header__btn-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .header__btn-text {
    font-size: 14px;
  }
}
.header__btn-text .pc-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__btn-text .pc-text {
    display: none;
  }
}
.header__btn-text .tab-text {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__btn-text .tab-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer {
  background: #f5f8fa;
}
.footer__container {
  padding: 80px 4%;
  margin: 0 auto;
  max-width: calc(477px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding-block: 40px;
  }
}
.footer__copyright {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

.lp-u__mv {
  position: relative;
  height: calc(100vh + 80px);
  height: calc(100svh + 80px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-u__mv {
    height: auto;
  }
}
.lp-u__mv-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-bg {
    position: relative;
    top: unset;
    left: unset;
    height: 50%;
  }
}
.lp-u__mv-bg picture {
  display: unset;
}
.lp-u__mv-content {
  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;
  height: 90%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1400px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
}
.lp-u__mv-head {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-head {
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
  }
}
.lp-u__mv-title {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-title {
    padding: 10px;
  }
}
.lp-u__mv-subtitle {
  margin-bottom: 14px;
}
.lp-u__mv-text-wrap {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-text-wrap {
    margin-top: -300px;
    padding: 0 4% 80px;
    background: -webkit-gradient(linear, right top, left top, from(#45b0e5), to(#3dccc0));
    background: linear-gradient(to left, #45b0e5 0%, #3dccc0 100%);
  }
}
@media screen and (max-width: 767px) {
  .lp-u__mv-text-wrap::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../public/img/upper/mv-deco-sp.svg") no-repeat top/cover;
  }
}
@media screen and (max-width: 520px) {
  .lp-u__mv-text-wrap::after {
    top: -60px;
    height: 60px;
  }
}
.lp-u__mv-text {
  font-size: 2.4rem;
  line-height: 2em;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #fff;
    font-size: 14px;
  }
}
.lp-u__mv-text span.highlight {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 10px;
  padding: 5px 10px;
  background-color: #1fafcc;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-text span.highlight {
    margin: 12px 0;
    background-color: #fff;
    color: #1fafcc;
  }
}
.lp-u__mv-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .lp-u__mv-btns {
    -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: 16px;
  }
}
.lp-u__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-u__container {
    max-width: 100%;
  }
}
.lp-u__result {
  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;
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, right top, from(#3dccc0), to(#45b0e5));
  background: linear-gradient(to right, #3dccc0 0%, #45b0e5 100%);
}
@media screen and (max-width: 767px) {
  .lp-u__result {
    padding: 0;
  }
}
.lp-u__result::before, .lp-u__result::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
}
.lp-u__result::before {
  top: -300px;
  background-image: url("../public/img/upper/result-deco-top.svg");
  background-position: top;
}
@media screen and (max-width: 767px) {
  .lp-u__result::before {
    content: none;
  }
}
.lp-u__result::after {
  bottom: -300px;
  background-image: url("../public/img/upper/result-deco-bot.svg");
  background-position: bottom;
}
@media screen and (max-width: 767px) {
  .lp-u__result::after {
    bottom: -120px;
    height: 120px;
    background-image: url("../public/img/upper/result-deco-bot-sp.svg");
  }
}
@media screen and (max-width: 520px) {
  .lp-u__result::after {
    bottom: -60px;
    height: 60px;
  }
}
.lp-u__result-container {
  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;
  width: 100%;
}
.lp-u__result-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .lp-u__result-items {
    gap: 24px;
    margin-top: 40px;
  }
}
.lp-u__result-item {
  position: relative;
  width: calc(33.33% - 40px);
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1200px) {
  .lp-u__result-item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .lp-u__result-item {
    width: 100%;
  }
}
.lp-u__result-content {
  position: relative;
  z-index: 1;
  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: 24px;
  width: 100%;
  height: 100%;
}
.lp-u__result-icon {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
}
.lp-u__result-label {
  font-size: 2.4rem;
  line-height: 1.5em;
  text-align: center;
}
.lp-u__result-p {
  margin-top: auto;
  font-size: 1.6rem;
  line-height: 2em;
}
.lp-u__result-ctr {
  position: absolute;
  top: -5px;
  left: 0;
  font-family: "Quicksand", sans-serif;
  color: #d3edf2;
  font-size: 12rem;
  line-height: 1em;
}
.lp-u__about {
  position: relative;
  padding: 300px 0 80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-u__about {
    padding: 120px 0;
  }
}
.lp-u__about-bg {
  position: absolute;
  z-index: -1;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: auto;
}
.lp-u__about-container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.lp-u__about-svg-deco {
  position: absolute;
  z-index: -1;
}
.lp-u__about-svg-deco.top {
  top: -90px;
  left: -130px;
  width: 240px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .lp-u__about-svg-deco.top {
    top: -20px;
    left: -20px;
    width: 60px;
  }
}
.lp-u__about-svg-deco.right {
  top: 120px;
  right: -200px;
  width: 350px;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .lp-u__about-svg-deco.right {
    top: 60px;
    right: 10px;
    width: 88px;
    height: 100px;
  }
}
.lp-u__about-section-p {
  font-size: 1.6rem;
  line-height: 2em;
}
.lp-u__about-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lp-u__about-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .lp-u__about-row {
    -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: 40px;
  }
}
.lp-u__about-row:nth-child(1) .lp-u__about-ctr {
  color: #707d80;
}
.lp-u__about-row:nth-child(2) .lp-u__about-ctr {
  background-color: #95d9e8;
}
.lp-u__about-row:nth-child(2) .lp-u__about-ctr::after {
  border-top-color: #95d9e8;
}
.lp-u__about-row:nth-child(3) .lp-u__about-ctr {
  background-color: #1fafcc;
}
.lp-u__about-row:nth-child(3) .lp-u__about-ctr::after {
  border-top-color: #1fafcc;
}
.lp-u__about-row:nth-child(4) .lp-u__about-ctr {
  background-color: #188aa2;
}
.lp-u__about-row:nth-child(4) .lp-u__about-ctr::after {
  border-top-color: #188aa2;
}
.lp-u__about-ctr {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 100%;
  padding: 20px 10px;
  background-color: #e9f7fa;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  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__about-ctr {
    width: 32px;
    font-size: 16px;
  }
}
.lp-u__about-ctr::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -32px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 24px 0;
  border-color: #e9f7fa transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .lp-u__about-ctr::after {
    bottom: -20px;
    border-width: 20px 16px 0;
  }
}
.lp-u__about-col--text {
  width: 100%;
  padding: 40px 80px 40px 130px;
}
@media screen and (max-width: 1200px) {
  .lp-u__about-col--text {
    padding: 40px 0 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__about-col--text {
    padding-top: 20px;
    padding-left: 60px;
  }
}
.lp-u__about-col--image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 480px;
  margin-left: auto;
  padding: 40px 0;
}
@media screen and (max-width: 1200px) {
  .lp-u__about-col--image {
    width: 100%;
    max-width: 100%;
    margin-left: unset;
    padding: 0 0 40px 90px;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__about-col--image {
    padding-bottom: 20px;
    padding-left: 60px;
  }
}
.lp-u__about-heading {
  font-size: 4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .lp-u__about-heading {
    font-size: 24px;
  }
}
.lp-u__about-subheading {
  display: inline-block;
  margin-bottom: 8px;
  color: #1fafcc;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .lp-u__about-subheading {
    font-size: 18px;
  }
}
.lp-u__about-ul {
  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;
  margin-top: 24px;
}
.lp-u__about-li {
  position: relative;
  padding-left: 14px;
  font-size: 1.6rem;
  line-height: 2em;
}
.lp-u__about-li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #1fafcc;
  border-radius: 50%;
}
.lp-u__about-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background-color: #fba000;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
}
.lp-u__about-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .lp-u__about-image {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .lp-u__about-image {
    height: 210px;
  }
}
.lp-u__about-image picture {
  width: 100%;
  height: 100%;
}
.lp-u__example {
  padding: 80px 0;
  background-color: #e9f7fa;
}
@media screen and (max-width: 767px) {
  .lp-u__example {
    padding: 40px 0;
  }
}
.lp-u__example-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .lp-u__example-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .lp-u__example-col {
    width: 100% !important;
  }
}
.lp-u__example-col--table {
  width: 50%;
}
.lp-u__example-section-subheading {
  font-size: 2.4rem;
}
.lp-u__example-section-p {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 2em;
}
.lp-u__example-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.lp-u__example-data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  font-size: 2.4rem;
}
.lp-u__example-data-row:not(:last-child, .lp-u__example-data-row:nth-last-child(2)) {
  border-bottom: 1px solid #e9f7fa;
}
.lp-u__example-data-row--benefit {
  background-color: #fff8e6;
  color: #fba000;
}
.lp-u__example-data-row--benefit dd {
  font-size: 4rem;
}
.lp-u__example-data-note {
  color: #808080;
  font-size: 1.4rem;
  line-height: 1.5em;
}

.ownership {
  padding: 80px 4% 0;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .ownership {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .ownership {
    padding: 40px 4% 0;
  }
}
.ownership__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.33%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ownership__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.ownership__bubble-heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ownership__bubble-heading {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .ownership__bubble-heading-title {
    font-size: 24px;
  }
}
.ownership__text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .ownership__intro-image {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .ownership__intro-image img {
    height: 240px;
  }
}
.ownership__content {
  display: grid;
  grid-template-columns: 356px 1fr;
  gap: 6.67%;
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .ownership__content {
    grid-template-columns: 100%;
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .ownership__content {
    gap: 24px;
    margin-top: 24px;
  }
}
.ownership__bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 0 auto 5px;
  max-width: 356px;
}
@media screen and (max-width: 767px) {
  .ownership__bars {
    gap: 20px;
    max-width: 343px;
  }
}
.ownership__bar {
  line-height: 1.5em;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ownership__bar-value {
  font: 700 2.5rem "Quicksand", sans-serif;
}
.ownership__bar-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px;
  width: 40px;
  height: 310px;
  background-color: #e6e6e6;
  border-radius: 20px;
}
.ownership__bar-filled {
  width: 100%;
  background-color: #1fafcc;
  border-radius: 15px;
}
.ownership__bar-year {
  font-size: 2rem;
  color: #808080;
}
.ownership__benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 40.5px 24px;
  background-color: #f5f8fa;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .ownership__benefit {
    -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;
    padding: 24px;
  }
}
.ownership__benefit:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .ownership__benefit-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.ownership__benefit-icon {
  width: 80px;
  height: 80px;
  background: #1fafcc;
  border-radius: 6.25px;
  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;
}
.ownership__benefit-title {
  font: 700 2rem "Quicksand", sans-serif;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .ownership__benefit-title {
    padding-bottom: 16px;
  }
}

.simulation {
  background: url("../public/img/lower/sim-bg.png") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .simulation {
    background-image: url("../public/img/lower/sim-bg-sp.png");
  }
}
.simulation__title-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .simulation__title-wrap {
    height: 120px;
  }
}
.simulation__title-bg {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#80d5ff));
  background: linear-gradient(to bottom, #fff 0%, #80d5ff 100%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width: 1920px) {
  .simulation__title-bg {
    width: 1920px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .simulation__title-bg {
    width: 100%;
    background: linear-gradient(to bottom, #fff 0%, #fff 60px, #80d5ff 100%);
    -webkit-clip-path: polygon(50% 100%, 100% 60px, 100% 0, 0 0, 0 60px);
            clip-path: polygon(50% 100%, 100% 60px, 100% 0, 0 0, 0 60px);
  }
}
.simulation__title {
  padding-block: 114px;
  font: 700 4.8rem "Zen Maru Gothic", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  color: #133d8f;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .simulation__title {
    padding-block: 42px;
    font-size: 24px;
  }
}
.simulation__container {
  padding: 40px 4% 80px;
  margin: 0 auto;
  max-width: calc(640px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .simulation__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .simulation__container {
    padding-block: 24px 40px;
  }
}
.simulation__table {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.simulation__table table {
  width: 100%;
  border-collapse: collapse;
}
.simulation__table-head th {
  padding: 16px;
  background: #1fafcc;
  font: 700 2.4rem "Zen Maru Gothic", sans-serif;
  text-align: center;
  color: #fff;
}
.simulation__table-row:not(:last-child) td {
  border-bottom: 2px solid #f5f8fa;
}
.simulation__table-row td {
  padding: 24px 0 24px 24px;
  background: #fff;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .simulation__table-row td {
    font-size: 16px;
  }
}
.simulation__table-row td:last-child {
  padding: 24px 24px 24px 0;
  font-weight: 700;
  text-align: right;
}
.simulation__table-foot td {
  padding: 24px 0 24px 24px;
  background: #fff8e6;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fba000;
}
@media screen and (max-width: 767px) {
  .simulation__table-foot td {
    font-size: 16px;
  }
}
.simulation__table-foot td:last-child {
  padding: 24px 24px 24px 0;
  font-size: 4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .simulation__table-foot td:last-child {
    font-size: 16px;
  }
}
.simulation__note {
  padding-top: 40px;
  font-size: 1.4rem;
  line-height: 1.5em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .simulation__note {
    padding-top: 24px;
  }
}

.voice {
  width: 100%;
  background: url("../public/img/lower/voice-bg.png") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .voice {
    background-image: url("../public/img/lower/voice-bg-sp.png");
  }
}
.voice__container {
  padding: 80px 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .voice__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .voice__container {
    padding-block: 40px;
  }
}
.voice__slider {
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .voice__slider {
    padding-block: 64px 16px;
    margin-top: 40px;
  }
}
.voice__slider-track {
  overflow: visible;
}
.voice__card {
  padding: 24px 64px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .voice__card {
    padding: 24px;
  }
}
.voice__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding-bottom: 24px;
}
.voice__card-profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.voice__card-num {
  font: 700 2.4rem "Quicksand", sans-serif;
  line-height: 1em;
  color: #1fafcc;
}
@media screen and (max-width: 767px) {
  .voice__card-num {
    font-size: 16px;
  }
}
.voice__card-name {
  padding-top: 8px;
  font: 700 4rem "Zen Maru Gothic", sans-serif;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .voice__card-name {
    font-size: 24px;
  }
}
.voice__card-before {
  position: relative;
  padding-bottom: 52px;
}
.voice__card-before::after {
  content: "";
  width: 30px;
  height: 20px;
  background: url("../public/img/icons/arrow-down.svg") no-repeat center/cover;
  position: absolute;
  left: 50%;
  bottom: 16px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.voice__card-before-title, .voice__card-after-title {
  display: inline-block;
  font: 700 1.8rem "Quicksand", sans-serif;
  line-height: 1em;
  color: #fff;
  margin-bottom: 8px;
  padding: 10px 20px;
  border-radius: 22px;
}
@media screen and (max-width: 767px) {
  .voice__card-before-title, .voice__card-after-title {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.voice__card-before-title {
  background: #808080;
}
.voice__card-after-title {
  background: #1fafcc;
}
.voice__card-before-desc, .voice__card-after-desc {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .voice__card-before-desc, .voice__card-after-desc {
    font-size: 14px;
  }
}
.voice__note {
  font-size: 1.4rem;
  line-height: 1.5em;
  color: #808080;
}
.voice .splide__arrow {
  width: 80px;
  height: 80px;
  background: #fff url("../public/img/icons/chevron-left.svg") no-repeat center/40px 40px;
  border: 1px solid #1fafcc;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .voice .splide__arrow {
    width: 48px;
    height: 48px;
    background-size: 22px 22px;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.voice .splide__arrow svg {
  display: none;
}
.voice .splide__arrow--next {
  right: -40px;
}
@media screen and (max-width: 767px) {
  .voice .splide__arrow--next {
    right: 0;
  }
}
.voice .splide__arrow--prev {
  left: -40px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .voice .splide__arrow--prev {
    left: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.voice .splide__pagination {
  top: 16px;
  bottom: auto;
}
.voice .splide__pagination__page {
  width: 16px;
  height: 16px;
  margin: 0 8px;
  opacity: 1;
}
.voice .splide__pagination__page.is-active {
  background: #1fafcc;
  -webkit-transform: none;
          transform: none;
}

.comparison {
  padding: 80px 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .comparison {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .comparison {
    padding-block: 40px;
  }
}
.comparison__table {
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .comparison__table {
    overflow-x: scroll;
  }
}
.comparison__table .comparison__table-row:nth-of-type(2) .comparison__table-cell:not(.comparison__row-header) {
  font-size: 1.6rem;
}
.comparison__table .comparison__table-row:last-of-type .comparison__row-header {
  -webkit-box-shadow: 0 -2px 0 #edf3f7 inset;
          box-shadow: 0 -2px 0 #edf3f7 inset;
}
.comparison__table .comparison__table-row:last-of-type .comparison__cell-highlight {
  -webkit-box-shadow: 0 -4px 0 #1fafcc inset;
          box-shadow: 0 -4px 0 #1fafcc inset;
}
.comparison__table-head, .comparison__table-row {
  display: grid;
  grid-template-columns: 160px repeat(3, 1fr);
  grid-template-rows: 80px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .comparison__table-head, .comparison__table-row {
    grid-template-columns: 160px repeat(3, 346.6666666667px);
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .comparison__table-head, .comparison__table-row {
    grid-template-columns: 100px repeat(3, 160px);
    max-width: 580px;
  }
}
.comparison__thead-cell {
  padding: 4px 16px;
  background: #edf3f7;
  font: 700 2.4rem "Zen Maru Gothic", sans-serif;
  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) {
  .comparison__thead-cell {
    font-size: 18px;
  }
}
.comparison__thead-cell:first-child {
  grid-column: 2/3;
  background: #1fafcc;
}
.comparison__thead-cell:first-child img {
  max-width: 200px;
}
.comparison__table-cell {
  font-size: 1.6rem;
  line-height: 1.5em;
  text-align: center;
  padding: 2px 16px;
  background: #fff;
  -webkit-box-shadow: 0 -2px 0 #edf3f7 inset;
          box-shadow: 0 -2px 0 #edf3f7 inset;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  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) {
  .comparison__table-cell {
    font-size: 14px;
  }
}
.comparison__table-cell:last-child {
  -webkit-box-shadow: 0 -2px 0 #edf3f7 inset, 2px 0 0 #edf3f7 inset, -2px 0 0 #edf3f7 inset;
          box-shadow: 0 -2px 0 #edf3f7 inset, 2px 0 0 #edf3f7 inset, -2px 0 0 #edf3f7 inset;
}
.comparison__table-cell .font-quicksand {
  font: 700 4rem "Quicksand", sans-serif;
  line-height: 1em;
  margin-right: 4px;
  color: #808080;
}
.comparison__table-cell .c-blue {
  color: #1fafcc;
  font-weight: 700;
}
.comparison__row-header {
  padding-inline: 16px;
  background: #edf3f7;
  -webkit-box-shadow: 0 -2px 0 #fff inset;
          box-shadow: 0 -2px 0 #fff inset;
}
.comparison__cell-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background: transparent;
  border-width: 0 4px;
  border-style: solid;
  border-color: #1fafcc;
}
.comparison__cell-highlight svg path {
  stroke: #1fafcc;
}

.faq {
  background: #f5f8fa;
}
.faq__container {
  display: grid;
  grid-template-columns: 1fr 63.34%;
  gap: 6.67%;
  padding: 80px 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .faq__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .faq__container {
    grid-template-columns: 100%;
    gap: 24px;
    padding-block: 40px;
  }
}
.faq__item {
  width: 100%;
  background: #fff;
  border-radius: 8px;
}
.faq__item:not(:last-child) {
  margin-bottom: 24px;
}
.faq__item.active .faq__plus-minus::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item.active .faq__plus-minus::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px;
}
.faq__badge, .faq__plus-minus {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.faq__question-text {
  padding-block: 5.5px;
  font: 700 2rem "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .faq__question-text {
    padding-block: 0;
    font-size: 16px;
  }
}
.faq__answer {
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  overflow: hidden;
}
.faq__answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 0 16px 16px;
}
.faq__answer-text {
  padding-block: 4px;
  font-size: 1.6rem;
  line-height: 2em;
}
.faq__badge {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font: 700 2.4rem "Quicksand", sans-serif;
  line-height: 1em;
  text-align: center;
  color: #fff;
  width: 40px;
  height: 40px;
  background: #fba000;
  border-radius: 50%;
  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;
}
.faq__badge span {
  margin-bottom: 2px;
  display: block;
}
.faq__badge--q {
  background: #1fafcc;
}
.faq__badge--q span {
  margin: 0 2px 6px 0;
}
.faq__plus-minus {
  position: relative;
  margin: 8px 0 8px auto;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__plus-minus {
    margin-block: 11px;
  }
}
.faq__plus-minus::before, .faq__plus-minus::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.faq__plus-minus::before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}
.faq__plus-minus::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.company__heading {
  text-align: center;
}
.company__info {
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .company__info {
    padding-block: 24px;
  }
}
.company__info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 8px 0;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .company__info-item {
    grid-template-columns: 100px 1fr;
    gap: 8px;
  }
}

.contact {
  background: -webkit-gradient(linear, left top, right top, from(#45b0e5), to(#3dccc0));
  background: linear-gradient(to right, #45b0e5 0%, #3dccc0 100%);
}
.contact .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 1.4rem;
}
.contact .wpcf7-spinner {
  display: none;
}
.contact form.submitting .wpcf7-spinner {
  display: inline-block;
}
.contact__container {
  padding: 80px 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding-block: 40px;
  }
}
.contact__title {
  font: 700 6.4rem "Zen Maru Gothic", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 3.2rem;
  }
}
.contact__title::after {
  content: "";
  width: 340px;
  height: 40px;
  background: url("../public/img/lower/marker.svg") no-repeat center/cover;
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translateX(calc(-50% - 40px));
          transform: translateX(calc(-50% - 40px));
}
@media screen and (max-width: 767px) {
  .contact__title::after {
    width: 170px;
    height: 20px;
    bottom: 43px;
    -webkit-transform: translateX(calc(-50% + 33.5px));
            transform: translateX(calc(-50% + 33.5px));
  }
}
.contact__title span {
  position: relative;
  z-index: 1;
}
.contact__desc {
  padding-block: 48px 24px;
  font: 700 2rem "Zen Maru Gothic", sans-serif;
  line-height: 2em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__desc {
    font-size: 1.6rem;
    padding-top: 24px;
  }
}
.contact__btn {
  margin: 0 auto 48px;
}
.contact__form {
  padding: 40px 16.67%;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .contact__form {
    padding-inline: 5.62%;
  }
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding-inline: 24px;
  }
}
.contact__checklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 40px;
  padding: 24px 35px;
  background: #f5f8fa;
  border-radius: 8px;
}
@media screen and (max-width: 1023px) {
  .contact__checklist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .contact__checklist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 24px;
    padding-inline: 16px;
  }
}
.contact__checklist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
  line-height: 1.5em;
}
.contact__checklist-item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../public/img/lower/check.svg") no-repeat center/contain;
  display: inline-block;
}
.contact__form-wrap {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap {
    margin-top: 24px;
  }
}
.contact__form-text {
  font-size: 1.8rem;
  padding-bottom: 8px;
}
.contact__form-p {
  margin-top: 5px;
  line-height: 2em;
}
.contact__form-item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact__form-item {
    margin-bottom: 24px;
  }
}
.contact__form-label {
  padding-bottom: 16px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5em;
}
.contact .required::after,
.contact .optional::after {
  font-size: 1.4rem;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 15px;
  border: 1px solid #1fafcc;
}
.contact .required::after {
  content: "必須";
  color: #fff;
  background: #1fafcc;
}
.contact .optional::after {
  content: "任意";
  color: #1fafcc;
  background: #fff;
}
.contact__form-input-wrap {
  font: 400 1.6rem "Noto Sans JP", sans-serif;
  line-height: 1.5em;
  color: #333;
}
.contact__form-input {
  width: 100%;
  height: 48px;
  border: 1px solid #808080;
  border-radius: 4px;
  padding: 12px 16px;
  font: 400 1.6rem "Noto Sans JP", sans-serif;
  line-height: 1.5em;
  color: #333;
}
.contact__form-input--textarea {
  height: 16.8rem;
  resize: none;
}
.contact__form-note {
  display: block;
  padding-top: 8px;
  font-size: 1.4rem;
}
.contact__agree {
  margin-inline: auto;
  padding: 12px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #f5f8fa;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contact__agree {
    gap: 24px;
    padding-inline: 33px;
    width: 100%;
    max-width: 295px;
  }
}
.contact__agree .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: unset;
}
.contact__agree-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 2px 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #808080;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.contact__agree-input:checked {
  background: #1fafcc;
  border-color: #1fafcc;
}
.contact__agree-input:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 13px;
  height: 10px;
  background: url("../public/img/icons/check.svg") no-repeat center/contain;
}
.contact__agree-label {
  font-size: 1.6rem;
  line-height: 1.5em;
}
.contact__agree-label a {
  color: #007bff;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .contact__agree-label a {
    display: block;
  }
}
.contact__agree-label a::after {
  content: "";
  display: inline-block;
  margin: 0 2px -4px;
  width: 20px;
  height: 20px;
  background: url("../public/img/icons/external-link.svg") no-repeat center/contain;
}
.contact__button-wrap {
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  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) {
  .contact__button-wrap {
    margin-top: 24px;
  }
}
.contact__form-button {
  width: 480px;
  height: 64px;
  background: #fba000;
  border: none;
  border-radius: 60px;
  font: 700 2.4rem "Zen Maru Gothic", sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  -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;
}
@media screen and (max-width: 767px) {
  .contact__form-button {
    width: 100%;
    max-width: 295px;
    height: 48px;
    font-size: 1.6rem;
  }
}
.contact__form-button::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../public/img/icons/chevron-right-filled.svg") no-repeat center/contain;
  display: inline-block;
  margin-left: 16px;
}
.contact__form-button:hover {
  opacity: 0.6;
}
.contact__form-button--back {
  background-color: #1fafcc;
}
.contact__form-button--back::after {
  background-image: url("../public/img/icons/chevron-right-blue.svg");
}
.contact--confirm .contact__form-input,
.contact--confirm .contact__form-note,
.contact--confirm .contact__agree {
  display: none;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-mxw {
  display: block;
}
@media screen and (max-width: 1200px) {
  .pc-mxw {
    display: none;
  }
}

.mxw-sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mxw-sp {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.pc-mxw-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .pc-mxw-flex {
    display: none;
  }
}

.mxw-sp-flex {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mxw-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.fw-bold {
  font-weight: 700;
}

.ff-zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}
/*# sourceMappingURL=main.css.map */
