@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;
}

@font-face {
  font-family: Meiryo;
  font-style: normal;
  font-weight: 400;
  src: url("./public/fonts/meiryo.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Meiryo;
  font-style: normal;
  font-weight: 700;
  src: url("./public/fonts/meiryo-bold.ttf") format("truetype");
  font-display: swap;
}
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  top: 12px;
  left: 0;
  width: 100%;
  padding-inline: 12px;
  z-index: 999;
}
@media screen and (max-width: 1200px) {
  .header {
    top: 0;
    padding-inline: 0;
  }
}
.header__container {
  background: #fff;
  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: 20px;
  height: 80px;
  padding: 12px 12px 12px 20px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header__container {
    border-radius: 0 0 4px 4px;
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    padding: 10px 10px 12px;
  }
}
.header__container.is-active {
  border-radius: 0;
}
.header__logo-block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo {
  display: block;
  width: 98px;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 60px;
  }
}
.header__link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}
@media screen and (max-width: 1440px) {
  .header__link-block {
    gap: 36px;
  }
}
@media screen and (max-width: 1200px) {
  .header__link-block {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    background: rgba(245, 247, 248, 0.9);
    -webkit-backdrop-filter: blur(3px) brightness(1);
            backdrop-filter: blur(3px) brightness(1);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    border-radius: 0 0 4px 4px;
    gap: 56px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__link-block.is-active {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  padding: 56px 7.7% 80px;
}
.header__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .header__link-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header__link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 144px));
    gap: 26px 28px;
  }
}
.header__link {
  position: relative;
  font-size: clamp(1.4rem, 0.833vw, 1.6rem);
  font-weight: 700;
  text-wrap: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .header__link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .header__link::after {
    content: "";
    background: #055bb1;
    width: 100%;
    height: 1px;
    display: block;
    margin-top: 4px;
  }
}
.header__link:hover {
  color: #ec6823;
}
.header__button-link {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#ec6823), to(#c6b123));
  background: linear-gradient(to right, #ec6823, #c6b123);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  width: 224px;
  max-width: 100%;
  height: 56px;
  border-radius: 42px 14px;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__button-link {
    width: 317px;
    font-size: 18px;
  }
}
.header__button-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ec6823), to(#c6b123));
  background: linear-gradient(to left, #ec6823, #c6b123);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.header__button-link:hover::before {
  opacity: 1;
}
.header__menu-block {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__menu-block {
    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: 1200px) {
  .header__hamburger {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
}
.header__hamburger.is-active .header__hamburger-line:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.header__hamburger-line {
  width: 20px;
  height: 3px;
  background: #055bb1;
  border-radius: 4px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}
.header__menu-text {
  color: #055bb1;
  font: 700 12px "Poppins", sans-serif;
}

.footer {
  background: #02488e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 88px 24px 24px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 56px 24px 24px;
  }
}
.footer__link-list {
  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: 20px 40px;
}
@media screen and (max-width: 767px) {
  .footer__link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
.footer__link {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__link:hover {
  opacity: 0.8;
}
.footer__copyright {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 64px;
  }
}

.title {
  color: #055bb1;
  font: 700 4.8rem "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5em;
  margin-bottom: 56px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 32px;
    line-height: 1.5em;
    margin-bottom: 48px;
  }
}
.title--sec {
  font-size: 4rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .title--sec {
    font-size: 24px;
    line-height: 2em;
  }
}

.button {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#ec6823), to(#c6b123));
  background: linear-gradient(to right, #ec6823, #c6b123);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  width: 416px;
  max-width: 100%;
  height: 104px;
  margin-inline: auto;
  border-radius: 72px 29px;
  outline: 4px solid #fff;
  -webkit-box-shadow: 9px 10px 0 #fff;
          box-shadow: 9px 10px 0 #fff;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 24px;
    width: 320px;
    height: 80px;
    outline-width: 3px;
    -webkit-box-shadow: 6px 7px 0 #fff;
            box-shadow: 6px 7px 0 #fff;
  }
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ec6823), to(#c6b123));
  background: linear-gradient(to left, #ec6823, #c6b123);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.button:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.button:hover::before {
  opacity: 1;
}

.lp__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.lp__mv-img {
  width: 100%;
  aspect-ratio: 1920/930;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__mv-img {
    aspect-ratio: 375/812;
  }
}
.lp__mission {
  padding-block: 136px 104px;
  background: url("./public/img/lp/mission-bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .lp__mission {
    padding-block: 88px 104px;
    background: url("./public/img/lp/mission-bg-sp.webp") no-repeat center/cover;
  }
}
.lp__mission-title {
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .lp__mission-title {
    margin-bottom: 56px;
  }
}
.lp__mission-list {
  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: 40px 2.5%;
  margin-block: 56px 64px;
}
@media screen and (max-width: 767px) {
  .lp__mission-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.lp__mission-item {
  width: 100%;
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  padding: 26px 30px 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 15px 20px rgba(5, 91, 177, 0.4);
          box-shadow: 0 15px 20px rgba(5, 91, 177, 0.4);
}
@media screen and (max-width: 767px) {
  .lp__mission-item {
    max-width: 333px;
    padding: 24px 30px 32px;
  }
}
.lp__mission-icon-blk {
  height: 64px;
  margin-bottom: 14px;
  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__mission-icon-blk {
    height: 60px;
  }
}
.lp__mission-heading {
  color: #ec6823;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.125em;
  margin-bottom: 16px;
  text-align: center;
}
.lp__mission-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  margin-bottom: 24px;
}
.lp__mission-ul {
  -ms-flex-item-align: center;
      align-self: center;
}
.lp__mission-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  color: #055bb1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
}
.lp__mission-ul li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #055bb1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  top: 11px;
}
.lp__rv {
  padding-block: 95px 120px;
  background: url("./public/img/lp/rv-bg.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .lp__rv {
    padding-block: 88px 204px;
    background: url("./public/img/lp/rv-bg-sp.webp") no-repeat bottom/cover;
  }
}
.lp__rv-container {
  max-width: calc(1280px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .lp__rv-container {
    max-width: 100% !important;
  }
}
.lp__rv-title {
  margin-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .lp__rv-title {
    font-size: 32px;
    margin-bottom: 48px;
    line-height: 1em;
  }
}
.lp__rv-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 640px));
}
@media screen and (max-width: 1200px) {
  .lp__rv-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.lp__rv-box {
  max-width: 640px;
  background: #fff;
  border-radius: 2px;
  padding: 59px 21.25% 59px 7.5%;
}
@media screen and (max-width: 767px) {
  .lp__rv-box {
    max-width: 320px;
    padding: 24px 16px 73px 24px;
  }
}
.lp__rv-box .lp__text {
  max-width: 456px;
}
.lp__rv-heading {
  color: #055bb1;
  font: 700 2.4rem "Zen Old Mincho", serif;
  line-height: 1.3333333333em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .lp__rv-heading {
    font-size: 20px;
  }
}
.lp__rv-vid-block {
  position: relative;
  margin: -48px 0 48px -80px;
}
@media screen and (max-width: 1200px) {
  .lp__rv-vid-block {
    margin: -48px 0 0 auto;
  }
}
.lp__rv-vid {
  width: 100%;
  max-width: 640px;
  height: 100%;
  aspect-ratio: 640/360;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .lp__rv-vid {
    width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .lp__rv-vid {
    width: 300px;
  }
}
.lp__rv-vid iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp__rv-vid-thumbnail {
  width: 100%;
  max-width: 640px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  overflow: hidden;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  cursor: pointer;
}
.lp__rv-vid-thumbnail.is-hidden {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  pointer-events: none;
}
.lp__rv-vid-thumbnail::before {
  content: "";
  background: rgba(0, 0, 0, 0.48);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.lp__rv-vid-thumbnail::after {
  content: "";
  background: url("./public/img/icons/play.svg") no-repeat center/contain;
  width: 103px;
  height: 103px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp__rv-vid-thumbnail::after {
    width: 48px;
    height: 48px;
  }
}
.lp__ss {
  padding-block: 104px;
}
@media screen and (max-width: 767px) {
  .lp__ss {
    padding-block: 88px;
  }
}
.lp__ss-subtitle {
  display: block;
  margin-bottom: 56px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .lp__ss-subtitle {
    margin-bottom: 40px;
    font-size: 18px;
  }
}
.lp__ss-container {
  width: 100%;
  margin-right: auto;
  padding-right: clamp(45px, (100vw - 1200px) / 2.05, 360px);
}
@media screen and (max-width: 1200px) {
  .lp__ss-container {
    padding-right: 0;
  }
}
.lp__ss-flow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .lp__ss-flow-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.lp__ss-flow-img-block {
  max-width: 960px;
}
@media screen and (max-width: 1200px) {
  .lp__ss-flow-img-block {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.lp__ss-flow-img {
  position: relative;
  width: 100%;
  aspect-ratio: 960/560;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .lp__ss-flow-img {
    border-radius: 0;
  }
}
.lp__ss-flow-img::before {
  content: "";
  background: rgba(5, 91, 177, 0.16);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.lp__ss-flow-block {
  position: relative;
  margin-left: -3%;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .lp__ss-flow-block {
    margin-left: 0;
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .lp__ss-flow-block {
    max-width: 450px;
  }
}
.lp__ss-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp__ss-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .lp__ss-item {
    gap: 11px;
  }
}
.lp__ss-icon-block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: #055bb1;
  border: 3px solid #fff;
  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;
}
@media screen and (max-width: 767px) {
  .lp__ss-icon-block {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lp__ss-icon {
    max-width: 40px;
  }
}
.lp__ss-desc {
  color: #055bb1;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp__ss-desc {
    font-size: 20px;
  }
}
.lp__ss-desc.fs22 {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .lp__ss-desc.fs22 {
    font-size: 16px;
  }
}
.lp__ss-desc .fs18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .lp__ss-desc .fs18 {
    font-size: 16px;
  }
}
.lp__ss-chat-content {
  margin: 80px auto 0;
  max-width: calc(880px + 8%);
  padding: 0 4%;
}
@media screen and (max-width: 767px) {
  .lp__ss-chat-content {
    margin: 28px auto 0;
  }
}
.lp__ss-chat-image {
  width: 100%;
  aspect-ratio: 880/361;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__ss-chat-image {
    max-width: 338px;
    aspect-ratio: 338/565;
    margin-inline: auto;
  }
}
.lp__ss-chat-text {
  display: block;
  margin-top: 48px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__ss-chat-text {
    margin-top: 24px;
    font-size: 18px;
  }
}
.lp__sv {
  background: #f5f7f8;
  padding-block: 104px;
}
@media screen and (max-width: 767px) {
  .lp__sv {
    padding-block: 88px 80px;
  }
}
.lp__sv-subtitle {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 67px;
}
@media screen and (max-width: 767px) {
  .lp__sv-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.lp__sv-box-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 50%));
  gap: 5%;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .lp__sv-box-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lp__sv-box-row {
    gap: 24px;
    margin-bottom: 56px;
  }
}
.lp__sv-box {
  background: #fff;
  border-radius: 2px;
  padding: 25px;
  -webkit-box-shadow: 0 15px 20px rgba(5, 91, 177, 0.2);
          box-shadow: 0 15px 20px rgba(5, 91, 177, 0.2);
}
@media screen and (max-width: 767px) {
  .lp__sv-box {
    padding: 20px 16px 16px;
  }
}
.lp__sv-box-heading {
  color: #055bb1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3333333333em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lp__sv-box-heading {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.lp__sv-box-heading .fs18 {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .lp__sv-box-heading .fs18 {
    font-size: 15px;
  }
}
.lp__sv-img {
  width: 100%;
  aspect-ratio: 520/300;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__sv-img {
    aspect-ratio: 301/192;
  }
}
.lp__sv-table-block {
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp__sv-table-block {
    max-width: 333px;
  }
}
.lp__sv-table {
  width: 100%;
  margin-bottom: 16px;
}
.lp__sv-table-note {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .lp__sv-table-note {
    font-size: 14px;
    text-align: left;
    padding-left: 12px;
  }
}
.lp__ws {
  padding-block: 104px;
  background-color: #f5f7f8;
  background-image: url("./public/img/lp/ws-bg.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 650px;
}
@media screen and (max-width: 767px) {
  .lp__ws {
    padding-block: 56px 80px;
    background-image: url("./public/img/lp/ws-bg-sp.png");
    min-height: unset;
  }
}
.lp__ws-container {
  max-width: calc(1034px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .lp__ws-container {
    max-width: 100% !important;
    padding: 0 9px !important;
  }
}
.lp__ws-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 76px;
}
@media screen and (max-width: 767px) {
  .lp__ws-title {
    font-size: 24px;
    margin: 0 auto 60px;
  }
}
.lp__ws-title::before, .lp__ws-title::after {
  content: "";
  width: 27px;
  height: 64px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .lp__ws-title::before, .lp__ws-title::after {
    width: 14px;
    height: 33px;
  }
}
.lp__ws-title::before {
  background: url("./public/img/icons/title-lines-l.svg") no-repeat center/contain;
  left: -59px;
}
@media screen and (max-width: 767px) {
  .lp__ws-title::before {
    left: -30px;
  }
}
.lp__ws-title::after {
  background: url("./public/img/icons/title-lines-r.svg") no-repeat center/contain;
  right: -59px;
}
@media screen and (max-width: 767px) {
  .lp__ws-title::after {
    right: -30px;
  }
}
.lp__ws-list {
  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: 42px 16px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .lp__ws-list {
    gap: 22px 7px;
    margin-bottom: 40px;
  }
}
.lp__ws-item {
  position: relative;
  min-width: 334px;
  background: #fff;
  padding: 32px 7px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__ws-item {
    min-width: 175px;
    max-width: 210px;
    padding: 22px 7px 16px;
  }
}
@media screen and (max-width: 767px) {
  .lp__ws-item:last-child {
    width: 100%;
  }
}
.lp__ws-item::before {
  content: "";
  background: url("./public/img/icons/boxed-check.svg") no-repeat center/contain;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp__ws-item::before {
    width: 28px;
    height: 28px;
    top: -14px;
  }
}
.lp__ws-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__ws-text {
    font-size: 16px;
    line-height: 1.75em;
  }
}
.lp__ws-text .orange {
  color: #ec6823;
}
.lp__ds {
  padding-block: 88px;
  background: url("./public/img/lp/ds-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .lp__ds {
    background: url("./public/img/lp/ds-bg-sp.jpg") no-repeat center/cover;
  }
}
.lp__ds-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .lp__ds-content {
    gap: 40px;
  }
}
.lp__ds-box {
  background: #fff;
  width: 100%;
  padding: 64px 8.3%;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .lp__ds-box {
    padding: 40px 12px;
  }
}
.lp__ds-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .lp__ds-title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .lp__ds-title.sp-fs28 {
    font-size: 28px;
  }
}
.lp__ds-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 50%));
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .lp__ds-row {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp__ds-graph {
    max-width: 317px;
    margin-inline: auto;
  }
}
.lp__ds-img {
  width: 100%;
  aspect-ratio: 470/280;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__ds-col:nth-child(2) {
    display: none;
  }
}
.lp__ds-path-block {
  width: 100%;
  margin-bottom: 16px;
  overflow-x: auto;
}
.lp__ds-path {
  width: 1000px;
}
.lp__ds-path-note {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: right;
}
.lp__se {
  padding-block: 104px;
}
@media screen and (max-width: 767px) {
  .lp__se {
    padding-block: 88px;
  }
}
@media screen and (max-width: 767px) {
  .lp__se-container {
    padding: 0 16px;
  }
}
.lp__se-process {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp__se-process {
    max-width: 348px;
  }
}
.lp__trt {
  position: relative;
  padding-block: 104px;
  background: url("./public/img/lp/trt-bg.webp") no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__trt {
    padding-block: 88px;
    background: url("./public/img/lp/trt-bg-sp.webp") no-repeat center/cover;
  }
}
.lp__trt::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 72, 142, 0.3)), to(#055bb1));
  background: linear-gradient(180deg, rgba(2, 72, 142, 0.3) 0%, #055bb1 100%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.lp__trt-title {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .lp__trt-title {
    margin-bottom: 40px;
  }
}
.lp__trt-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp__trt-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
  }
}
.lp__trt-col {
  width: 100%;
  max-width: 430px;
}
@media screen and (max-width: 767px) {
  .lp__trt-col {
    max-width: 321px;
  }
}
.lp__trt-box {
  position: relative;
  min-height: 215px;
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
}
@media screen and (max-width: 767px) {
  .lp__trt-box {
    min-height: 171px;
    padding: 24px 20px 20px;
  }
}
.lp__trt-box-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__trt-box-title {
    font-size: 24px;
  }
}
.lp__trt-num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  display: block;
  color: #ec6823;
  font-size: 8rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__trt-num {
    font-size: 64px;
  }
}
.lp__trt-num .fs32 {
  font-size: 3.2rem;
  margin-left: -15px;
}
@media screen and (max-width: 767px) {
  .lp__trt-num .fs32 {
    font-size: 20px;
  }
}
.lp__trt-num::after {
  content: "";
  background: url("./public/img/icons/spark.svg") no-repeat center/contain;
  width: 40px;
  height: 37px;
  display: block;
  position: absolute;
  top: 16px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .lp__trt-num::after {
    right: -26px;
  }
}
.lp__trt-ribbon {
  background: #055bb1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: 128px;
  height: 128px;
  position: absolute;
  top: -64px;
  right: 0;
  border: 2px solid #fff;
  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;
}
@media screen and (max-width: 767px) {
  .lp__trt-ribbon {
    width: 96px;
    height: 96px;
    top: -24px;
    right: -19px;
  }
}
.lp__trt-desc {
  margin-top: 64px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__trt-desc {
    margin-top: 40px;
    font-size: 16px;
    text-align: left;
  }
}
.lp__vss {
  padding-block: 15px 104px;
  background: url("./public/img/lp/vss-bg.jpg") no-repeat bottom/cover;
}
@media screen and (max-width: 767px) {
  .lp__vss {
    padding-block: 24px 88px;
    background: url("./public/img/lp/vss-bg-sp.jpg") no-repeat bottom/cover;
  }
}
@media screen and (max-width: 767px) {
  .lp__vss-container {
    padding: 0 11px !important;
  }
}
.lp__vss-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;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .lp__vss-list {
    gap: 16px;
    max-width: 100%;
  }
}
.lp__vss-item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  -webkit-box-shadow: 0 15px 20px rgba(5, 91, 177, 0.2);
          box-shadow: 0 15px 20px rgba(5, 91, 177, 0.2);
}
@media screen and (max-width: 767px) {
  .lp__vss-item {
    -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;
  }
}
.lp__vss-img-block {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp__vss-img-block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5%;
    padding-right: 16px;
  }
}
.lp__vss-img {
  width: 100%;
  height: 176px;
  border: 3px solid #fff;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__vss-img {
    max-width: 175px;
    height: 120px;
  }
}
.lp__vss-dtl {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .lp__vss-dtl {
    padding: 12px 16px 24px;
  }
}
.lp__vvs-info {
  display: block;
  color: rgba(5, 91, 177, 0.4);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .lp__vvs-info {
    margin-bottom: 0;
  }
}
.lp__vss-desc {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__vss-desc {
    font-size: 16px;
  }
}
.lp__faq {
  padding-block: 104px 288px;
  background: url("./public/img/lp/faq-bg.jpg") no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .lp__faq {
    padding-block: 88px 124px;
    background: url("./public/img/lp/faq-bg-sp.jpg") no-repeat top center/cover;
  }
}
@media screen and (max-width: 767px) {
  .lp__faq-container {
    padding-inline: 10px;
  }
}
.lp__faq-list {
  max-width: 1000px;
  margin-inline: auto;
}
.lp__faq-item {
  border-bottom: 1px solid #b2b9bb;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.lp__faq-item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.lp__faq-item:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.lp__faq-q-block {
  position: relative;
  width: 100%;
  padding: 23px 75px 23px 24px;
  background: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .lp__faq-q-block {
    padding: 14px 40px 14px 12px;
  }
}
.lp__faq-q-block::after {
  content: "";
  background: url("./public/img/icons/plus.svg") no-repeat center/contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 28px;
  right: 27px;
}
@media screen and (max-width: 767px) {
  .lp__faq-q-block::after {
    width: 16px;
    height: 16px;
    top: 22px;
    right: 12px;
  }
}
.lp__faq-q-block.is-active::after {
  background: url("./public/img/icons/dash.svg") no-repeat center/contain;
}
.lp__faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__faq-q {
    gap: 13px;
    font-size: 16px;
    line-height: 1.5em;
  }
}
.lp__faq-q::before {
  content: "Q";
  width: 34px;
  height: 34px;
  background: #055bb1;
  color: #fff;
  border-radius: 50%;
  font: 600 2.4rem "Poppins", sans-serif;
  line-height: 1.3333333333em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__faq-q::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1.6em;
  }
}
.lp__faq-a-block {
  background: #055bb1;
  max-height: 0;
  padding-inline: 24px 75px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__faq-a-block {
    padding-inline: 12px 40px;
  }
}
.lp__faq-a-block.is-active {
  padding-block: 23px 32px;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}
@media screen and (max-width: 767px) {
  .lp__faq-a-block.is-active {
    padding-block: 14px 20px;
  }
}
.lp__faq-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__faq-a {
    gap: 13px;
    font-size: 16px;
    line-height: 1.75em;
  }
}
.lp__faq-a::before {
  content: "A";
  width: 34px;
  height: 34px;
  background: #fff;
  color: #055bb1;
  border-radius: 50%;
  font: 600 2.4rem "Poppins", sans-serif;
  line-height: 1.3333333333em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__faq-a::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1.6em;
  }
}
.lp__h {
  margin-top: -184px;
  padding-block: 128px 104px;
  background: url("./public/img/lp/h-bg.png") no-repeat top/cover;
  min-height: 577px;
}
@media screen and (max-width: 767px) {
  .lp__h {
    margin-top: -36px;
    padding-block: 56px 88px;
    background: url("./public/img/lp/h-bg-sp.png") no-repeat top/cover;
    min-height: 440px;
  }
}
.lp__h-title {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .lp__h-title {
    font-size: 24px;
  }
}
.lp__h-desc {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .lp__h-desc {
    font-size: 18px;
    margin-bottom: 72px;
  }
}
.lp__co {
  padding-block: 104px;
  background: #f5f7f8;
}
@media screen and (max-width: 767px) {
  .lp__co {
    padding-block: 88px;
  }
}
@media screen and (max-width: 767px) {
  .lp__co-container {
    padding: 0 12px !important;
  }
}
.lp__co-title {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .lp__co-title {
    margin-bottom: 40px;
  }
}
.lp__co-dl {
  background: #fff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 80px;
  border-radius: 2px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .lp__co-dl {
    max-width: 100%;
    margin: 0 auto 56px;
  }
}
.lp__co-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp__co-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid #f5f7f8;
  }
  .lp__co-row:last-child {
    border-bottom: none;
  }
}
.lp__co-dt, .lp__co-dd {
  padding: 12px 24px;
  border-bottom: 1px solid #f5f7f8;
}
@media screen and (max-width: 767px) {
  .lp__co-dt, .lp__co-dd {
    padding: 0;
    border-bottom: none;
  }
}
.lp__co-dt:last-child, .lp__co-dd:last-child {
  border-bottom: none;
}
.lp__co-dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 198px;
  background-color: #b2b9bb;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp__co-dt {
    width: 100%;
    background-color: transparent;
    color: #b2b9bb;
    font-size: 14px;
    line-height: 1.7142857143em;
    margin-bottom: 4px;
  }
}
.lp__co-dt.start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.lp__co-dd {
  width: 100%;
}
.lp__co-dd-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5em;
}
.lp__co-table {
  width: 100%;
  max-width: 478px;
  margin: 32px auto 20px;
}
@media screen and (max-width: 767px) {
  .lp__co-table {
    margin: 16px auto 0;
  }
}
.lp__co-h3-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .lp__co-h3-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.lp__co-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__co-desc {
    text-align: left;
  }
}
.lp__cu {
  padding-block: 104px 120px;
  background: url("./public/img/lp/cu-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .lp__cu {
    padding-block: 88px;
    background: url("./public/img/lp/cu-bg-sp.jpg") no-repeat center/cover;
  }
}
@media screen and (max-width: 767px) {
  .lp__cu-container {
    padding: 0 7px !important;
  }
}
@media screen and (max-width: 767px) {
  .lp__cu-title {
    margin-bottom: 40px;
  }
}
.lp__cu-box {
  background: #fff;
  border-radius: 2px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding: 55px 64px 64px;
}
@media screen and (max-width: 767px) {
  .lp__cu-box {
    padding: 24px 12px 56px;
  }
}
.lp__cu-head {
  padding-bottom: 32px;
  border-bottom: 1px solid #b2b9bb;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .lp__cu-head {
    padding-bottom: 24px;
  }
}
.lp__cu-intro {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__cu-intro {
    text-align: left;
    padding-inline: 8px;
  }
}
.lp__cu-intro.is-hide {
  display: none;
}
.lp__cu-intro-error {
  display: none;
  color: #ec6823;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  text-align: center;
  padding: 12px;
  border: 1px solid #ec6823;
  border-radius: 5px;
}
.lp__cu-intro-error.is-error {
  display: block;
}
.lp__cu-error {
  display: none;
  gap: 6px;
  width: 100%;
  background-color: rgba(236, 104, 35, 0.1);
  color: #ec6823;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.lp__cu-error::before {
  content: "";
  background: url("./public/img/icons/warning.svg") no-repeat center/contain;
  width: 20px;
  height: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: 2px;
}
.lp__cu-error.mt12 {
  margin-top: 12px;
}
.lp__cu-error.is-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp__cu-form-group {
  margin-bottom: 24px;
}
.lp__cu-form-group:nth-last-child(2) {
  margin-bottom: 0;
}
.lp__cu-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp__cu-label::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 23px;
  border-radius: 2px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
}
.lp__cu-label.required::after {
  content: "必須";
  background: #ec6823;
}
.lp__cu-label.optional::after {
  content: "任意";
  background: #b2b9bb;
}
.lp__cu-radio-block {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp__cu-radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.lp__cu-radio {
  width: 24px;
  height: 24px;
  border: 1px solid #b2b9bb;
  border-radius: 50%;
  background: #f5f7f8;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  -webkit-transition: background 0.3s, border 0.3s;
  transition: background 0.3s, border 0.3s;
}
.lp__cu-radio:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px; /* inner circle size */
  height: 16px;
  background-color: #ec6823;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lp__cu-radio:checked, .lp__cu-radio:hover {
  border-color: #ec6823;
}
.lp__cu-input {
  width: 100%;
  min-height: 48px;
  background: #f5f7f8;
  border: 1px solid #b2b9bb;
  border-radius: 2px;
  padding: 12px 20px;
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.lp__cu-input.text-area {
  height: 164px;
  resize: none;
}
.lp__cu-input.text-area::-webkit-scrollbar {
  width: 12px;
}
.lp__cu-input.text-area::-webkit-scrollbar-track {
  background: #fff;
  cursor: default;
}
.lp__cu-input.text-area::-webkit-scrollbar-thumb {
  background: #b2b9bb;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
  cursor: default;
}
.lp__cu-input.text-area::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}
.lp__cu-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.lp__cu-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.lp__cu-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.lp__cu-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.lp__cu-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.lp__cu-input:focus {
  border-color: #ec6823;
}
.lp__cu-file-block {
  padding: 12px;
  border: 1px solid #b2b9bb;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__cu-file-block {
    gap: 12px;
  }
}
.lp__cu-file-field {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 125px;
  height: 32px;
  overflow: hidden;
}
.lp__cu-file-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #055bb1;
  border: 1px solid #b2b9bb;
  border-radius: 2px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.lp__cu-file-btn:hover {
  color: #055bb1;
  background: #fff;
}
.lp__cu-file {
  display: none;
}
.lp__cu-file-name {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lp__cu-privacy-box {
  width: 100%;
  height: 164px;
  overflow-y: auto;
  padding: 12px 37px 12px 20px;
  border: 1px solid #b2b9bb;
  border-radius: 2px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .lp__cu-privacy-box {
    padding: 15px 40px 12px 16px;
  }
}
.lp__cu-privacy-box::-webkit-scrollbar {
  width: 12px;
}
.lp__cu-privacy-box::-webkit-scrollbar-track {
  background: #f5f7f8;
  cursor: default;
}
.lp__cu-privacy-box::-webkit-scrollbar-thumb {
  background: #b2b9bb;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 0 3px #f5f7f8;
          box-shadow: inset 0 0 0 3px #f5f7f8;
  cursor: default;
}
.lp__cu-privacy-box::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}
.lp__cu-privacy-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143em;
}
.lp__cu-privacy-title {
  font-size: 1.6rem;
  font-weight: 700;
}
.lp__cu-cb-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.lp__cu-cb-label span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.lp__cu-cb-label:hover .lp__cu-cb {
  border-color: #ec6823;
}
.lp__cu-cb {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  background: #f5f7f8;
  border: 1px solid #b2b9bb;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lp__cu-cb:checked {
  background: #f5f7f8;
  border-color: #ec6823;
}
.lp__cu-cb:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -55%) rotate(45deg);
          transform: translate(-50%, -55%) rotate(45deg);
  border-right: 5px solid #ec6823;
  border-bottom: 5px solid #ec6823;
  border-radius: 1px;
}
.lp__cu-btn-block {
  margin-top: 48px;
}
.lp__cu-btn {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#ec6823), to(#c6b123));
  background: linear-gradient(to right, #ec6823, #c6b123);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  width: 220px;
  max-width: 100%;
  height: 56px;
  margin-inline: auto;
  border-radius: 42px 14px;
  border: none;
  outline: none;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  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__cu-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, right top, left top, from(#ec6823), to(#c6b123));
  background: linear-gradient(to left, #ec6823, #c6b123);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.lp__cu-btn:hover::before {
  opacity: 1;
}
.lp__cu-fixed-btn-block {
  display: none;
  width: 100%;
  min-height: 96px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(5, 91, 177, 0)), color-stop(60%, rgba(5, 91, 177, 0.56)), to(rgba(5, 91, 177, 0.95)));
  background: linear-gradient(180deg, rgba(5, 91, 177, 0) 0%, rgba(5, 91, 177, 0.56) 60%, rgba(5, 91, 177, 0.95) 100%);
  position: fixed;
  bottom: -10px;
  left: 0;
  z-index: 99;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__cu-fixed-btn-block {
    display: block;
  }
}
.lp__cu-fixed-btn-block.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -99;
}
.lp__fixed-btn {
  max-width: 315px;
  height: 52px;
  font-size: 18px;
  outline-width: 2px;
  -webkit-box-shadow: 4px 5px 0 #fff;
          box-shadow: 4px 5px 0 #fff;
}
.lp__fixed-btn-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.lp__fixed-btn-text::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("./public/img/icons/arrow-down.svg") no-repeat center/contain;
  width: 14px;
  height: 16px;
}

.scroll-hint-icon {
  width: 136px !important;
  height: 136px !important;
  background: rgba(0, 52, 104, 0.8) !important;
  border: 3px solid #003468 !important;
  border-radius: 24px !important;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.scroll-hint-icon::before {
  display: block;
  margin: -10px auto 0;
  width: 72px;
  height: 108px;
  background-image: url("./public/img/icons/scrollable.svg") !important;
}

.scroll-hint-icon::after {
  display: none !important;
}

.scroll-hint-text {
  display: none !important;
}

.scroll-hint-icon-wrap.is-active {
  background: rgba(255, 255, 255, 0.72) !important;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1 !important;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.ff-zo {
  font-family: "Zen Old Mincho", serif;
}

.white {
  color: #fff;
}

.dark-blue {
  color: #003468;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sp-tl {
    text-align: left;
  }
}

.bold {
  font-weight: 700;
}

.anchor {
  scroll-margin-top: 102px;
}
@media screen and (max-width: 1200px) {
  .anchor {
    scroll-margin-top: 58px;
  }
}