@charset "UTF-8";

/* =========================
   Shell layout
========================= */

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

body > #footerFix {
  margin-top: auto;
}

/* =========================
   Header variables
========================= */

body.lp {
  --lp-header-logo-width: clamp(6.2rem, 30vw, 7.2rem);
  --lp-header-padding-y: 0.75rem;
  --lp-header-height: calc((var(--lp-header-logo-width) * 0.2355) + (var(--lp-header-padding-y) * 2));
}

/* =========================
   Header base / SP default
========================= */

.lp header.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  max-width: 100%;
  gap: 0.75rem;
  padding: var(--lp-header-padding-y) clamp(0.45rem, 1.8vw, 0.65rem) var(--lp-header-padding-y) clamp(0.75rem, 3.2vw, 1rem);
  box-sizing: border-box;
  background: linear-gradient(to bottom, #F8F8F8 0%, #F5F0F5 52%, #C6D2E5 100%);
  backdrop-filter: blur(8px);
}

.lp header.head.is-menu-open {
  z-index: 2147483000;
}

.lp header.head #logo {
  position: static;
  width: var(--lp-header-logo-width);
  flex-shrink: 0;
}

.lp header.head #logo img {
  display: block;
  width: 100%;
  height: auto;
}

.lp header.head .header-section-links,
.lp header.head .header-cta {
  display: none;
}

.lp header.head .header-section-links {
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.2vw, 1rem);
  position: absolute;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.lp header.head .header-section-links a {
	color: #050442;
	font-size: 14px;
	font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.lp header.head .header-section-links a:hover {
  opacity: .8;
  text-decoration: underline;
}

.lp header.head .header-cta {
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

.lp header.head .header-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9.6rem;
  max-width: none;
  min-height: 2.75rem;
  padding: 0.75em 1em;
  box-sizing: border-box;
  border: 1px solid #55418e;
  border-radius: 0.2rem;
  background: #55418e;
  color: #fff;
	font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}

.lp header.head .header-cta a.header-cta-primary {
  order: 1;
  border-color: #55418e;
  background: linear-gradient(135deg, #87559a 0%, #4c4499 100%);
  color: #fff;
}

.lp header.head .header-cta a.header-cta-secondary {
  order: 2;
  border-color: #21144f;
  background: #F8F8F8;
  color: #050442;
}

.lp header.head .header-cta a:hover {
  opacity: .8;
  text-decoration: none;
}

.lp header.head .header-cta a.is-current {
  box-shadow: none;
}

.lp header.head .site-menu-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: clamp(0.45rem, 1.8vw, 0.65rem);
  z-index: 2147483020;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #2b2170;
  cursor: pointer;
  transform: translateY(-50%);
}

.lp header.head .site-menu-toggle span {
  position: absolute;
  width: 0.82rem;
  height: 0.12rem;
  border-radius: 9999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp header.head .site-menu-toggle span:first-child {
  transform: translateY(-0.16rem);
}

.lp header.head .site-menu-toggle span:last-child {
  transform: translateY(0.16rem);
}

.lp header.head .site-menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.lp header.head .site-menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.lp header.head.is-menu-open .site-menu-toggle {
  background: transparent;
  color: #2b2170;
}

/* =========================
   Mobile menu
========================= */

html.site-mobile-menu-active,
body.lp.site-mobile-menu-active {
  overflow: hidden;
}

.lp header.head .site-mobile-menu {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: clamp(5.25rem, 22vw, 5.85rem) clamp(1.35rem, 5.8vw, 1.65rem) 1.65rem;
  box-sizing: border-box;
  border-top: 0;
  background: linear-gradient(180deg, #fbfafc 0%, #f4f1f8 55%, #dce4f2 100%);
  box-shadow: none;
  overflow-y: auto;
  animation: site-mobile-menu-reveal 0.2s ease-out both;
  will-change: opacity, transform;
}

.lp header.head .site-mobile-menu[hidden],
.lp header.head .site-mobile-faq-submenu[hidden] {
  display: none;
}

.lp header.head .site-mobile-menu.is-closing {
  pointer-events: none;
  animation: site-mobile-menu-hide 0.16s ease-in both;
}

.lp header.head .site-mobile-menu-panel {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.lp header.head .site-mobile-menu-brand {
  position: fixed;
  top: var(--lp-header-padding-y);
  left: clamp(0.75rem, 3.2vw, 1rem);
  z-index: 2147483010;
  margin: 0;
}

.lp header.head .site-mobile-menu-brand a {
  display: inline-flex;
  align-items: center;
  width: var(--lp-header-logo-width);
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.lp header.head .site-mobile-menu-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.lp header.head .site-mobile-menu-nav,
.lp header.head .site-mobile-menu-list,
.lp header.head .site-mobile-menu-actions {
  display: flex;
  flex-direction: column;
}

.lp header.head .site-mobile-menu-nav,
.lp header.head .site-mobile-menu-list {
  gap: 0;
}

.lp header.head .site-mobile-menu-list {
  animation: site-mobile-menu-content-in 0.2s ease-out 0.03s both;
}

.lp header.head .site-mobile-menu-link {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.58rem;
  margin: 0;
  padding: 0 clamp(0.5rem, 2.4vw, 0.65rem);
  box-sizing: border-box;
  border: 0;
  border-bottom: 2px solid rgba(103, 103, 108, 0.46);
  border-radius: 0;
  background: transparent;
  color: #251a86;
  box-shadow: none;
  font-size: clamp(1.08rem, 5vw, 1.23rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.lp header.head .site-mobile-menu-link:hover,
.lp header.head .site-mobile-menu-link:focus-visible {
  background: transparent;
  color: #251a86;
  opacity: 1;
  text-decoration: none;
}

.lp header.head .site-mobile-menu-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  color: #251a86;
  font-size: 1.36em;
  font-weight: 500;
  line-height: 1;
}

.lp header.head .site-mobile-faq-group {
  border-bottom: 2px solid rgba(103, 103, 108, 0.46);
}

.lp header.head .site-mobile-faq-group .site-mobile-menu-link {
  border-bottom: 0;
}

.lp header.head .site-mobile-faq-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
  padding: 0 0 1.12rem clamp(3.35rem, 15.2vw, 4rem);
}

.lp header.head .site-mobile-faq-submenu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95rem;
  min-height: 1.78rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #251a86;
  font-size: clamp(0.96rem, 4.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
}

.lp header.head .site-mobile-faq-submenu a span:first-child {
  min-width: clamp(6.1rem, 27vw, 7rem);
}

.lp header.head .site-mobile-faq-submenu a span:last-child {
  color: #251a86;
  font-size: 1.16em;
  line-height: 1;
}

.lp header.head .site-mobile-menu-actions {
  gap: 0.75rem;
  margin-top: clamp(1.1rem, 4.8vw, 1.45rem);
  animation: site-mobile-menu-content-in 0.2s ease-out 0.05s both;
}

.lp header.head .site-mobile-actions-title {
  margin: 0.1rem 0 -0.25rem;
  padding: 0 clamp(0.15rem, 1vw, 0.25rem);
  color: #251a86;
  font-size: clamp(1.02rem, 4.8vw, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.lp header.head .site-mobile-menu.is-closing .site-mobile-menu-list,
.lp header.head .site-mobile-menu.is-closing .site-mobile-menu-actions {
  animation: site-mobile-menu-content-out 0.12s ease-in both;
}

.lp header.head .site-mobile-action {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
  padding: 0 0.8rem;
  box-sizing: border-box;
  border-radius: 0.36rem;
  box-shadow: none;
  font-size: clamp(0.86rem, 4.15vw, 1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
}

.lp header.head .site-mobile-action-primary {
  border: 1px solid rgba(74, 48, 139, 0.4);
  background: linear-gradient(135deg, #87559a 0%, #4c4499 100%);
  color: #fff;
  box-shadow: 0 0.28rem 0.5rem rgba(49, 42, 97, 0.24);
  font-size: clamp(0.78rem, 3.75vw, 0.96rem);
}

.lp header.head .site-mobile-action-secondary {
  border: 1px solid rgba(155, 155, 160, 0.52);
  background: rgba(255, 255, 255, 0.96);
  color: #251a86;
  box-shadow: 0 0.22rem 0.46rem rgba(49, 42, 97, 0.2);
}

.lp header.head .site-mobile-action:hover,
.lp header.head .site-mobile-action:focus-visible {
  opacity: 0.9;
  text-decoration: none;
}

.lp header.head .site-mobile-action-secondary:hover,
.lp header.head .site-mobile-action-secondary:focus-visible {
  color: #251a86;
}

.lp header.head .site-mobile-menu-cta {
  margin-top: 0;
}

.lp header.head .site-mobile-menu-cta a {
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 9999px;
  background: #4b3b92;
  color: #fff;
}

@keyframes site-mobile-menu-reveal {
  0% { opacity: 0; transform: translateY(-0.35rem); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes site-mobile-menu-hide {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-0.2rem); }
}

@keyframes site-mobile-menu-content-in {
  0% { opacity: 0; transform: translateY(0.35rem); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes site-mobile-menu-content-out {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-0.15rem); }
}

/* =========================
   Footer base / SP default
========================= */

footer.foot {
  position: relative;
  z-index: 20;
  padding: 30px 0 50px;
}

footer.foot #footer {
  width: 100%;
  max-width: var(--page-container-max-width);
  margin: auto;
  padding-inline: var(--page-container-padding-sp);
  box-sizing: border-box;
  transition: all .3s ease;
}

.lp footer.foot {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 1.15rem 0.85rem 1.75rem;
  background: linear-gradient(135deg, #8d5a91 0%, #4c4a9e 100%);
}

.lp footer.foot .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  gap: 1rem;
  padding: 0;
}

.lp footer.foot .footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0.45rem;
}

.lp footer.foot .footer-logo {
  width: clamp(5.5rem, 44vw, 7.8rem);
  height: auto;
}

.lp footer.foot .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  font-size: clamp(0.58rem, 2.6vw, 0.78rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.lp footer.foot .footer-links a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.lp footer.foot .footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.lp footer.foot .footer-note {
  align-self: flex-end;
  margin: 1.05rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.48rem, 2.2vw, 0.64rem);
  line-height: 1.4;
  text-align: right;
}

.lp footer.foot .footer-copyright {
  align-self: flex-end;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.48rem, 2.2vw, 0.64rem);
  line-height: 1.4;
  text-align: right;
}

/* =========================
   Tablet
========================= */

@media (768px <= width) {
  footer.foot #footer {
    padding-inline: var(--page-container-padding-tablet);
  }

  .lp footer.foot {
    min-height: 8vw;
    background: url("../images/common/footer-background.svg") no-repeat top center / cover;
  }
}

/* =========================
   PC
========================= */

@media (1024px <= width) {
  footer.foot #footer {
    padding-inline: var(--page-container-padding-pc);
  }

  .lp footer.foot {
    min-height: 0;
    aspect-ratio: 1280 / 121;
    padding: 0;
    background-size: 100% auto;
  }

  .lp footer.foot .footer-inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    padding: 0 clamp(1.25rem, 3.125vw, 2.5rem);
  }

  .lp footer.foot .footer-meta {
    align-items: flex-end;
    width: auto;
    gap: 0.5rem;
  }

  .lp footer.foot .footer-logo {
    width: clamp(6rem, 12.5vw, 10rem);
  }

  .lp footer.foot .footer-links {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.6vw, 1.5rem);
    font-size: clamp(0.72rem, 0.9vw, 0.9rem);
    line-height: normal;
  }

  .lp footer.foot .footer-links a + a {
    padding-left: clamp(0.75rem, 1.6vw, 1.5rem);
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }

  .lp footer.foot .footer-note {
    align-self: auto;
    margin: 0;
    font-size: clamp(0.65rem, 0.7vw, 0.75rem);
  }

  .lp footer.foot .footer-copyright {
    align-self: auto;
    font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  }
}

/* Header exception: keep hamburger navigation through 1200px. */
@media (1201px <= width) {
  body.lp {
    --lp-header-logo-width: clamp(7.2rem, 15.625vw, 12.5rem);
    --lp-header-padding-y: clamp(0.75rem, 1.5625vw, 1.25rem);
    --lp-header-height: calc((var(--lp-header-logo-width) * 0.187) + (var(--lp-header-padding-y) * 2));
  }

  html.site-mobile-menu-active,
  body.lp.site-mobile-menu-active {
    overflow: auto;
  }

  .lp header.head {
    gap: 1rem;
    padding: var(--lp-header-padding-y) clamp(1.25rem, 3.125vw, 2.5rem);
  }

  .lp header.head .header-section-links,
  .lp header.head .header-cta {
    display: flex;
  }

  .lp header.head .header-section-links {
    gap: clamp(0.42rem, 0.9vw, 0.75rem);
  }

  .lp header.head .header-section-links a {
    font-size: clamp(12px, 1.05vw, 14px);
  }

  .lp header.head .header-cta {
    position: static;
    top: auto;
    right: auto;
  }

  .lp header.head .header-cta a {
    max-width: none;
  }

  .lp header.head .site-menu-toggle,
  .lp header.head .site-mobile-menu {
    display: none;
  }
}

@media (1201px <= width < 1320px) {
  .lp header.head .header-cta-secondary {
    display: none;
  }
}

/* =========================
   Motion preferences
========================= */

@media (prefers-reduced-motion: reduce) {
  .lp header.head .site-mobile-menu,
  .lp header.head .site-mobile-menu.is-closing,
  .lp header.head .site-mobile-menu-list,
  .lp header.head .site-mobile-menu-actions,
  .lp header.head .site-mobile-menu.is-closing .site-mobile-menu-list,
  .lp header.head .site-mobile-menu.is-closing .site-mobile-menu-actions {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
