@charset "UTF-8";
* {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h, 0px);
}

main {
  font-family: "Noto Sans JP", sans-serif;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.md {
  display: none;
}

.ap-logo {
  text-align: center;
  padding: 4rem 0;
}
.ap-logo a {
  width: min(35vw, 200px);
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .ap-logo {
    padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .md {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media (max-width: 1200px) {
  .pc {
    display: none;
  }
  .md {
    display: block;
  }
  .sp {
    display: block;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.header.is-visible {
  transform: translateY(0);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.header__top {
  display: flex;
  justify-content: center;
  padding: 0.45em 2%;
  border-bottom: 1px solid #eee;
}
.header__top img {
  height: clamp(18px, 1.8vw, 26px);
  width: auto;
  display: block;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2%;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0.75em 2%;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: clamp(28px, 3vw, 38px);
  width: auto;
  display: block;
}
.header__nav {
  flex: 1;
  overflow: hidden;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.4em, 1.2vw, 1.2em);
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__nav-list a {
  text-decoration: none;
  font-size: clamp(1.2rem, 0.9vw, 1.4rem);
  font-weight: 600;
  color: #14234d;
  white-space: nowrap;
  transition: color 0.2s;
}
.header__nav-list a:hover {
  color: #0059ff;
}
.header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.6em 1.4em;
  background: #0059ff;
  color: #fff;
  font-size: clamp(1.2rem, 0.9vw, 1.4rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.375em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.header__cta:hover {
  opacity: 0.85;
}
.header__hamburger {
  display: none;
  flex-shrink: 0;
  width: 4em;
  height: 2.8em;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2em;
  height: 2px;
  background: #14234d;
  transition: top 0.25s ease 0.25s, transform 0.25s ease, opacity 0.15s ease;
}
.header__hamburger span:nth-child(1) {
  top: 28%;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
}
.header__hamburger span:nth-child(3) {
  top: 72%;
}
.header__hamburger.is-active span {
  background: #fff;
  transition: top 0.25s ease, transform 0.25s ease 0.25s, opacity 0.15s ease;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: block;
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
}
.nav-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 40, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.active {
  visibility: visible;
}
.nav-overlay.active::before {
  opacity: 1;
}
.nav-overlay.active .nav-overlay__panel {
  transform: translateX(0);
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(80vw, 320px);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-overlay__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5em 2em 4em;
}

.nav-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 1.25em;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease 0.04s, transform 0.3s ease 0.04s;
}
.nav-overlay.active .nav-overlay__head {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay__brand {
  display: block;
}
.nav-overlay__brand img {
  width: 65%;
  display: block;
}

.nav-overlay__logo-wrap {
  padding: 1.25em 0 1.5em;
  margin-bottom: 0.25em;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}
.nav-overlay.active .nav-overlay__logo-wrap {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay__logo {
  display: block;
}
.nav-overlay__logo img {
  width: 40%;
  display: block;
  margin: 0 auto;
}

.nav-overlay__close {
  flex-shrink: 0;
  width: 2.6em;
  height: 2.6em;
  border: none;
  background: #f0f3fa;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.nav-overlay__close::before, .nav-overlay__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1em;
  height: 2px;
  background: #14234d;
  border-radius: 2px;
}
.nav-overlay__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-overlay__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-overlay__close:hover {
  background: #dce3f5;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  border-bottom: 1px solid #eef0f6;
}
.nav-overlay__item:first-child {
  border-top: 1px solid #eef0f6;
}
.nav-overlay__item:nth-child(1) {
  transition-delay: 0.06s;
}
.nav-overlay__item:nth-child(2) {
  transition-delay: 0.11s;
}
.nav-overlay__item:nth-child(3) {
  transition-delay: 0.16s;
}
.nav-overlay__item:nth-child(4) {
  transition-delay: 0.21s;
}
.nav-overlay__item:nth-child(5) {
  transition-delay: 0.26s;
}
.nav-overlay__item:nth-child(6) {
  transition-delay: 0.31s;
}
.nav-overlay__item:nth-child(7) {
  transition-delay: 0.36s;
}
.nav-overlay__item:nth-child(8) {
  transition-delay: 0.41s;
}

.nav-overlay__link {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 1.1em 0.5em;
  color: #14234d;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-overlay__link::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #0059ff;
  border-top: 2px solid #0059ff;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-overlay__link:hover {
  color: #0059ff;
  padding-left: 0.5em;
}

.mv-ap-logo {
  display: flex;
  justify-content: center;
  padding: 0.5em 2%;
  background: rgba(255, 255, 255, 0.92);
  width: min(96%, 1600px);
  margin: 0 auto;
  border-radius: 0 0 0.5em 0.5em;
}
.mv-ap-logo img {
  height: clamp(18px, 1.8vw, 26px);
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .mv-ap-logo {
    width: 100%;
    border-radius: 0;
  }
}

@keyframes mv-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv-slide-right {
  from {
    opacity: 0;
    transform: translateX(52px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mv-char-in {
  from {
    opacity: 0;
    transform: translateY(0.45em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv__tag {
  opacity: 0;
  animation: mv-fade-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) 50ms forwards;
}

.mv__title .mv-char {
  display: inline-block;
  opacity: 0;
  animation: mv-char-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) var(--char-delay, 0ms) forwards;
}

.mv__btns {
  opacity: 0;
  animation: mv-fade-up 0.55s cubic-bezier(0.4, 0, 0.2, 1) 1100ms forwards;
}

.mv__desc {
  opacity: 0;
  animation: mv-fade-up 0.55s cubic-bezier(0.4, 0, 0.2, 1) 1300ms forwards;
}

.mv__left .mv__campaign {
  opacity: 0;
  animation: mv-fade-up 0.55s cubic-bezier(0.4, 0, 0.2, 1) 1550ms forwards;
}

.mv__right {
  opacity: 0;
  animation: mv-slide-right 0.8s cubic-bezier(0.4, 0, 0.2, 1) 300ms forwards;
}

.mv__scroll {
  opacity: 0;
  animation: mv-fade-up 0.6s ease 1900ms forwards;
}

.js-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0ms), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0ms);
}
.js-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.lp-body {
  margin-top: 0;
  color: #14234d;
  font-size: clamp(14px, 1.5vw, 17px);
}
.lp-body .content_block {
  width: min(96%, 1600px);
  margin: 3em auto;
}
@media (max-width: 767px) {
  .lp-body .content_block {
    width: 92%;
    margin: 2em auto;
  }
}
.lp-body .mv-wrap {
  width: min(96%, 1600px);
  margin: 0 auto;
  background-image: url(/files/LP_RC/img_202607/mv-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 0.8em;
}
.lp-body .mv-wrap .mv-nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 3vw;
  padding-right: 2vw;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-logo {
  background: #fff;
  border-radius: 0 0 0.8em 0;
  width: min(20vw, 292px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 0;
  position: relative;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-logo::before, .lp-body .mv-wrap .mv-nav-wrap .mv-logo::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  background-image: url(/files/LP_RC/img_202607/corner.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  position: absolute;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-logo::before {
  right: -0.8em;
  top: 0;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-logo::after {
  left: 0;
  bottom: -0.8em;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-logo .logo {
  width: 36%;
}
@media (max-width: 767px) {
  .lp-body .mv-wrap .mv-nav-wrap .mv-logo .logo {
    width: 50%;
  }
}
.lp-body .mv-wrap .mv-nav-wrap .mv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  column-gap: min(4%, 30px);
  flex: 1;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-nav li a {
  text-decoration: none;
  display: flex;
  column-gap: 0.3em;
  align-items: center;
  justify-content: start;
  font-weight: 600;
  color: #14234d;
  font-size: clamp(13px, 1.1vw, 15px);
}
.lp-body .mv-wrap .mv-nav-wrap .mv-nav li a::before {
  content: "";
  width: 1.3em;
  aspect-ratio: 1/1;
  background: url(/files/LP_RC/img_202607/ico_arrow_w.svg) center/50% 50% no-repeat #0059FF;
  border-radius: 50%;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-nav li.mv-nav-contact {
  background: #0059FF;
  border-radius: 0.3em;
  padding: 1em 2%;
  margin-left: auto;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.lp-body .mv-wrap .mv-nav-wrap .mv-nav li.mv-nav-contact a {
  color: #fff;
}
.lp-body .mv-wrap .mv-nav-wrap .mv-nav li.mv-nav-contact a::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: url(/files/LP_RC/img_202607/ico_arrow_b.svg) center/50% 50% no-repeat #fff;
  border-radius: 50%;
}
.lp-body .mv-wrap .mv {
  position: relative;
  padding: 3em 0 2.8em;
  background-image: none;
}
.lp-body .mv-wrap .mv__layout {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: end;
}
.lp-body .mv-wrap .mv__left {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  z-index: 1;
}
.lp-body .mv-wrap .mv__left .mv__campaign {
  display: block;
}
.lp-body .mv-wrap .mv__left .mv__btns {
  display: block;
}
.lp-body .mv-wrap .mv__right {
  width: 65%;
}
.lp-body .mv-wrap .mv__right .mv__campaign {
  display: none;
}
.lp-body .mv-wrap .mv__right .mv__btns {
  display: none;
}
.lp-body .mv-wrap .mv__pc-img {
  width: 100%;
  height: auto;
  display: block;
}
.lp-body .mv-wrap .mv__content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
}
.lp-body .mv-wrap .mv__tag {
  display: inline-block;
  background: #fff;
  color: #004898;
  font-size: 0.9em;
  font-weight: 500;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  width: fit-content;
}
.lp-body .mv-wrap .mv__title {
  font-size: clamp(2.2rem, 3.5vw, 5rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 0.3em;
}
.lp-body .mv-wrap .mv__btns {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
.lp-body .mv-wrap .mv__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.875em 1.5em;
  border-radius: 0.375em;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.lp-body .mv-wrap .mv__btn:hover {
  opacity: 0.8;
}
.lp-body .mv-wrap .mv__btn--primary {
  background: #0059ff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 89, 255, 0.3);
}
.lp-body .mv-wrap .mv__btn--outline {
  border: 1.5px solid #14234d;
  color: #14234d;
  background: transparent;
}
.lp-body .mv-wrap .mv__desc {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: #14234d;
  line-height: 2;
  letter-spacing: 0.04em;
}
.lp-body .mv-wrap .mv__campaign {
  background: rgba(36, 142, 255, 0.8);
  border-radius: 0.4em;
  padding: 0.6em 1.5em;
  width: fit-content;
}
.lp-body .mv-wrap .mv__campaign-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: center;
}
.lp-body .mv-wrap .mv__campaign-badge {
  background: #fff64f;
  color: #004898;
  font-size: 0.7rem;
  font-weight: 700;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
}
.lp-body .mv-wrap .mv__campaign-title {
  color: #fff64f;
  font-size: clamp(1.2rem, 1.8vw, 2.4rem);
  font-weight: 700;
}
.lp-body .mv-wrap .mv__campaign-body {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-body .mv-wrap .mv__campaign-date {
  background: #fff;
  color: #004898;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.5em 2em;
  line-height: 1.6;
  text-align: center;
  line-height: 1.5rem;
}
.lp-body .mv-wrap .mv__campaign-text {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
}
.lp-body .mv-wrap .mv__campaign-text small {
  font-size: 0.9rem;
  font-weight: 400;
}
.lp-body .mv-wrap .mv__scroll {
  position: absolute;
  left: 2.3vw;
  bottom: 2.8em;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lp-body .mv-wrap .mv__scroll-text {
  writing-mode: vertical-lr;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: #14234d;
  letter-spacing: 4px;
}
.lp-body .mv-wrap .mv__scroll-line {
  display: block;
  width: 1px;
  height: 72px;
  background: #14234d;
}
@media (max-width: 1200px) {
  .lp-body .mv-wrap {
    background-position: left 6% center;
  }
  .lp-body .mv-wrap .mv-nav-wrap .mv-logo {
    width: min(35vw, 292px);
  }
  .lp-body .mv-wrap .mv-nav-wrap .mv-nav {
    display: none;
  }
  .lp-body .mv-wrap .mv {
    padding: 1.6em 0;
  }
  .lp-body .mv-wrap .mv__layout {
    flex-direction: column;
    gap: 0;
  }
  .lp-body .mv-wrap .mv__left {
    flex: none;
    width: 100%;
    transform: none;
    position: unset;
    z-index: 1;
  }
  .lp-body .mv-wrap .mv__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: end;
    margin-top: -12em;
  }
  .lp-body .mv-wrap .mv__right .mv__pc-img {
    width: 80%;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign {
    width: 100%;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign .mv__campaign-head {
    justify-content: center;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign .mv__campaign-date {
    justify-content: center;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign .mv__campaign-body {
    flex-direction: column;
    gap: 0.5em;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign .mv__campaign-body .mv__campaign-date {
    width: 100%;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign .mv__campaign-body .mv__campaign-text {
    text-align: center;
  }
  .lp-body .mv-wrap .mv__scroll {
    display: none;
  }
  .lp-body .mv-wrap .mv__btn {
    font-size: 1.4rem;
    padding: 12px 18px;
  }
}
@media (max-width: 767px) {
  .lp-body .mv-wrap .mv__left .mv__btns, .lp-body .mv-wrap .mv__left .mv__campaign {
    display: none;
  }
  .lp-body .mv-wrap .mv__right {
    margin-top: 0;
  }
  .lp-body .mv-wrap .mv__right .mv__btns {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .lp-body .mv-wrap .mv__right .mv__campaign {
    display: block;
  }
}
.lp-body .service_overview#service_overview {
  width: min(90%, 1500px);
  margin-bottom: 5em;
}
.lp-body .service_overview__main {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
  margin: 3em 0;
  position: relative;
  justify-content: end;
}
.lp-body .service_overview__head {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.lp-body .service_overview__head-en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
}
.lp-body .service_overview__title {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.625;
  text-align: left;
  margin: 0;
  z-index: 1;
}
.lp-body .service_overview__title span {
  color: #248eff;
}
.lp-body .service_overview__cards {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  width: 80%;
}
.lp-body .service_overview__card {
  flex: 1;
  background: #f7f9ff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 0.8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  text-align: center;
}
.lp-body .service_overview__card:nth-child(1) {
  margin-top: 17em;
}
.lp-body .service_overview__card:nth-child(2) {
  margin-top: 8.5em;
}
.lp-body .service_overview__card:nth-child(3) {
  margin-top: 0;
}
.lp-body .service_overview__card-icon {
  width: min(50%, 5em);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #dfe5f4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-body .service_overview__card-icon img {
  width: 30%;
  height: auto;
}
.lp-body .service_overview__card-title {
  font-size: clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.556;
}
.lp-body .service_overview__card-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #444;
  line-height: 1.867;
  letter-spacing: 0.03em;
}
@media (max-width: 1200px) {
  .lp-body .service_overview#service_overview {
    margin-bottom: 3em;
  }
  .lp-body .service_overview__main {
    flex-direction: column;
    gap: 32px;
  }
  .lp-body .service_overview__head {
    position: unset;
    padding: 0 3%;
    flex: none;
    margin: 0 auto;
  }
  .lp-body .service_overview__head-en {
    text-align: center;
  }
  .lp-body .service_overview__head .service_overview__title {
    text-align: center;
  }
  .lp-body .service_overview__cards {
    width: 100%;
    align-items: stretch;
  }
  .lp-body .service_overview__card:nth-child(1), .lp-body .service_overview__card:nth-child(2), .lp-body .service_overview__card:nth-child(3) {
    margin-top: 0;
    width: 80%;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  .lp-body .service_overview__cards {
    flex-direction: column;
    align-items: center;
  }
}
.lp-body .price-teaser {
  background: #f7f9ff;
  border: 1px solid #dfe5f4;
  border-radius: 0.6em;
  padding: 3em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  text-align: center;
}
.lp-body .price-teaser__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
}
.lp-body .price-teaser__price {
  display: flex;
  align-items: flex-end;
  gap: 0.4em;
}
.lp-body .price-teaser__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #14234d;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 0.2em;
}
.lp-body .price-teaser__amount {
  font-size: clamp(5.2rem, 5vw, 7.2rem);
  font-weight: 500;
  color: #14234d;
  line-height: 1;
  font-family: "Lato", sans-serif;
}
.lp-body .price-teaser__unit {
  font-size: 2.2rem;
  font-weight: 700;
  color: #14234d;
  line-height: 1;
  margin-bottom: 0.3em;
}
.lp-body .price-teaser__unit small {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
}
.lp-body .price-teaser__note {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #14234d;
  margin-top: -16px;
}
@media (max-width: 1200px) {
  .lp-body .price-teaser {
    padding: 2em 5%;
  }
}
.lp-body .movie {
  background: #14234d;
  border-radius: 0.6em;
  padding: 5em 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  text-align: center;
}
.lp-body .movie__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4em;
}
.lp-body .movie__title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.625;
  margin-bottom: 0;
}
.lp-body .movie__title span {
  color: #3fcfff;
}
.lp-body .movie__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
  letter-spacing: 0.03em;
  margin-top: -16px;
}
.lp-body .movie__player {
  position: relative;
  width: 100%;
  max-width: 768px;
  aspect-ratio: 16/9;
  border-radius: 11px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.lp-body .movie__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-body .movie__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0059ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.lp-body .movie__play-btn:hover {
  opacity: 0.85;
}
@media (max-width: 1200px) {
  .lp-body .movie {
    padding: 2em 5%;
  }
}
.lp-body .worries {
  background: linear-gradient(to bottom, #004898, #005cc3);
  border-radius: 0.6em;
  padding: 5em 6% 0;
  overflow: hidden;
}
.lp-body .worries__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
  margin-bottom: 2em;
}
.lp-body .worries__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4em;
}
.lp-body .worries__title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.625;
  margin-bottom: 0;
}
.lp-body .worries__title span {
  color: #3fcfff;
}
.lp-body .worries__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
  letter-spacing: 0.03em;
}
.lp-body .worries__body {
  position: relative;
}
.lp-body .worries__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 27px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.lp-body .worries__item {
  background: #fff;
  border: 1px solid #dfe5f4;
  border-radius: 0.6em;
  padding: 1.2em 6%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.lp-body .worries__num {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0059ff;
  letter-spacing: 0.1em;
  text-align: center;
}
.lp-body .worries__item-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #004898;
  text-align: center;
  line-height: 1.6;
}
.lp-body .worries__item-text {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #14234d;
  line-height: 1.571;
  letter-spacing: 0.03em;
}
.lp-body .worries__illusts {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 3.5%;
  pointer-events: none;
  margin-top: -1.2em;
  z-index: 2;
  position: relative;
}
.lp-body .worries__illusts.js-fade {
  transition-delay: 500ms;
}
.lp-body .worries__illust {
  height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 1200px) {
  .lp-body .worries {
    padding: 2em 5%;
  }
  .lp-body .worries__list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .lp-body .worries__illusts {
    display: none;
  }
}
@media (max-width: 1300px) {
  .lp-body .worries__illusts {
    padding: 0 1.7%;
  }
}
.lp-body .comparison {
  margin-bottom: 0;
  padding: 3em 5% 0;
}
.lp-body .comparison__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-align: center;
  margin-bottom: 2.5em;
}
.lp-body .comparison__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
}
.lp-body .comparison__title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.625;
}
.lp-body .comparison__title span {
  color: #248eff;
}
.lp-body .comparison__title {
  margin-bottom: 0;
}
.lp-body .comparison__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #14234d;
  letter-spacing: 0.03em;
}
.lp-body .comparison__body {
  display: flex;
  align-items: stretch;
  position: relative;
}
.lp-body .comparison__arrows {
  position: absolute;
  top: -0.8em;
  bottom: 0;
  left: -50%;
  right: -50%;
  pointer-events: none;
  z-index: -1;
  height: 31em;
}
.lp-body .comparison__arrows span {
  position: absolute;
  left: calc(25% + 0.25em);
  right: calc(25% + 0.25em);
  height: 0;
  border-top: 2px solid #0059FF;
}
.lp-body .comparison__arrows span:nth-child(1) {
  top: 25%;
}
.lp-body .comparison__arrows span:nth-child(2) {
  top: 37%;
}
.lp-body .comparison__arrows span:nth-child(3) {
  top: 49%;
}
.lp-body .comparison__arrows span:nth-child(4) {
  top: 60%;
}
.lp-body .comparison__arrows span:nth-child(5) {
  top: 72%;
}
.lp-body .comparison__arrows span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: calc(50% - 1px);
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #0059FF;
  border-top: 2px solid #0059FF;
}
.lp-body .comparison__card-wrap {
  flex: 0 0 25%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 25rem;
}
.lp-body .comparison__card {
  flex: 1;
  background: #fff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  gap: 0.375em;
}
.lp-body .comparison__card-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #004898;
  text-align: center;
  padding-bottom: 0.75em;
  margin-bottom: 0.25em;
  border-bottom: 1px solid #dfe5f4;
}
.lp-body .comparison__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375em;
}
.lp-body .comparison__list li {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: #14234d;
  text-align: center;
  padding: 1em;
  border-radius: 0.25em;
  position: relative;
}
.lp-body .comparison__list li:nth-child(1) {
  background: #f3f6ff;
}
.lp-body .comparison__list li:nth-child(2) {
  background: #f4f8f6;
}
.lp-body .comparison__list li:nth-child(3) {
  background: #fff6ee;
}
.lp-body .comparison__list li:nth-child(4) {
  background: #fcf3f8;
}
.lp-body .comparison__list li:nth-child(5) {
  background: #f5f5f7;
}
.lp-body .comparison__list--solution li {
  font-weight: 700;
  color: #004898;
}
.lp-body .comparison__list--solution li:nth-child(1) {
  background: #d8e4ff;
}
.lp-body .comparison__list--solution li:nth-child(2) {
  background: #d9eee4;
}
.lp-body .comparison__list--solution li:nth-child(3) {
  background: #ffe1c7;
}
.lp-body .comparison__list--solution li:nth-child(4) {
  background: #f2d6e7;
}
.lp-body .comparison__list--solution li:nth-child(5) {
  background: #d9dbe2;
}
.lp-body .comparison__chara {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  pointer-events: none;
  height: 28.5rem;
}
.lp-body .comparison__diagram {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  margin-bottom: 9rem;
}
.lp-body .comparison__diagram-inner {
  position: relative;
  width: 100%;
  max-width: 84%;
  aspect-ratio: 473/439;
}
.lp-body .comparison__bg-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 89%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgb(243, 246, 255);
  border: 1px solid #DFE5F4;
  z-index: 1;
}
.lp-body .comparison__circle {
  position: absolute;
  width: 38%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(to bottom, #004898, #005cc3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.03em;
  z-index: 1;
}
.lp-body .comparison__circle--tl {
  top: 0;
  left: 0;
}
.lp-body .comparison__circle--tr {
  top: 0;
  right: 0;
}
.lp-body .comparison__circle--bl {
  bottom: 0;
  left: 0;
}
.lp-body .comparison__circle--br {
  bottom: 0;
  right: 0;
}
.lp-body .comparison__logo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  border: 1.3px solid #dfe5f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  z-index: 2;
}
.lp-body .comparison__logo-circle img {
  width: 62%;
  height: auto;
}
.lp-body .comparison__logo-circle p {
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
  font-weight: 700;
  color: #004898;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .lp-body .comparison {
    padding: 2em 5%;
  }
  .lp-body .comparison__body {
    flex-direction: column;
    align-items: stretch;
    gap: 1em;
  }
  .lp-body .comparison__arrows {
    transform: rotate(90deg);
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
  }
  .lp-body .comparison__arrows span {
    left: 0.25em;
    right: 0.25em;
    top: 48%;
  }
  .lp-body .comparison__arrows span:nth-child(1), .lp-body .comparison__arrows span:nth-child(2), .lp-body .comparison__arrows span:nth-child(4), .lp-body .comparison__arrows span:nth-child(5) {
    display: none;
  }
  .lp-body .comparison__card-wrap {
    flex: none;
    padding-bottom: 0;
  }
  .lp-body .comparison__card {
    flex: none;
  }
  .lp-body .comparison__chara {
    display: none;
  }
  .lp-body .comparison__diagram {
    margin: 2em 0;
  }
  .lp-body .comparison__diagram-inner {
    max-width: 280px;
    margin: 0 auto;
  }
  .lp-body .comparison__circle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
  }
  .lp-body .comparison__logo-circle p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
  }
}
.lp-body .rc-features-head {
  background: #f7f9ff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 5em 6%;
  margin-top: 0;
}
.lp-body .rc-features-head__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3em 2%;
}
.lp-body .rc-features-head__card {
  background: #fff;
  border: 1px solid #e0e3e7;
  border-radius: 0.7em;
  padding: 1.8em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  text-decoration: none;
}
.lp-body .rc-features-head__num {
  position: absolute;
  top: 1.8em;
  right: 1.8em;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0059ff;
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
}
.lp-body .rc-features-head__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45, 86, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-body .rc-features-head__icon img {
  width: 40%;
  height: auto;
}
.lp-body .rc-features-head__card-title {
  font-size: clamp(1.6rem, 3vw, 1.7rem);
  font-weight: 700;
  color: #004898;
  line-height: 1.4;
  margin-top: 0.25em;
}
.lp-body .rc-features-head__card-text {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  color: #444;
  line-height: 1.87;
  letter-spacing: 0.03em;
}
.lp-body .rc-features-head__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: space-between;
  gap: 1em;
}
.lp-body .rc-features-head__cell-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75em;
}
.lp-body .rc-features-head__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.2em;
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  text-align: left;
}
.lp-body .rc-features-head__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.625;
  margin-bottom: 0.4em;
}
.lp-body .rc-features-head__title span {
  color: #248eff;
}
.lp-body .rc-features-head__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #14234d;
  margin-top: -0.75em;
}
.lp-body .rc-features-head__cta {
  display: flex;
  align-items: center;
  gap: 1.5em;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f1f1f;
  text-decoration: none;
  padding-bottom: 1em;
  border-bottom: 1px solid #dfe5f4;
}
.lp-body .rc-features-head__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  aspect-ratio: 39/23;
  border-radius: 999px;
  background: #0059ff;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .lp-body .rc-features-head {
    padding: 2em 5%;
    margin-top: 2em;
  }
  .lp-body .rc-features-head__grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  .lp-body .rc-features-head__cell {
    align-items: center;
    order: -1;
  }
  .lp-body .rc-features-head__cell-body {
    align-items: center;
    text-align: center;
  }
  .lp-body .rc-features-head__cell-body .rc-features-head__en {
    text-align: center;
  }
}
.lp-body .rc-features {
  padding: 5em 0;
}
.lp-body .rc-features__hr {
  border: none;
  border-top: 1px solid #dfe5f4;
  margin: 5em 0;
}
.lp-body .rc-features__item {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.lp-body .rc-features__row {
  display: flex;
  align-items: center;
  gap: 5%;
}
.lp-body .rc-features__item--side {
  flex-direction: row;
  align-items: flex-start;
  gap: 5%;
}
.lp-body .rc-features__col-text {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.lp-body .rc-features__item--side > .lp-body .rc-features__col-text {
  flex: 0 0 30%;
}
.lp-body .rc-features__col-visual {
  flex: 1 1 0;
  min-width: 0;
}
.lp-body .rc-features__col-visual--dual {
  display: flex;
  align-items: center;
  gap: 2%;
}
.lp-body .rc-features__mock {
  flex: 1 1 0;
  min-width: 0;
}
.lp-body .rc-features__mock img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5em;
}
.lp-body .rc-features__dual-arrow {
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: #0059ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-body .rc-features__screen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5em;
}
.lp-body .rc-features__head {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.lp-body .rc-features__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  line-height: 1.6;
  margin: 0;
}
.lp-body .rc-features__title {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.5;
  margin: 0;
}
.lp-body .rc-features__title span {
  color: #248eff;
}
.lp-body .rc-features__desc {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  color: #14234d;
  line-height: 1.8;
  margin: 0;
}
.lp-body .rc-features__desc--sub {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  color: #14234d;
  line-height: 1.8;
  margin: 0;
}
.lp-body .rc-features__subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}
.lp-body .rc-features__subgrid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.lp-body .rc-features__subgrid--vert {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.lp-body .rc-features__card {
  background: #f7f9ff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 1.5em 2em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.lp-body .rc-features__card-hd {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.lp-body .rc-features__card-ttl {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #0059FF;
  margin: 0;
}
.lp-body .rc-features__card-txt {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: #444;
  line-height: 1.7;
  margin: 0;
}
.lp-body .rc-features__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0059ff;
}
.lp-body .rc-features__doclist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.lp-body .rc-features__doclist li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  color: #004898;
  font-weight: 600;
}
.lp-body .rc-features__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.lp-body .rc-features__bullets li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  color: #004898;
  font-weight: 600;
}
.lp-body .rc-features__dot {
  display: inline-block;
  flex-shrink: 0;
  width: 0.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #00a0cd;
}
@media (max-width: 1200px) {
  .lp-body .rc-features {
    padding: 2em 5%;
  }
  .lp-body .rc-features__hr {
    margin: 3em 0;
  }
  .lp-body .rc-features__row {
    flex-direction: column;
    gap: 2em;
  }
  .lp-body .rc-features__item--side {
    flex-direction: column;
    gap: 2em;
  }
  .lp-body .rc-features__head {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .lp-body .rc-features__desc {
    text-align: center;
  }
  .lp-body .rc-features__desc--sub {
    text-align: center;
  }
  .lp-body .rc-features__col-text, .lp-body .rc-features__item--side > .lp-body .rc-features__col-text {
    flex: 1 1 100%;
    width: 100%;
  }
  .lp-body .rc-features__doclist, .lp-body .rc-features__bullets {
    width: fit-content;
    margin: 0 auto;
  }
  .lp-body .rc-features__doclist li {
    min-width: 15em;
  }
  .lp-body .rc-features__col-visual {
    width: 80%;
    margin: 0 auto;
  }
  .lp-body .rc-features__col-visual--dual {
    flex-direction: column;
    gap: 1.5em;
  }
  .lp-body .rc-features__subgrid {
    grid-template-columns: 1fr;
  }
  .lp-body .rc-features__dual-arrow {
    transform: rotate(90deg);
  }
  .lp-body .rc-features__subgrid--2col {
    grid-template-columns: 1fr;
  }
}
.lp-body .all-features__inner {
  background: linear-gradient(to bottom, #004898, #005cc3);
  border-radius: 0.5em;
  padding: 5em 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
}
.lp-body .all-features__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
  text-align: center;
}
.lp-body .all-features__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .all-features__title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.lp-body .all-features__title span {
  color: #3fcfff;
}
.lp-body .all-features__tabs {
  display: flex;
  background: #fff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 0.3em;
  gap: 0.3em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: min(25em, 100%);
}
.lp-body .all-features__tab {
  flex: 1;
  padding: 0.6em 1.5em;
  border: none;
  border-radius: 0.4em;
  font-size: clamp(1.3rem, 1.5vw, 1.4rem);
  font-weight: 700;
  cursor: pointer;
  color: #14234d;
  background: transparent;
  font-family: "Noto Sans JP", sans-serif;
  transition: background 0.2s, color 0.2s;
}
.lp-body .all-features__tab--active {
  background: #0059ff;
  color: #fff;
}
.lp-body .all-features__panel {
  width: 100%;
}
.lp-body .all-features__panel--hidden {
  display: none;
}
.lp-body .all-features__panel--in {
  animation: panel-fade-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes panel-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-body .all-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25em;
}
.lp-body .all-features__card {
  background: #f7f9ff;
  border: 1px solid #dfe5f4;
  border-radius: 0.7em;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.lp-body .all-features__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 1em;
  border-radius: 999px;
  background: linear-gradient(to bottom, #004898, #005cc3);
  color: #fff;
  font-size: clamp(1.3rem, 1.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.lp-body .all-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.lp-body .all-features__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: clamp(1.3rem, 1.5vw, 1.4rem);
  color: rgba(24, 31, 46, 0.8);
  padding-bottom: 0.75em;
  border-bottom: 1px solid #dfe5f4;
  margin-bottom: 0.75em;
}
.lp-body .all-features__item--last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.lp-body .all-features__dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0059ff;
}
.lp-body .all-features__cta {
  display: flex;
  gap: 0.75em;
  align-items: center;
  justify-content: center;
  padding-top: 0.5em;
}
.lp-body .all-features__btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.75em;
  background: #0059ff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.lp-body .all-features__btn-demo:hover {
  opacity: 0.85;
}
.lp-body .all-features__btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.8em;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-body .all-features__btn-contact:hover {
  opacity: 0.75;
}
@media (max-width: 1200px) {
  .lp-body .all-features__inner {
    padding: 2em 5%;
    gap: 2em;
  }
  .lp-body .all-features__tabs {
    flex-direction: column;
    width: 100%;
  }
  .lp-body .all-features__card {
    padding: 1.5em 5%;
  }
  .lp-body .all-features__grid {
    grid-template-columns: 1fr;
  }
  .lp-body .all-features__cta {
    flex-direction: column;
    width: 100%;
  }
  .lp-body .all-features__btn-demo, .lp-body .all-features__btn-contact {
    width: 100%;
    justify-content: center;
  }
}
.lp-body .case-study__inner {
  background: #f7f9ff;
  border-radius: 0.5em;
  padding: 5em 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
.lp-body .case-study__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
}
.lp-body .case-study__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .case-study__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  margin: 0;
}
.lp-body .case-study__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #14234d;
  letter-spacing: 0.03em;
  margin: 0;
}
.lp-body .case-study__grid {
  display: grid;
  gap: 2.5em;
  width: 100%;
}
.lp-body .case-study__card {
  background: #fff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 1.8em;
  display: flex;
  gap: 1.5em;
  width: 100%;
}
.lp-body .case-study__photo {
  width: 80%;
  border-radius: 0.5em;
  overflow: hidden;
}
.lp-body .case-study__photo img {
  object-fit: cover;
  display: block;
  height: 100%;
}
.lp-body .case-study__body {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.lp-body .case-study__meta {
  display: flex;
  align-items: center;
  gap: 1em;
}
.lp-body .case-study__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #004898, #005cc3);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}
.lp-body .case-study__company-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.lp-body .case-study__company {
  font-size: clamp(1.6rem, 3vw, 1.7rem);
  font-weight: 700;
  color: #004898;
  margin: 0;
  line-height: 1.4;
}
.lp-body .case-study__info {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: #14234d;
  margin: 0;
  letter-spacing: 0.03em;
}
.lp-body .case-study__quote {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
  color: #444;
  line-height: 1.87;
  letter-spacing: 0.03em;
  margin: 0;
}
.lp-body .case-study__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp-body .case-study__tag {
  background: #f7f9ff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 0.25em 0.6em;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #14234d;
  letter-spacing: 0.03em;
}
@media (max-width: 1200px) {
  .lp-body .case-study__inner {
    padding: 3em 5%;
  }
  .lp-body .case-study__photo {
    width: 100%;
  }
  .lp-body .case-study__grid {
    grid-template-columns: 1fr;
  }
  .lp-body .case-study__card {
    flex-direction: column;
  }
}
.lp-body .cta-banner__inner {
  background: #14234d;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  padding: 4em 7%;
}
.lp-body .cta-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  color: #fff;
}
.lp-body .cta-banner__title {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  margin: 0;
}
.lp-body .cta-banner__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0;
  letter-spacing: 0.03em;
}
.lp-body .cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.75em;
  background: #0059ff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.lp-body .cta-banner__btn:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .lp-body .cta-banner__inner {
    flex-direction: column;
    padding: 3em 5%;
  }
  .lp-body .cta-banner__btn {
    width: 100%;
    justify-content: center;
  }
  .lp-body .cta-banner__text {
    text-align: center;
  }
}
.lp-body .lp-support {
  width: min(96%, 1200px);
  margin: 5em auto;
}
.lp-body .lp-support__row {
  display: flex;
  gap: 5%;
  align-items: flex-start;
}
.lp-body .lp-support__head {
  flex: 0 0 27%;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.lp-body .lp-support__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .lp-support__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  line-height: 1.625;
  margin: 0;
  text-align: left;
}
.lp-body .lp-support__title span {
  color: #248eff;
}
.lp-body .lp-support__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #14234d;
  line-height: 1.8;
  margin: 0;
}
.lp-body .lp-support__cards {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25em;
}
.lp-body .lp-support__card {
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.lp-body .lp-support__num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0059ff;
  letter-spacing: 0.08em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .lp-support__card-hd {
  display: flex;
  align-items: center;
  gap: 1em;
}
.lp-body .lp-support__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45, 86, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-body .lp-support__icon img {
  width: 50%;
  height: auto;
  display: block;
}
.lp-body .lp-support__card-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004898;
  margin: 0;
  line-height: 1.4;
}
.lp-body .lp-support__card-txt {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin: 0;
}
@media (max-width: 1200px) {
  .lp-body .lp-support__row {
    flex-direction: column;
    gap: 2em;
  }
  .lp-body .lp-support__head {
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .lp-body .lp-support__card {
    padding: 1.5em 5%;
  }
  .lp-body .lp-support__title {
    text-align: center;
  }
  .lp-body .lp-support__cards {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .lp-body .lp-support__cards {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
}
.lp-body .lp-price__bg {
  position: relative;
  border-radius: 0.5em;
  overflow: hidden;
  background: url("/files/LP_RC/img_202607/price_bg.jpg") center/cover no-repeat;
  padding: 4em 7%;
}
.lp-body .lp-price__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.lp-body .lp-price__card {
  position: relative;
  background: #f7f9ff;
  border-radius: 0.5em;
  padding: 3.5em 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.lp-body .lp-price__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-align: center;
}
.lp-body .lp-price__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .lp-price__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  margin: 0;
}
.lp-body .lp-price__lead {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  color: #14234d;
  margin: 0;
  letter-spacing: 0.03em;
}
.lp-body .lp-price__body {
  display: flex;
  align-items: center;
  gap: 2em 1em;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-body .lp-price__badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #4ea3ff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3em;
  padding: 0.5em;
}
.lp-body .lp-price__badge-sub {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}
.lp-body .lp-price__badge-hl {
  font-size: 2rem;
  font-weight: 900;
  color: #fff64f;
  line-height: 1.2;
}
.lp-body .lp-price__amounts {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}
.lp-body .lp-price__init {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.lp-body .lp-price__init-label {
  background: #dfe5f4;
  color: #004898;
  font-size: 1.5rem;
  padding: 0.3em 1em;
  border-radius: 0.4em;
  white-space: nowrap;
}
.lp-body .lp-price__strike {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 600;
  color: #004898;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
}
.lp-body .lp-price__strike__price {
  position: relative;
  display: inline-block;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  color: #14234d;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  padding: 0 0.2em;
  margin-left: 0.3em;
}
.lp-body .lp-price__strike__price::before, .lp-body .lp-price__strike__price::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 5px;
  background: #ce2110;
  border-radius: 2px;
  transform-origin: center;
}
.lp-body .lp-price__strike__price::before {
  transform: translateY(-50%) rotate(-13deg);
}
.lp-body .lp-price__strike__price::after {
  transform: translateY(-50%) rotate(13deg);
}
.lp-body .lp-price__strike small {
  font-size: 1.4rem;
  color: #636975;
}
.lp-body .lp-price__arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5em;
}
.lp-body .lp-price__zero {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
}
.lp-body .lp-price__zero-num {
  font-size: clamp(4rem, 5vw, 6rem);
  color: #ce2110;
  font-family: "Lato", sans-serif;
}
.lp-body .lp-price__zero-unit {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 700;
  color: #ce2110;
}
.lp-body .lp-price__monthly {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
}
.lp-body .lp-price__monthly-label {
  background: #14234d;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}
.lp-body .lp-price__monthly-num {
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 500;
  color: #14234d;
  font-family: "Lato", sans-serif;
  line-height: 1;
}
.lp-body .lp-price__monthly-unit {
  font-size: 2.2rem;
  font-weight: 700;
  color: #14234d;
}
.lp-body .lp-price__monthly-tax {
  font-size: 1.4rem;
  color: #14234d;
  align-self: flex-end;
  padding-bottom: 0.3em;
}
.lp-body .lp-price__campaign {
  background: rgba(36, 142, 255, 0.8);
  border-radius: 0.5em;
  padding: 1em 5%;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  align-items: center;
}
.lp-body .lp-price__campaign-title {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.lp-body .lp-price__campaign-badge {
  background: #fff64f;
  color: #004898;
  font-size: 1.1rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-body .lp-price__campaign-name {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  font-weight: 600;
  color: #fff64f;
  letter-spacing: -0.05em;
}
.lp-body .lp-price__campaign-body {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
.lp-body .lp-price__campaign-period {
  background: #fff;
  color: #004898;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.3em 1em;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-body .lp-price__campaign-detail {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}
.lp-body .lp-price__campaign-detail small {
  font-size: 1.2rem;
  font-weight: 400;
}
.lp-body .lp-price__cta {
  display: flex;
  gap: 0.75em;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-body .lp-price__btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.75em;
  background: #0059ff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.lp-body .lp-price__btn-demo:hover {
  opacity: 0.85;
}
.lp-body .lp-price__btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.8em;
  border: 1px solid #14234d;
  color: #14234d;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  background: #fff;
  transition: opacity 0.2s;
}
.lp-body .lp-price__btn-contact:hover {
  opacity: 0.75;
}
@media (max-width: 1200px) {
  .lp-body .lp-price__bg {
    padding: 2em 4%;
  }
  .lp-body .lp-price__card {
    padding: 2.5em 5%;
    gap: 1.5em;
  }
  .lp-body .lp-price__body {
    flex-direction: column;
    gap: 1.5em;
  }
  .lp-body .lp-price__amounts {
    align-items: center;
  }
  .lp-body .lp-price__amounts .lp-price__init {
    flex-direction: column;
  }
  .lp-body .lp-price__amounts .lp-price__init .lp-price__arrow {
    transform: rotate(90deg);
  }
  .lp-body .lp-price__init {
    justify-content: center;
  }
  .lp-body .lp-price__monthly {
    justify-content: center;
  }
  .lp-body .lp-price__monthly .lp-price__monthly-label {
    font-size: 1.2rem;
    width: 3em;
    height: 3em;
  }
  .lp-body .lp-price__campaign {
    padding: 1em;
  }
  .lp-body .lp-price__campaign-body {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    text-align: center;
  }
  .lp-body .lp-price__cta {
    flex-direction: column;
    width: 100%;
  }
  .lp-body .lp-price__btn-demo, .lp-body .lp-price__btn-contact {
    width: 100%;
    justify-content: center;
  }
}
.lp-body .lp-faq__row {
  display: flex;
  gap: 5%;
  align-items: flex-start;
}
.lp-body .lp-faq__head {
  flex: 0 0 22%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  position: sticky;
  top: 6em;
}
.lp-body .lp-faq__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .lp-faq__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  margin: 0;
  text-align: left;
}
.lp-body .lp-faq__title span {
  color: #248eff;
}
.lp-body .lp-faq__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #14234d;
  margin: 0;
}
.lp-body .lp-faq__list {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  width: 100%;
}
.lp-body .lp-faq__item {
  border: 1px solid #e0e3e7;
  border-radius: 0.7em;
  overflow: hidden;
  background: #f7f9ff;
}
.lp-body .lp-faq__item[open] {
  background: #fff;
}
.lp-body .lp-faq__item[open] .lp-faq__q {
  background: #f7f9ff;
  border-bottom: 1px solid #e0e3e7;
}
.lp-body .lp-faq__item[open] .lp-faq__toggle::before {
  content: "−";
}
.lp-body .lp-faq__q {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.25em 1.5em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.lp-body .lp-faq__q::-webkit-details-marker {
  display: none;
}
.lp-body .lp-faq__q-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d56b6;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  flex-shrink: 0;
  line-height: 1;
}
.lp-body .lp-faq__q-text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #14234d;
  line-height: 1.5;
}
.lp-body .lp-faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f4f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #14234d;
}
.lp-body .lp-faq__toggle::before {
  content: "+";
}
.lp-body .lp-faq__a {
  display: flex;
  gap: 1em;
  padding: 1.25em 1.5em;
}
.lp-body .lp-faq__a-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0059ff;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  flex-shrink: 0;
  line-height: 1;
}
.lp-body .lp-faq__a-text {
  flex: 1;
  font-size: 1.4rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 1200px) {
  .lp-body .lp-faq__row {
    flex-direction: column;
    gap: 2em;
  }
  .lp-body .lp-faq__head {
    position: static;
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .lp-body .lp-faq__q-text {
    font-size: 1.4rem;
  }
}
.lp-body .lp-flow__inner {
  background: #f7f9ff;
  border-radius: 0.5em;
  padding: 5em 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
  border: 1px solid #DFE5F4;
}
.lp-body .lp-flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-align: center;
}
.lp-body .lp-flow__en {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d56b6;
  letter-spacing: 0.4em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .lp-flow__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #14234d;
  margin: 0;
}
.lp-body .lp-flow__title span {
  color: #248eff;
}
.lp-body .lp-flow__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #14234d;
  margin: 0;
}
.lp-body .lp-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75em;
  width: 100%;
  position: relative;
  z-index: 0;
}
.lp-body .lp-flow__steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(20% - 1em);
  right: calc(20% - 1em);
  height: 1px;
  border-top: 5px solid #004898;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lp-body .lp-flow__steps.is-visible::before {
  opacity: 1;
  transition-delay: 870ms;
}
.lp-body .lp-flow__step {
  background: #fff;
  border: 1px solid #dfe5f4;
  border-radius: 0.5em;
  padding: 2em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-align: center;
}
.lp-body .lp-flow__step-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0059ff;
  letter-spacing: 0.08em;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
  margin: 0;
}
.lp-body .lp-flow__step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #004898, #005cc3);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
}
.lp-body .lp-flow__step-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #004898;
  margin: 0;
  line-height: 1.4;
}
.lp-body .lp-flow__step-txt {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin: 0;
}
@media (max-width: 767px) {
  .lp-body .lp-flow__inner {
    padding: 3em 5%;
  }
  .lp-body .lp-flow__steps {
    grid-template-columns: 1fr;
  }
  .lp-body .lp-flow__steps::before {
    display: none;
  }
}
.lp-body .lp-final-cta__inner {
  background: #14234d;
  border-radius: 0.5em;
  padding: 4em 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  text-align: center;
}
.lp-body .lp-final-cta__title {
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.lp-body .lp-final-cta__title span {
  color: #fff;
}
.lp-body .lp-final-cta__desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #fff;
  margin: 0;
  letter-spacing: 0.03em;
}
.lp-body .lp-final-cta__cta {
  display: flex;
  gap: 0.75em;
  align-items: center;
  justify-content: center;
  padding-top: 0.75em;
  flex-wrap: wrap;
}
.lp-body .lp-final-cta__btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.75em;
  background: #0059ff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.lp-body .lp-final-cta__btn-demo:hover {
  opacity: 0.85;
}
.lp-body .lp-final-cta__btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.8em;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.4em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-body .lp-final-cta__btn-contact:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .lp-body .lp-final-cta__inner {
    padding: 3em 5%;
  }
  .lp-body .lp-final-cta__cta {
    flex-direction: column;
    width: 100%;
  }
  .lp-body .lp-final-cta__btn-demo, .lp-body .lp-final-cta__btn-contact {
    width: 100%;
    justify-content: center;
  }
  .lp-body .lp-final-cta__btn-demo {
    padding: 0.9em 0;
  }
  .lp-body .lp-final-cta__btn-contact {
    padding: 0.9em 0;
  }
}
.lp-body .lp-footer {
  padding: 3em 0 6em;
}
.lp-body .lp-footer__inner {
  width: min(96%, 1600px);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 10%;
  padding: 0 2% 5em;
  justify-content: space-between;
}
.lp-body .lp-footer__brand {
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-body .lp-footer__logo {
  display: block;
}
.lp-body .lp-footer__logo img {
  height: clamp(36px, 4vw, 52px);
  width: auto;
}
.lp-body .lp-footer__nav {
  display: flex;
  gap: 2em;
  width: 32%;
}
.lp-body .lp-footer__nav-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.lp-body .lp-footer__nav-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #004898;
  margin: 0;
}
.lp-body .lp-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.lp-body .lp-footer__nav-link {
  font-size: 1.4rem;
  color: #004898;
  text-decoration: none;
  transition: opacity 0.2s;
}
.lp-body .lp-footer__nav-link:hover {
  opacity: 0.6;
}
.lp-body .lp-footer__bottom {
  display: none;
}
.lp-body .lp-footer__copy {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  font-family: "Hanken Grotesk", "Lato", sans-serif;
}
@media (max-width: 767px) {
  .lp-body .lp-footer {
    padding: 3em 0 0;
  }
  .lp-body .lp-footer__inner {
    flex-direction: column;
    gap: 2em;
    padding-bottom: 2.5em;
  }
  .lp-body .lp-footer__brand {
    width: 100%;
    text-align: center;
  }
  .lp-body .lp-footer__brand .lp-footer__copy {
    display: none;
  }
  .lp-body .lp-footer__nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .lp-body .lp-footer__nav-group {
    flex: 1 1 100%;
    gap: 0;
  }
  .lp-body .lp-footer__nav-heading {
    border-top: 1px solid #dfe5f4;
    padding: 0.9em 0;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
  }
  .lp-body .lp-footer__nav-list {
    padding: 0.25em 0 1.25em;
    gap: 0.75em;
  }
  .lp-body .lp-footer__nav-link {
    display: block;
    font-size: 1.3rem;
    padding: 0.2em 0;
  }
  .lp-body .lp-footer__bottom {
    display: block;
    width: 100%;
    text-align: center;
    background: #1A3D73;
    padding: 1.25em 5%;
    border-top: none;
  }
  .lp-body .lp-footer__bottom .lp-body .lp-footer__copy {
    color: #fff;
  }
}
.lp-body .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #0059ff;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
.lp-body .btn-primary:hover {
  opacity: 0.85;
}