@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: #1c1c1c;
  scroll-behavior: smooth;
  scroll-padding-top: 142px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 88px;
  }
}

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

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 28px;
    gap: 17px;
  }
}
.title::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  aspect-ratio: 1/1;
  background: url("./public/img/icons/logo-small.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .title::before {
    width: 45px;
  }
}
.title--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.title__jp {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 18px;
  }
}

.btn {
  all: unset;
  cursor: pointer;
  width: 204px;
  height: 64px;
  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;
  border: 1px solid #0168b7;
  padding-inline: 24px 16px;
  background-color: #0168b7;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background-color: #fff;
}
.btn:hover .btn__txt {
  color: #0168b7;
}
.btn:hover .btn__arrow::before {
  background-color: #0168b7;
}
.btn:hover .btn__arrow::after {
  background-color: #fff;
}
.btn--contact {
  width: 198px;
  height: 75px;
}
@media screen and (max-width: 980px) {
  .btn--contact {
    width: 158px;
    height: 60px;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 767px) {
  .btn--contact {
    width: 198px;
    height: 75px;
    padding-inline: 24px 16px;
  }
}
.btn--back {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.btn--back .btn__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.btn--back .btn__arrow::after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.btn__txt {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn__txt-small {
  display: block;
  font-size: 1.3rem;
  line-height: 1.4615384615em;
}
.btn__arrow {
  position: relative;
  display: block;
  width: 33px;
  aspect-ratio: 1/1;
}
.btn__arrow::before, .btn__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn__arrow::before {
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
          transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
  background-color: #fff;
}
.btn__arrow::after {
  width: 8px;
  aspect-ratio: 1/1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-mask: url("./public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
          mask: url("./public/img/icons/arrow-right.svg") no-repeat center/100% 100%;
  background-color: #0168b7;
}
.btn__arrow--contact {
  width: 43px;
  height: 43px;
}
.btn__arrow--contact::after {
  width: 12px;
}

.header {
  position: fixed;
  z-index: 11;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  padding-right: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .header {
    padding-right: 4%;
  }
}
@media screen and (min-width: 768px) {
  .header.scroll {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
    height: 142px;
  }
  .header.scroll .header__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header.scroll .header__content {
    margin-top: 0;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__logo {
  display: block;
  z-index: 10;
  width: 210px;
  padding: 12px 24px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 147px;
  }
}
@media screen and (max-width: 980px) {
  .header__logo {
    width: 105px;
    padding: 6px 12px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 84px;
    padding: 5px 10px;
  }
}
@media screen and (min-width: 768px) {
  .header__logo.scroll {
    width: 130px;
    padding: 6px 12px;
  }
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  margin-top: 12px;
  pointer-events: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .header__content {
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .header__content {
    position: fixed;
    z-index: 9;
    left: 100%;
    top: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 0;
    padding-block: 90px 30px;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .header__content.active {
    left: 0;
  }
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .header__links {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.header__link:hover {
  color: #0168b7;
}
.header__link-txt {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1875em;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__link-txt {
    font-size: 1.4rem;
  }
}
.header__link-txt-jp {
  display: block;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__link-txt-jp {
    font-size: 1rem;
  }
}
.header__hamburger {
  position: relative;
  pointer-events: auto;
  z-index: 11;
  width: 48px;
  aspect-ratio: 1/1;
  padding: 15px 14px;
  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;
  gap: 4px;
}
.header__hamburger::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
          transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
  width: 110%;
  aspect-ratio: 1/1;
  background-color: #0168b7;
}
.header__hamburger.active .header__hamburger-line:nth-child(1)::before {
  width: 0;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(2)::before {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(3)::before {
  width: 0;
}
.header__hamburger-line {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__hamburger-line {
    height: 3px;
  }
}
.header__hamburger-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__hamburger-line:nth-child(2) {
  background-color: #fff;
}
.header__hamburger-line:nth-child(2)::before {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
}
.header__hamburger-line:nth-child(3)::before {
  left: unset;
  right: 0;
}

.footer {
  width: 100%;
  padding: 32px 4%;
  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;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 20px;
    gap: 30px;
  }
}
.footer__upper {
  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;
  gap: 40px;
  width: 100%;
  max-width: 725px;
}
@media screen and (max-width: 767px) {
  .footer__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  display: block;
  width: 86px;
  aspect-ratio: 86/104;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}
.footer__link:hover {
  color: #0168b7;
}
.footer__link-txt {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1875em;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__link-txt-jp {
  display: block;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__copyright {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4615384615em;
}

.lp__mv {
  padding-inline: 4%;
  height: 100svh;
}
@media screen and (min-width: 1921px) {
  .lp__mv {
    height: 930px;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv {
    padding-inline: 0;
    height: auto;
  }
}
.lp__mv-container {
  position: relative;
  width: 100%;
  max-width: 1632px;
  margin-inline: auto;
  padding-block: 110px 25px;
  height: 100%;
  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;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .lp__mv-container {
    padding-block: 55px 10px;
    gap: 0;
  }
}
.lp__mv-title {
  font-size: 6.4rem;
  line-height: 1.75em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1730px) {
  .lp__mv-title {
    font-size: calc(30px + (54 - 30) * (100vw - 768px) / 1152);
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-title {
    position: absolute;
    left: 4%;
    bottom: 20px;
    z-index: 3;
    font-size: 30px;
    color: #fcffff;
    line-height: 1.3em;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.lp__mv-bg {
  display: block;
  height: 100%;
  max-height: 793px;
  margin-right: -50px;
}
@media screen and (max-width: 1500px) {
  .lp__mv-bg {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-bg {
    width: 100%;
  }
}
.lp__about {
  width: 100%;
  padding: 80px 4% 56px;
  background-color: #fcffff;
}
@media screen and (max-width: 767px) {
  .lp__about {
    padding-block: 40px 60px;
  }
}
.lp__about-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.lp__about-title-container {
  width: 100%;
  max-width: 1376px;
  margin-inline: auto;
}
.lp__about-container {
  position: relative;
  top: -64px;
  width: 100%;
  max-width: 1586px;
  margin-left: calc(0px + (115 - 0) * (100vw - 768px) / 1152);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-columns: 53% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (min-width: 1921px) {
  .lp__about-container {
    margin-left: 115px;
  }
}
@media screen and (max-width: 1586px) {
  .lp__about-container {
    margin-inline: auto;
  }
}
@media screen and (max-width: 1200px) {
  .lp__about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .lp__about-container {
    top: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .lp__about-img {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.lp__about-list {
  list-style: none;
  counter-reset: num;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.lp__about-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  counter-increment: num;
}
.lp__about-list-item-num {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 56px;
  height: 56px;
  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;
}
.lp__about-list-item-num::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
          transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
  width: 56px;
  aspect-ratio: 1/1;
  background-color: #0168b7;
}
.lp__about-list-item-num::after {
  content: counter(num);
  z-index: 2;
  font: 700 2.4rem "Montserrat", sans-serif;
  color: #fff;
}
.lp__about-list-item-txt {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp__about-list-item-txt {
    font-size: 18px;
  }
}
.lp__about-note {
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.7777777778em;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .lp__about-note {
    font-size: 20px;
  }
}
.lp__service {
  width: 100%;
  padding: 80px 4% 120px;
  background-color: #e3f5ff;
}
@media screen and (max-width: 767px) {
  .lp__service {
    padding-block: 40px 60px;
  }
}
.lp__service-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.lp__service-container::before {
  content: "";
  position: absolute;
  right: -144px;
  top: -180px;
  width: 308px;
  aspect-ratio: 308/269;
  background: url("./public/img/icons/service-deco.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 1488px) {
  .lp__service-container::before {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__service-container::before {
    width: 154px;
    top: -100px;
  }
}
.lp__service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .lp__service-list {
    gap: 20px;
  }
}
@media screen and (max-width: 980px) {
  .lp__service-list {
    gap: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .lp__service-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.lp__service-list-item {
  padding: 16px;
  background-color: #fff;
  min-height: 481px;
}
@media screen and (max-width: 1200px) {
  .lp__service-list-item {
    min-height: unset;
  }
}
.lp__service-list-item-img {
  display: block;
  width: 100%;
  aspect-ratio: 341/238;
  overflow: hidden;
  margin-bottom: 16px;
}
.lp__service-list-item-title {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .lp__service-list-item-title {
    font-size: 2rem;
  }
}
.lp__service-list-item-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}
.lp__reason {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 120px 4% 190px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__reason {
    padding-block: 60px 90px;
  }
}
.lp__reason::before, .lp__reason::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 414px;
  aspect-ratio: 414/623;
  background: url("./public/img/icons/reason-deco-left.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .lp__reason::before, .lp__reason::after {
    width: 180px;
  }
}
.lp__reason::before {
  left: 2%;
}
@media screen and (max-width: 767px) {
  .lp__reason::before {
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.lp__reason::after {
  right: 2%;
  background-image: url("./public/img/icons/reason-deco-right.svg");
}
@media screen and (max-width: 767px) {
  .lp__reason::after {
    top: initial;
    -webkit-transform: none;
            transform: none;
    bottom: 0;
  }
}
.lp__reason-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.lp__reason-list {
  position: relative;
  z-index: 5;
  list-style-type: none;
  counter-reset: reason;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.lp__reason-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
          transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
  width: 72.75%;
  aspect-ratio: 1/1;
  background-color: #0168b7;
}
@media screen and (max-width: 767px) {
  .lp__reason-list::before {
    width: 873px;
  }
}
.lp__reason-list-item {
  position: relative;
  width: 32%;
  counter-increment: reason;
  background-color: #fff;
  border: 1px solid #0168b7;
  padding: 16px 16px 40px;
  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: 16px;
  min-height: 347px;
}
@media screen and (max-width: 980px) {
  .lp__reason-list-item {
    width: 45%;
    min-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .lp__reason-list-item {
    width: 100%;
    padding-bottom: 24px;
  }
}
.lp__reason-list-item::before {
  content: counter(reason, decimal-leading-zero);
  position: absolute;
  left: 15px;
  top: 5px;
  font: 700 4rem "Montserrat", sans-serif;
  color: #0168b7;
}
.lp__reason-list-item-icon {
  display: block;
  width: 109px;
  aspect-ratio: 1/1;
}
.lp__reason-list-item-title {
  font-size: 2rem;
  line-height: 1.3em;
  text-align: center;
}
.lp__reason-list-item-txt {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: auto;
}
.lp__voice {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-bottom: 120px;
}
.lp__voice::before {
  content: "";
  position: absolute;
  right: -178px;
  right: calc(-1px + (-178 - -1) * (100vw - 768px) / 1152);
  top: -167px;
  -webkit-transform: scale(0.7071) rotate(45deg);
          transform: scale(0.7071) rotate(45deg);
  width: 1249px;
  aspect-ratio: 1/1;
  background-color: #e3f5ff;
}
@media screen and (min-width: 1921px) {
  .lp__voice::before {
    right: -178px;
  }
}
@media screen and (max-width: 1730px) {
  .lp__voice::before {
    right: -20%;
  }
}
@media screen and (max-width: 1440px) {
  .lp__voice::before {
    right: -30%;
  }
}
@media screen and (max-width: 1200px) {
  .lp__voice::before {
    right: -45%;
  }
}
@media screen and (max-width: 980px) {
  .lp__voice::before {
    right: -50%;
  }
}
@media screen and (max-width: 767px) {
  .lp__voice::before {
    right: -624px;
  }
}
.lp__voice-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: calc(1200px + 8%);
  margin-inline: auto;
  padding-inline: 4%;
}
.lp__voice-splide {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  overflow: visible;
  margin-top: 40px;
}
.lp__voice-slide {
  padding: 16px 16px 24px;
  background-color: #fff;
}
.lp__voice-slide-head {
  position: relative;
  margin-bottom: 47px;
}
.lp__voice-slide-img {
  display: block;
  width: 100%;
  aspect-ratio: 315/200;
  overflow: hidden;
}
.lp__voice-slide-title {
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 12px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 176px;
  background-color: #0168b7;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
}
.lp__voice-slide-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}
.lp__profile {
  position: relative;
  z-index: 6;
  width: 100%;
  background-color: #f4f8f9;
  padding: 80px 4% 120px;
}
@media screen and (max-width: 767px) {
  .lp__profile {
    padding-block: 40px 80px;
  }
}
.lp__profile-title-container {
  width: 100%;
  max-width: 1376px;
  margin-inline: auto;
}
.lp__msg {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 140px 30px 145px 0;
}
@media screen and (max-width: 1024px) {
  .lp__msg {
    -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: 30px;
    padding: 20px 0 0;
  }
}
.lp__msg-img {
  position: absolute;
  left: 0;
  top: -94px;
  width: 53.34%;
  aspect-ratio: 640/887;
}
@media screen and (max-width: 1300px) {
  .lp__msg-img {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .lp__msg-img {
    position: relative;
    left: initial;
    top: initial;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    max-width: 600px;
  }
}
.lp__msg-box-wrapper {
  position: relative;
  z-index: 6;
  width: 53.3%;
  max-width: 623px;
}
@media screen and (max-width: 1024px) {
  .lp__msg-box-wrapper {
    width: 100%;
  }
}
.lp__msg-box {
  position: relative;
  z-index: 5;
  padding: 48px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__msg-box {
    padding: 20px;
  }
}
.lp__msg-box-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
          transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
  width: 771px;
  aspect-ratio: 1/1;
  background-color: #0168b7;
}
.lp__msg-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}
.lp__msg-note {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
  text-align: right;
  margin-top: 8px;
}
.lp__msg-title {
  display: inline-block;
  margin-left: 8px;
  font-size: 2.4rem;
  font-weight: 700;
}
.lp__company {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
}
@media screen and (max-width: 767px) {
  .lp__company {
    margin-top: 80px;
  }
}
.lp__company-dl {
  margin-top: 50px;
}
.lp__company-dl-row {
  display: grid;
  grid-template-columns: 46.67% 1fr;
}
@media screen and (max-width: 980px) {
  .lp__company-dl-row {
    grid-template-columns: 40% 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp__company-dl-row {
    grid-template-columns: 1fr;
  }
}
.lp__company-dl-row:nth-child(odd) {
  background-color: #fff;
}
.lp__company-dt, .lp__company-dd {
  font-size: 1.6rem;
  line-height: 1.5em;
  padding: 24px 40px;
}
@media screen and (max-width: 767px) {
  .lp__company-dt, .lp__company-dd {
    padding: 20px 20px 10px;
  }
}
.lp__company-dt {
  font-weight: 700;
}
.lp__company-dd {
  font-weight: 500;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .lp__company-dd {
    padding: 0 0 20px 20px;
  }
}
.lp__contact {
  width: 100%;
  background-color: #e4e7ec;
  padding: 120px 4% 80px;
}
@media screen and (max-width: 767px) {
  .lp__contact {
    padding-block: 60px 40px;
  }
}
.lp__contact-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.contact__form {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 40px;
  }
}
.contact__form--thanks {
  max-width: 758px;
  margin-inline: auto;
}
.contact__form-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: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact__form-list {
    margin-bottom: 30px;
  }
}
.contact__form-item {
  display: grid;
  grid-template-columns: 28.75% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact__form-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.contact__form-item-label {
  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;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact__form-item-label {
    gap: 20px;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding-top: 0;
  }
}
.contact__form-item-label--required::after {
  content: "必須";
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background-color: #e60213;
  padding: 1.5px 4px;
}
.contact__form-item-field {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .contact__form-item-field {
    width: 100%;
  }
}
.contact__form-item-field input[type=text],
.contact__form-item-field input[type=email],
.contact__form-item-field input[type=tel],
.contact__form-item-field textarea {
  width: 100%;
  background-color: #fff;
  font: inherit;
  padding: 11px 16px 13px;
  border-radius: 0;
  border: none;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__form-item-field input[type=text],
  .contact__form-item-field input[type=email],
  .contact__form-item-field input[type=tel],
  .contact__form-item-field textarea {
    padding: 15px;
  }
}
.contact__form-item-field input[type=text]::-webkit-input-placeholder, .contact__form-item-field input[type=email]::-webkit-input-placeholder, .contact__form-item-field input[type=tel]::-webkit-input-placeholder, .contact__form-item-field textarea::-webkit-input-placeholder {
  color: #cfcfcf;
}
.contact__form-item-field input[type=text]::-moz-placeholder, .contact__form-item-field input[type=email]::-moz-placeholder, .contact__form-item-field input[type=tel]::-moz-placeholder, .contact__form-item-field textarea::-moz-placeholder {
  color: #cfcfcf;
}
.contact__form-item-field input[type=text]:-ms-input-placeholder, .contact__form-item-field input[type=email]:-ms-input-placeholder, .contact__form-item-field input[type=tel]:-ms-input-placeholder, .contact__form-item-field textarea:-ms-input-placeholder {
  color: #cfcfcf;
}
.contact__form-item-field input[type=text]::-ms-input-placeholder, .contact__form-item-field input[type=email]::-ms-input-placeholder, .contact__form-item-field input[type=tel]::-ms-input-placeholder, .contact__form-item-field textarea::-ms-input-placeholder {
  color: #cfcfcf;
}
.contact__form-item-field input[type=text]::placeholder,
.contact__form-item-field input[type=email]::placeholder,
.contact__form-item-field input[type=tel]::placeholder,
.contact__form-item-field textarea::placeholder {
  color: #cfcfcf;
}
.contact__form-item-field input[type=text]:focus,
.contact__form-item-field input[type=email]:focus,
.contact__form-item-field input[type=tel]:focus,
.contact__form-item-field textarea:focus {
  outline: none;
}
.contact__form-item-field--textarea {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  min-height: 240px;
}
.contact__form-item-field--textarea textarea {
  height: 100%;
}
.contact__form-item-field--agree {
  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;
}
.contact__policy {
  height: 240px;
  background-color: #fff;
  padding: 16px;
}
.contact__policy-txt {
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  overflow-y: auto;
}
.contact__policy-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: 20px;
  margin-top: 20px;
}
.contact__policy-sublist {
  list-style-type: none;
  counter-reset: sublist;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding-left: 10px;
}
.contact__policy-sublist-item {
  counter-increment: sublist;
  padding-left: 1em;
  text-indent: -1em;
}
.contact__policy-sublist-item::before {
  content: counter(sublist) ". ";
}
.contact__form-checkbox label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.contact__form-checkbox input[type=checkbox] {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 1px solid #e60213;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact__form-checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  aspect-ratio: 10/7;
  background: url("./public/img/icons/check.svg") no-repeat center/100% 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contact__form-checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}
.contact__form-btn-wrapper {
  margin-top: 80px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__form-btn-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
    gap: 20px;
  }
}
.contact__thanks-title {
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__thanks-title {
    font-size: 2rem;
  }
}
.contact__thanks-txt {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-block: 50px 40px;
}
@media screen and (max-width: 767px) {
  .contact__thanks-txt {
    text-align: justify;
    margin-block: 25px 20px;
  }
}
.contact__thanks-note {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2em;
  padding: 20px;
  background-color: #fff;
  text-align: justify;
}

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

.wpcf7-form .wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-form .btn--back {
  display: none;
}
.wpcf7-form .btn--submit {
  display: none;
}

.wpcf7-form-confirm .contact__form-list {
  margin-bottom: 0;
}
.wpcf7-form-confirm .contact__form-item-label--required::after {
  display: none;
}
.wpcf7-form-confirm .contact__form-item-label--required {
  padding-top: 0;
}
.wpcf7-form-confirm .contact__form-item {
  padding-bottom: 24px;
  border-bottom: 1px solid #1c1c1c;
}
.wpcf7-form-confirm .contact__form-item--policy {
  display: none;
}
.wpcf7-form-confirm .contact__form-item-field--agree {
  display: none;
}
.wpcf7-form-confirm .contact__form-item-field--textarea {
  min-height: initial;
}
.wpcf7-form-confirm .btn--back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wpcf7-form-confirm .btn--confirm {
  display: none;
}
.wpcf7-form-confirm .btn--submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lp__voice-splide .splide__arrows {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  left: 50%;
  bottom: calc(100% + 40px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 75px;
}
.lp__voice-splide .splide__arrow svg {
  display: none;
}
.lp__voice-splide .splide__arrow {
  pointer-events: auto;
  width: 75px;
  height: 75px;
  background-color: initial;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .lp__voice-splide .splide__arrow {
    width: 60px;
    height: 60px;
  }
}
.lp__voice-splide .splide__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
          transform: translate(-50%, -50%) scale(0.7071) rotate(45deg);
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.lp__voice-splide .splide__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: url("./public/img/icons/arrow-right-big.svg") no-repeat center/100% 100%;
}
.lp__voice-splide .splide__arrow:hover::before {
  border-color: #0168b7;
}
.lp__voice-splide .splide__arrow:focus {
  outline: none !important;
}
.lp__voice-splide .splide__arrow.is-focus {
  outline: none !important;
}
.lp__voice-splide .splide__arrow--prev {
  left: initial;
  right: calc(99px + 4%);
}
@media screen and (max-width: 767px) {
  .lp__voice-splide .splide__arrow--prev {
    right: calc(75px + 4%);
  }
}
.lp__voice-splide .splide__arrow--prev::after {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.lp__voice-splide .splide__arrow--next {
  right: 4%;
}

.overflow {
  overflow: hidden;
}

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

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

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

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

.bold {
  font-weight: 700;
}