@charset "UTF-8";
body.p-home-page {
  color: #11172d;
  background: #d6d5d2;
}

body.p-home-page.is-menu-open {
  overscroll-behavior: none;
}

body.p-home-page.is-opening-scroll-locked {
  position: fixed;
  top: calc(var(--home-opening-scroll-lock-top, 0px) * -1);
  right: 0;
  left: 0;
  width: 100%;
  overflow-y: scroll;
  overscroll-behavior: none;
}

body.p-home-page.is-menu-open .p-home {
  position: fixed;
  top: calc(var(--scroll-lock-top, 0px) * -1);
  left: 0;
  width: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.p-home {
  --home-design-width: 144rem;
  --home-title-width: calc(100% - (57rem + 20rem));
  --home-content-width: 57rem;
  --home-side-width: 20rem;
  --home-bottom-bar-height: 6rem;
  --home-about-nav-height: 4.8rem;
  --home-hero-brand-height: 7rem;
  --home-hero-brand-overlap: 0px;
  --home-access-card-overlap: 0px;
  --home-hero-copy-offset-y: 0px;
  --home-fixed-button-width: 6rem;
  --home-contact-size: 9rem;
  --home-scroll-start-size: 9.2rem;
  --home-frame-offset-inline: 0px;
  --home-stage-padding: clamp(1.6rem, 4vw, 4.8rem);
  --home-panel-padding: clamp(2rem, 4vw, 3.6rem);
  --home-panel-gap: clamp(2.4rem, 4vw, 4rem);
  --home-fixed-bar-gradient:
    linear-gradient(90deg, #2743aa 0%, #2857bf 52%, #305fc6 100%);
  --home-stage-side-overlay:
    linear-gradient(90deg, rgb(0 0 0 / 10%) 0%, rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 0%) 100%);
  --home-stage-fade-duration: 960ms;
  --home-stage-image-zoom-duration: 1200ms;
  --home-stage-image-zoom-ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --home-hero-pan-duration: 6800ms;
  --home-hero-switch-duration: 720ms;
  --home-hero-switch-ease: cubic-bezier(0.165, 0.84, 0.44, 1);
  --home-opening-copy-char-duration: 520ms;
  --home-opening-copy-char-delay: 58ms;
  --home-opening-copy-gradient-duration: 960ms;
  --home-opening-ui-duration: 780ms;
  --home-ui-fade-duration: 480ms;
  --home-fade-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --home-hero-brand-mobile-transition: 240ms cubic-bezier(0.25, 1, 0.5, 1);
  --home-opening-hero-brand-mobile-transition-duration: 420ms;
  --home-font-jp-regular: var(--font-family-base);
  --home-font-jp-bold: var(--font-family-base-strong);
  --home-font-en-regular: var(--font-family-latin-regular);
  --home-font-en-demi: var(--font-family-latin-demi);
  --home-font-en-medium: 'AvenirNextLTPro-Medium', var(--font-family-latin-demi);
  --home-font-en-scale-y: 0.9;
  --home-font-en-trim-offset:
    calc(var(--text-trim-block-offset) - ((1 - var(--home-font-en-scale-y)) * 0.5em));
  --home-font-aoto-medium: 'MFW-PAotoGothicStdN-Medium', var(--home-font-jp-regular);
  position: relative;
  min-height: 100svh;
  overflow: clip;
  font-family: var(--home-font-jp-regular);
  color: #11172d;
}
@media (width >= 1024px) {
  .p-home {
    --home-bottom-bar-height: 16rem;
    --home-about-nav-height: 6rem;
    --home-hero-brand-height: var(--home-bottom-bar-height);
    --home-hero-brand-overlap: 0px;
    --home-access-card-overlap: 0px;
    --home-fixed-button-width: 12rem;
    --home-contact-size: 13rem;
  }
}
@media (width < 1024px) {
  .p-home {
    --home-hero-brand-overlap: max(env(safe-area-inset-bottom, 0px), 2.4rem);
    --home-access-card-overlap: max(200svh, env(safe-area-inset-bottom, 0px));
  }
}

.p-home a:focus-visible,
.p-home button:focus-visible {
  outline: 0.3rem solid rgb(var(--color-primary-rgb)/35%);
  outline-offset: 0.3rem;
}

.p-home__fixed-ui {
  pointer-events: none;
}

.p-home__stage-layer {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  z-index: 0;
  visibility: hidden;
  width: 100%;
  contain: paint;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: opacity var(--home-stage-fade-duration) var(--home-fade-ease), visibility 0s linear var(--home-stage-fade-duration);
  will-change: opacity;
}
.p-home__stage-layer:not(.p-home__stage-layer--hero)::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  content: "";
  background: var(--home-stage-side-overlay);
}
.p-home__stage-layer.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: translateZ(0);
  transition-delay: 0s;
}

.p-home__stage-image,
.p-home__hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.p-home__stage-image,
.p-home__about-visual-image {
  z-index: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 50% 50%;
}

.p-home:not(.is-legacy-android-stage-zoom-disabled) .p-home__stage-layer.is-active.is-stage-zoom-forward .p-home__stage-image,
.p-home:not(.is-legacy-android-stage-zoom-disabled).is-about-zoom-forward[data-home-current-stage=about] .p-home__about-visual-image {
  animation: home-stage-image-zoom-in var(--home-stage-image-zoom-duration) var(--home-stage-image-zoom-ease) both;
}

.p-home__hero-slider {
  position: absolute !important;
  inset-block: 0;
  inset-inline-start: 0;
  right: auto !important;
  width: 100% !important;
  height: 100svh;
  overflow: hidden;
}
.p-home__hero-slider .splide__track,
.p-home__hero-slider .splide__list {
  width: 100%;
  height: 100%;
}
.p-home__hero-slider .splide__list {
  position: relative;
}
.p-home__hero-slider .splide__slide {
  position: absolute !important;
  inset-block: 0;
  inset-inline-start: 0;
  z-index: 0 !important;
  visibility: hidden;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0 !important;
  clip-path: inset(0 0 0 0);
  transform: none !important;
  transition: none !important;
  will-change: auto;
}
.p-home__hero-slider .splide__slide.is-active, .p-home__hero-slider .splide__slide.is-leaving {
  visibility: visible;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}
.p-home__hero-slider .splide__slide.is-active {
  z-index: 1 !important;
}
.p-home__hero-slider .splide__slide.is-leaving {
  z-index: 2 !important;
  animation: home-hero-switch-out var(--home-hero-switch-duration) var(--home-hero-switch-ease) forwards;
  will-change: clip-path;
}
.p-home__hero-slider picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.p-home__hero-slider img {
  position: absolute;
  inset-block-start: calc(var(--home-hero-pan-size-y, 0%) / -2);
  inset-inline-start: calc(var(--home-hero-pan-size-x, 0%) / -2);
  width: calc(100% + var(--home-hero-pan-size-x, 0%));
  max-width: none;
  height: calc(100% + var(--home-hero-pan-size-y, 0%));
  transform: translate3d(var(--home-hero-pan-from-x, 0%), var(--home-hero-pan-from-y, 0%), 0);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  transition: transform var(--home-hero-pan-duration) linear;
  will-change: auto;
}
.p-home__hero-slider .splide__slide.is-active img,
.p-home__hero-slider .splide__slide.is-leaving img {
  transform: translate3d(var(--home-hero-pan-to-x, 0%), var(--home-hero-pan-to-y, 0%), 0);
}
.p-home__hero-slider .splide__slide.is-active img,
.p-home__hero-slider .splide__slide.is-leaving img,
.p-home__hero-slider .splide__slide.is-next img {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .p-home__hero-slider .splide__slide,
  .p-home__hero-slider img {
    transition: none !important;
    animation: none !important;
  }
}

.p-home.is-opening:not(.is-opening-slider-play) .p-home__hero-slider .splide__slide.is-active img {
  transform: translate3d(var(--home-hero-pan-from-x, 0%), var(--home-hero-pan-from-y, 0%), 0);
  transition: none;
}

@keyframes home-hero-switch-out {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 100% 0 0);
  }
}
@keyframes home-stage-image-zoom-in {
  from {
    transform: translate3d(0, 0, 0) scale(1.03);
  }
  to {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-home__stage-layer,
  .p-home__about-visual {
    transition: none;
    animation: none;
  }
  .p-home__stage-image,
  .p-home__about-visual-image {
    transform: none;
    animation: none;
  }
}
.p-home__hero-copy,
.p-home__stage-copy {
  position: absolute;
  z-index: 1;
  color: #fff;
}

.p-home__hero-copy {
  left: auto;
  display: grid;
  text-align: right;
}
@media (width >= 1024px) {
  .p-home__hero-copy {
    top: 34.7777777778%;
    right: 19rem;
    row-gap: 3.8rem;
    justify-items: end;
    width: 100%;
  }
}
@media (width < 1024px) {
  .p-home__hero-copy {
    top: calc((100svh - var(--home-hero-brand-height)) / 2 + var(--home-hero-copy-offset-y));
    right: 1.8rem;
    row-gap: 1.6rem;
    width: 27.3rem;
    transform: translateY(-55%);
  }
}

.p-home.is-opening .p-home__hero-copy {
  visibility: hidden;
  opacity: 1;
}

.p-home.is-opening.is-opening-copy-en .p-home__hero-copy {
  visibility: visible;
}

.p-home__hero-copy-en {
  --home-hero-copy-en-gradient: linear-gradient(90deg, #2f3f96 33.62%, #4177bf 100%);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-right: -0.15em;
  margin-left: 0;
  font-family: var(--home-font-en-regular);
  font-size: 9rem;
  font-weight: 400;
  font-feature-settings: "kern";
  font-kerning: normal;
  line-height: 0.82;
  color: #2438a3;
  text-transform: uppercase;
  word-spacing: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform-style: preserve-3d;
  perspective: var(--home-copy-char-perspective, none);
  perspective-origin: 100% 50%;
}
@media (width < 1024px) {
  .p-home__hero-copy-en {
    display: grid;
    row-gap: 0.4rem;
    justify-items: end;
    font-size: 4.6rem;
  }
}

.p-home.is-opening .p-home__hero-copy-en {
  --home-opening-copy-gradient-duration: 1400ms;
  --home-copy-char-duration: 420ms;
  --home-copy-char-delay: 40ms;
  --home-copy-char-offset-x: -0.5em;
  --home-copy-char-offset-y: 0;
  --home-copy-char-perspective: 1200px;
  --home-copy-char-rotate-x: 0deg;
  --home-copy-char-rotate-y: 14deg;
  --home-copy-char-rotate-z: 0deg;
  --home-copy-char-transform-origin: 0% 50%;
  --home-copy-char-ease: var(--home-fade-ease);
  background: none;
}

.p-home__hero-copy-en-line {
  display: inline-flex;
  align-items: baseline;
  transform-style: preserve-3d;
}

@media (width >= 1024px) {
  .p-home__hero-copy-en-line--upper::after {
    white-space: pre;
    content: " ";
  }
  .p-home__hero-copy-en-line--upper .p-home__copy-char {
    background-position: left top;
    background-size: 200% 100%;
  }
  .p-home__hero-copy-en-line--strong {
    margin-left: 0.03em;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char {
    background-position: right top;
    background-size: 200% 100%;
  }
}
.p-home__hero-copy-en-word {
  display: inline-flex;
  align-items: baseline;
  margin-left: 0;
  transform-style: preserve-3d;
}

.p-home__hero-copy-en-line--strong .p-home__hero-copy-en-word {
  margin-left: -0.075em;
}

.p-home__hero-copy-en-chars {
  display: inline-flex;
  visibility: visible;
  align-items: baseline;
  transform-style: preserve-3d;
}

.p-home__hero-copy-en .p-home__copy-char {
  color: var(--home-hero-copy-char-color, #2438a3);
  opacity: 1;
  transform: none;
  transition: color var(--home-opening-copy-gradient-duration) var(--home-opening-copy-gradient-ease, cubic-bezier(0.25, 1, 0.5, 1));
}

.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(1),
.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(2),
.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(3),
.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(4),
.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(5),
.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(6) {
  --home-hero-copy-char-color: #2f3f96;
}

.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(7) {
  --home-hero-copy-char-color: #30419c;
}

.p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(8) {
  --home-hero-copy-char-color: #3451a4;
}

.p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(1) {
  --home-hero-copy-char-color: #3860ad;
}

.p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(2) {
  --home-hero-copy-char-color: #3967b1;
}

.p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(3) {
  --home-hero-copy-char-color: #3d70b7;
}

.p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(4) {
  --home-hero-copy-char-color: #3f74bb;
}

.p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(5),
.p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(6) {
  --home-hero-copy-char-color: #3f79bf;
}

@media (width < 1024px) {
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(1),
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(2),
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(3),
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(4),
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(5) {
    --home-hero-copy-char-color: #2e3e97;
  }
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(6) {
    --home-hero-copy-char-color: #2f54ad;
  }
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(7) {
    --home-hero-copy-char-color: #426fb9;
  }
  .p-home__hero-copy-en-line--upper .p-home__copy-char:nth-child(8) {
    --home-hero-copy-char-color: #588ec8;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(1) {
    --home-hero-copy-char-color: #32459f;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(2) {
    --home-hero-copy-char-color: #3550a5;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(3) {
    --home-hero-copy-char-color: #3d61b3;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(4) {
    --home-hero-copy-char-color: #4976c7;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(5) {
    --home-hero-copy-char-color: #4f7fbc;
  }
  .p-home__hero-copy-en-line--strong .p-home__copy-char:nth-child(6) {
    --home-hero-copy-char-color: #5e91c8;
  }
}
.p-home.is-opening .p-home__hero-copy-en .p-home__copy-char {
  color: #2438a3;
  opacity: 0;
  transform: translate3d(var(--home-copy-char-offset-x, 0), var(--home-copy-char-offset-y, 0.35em), 0) rotateX(var(--home-copy-char-rotate-x, 0deg)) rotateY(var(--home-copy-char-rotate-y, 0deg)) rotateZ(var(--home-copy-char-rotate-z, 0deg));
  will-change: opacity, transform, color;
}

.p-home.is-opening.is-opening-gradient .p-home__hero-copy-en .p-home__copy-char {
  color: var(--home-hero-copy-char-color, #2438a3);
}

.p-home__hero-copy-en-word--strong {
  font-family: var(--home-font-en-demi);
  font-weight: 700;
}

[data-home-copy-split] {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
}

[data-home-copy-char-layer] {
  position: absolute;
  inset: 0;
  display: none;
  white-space: inherit;
  pointer-events: none;
  transform-style: preserve-3d;
}

.p-home__hero-copy-ja [data-home-copy-char-layer] {
  color: #fff;
}

.p-home__stage-en [data-home-copy-char-layer] {
  color: #fff;
}

.p-home__menu-link [data-home-copy-char-layer],
.p-home__menu-sublink [data-home-copy-char-layer] {
  color: #fff;
}

.p-home__copy-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(var(--home-copy-char-offset-x, 0), var(--home-copy-char-offset-y, 0.35em), 0) rotateX(var(--home-copy-char-rotate-x, 0deg)) rotateY(var(--home-copy-char-rotate-y, 0deg)) rotateZ(var(--home-copy-char-rotate-z, 0deg));
  transform-origin: var(--home-copy-char-transform-origin, 50% 50%);
  backface-visibility: hidden;
  transition: opacity var(--home-copy-char-duration, 420ms) var(--home-copy-char-ease, var(--home-fade-ease)), transform var(--home-copy-char-duration, 420ms) var(--home-copy-char-ease, var(--home-fade-ease));
  transition-delay: calc(var(--char-index, 0) * var(--home-copy-char-delay, 35ms));
}

@keyframes home-stage-title-char-in {
  from {
    opacity: 0;
    transform: translate3d(var(--home-copy-char-offset-x, 0), var(--home-copy-char-offset-y, 0.35em), 0) rotateX(var(--home-copy-char-rotate-x, 0deg)) rotateY(var(--home-copy-char-rotate-y, 0deg)) rotateZ(var(--home-copy-char-rotate-z, 0deg));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
}
@keyframes home-opening-copy-gradient {
  from {
    background-position: left top;
  }
  to {
    background-position: right top;
  }
}
@keyframes home-stage-title-ja-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
[data-home-copy-chars][data-home-copy-state=chars] [data-home-copy-char-layer] {
  display: flex;
}

[data-home-copy-chars][data-home-copy-state=chars] [data-home-copy-split] {
  color: transparent;
}

[data-home-copy-chars][data-home-copy-state=chars][data-home-copy-play=in] .p-home__copy-char {
  opacity: 1;
  transform: none;
}

.p-home.is-opening .p-home__hero-copy-en .p-home__copy-char {
  transition: color var(--home-opening-copy-gradient-duration) var(--home-opening-copy-gradient-ease, cubic-bezier(0.45, 0, 0.55, 1));
}

.p-home.is-opening.is-opening-copy-en .p-home__hero-copy-en .p-home__copy-char {
  animation: home-stage-title-char-in var(--home-copy-char-duration, 360ms) var(--home-opening-copy-en-ease, var(--home-fade-ease)) both;
  animation-delay: calc(var(--char-index, 0) * var(--home-copy-char-delay, 28ms));
}

.p-home.is-opening.is-opening-gradient .p-home__hero-copy-en .p-home__copy-char {
  transition-delay: calc(var(--char-index, 0) * var(--home-opening-copy-gradient-char-delay, 14ms));
}

@media (prefers-reduced-motion: reduce) {
  .p-home__copy-char {
    transform: none;
    transition: none;
  }
  .p-home.is-opening .p-home__hero-copy-en .p-home__copy-char {
    opacity: 1;
    animation: none;
  }
  .p-home__stage-layer.is-active .p-home__stage-en[data-home-copy-chars] .p-home__copy-char {
    opacity: 1;
    animation: none;
  }
  .p-home__stage-layer .p-home__stage-ja,
  .p-home__about-visual .p-home__stage-ja {
    opacity: 1;
    animation: none;
  }
}
.p-home__hero-copy-ja {
  font-family: var(--home-font-jp-bold);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
@media (width >= 1024px) {
  .p-home__hero-copy-ja {
    margin-right: -0.15em;
    font-size: 2.1rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }
}

.p-home.is-opening .p-home__hero-copy-ja {
  opacity: 0;
  transition: opacity var(--home-opening-copy-ja-duration, 500ms) var(--home-opening-copy-ja-ease, cubic-bezier(0.25, 1, 0.5, 1));
}

.p-home.is-opening.is-opening-copy-ja .p-home__hero-copy-ja {
  opacity: 1;
}

.p-home__stage-copy {
  left: 0;
  display: grid;
  justify-items: center;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
@media (width >= 1024px) {
  .p-home__stage-copy {
    top: 50.5%;
    left: 0;
    gap: 4.1rem;
    justify-items: center;
    width: var(--home-title-width);
    text-align: center;
  }
}
@media (width < 1024px) {
  .p-home__stage-copy {
    top: 47.2%;
    gap: 3rem;
  }
}

.p-home__stage-logo-image {
  display: block;
  width: 12.6rem;
  height: auto;
  transition: opacity 500ms ease-out;
}
@media (width >= 1024px) {
  .p-home__stage-logo-image {
    width: 14.7rem;
  }
}

.p-home__stage-logo-link {
  display: inline-block;
  width: fit-content;
  line-height: 0;
}

.p-home__stage-logo-link:hover,
.p-home__stage-logo-link:focus-visible {
  cursor: pointer;
}

.p-home__stage-logo-link:hover .p-home__stage-logo-image,
.p-home__stage-logo-link:focus-visible .p-home__stage-logo-image {
  opacity: 0.75;
}

.p-home__stage-heading {
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  width: 100%;
  margin: 0;
}
@media (width >= 1024px) {
  .p-home__stage-heading {
    gap: 2.8rem;
  }
}

.p-home__stage-en {
  margin: 0;
  font-family: var(--home-font-en-demi);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-block: var(--text-trim-block-offset);
}
@media (width >= 1024px) {
  .p-home__stage-en {
    width: 100%;
    font-size: 4.8rem;
    line-height: 1.4;
  }
}
.p-home__stage-en[data-home-copy-chars] {
  --home-copy-char-duration: 380ms;
  --home-copy-char-delay: 30ms;
  --home-copy-char-offset-x: -0.24em;
  --home-copy-char-offset-y: 0;
}

.p-home__stage-layer .p-home__stage-en[data-home-copy-chars] .p-home__copy-char {
  transition: none;
}

.p-home__stage-layer.is-active .p-home__stage-en[data-home-copy-chars] .p-home__copy-char {
  animation: home-stage-title-char-in var(--home-copy-char-duration, 360ms) var(--home-fade-ease) both;
  animation-delay: calc(var(--char-index, 0) * var(--home-copy-char-delay, 28ms));
  will-change: opacity, transform;
}

.p-home__about-visual .p-home__stage-en[data-home-copy-chars] .p-home__copy-char {
  transition: none;
}

.p-home[data-home-current-stage=about] .p-home__about-visual .p-home__stage-en[data-home-copy-chars] .p-home__copy-char {
  animation: home-stage-title-char-in var(--home-copy-char-duration, 360ms) var(--home-fade-ease) both;
  animation-delay: calc(var(--char-index, 0) * var(--home-copy-char-delay, 28ms));
  will-change: opacity, transform;
}

.p-home__stage-layer .p-home__stage-ja,
.p-home__about-visual .p-home__stage-ja {
  opacity: 0;
}

.p-home__stage-layer.is-active .p-home__stage-ja,
.p-home[data-home-current-stage=about] .p-home__about-visual .p-home__stage-ja {
  animation: home-stage-title-ja-in 420ms cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 120ms;
}

.p-home__stage-en,
.p-home__hero-copy-en,
.p-home__scroll-start-label,
.p-home__profile-latin,
.p-home__staff-latin,
.p-home__support-staff-latin {
  margin-block: var(--home-font-en-trim-offset);
  transform-origin: center center;
  scale: 1 var(--home-font-en-scale-y);
  backface-visibility: hidden;
}

.p-home__stage-ja {
  margin: 0;
  font-family: var(--home-font-jp-bold);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.075em;
  margin-block: var(--text-trim-block-offset);
}
@media (width >= 1024px) {
  .p-home__stage-ja {
    width: 100%;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.075em;
  }
}

.p-home__menu-button,
.p-home__contact-fab,
.p-home__about-nav,
.p-home__bottom-bar,
.p-home__menu-panel {
  pointer-events: auto;
}

.p-home__menu-button {
  position: fixed;
  top: 2.6rem;
  right: 2rem;
  z-index: 9999;
  display: block;
  width: var(--home-fixed-button-width);
  height: 1.8rem;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}
.p-home__menu-button::before, .p-home__menu-button::after {
  position: absolute;
  left: 0.054rem;
  width: calc(100% - 0.108rem);
  height: 0.2rem;
  content: "";
  background-color: #fff;
  transform-origin: 50% 50%;
  transition: top var(--home-ui-fade-duration) var(--home-fade-ease), transform var(--home-ui-fade-duration) var(--home-fade-ease), background-color 0s linear;
}
.p-home__menu-button::before {
  top: 0;
}
.p-home__menu-button::after {
  top: calc(100% - 0.2rem);
}
.p-home__menu-button:hover::before, .p-home__menu-button:hover::after, .p-home__menu-button:focus-visible::before, .p-home__menu-button:focus-visible::after {
  background-color: #2743aa;
}
.p-home__menu-button:not(:hover, :focus-visible)::before, .p-home__menu-button:not(:hover, :focus-visible)::after {
  transition: top var(--home-ui-fade-duration) var(--home-fade-ease), transform var(--home-ui-fade-duration) var(--home-fade-ease), background-color var(--home-ui-fade-duration) var(--home-fade-ease);
}
@media (width >= 1024px) {
  .p-home__menu-button {
    top: 3.8rem;
    right: calc((var(--home-side-width) - 12rem) / 2);
    width: 12rem;
    height: 3.8rem;
  }
}

.p-home.is-menu-open .p-home__menu-button::before {
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
}

.p-home.is-menu-open .p-home__menu-button::after {
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
}

.p-home__contact-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.4rem;
  z-index: 22;
  display: none;
  width: var(--home-contact-size);
  height: var(--home-contact-size);
  overflow: hidden;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  isolation: isolate;
  backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.p-home__contact-fab::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: url("../../assets/images/home/contact-noise.png") top left/20rem 20rem repeat;
  border-radius: 50%;
  mix-blend-mode: overlay;
  opacity: 0.05;
}
@media (width >= 1024px) {
  .p-home__contact-fab {
    right: calc((var(--home-side-width) - 13rem) / 2);
    bottom: 4rem;
    display: block;
    width: 13rem;
    height: 13rem;
  }
}

.p-home__contact-fab-border {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.p-home__contact-fab-border::before, .p-home__contact-fab-border::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}
.p-home__contact-fab-border::before {
  transform: rotate(-30deg);
}
.p-home__contact-fab-border::after {
  transform: rotate(150deg);
}

.p-home__contact-fab-hover-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 380ms cubic-bezier(0.25, 1, 0.5, 1);
}

.p-home__scroll-start {
  position: fixed;
  right: 2rem;
  bottom: 5.7rem;
  z-index: 99;
  display: flex;
  visibility: visible;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  justify-content: center;
  width: var(--home-scroll-start-size);
  height: var(--home-scroll-start-size);
  overflow: hidden;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 1;
  backdrop-filter: blur(12px);
  transition: opacity var(--home-ui-fade-duration) var(--home-fade-ease), visibility 0s linear 0s;
}
@media (width >= 1024px) {
  .p-home__scroll-start {
    display: none;
  }
}

.p-home__scroll-start-label {
  display: inline-block;
  font-family: var(--home-font-en-demi);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-block: var(--text-trim-block-offset);
}

.p-home__scroll-start-icon {
  width: 2.7rem;
  height: auto;
}

.p-home__scroll-start-border {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.p-home__scroll-start-border::before, .p-home__scroll-start-border::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}
.p-home__scroll-start-border::before {
  transform: rotate(-30deg);
}
.p-home__scroll-start-border::after {
  transform: rotate(150deg);
}

.p-home.is-scroll-start-hidden .p-home__scroll-start,
.p-home.is-about-fixed .p-home__scroll-start,
.p-home.is-about-inline-hidden .p-home__scroll-start,
.p-home[data-home-current-stage=services] .p-home__scroll-start,
.p-home[data-home-current-stage=faq] .p-home__scroll-start,
.p-home[data-home-current-stage=map] .p-home__scroll-start {
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--home-ui-fade-duration) var(--home-fade-ease), visibility 0s linear var(--home-ui-fade-duration);
}

.p-home.is-hero-bar-hidden .p-home__hero-brand {
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0s;
}
@media (width < 1024px) {
  .p-home.is-hero-bar-hidden .p-home__hero-brand {
    visibility: visible;
  }
}

.p-home.is-opening .p-home__hero-brand {
  visibility: visible;
  pointer-events: none;
  transform: translate3d(0, calc(100% + var(--home-hero-bar-translate, 0%)), 0);
  transition: transform var(--home-opening-ui-duration) var(--home-opening-ui-ease, cubic-bezier(0.25, 1, 0.5, 1)), visibility 0s linear 0s;
}
@media (width < 1024px) {
  .p-home.is-opening .p-home__hero-brand {
    transition: transform var(--home-opening-hero-brand-mobile-transition-duration) cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear 0s;
  }
}

.p-home.is-opening.is-opening-ui-in .p-home__hero-brand {
  pointer-events: auto;
  transform: translate3d(0, var(--home-hero-bar-translate, 0%), 0);
}

.p-home__contact-fab-icon,
.p-home__contact-fab-label {
  position: absolute;
  z-index: 5;
}

.p-home__contact-fab-icon {
  top: 26.9231%;
  left: 34.6154%;
  display: block;
  width: 27.6923%;
  height: 25.3846%;
}
@media (width >= 1024px) {
  .p-home__contact-fab-icon {
    top: 3.5rem;
    left: 4.5rem;
    width: 3.6rem;
    height: 3.3rem;
  }
}

@keyframes home-contact-fab-icon-flight {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  42% {
    opacity: 0;
    transform: translate3d(1rem, -1rem, 0);
  }
  43% {
    opacity: 0;
    transform: translate3d(-1rem, 1rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-home__contact-fab:hover .p-home__contact-fab-icon,
  .p-home__contact-fab:focus-visible .p-home__contact-fab-icon {
    animation: home-contact-fab-icon-flight 620ms cubic-bezier(0.45, 0, 0.55, 1) 1 both;
    will-change: transform, opacity;
  }
  .p-home__contact-fab:hover .p-home__contact-fab-hover-shade,
  .p-home__contact-fab:focus-visible .p-home__contact-fab-hover-shade {
    opacity: 0.16;
    transition: none;
  }
}
.p-home__contact-fab-label {
  top: 60.7154%;
  left: 50%;
  font-family: var(--home-font-jp-bold);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transform: translateX(-50%);
  margin-block: var(--text-trim-block-offset);
}
@media (width >= 1024px) {
  .p-home__contact-fab-label {
    top: 7.893rem;
    left: 2.45rem;
    width: 8.1rem;
    line-height: 2.1rem;
    transform: none;
  }
}

.p-home.is-opening .p-home__contact-fab {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 1.8rem, 0);
  transition: opacity var(--home-opening-ui-duration) cubic-bezier(0.25, 1, 0.5, 1), transform var(--home-opening-ui-duration) cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear var(--home-opening-ui-duration);
}

.p-home.is-opening.is-opening-ui-in .p-home__contact-fab {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.p-home__about-nav {
  display: none;
}
@media (width >= 1024px) {
  .p-home__about-nav {
    position: fixed;
    right: calc(var(--home-frame-offset-inline) + var(--home-side-width));
    bottom: var(--home-bottom-bar-height);
    left: auto;
    z-index: 19;
    display: block;
    width: var(--home-content-width);
    height: var(--home-about-nav-height);
    pointer-events: none;
    transform: translateY(calc(100% + 1.8rem));
    transition: transform var(--home-ui-fade-duration) var(--home-fade-ease);
  }
}

.p-home__about-nav.is-visible {
  pointer-events: auto;
  transform: translateY(0);
}

.p-home.is-opening .p-home__about-nav,
.p-home.is-opening .p-home__about-nav.is-visible {
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 1.8rem));
}

.p-home__about-nav-list {
  position: relative;
  display: flex;
  gap: 0.4rem;
  padding: 1rem 0;
}
@media (width >= 1024px) {
  .p-home__about-nav-list {
    gap: 3.2rem;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: var(--home-about-nav-height);
    padding: 2.4rem 0;
    background: #253a83;
  }
  .p-home__about-nav-list::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    user-select: none;
    content: "";
    background: url("../../assets/images/home/about-nav-noise.png") top left/20rem 20rem repeat;
    mix-blend-mode: multiply;
    opacity: 0.1;
  }
}

.p-home__about-nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 1rem 1.6rem;
  font-family: var(--home-font-jp-regular);
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  opacity: 1;
  transition: none;
}
@media (width >= 1024px) {
  .p-home__about-nav-list a {
    position: relative;
    z-index: 1;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1;
  }
}

.p-home__about-nav-list a:hover {
  opacity: 0.6;
}

.p-home__about-nav-list a:not(:hover) {
  transition: opacity 380ms cubic-bezier(0.25, 1, 0.5, 1);
}

.p-home__bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 20;
  display: flex;
  visibility: visible;
  height: var(--home-bottom-bar-height);
  overflow: hidden;
  background-color: #2743AA;
  opacity: 1;
  transition: opacity var(--home-ui-fade-duration) var(--home-fade-ease), visibility 0s linear 0s, transform var(--transition-base);
}
@media (width >= 1024px) {
  .p-home__bottom-bar {
    right: calc(var(--home-frame-offset-inline) + var(--home-side-width));
    left: auto;
    flex-direction: column;
    row-gap: 3rem;
    justify-content: center;
    width: var(--home-content-width);
    padding: 4.9rem 2.7rem 4.5rem 5rem;
    background-position: calc(-1 * var(--home-title-width)) 0;
    background-size: calc(var(--home-title-width) + var(--home-content-width)) 100%;
    transform: none;
  }
}
@media (width < 1024px) {
  .p-home__bottom-bar {
    width: calc(100% - 2rem);
    padding: 2rem 2.7rem 2.4rem;
  }
}
.p-home__bottom-bar::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  content: "";
  background: url("../../assets/images/home/bottom-bar-noise.png") top left/20rem 20rem repeat;
  mix-blend-mode: multiply;
  opacity: 0.1;
}

.p-home__bottom-bar > * {
  position: relative;
  z-index: 1;
}

.p-home.is-opening .p-home__bottom-bar {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 100%, 0);
  transition: transform var(--home-opening-ui-duration) var(--home-opening-ui-ease, cubic-bezier(0.25, 1, 0.5, 1)), opacity var(--home-opening-ui-duration) var(--home-opening-ui-ease, cubic-bezier(0.25, 1, 0.5, 1));
}
@media (width < 1024px) {
  .p-home.is-opening .p-home__bottom-bar {
    transform: translate3d(0, 0, 0);
    transition: none;
  }
}

.p-home.is-opening.is-opening-ui-in .p-home__bottom-bar {
  transform: translate3d(0, 0, 0);
}

.p-home__bottom-nav-list {
  display: none;
}
@media (width >= 1024px) {
  .p-home__bottom-nav-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 3.2rem;
  }
}
.p-home__bottom-nav-list a {
  display: inline-block;
  font-family: var(--home-font-jp-bold);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: none;
  margin-block: var(--text-trim-block-offset);
}
.p-home__bottom-nav-list a.is-current {
  color: #fff;
}
@media (width >= 1024px) {
  .p-home__bottom-nav-list a.is-current {
    opacity: 0.25;
  }
}
@media (width >= 1024px) {
  .p-home__bottom-nav-list a {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.p-home__bottom-nav-list a:not(.is-current):hover {
  opacity: 0.6;
}

.p-home__bottom-nav-list a:not(:hover) {
  transition: opacity 380ms cubic-bezier(0.25, 1, 0.5, 1);
}

.p-home__bottom-tel {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem 1rem;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
}

.p-home__bottom-tel-icon {
  display: block;
  flex: none;
  width: 1.4rem;
  height: 1.6rem;
}
@media (width >= 1024px) {
  .p-home__bottom-tel-icon {
    width: 1.8rem;
    height: 2rem;
  }
}

.p-home__bottom-tel-number {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
@media (width >= 1024px) {
  .p-home__bottom-tel-number {
    gap: 0.8rem;
  }
}

.p-home__bottom-tel-number-text {
  display: block;
  height: auto;
}
@media (width >= 1024px) {
  .p-home__bottom-tel-number-text {
    width: 15.1rem;
  }
}
@media (width < 1024px) {
  .p-home__bottom-tel-number-text {
    width: 12.6rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  }
}

.p-home__bottom-tel-time {
  font-family: var(--home-font-aoto-medium);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-block: var(--text-trim-block-offset);
}
@media (width >= 1024px) {
  .p-home__bottom-tel-time {
    font-size: 1.2rem;
  }
}

.p-home__menu-panel {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  visibility: hidden;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--home-ui-fade-duration) var(--home-fade-ease), visibility 0s linear var(--home-ui-fade-duration);
}
@media (width >= 1024px) {
  .p-home__menu-panel {
    padding-right: var(--home-side-width);
  }
}

.p-home.is-menu-open .p-home__menu-panel {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition-delay: 0s;
}

.p-home[data-home-current-stage=map] .p-home__menu-panel {
  background-color: transparent;
}

.p-home__menu-sitemap {
  position: relative;
  height: 100%;
  overflow-y: auto;
  background-color: #2743AA;
  isolation: isolate;
}
@media (width >= 1024px) {
  .p-home__menu-sitemap {
    width: var(--home-content-width);
  }
}
@media (width < 1024px) {
  .p-home__menu-sitemap {
    width: calc(100vw - 2rem);
    margin-right: 0;
    margin-left: auto;
  }
}
.p-home__menu-sitemap::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: url("../../assets/images/home/bottom-bar-noise.png") top left/20rem 20rem repeat;
  mix-blend-mode: multiply;
  opacity: 0.1;
}

.p-home__menu-sitemap-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 7.7rem 2.4rem 4rem;
  color: #fff;
}
@media (width >= 1024px) {
  .p-home__menu-sitemap-inner {
    padding: 7.7rem 5rem 4.6rem;
  }
}

.p-home__menu-nav-list {
  display: grid;
  gap: 3.2rem;
}
.p-home__menu-nav-list[data-home-copy-chars] {
  --home-copy-char-duration: 350ms;
  --home-copy-char-delay: 50ms;
  --home-copy-char-ease: cubic-bezier(0.45, 0, 0.55, 1);
  --home-copy-char-offset-x: 0;
  --home-copy-char-offset-y: 0;
}
.p-home__menu-nav-list:not([data-home-copy-play=in]) .p-home__copy-char {
  opacity: 0;
  transform: translate3d(var(--home-copy-char-offset-x, 0), var(--home-copy-char-offset-y, 0.35em), 0) rotateX(var(--home-copy-char-rotate-x, 0deg)) rotateY(var(--home-copy-char-rotate-y, 0deg)) rotateZ(var(--home-copy-char-rotate-z, 0deg));
  transition-delay: 0ms;
}

.p-home__menu-item--about {
  display: grid;
  gap: 2.4rem;
}
@media (width >= 1024px) {
  .p-home__menu-item--about {
    gap: 2.6rem;
  }
}

.p-home__menu-link,
.p-home__menu-sublink {
  display: inline-block;
  color: #fff;
  opacity: 1;
  transition: none;
  margin-block: var(--text-trim-block-offset);
}

.p-home__menu-link:hover,
.p-home__menu-sublink:hover {
  opacity: 0.6;
}

.p-home__menu-link:not(:hover),
.p-home__menu-sublink:not(:hover) {
  transition: opacity 380ms cubic-bezier(0.25, 1, 0.5, 1);
}

.p-home__menu-link {
  font-family: var(--home-font-jp-bold);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
}
@media (width >= 1024px) {
  .p-home__menu-link {
    font-size: 2.8rem;
  }
}

.p-home__menu-link--contact {
  font-size: 1.8rem;
  letter-spacing: 0;
}

.p-home__menu-subnav {
  display: grid;
  gap: 1.8rem;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.45, 0, 0.55, 1);
}
@media (width >= 1024px) {
  .p-home__menu-subnav {
    gap: 1.8rem;
  }
}

.p-home.is-menu-open .p-home__menu-subnav {
  opacity: 1;
  transition-delay: 100ms;
}

.p-home__menu-sublink {
  font-family: var(--home-font-jp-regular);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-home__menu-meta {
  display: grid;
  gap: 2rem;
  padding-top: 6.4rem;
}

.p-home__menu-tel {
  display: inline-flex;
  gap: 0.8rem;
  align-items: flex-end;
  color: #fff;
}

.p-home__menu-tel-icon {
  display: block;
  flex: none;
  width: 1.8rem;
  height: 2rem;
}

.p-home__menu-tel-number {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.p-home__menu-tel-number-text {
  display: block;
  width: 15.1rem;
  height: auto;
}

.p-home__menu-tel-time {
  padding-bottom: 0.2rem;
  font-family: var(--home-font-aoto-medium);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  opacity: 0.6;
  margin-block: var(--text-trim-block-offset);
}

.p-home__menu-address {
  display: block;
  font-family: var(--home-font-jp-regular);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-block: var(--text-trim-block-offset);
}

.p-home__main {
  position: relative;
  z-index: 10;
}

.p-home__scene {
  position: relative;
  padding-inline: 0;
  scroll-margin-top: 2.4rem;
  isolation: isolate;
}
@media (width >= 1024px) {
  .p-home__scene {
    padding-inline: 0;
  }
}

.p-home__scene:not(.p-home__scene--hero) {
  z-index: 1;
}

.p-home[data-home-current-stage=hero] .p-home__scene--hero,
.p-home[data-home-current-stage=about] .p-home__scene--about,
.p-home[data-home-current-stage=services] .p-home__scene--services,
.p-home[data-home-current-stage=faq] .p-home__scene--faq,
.p-home[data-home-current-stage=map] .p-home__scene--access {
  z-index: 2;
}

.p-home:not(.is-hero-bar-hidden) .p-home__scene--hero {
  z-index: 3;
}

.p-home__content-shell {
  position: relative;
  z-index: 1;
}

.p-home__scene--hero {
  z-index: 0;
  overflow: visible;
}
@media (width >= 1024px) {
  .p-home__scene--hero {
    min-height: 100svh;
    padding-top: calc(100svh - var(--home-hero-brand-height));
  }
}
@media (width < 1024px) {
  .p-home__scene--hero {
    display: flex;
    align-items: flex-end;
    height: 100svh;
    padding-bottom: var(--home-bottom-bar-height);
  }
}

.p-home__hero-brand {
  position: relative;
  z-index: 2;
  visibility: visible;
  height: var(--home-hero-brand-height);
  overflow: hidden;
  background-color: #2743AA;
  opacity: 1;
  transform: translate3d(0, var(--home-hero-bar-translate, 0%), 0);
  transition: visibility 0s linear 0s;
  will-change: transform;
}
@media (width < 1024px) {
  .p-home__hero-brand {
    position: fixed;
    right: 0;
    bottom: var(--home-bottom-bar-height);
    left: auto;
    z-index: 19;
    display: flex;
    align-items: flex-end;
    width: calc(100% - 2rem);
    padding-left: 2.9rem;
    margin-right: 0;
    margin-left: auto;
    box-shadow: 0 var(--home-hero-brand-overlap) 0 0 #2743AA;
    opacity: 1;
    transform: translate3d(0, var(--home-hero-bar-translate, 0%), 0);
    transition: transform var(--home-hero-brand-mobile-transition);
    will-change: transform;
  }
}
@media (width >= 1024px) {
  .p-home__hero-brand {
    position: fixed;
    inset: auto auto 0 0;
    width: var(--home-title-width);
    height: var(--home-bottom-bar-height);
    padding: 0;
    margin-inline: 0;
    background-size: calc(var(--home-title-width) + var(--home-content-width)) 100%;
    box-shadow: none;
  }
}
.p-home__hero-brand::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: overlay;
}
@media (width >= 1024px) {
  .p-home__hero-brand::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.p-home__hero-brand::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: url("../../assets/images/home/hero-logo-bar-noise.png") top left/20rem 20rem repeat;
  mix-blend-mode: multiply;
  opacity: 0.1;
}

.p-home__hero-brand-title {
  margin: 0;
}

.p-home__hero-brand-image {
  position: relative;
  z-index: 3;
  display: block;
  width: 15rem;
  height: auto;
}
@media (width >= 1024px) {
  .p-home__hero-brand-image {
    position: absolute;
    top: 5rem;
    left: 8rem;
    width: 21rem;
  }
}

.p-home__logo-lockup {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 0.85rem;
  align-items: flex-end;
}
@media (width >= 1024px) {
  .p-home__logo-lockup {
    gap: 0.95rem;
  }
}

.p-home__logo-lockup--hero {
  position: relative;
  width: min(21rem, 100%);
  height: 6rem;
}
@media (width >= 1024px) {
  .p-home__logo-lockup--hero {
    position: absolute;
    top: 5rem;
    left: 8rem;
    width: 21rem;
    height: 6rem;
  }
}

.p-home__logo-lockup--stage {
  width: min(18rem, 44vw);
  height: auto;
}
@media (width >= 1024px) {
  .p-home__logo-lockup--stage {
    width: 14.7rem;
  }
}

.p-home__logo-lockup-mark {
  display: block;
  flex: none;
  width: 29.6667%;
  height: auto;
}

.p-home__logo-lockup-type {
  display: block;
  flex: none;
  width: 70.3333%;
  height: auto;
}

.p-home__content-shell {
  width: calc(100% - 4rem);
  margin-inline: auto;
}
@media (width >= 1024px) {
  .p-home__content-shell {
    width: min(100%, var(--home-content-width));
    margin-right: calc(var(--home-frame-offset-inline) + var(--home-side-width));
    margin-left: auto;
  }
}

.p-home__scene--about {
  position: relative;
  padding-top: 0;
}
@media (width >= 1024px) {
  .p-home__scene--about {
    padding-bottom: 32rem;
  }
}
@media (width < 1024px) {
  .p-home__scene--about {
    padding-bottom: 10rem;
  }
}
.p-home__scene--about .p-home__content-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4rem;
  margin-top: calc(100svh + 6.8rem);
}

.p-home__about-visual {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  margin-bottom: -100svh;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.p-home__about-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--home-stage-side-overlay);
}

.p-home__about-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home__about-visual-copy {
  justify-items: center;
}
@media (width >= 1024px) {
  .p-home__about-visual-copy {
    top: 50.5%;
    left: var(--home-frame-offset-inline);
    width: var(--home-title-width);
    text-align: center;
  }
}
@media (width < 1024px) {
  .p-home__about-visual-copy {
    top: 47.2%;
    left: 0;
  }
}

.p-home__faq-item {
  border-radius: 0.4rem;
}

.p-home__faq-item {
  background: #fff;
}

.p-home__panel {
  position: relative;
  overflow: hidden;
  background: #eaeff8;
  border-radius: 0;
}
.p-home__panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  content: "";
  background: url("../../assets/images/home/panel-noise.png") top left/20rem 20rem repeat;
  mix-blend-mode: multiply;
  opacity: 0.07;
}

@media (width < 1024px) {
  .p-home__stage-copy,
  .p-home__about-visual-copy {
    z-index: 2;
    opacity: 1;
    transition: opacity var(--home-ui-fade-duration) var(--home-fade-ease);
  }
  .p-home.is-stage-copy-hidden[data-home-current-stage=about] .p-home__stage-layer--about .p-home__stage-copy,
  .p-home.is-stage-copy-hidden[data-home-current-stage=about] .p-home__about-visual-copy,
  .p-home.is-stage-copy-hidden[data-home-current-stage=services] .p-home__stage-layer--services .p-home__stage-copy,
  .p-home.is-stage-copy-hidden[data-home-current-stage=faq] .p-home__stage-layer--faq .p-home__stage-copy {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) and (width < 1024px) {
  .p-home__stage-copy,
  .p-home__about-visual-copy {
    transition: none;
  }
}
.p-home__panel-head,
.p-home__panel-body {
  position: relative;
  z-index: 5;
}

.p-home__panel-head {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 3.2rem 2.4rem;
  border-bottom: 1px solid #babfcd;
}

.p-home__panel-label {
  position: relative;
  flex: none;
  width: 1.4rem;
  min-width: 1.4rem;
  height: 1.4rem;
  font-size: 0;
  color: transparent;
}
.p-home__panel-label::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #2857bf;
  border-radius: 50%;
}

.p-home__panel-title,
.p-home__service-title,
.p-home__sub-title,
.p-home__staff-name,
.p-home__support-staff-name {
  text-wrap: balance;
}

.p-home__panel-title {
  font-family: var(--home-font-jp-bold);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.05em;
  text-box: var(--text-trim-box);
  margin-block: var(--text-trim-block-offset);
}

.p-home__panel-body,
.p-home__text-stack,
.p-home__service-content {
  display: grid;
  row-gap: 1.8rem;
}

@media (width >= 1024px) {
  .p-home__panel-body {
    row-gap: 6rem;
    padding: 5rem;
  }
}
@media (width < 1024px) {
  .p-home__panel-body {
    row-gap: 6rem;
    padding: 5rem 2rem;
  }
}

.p-home__panel-body--greeting {
  display: block;
}
@media (width >= 1024px) {
  .p-home__panel-body--greeting {
    padding: 9rem 5rem 0;
  }
}
@media (width < 1024px) {
  .p-home__panel-body--greeting {
    padding: 9rem 2rem 0;
  }
}

.p-home__panel-body--overview {
  gap: 5rem;
  padding-top: 0;
}

@media (width >= 1024px) {
  .p-home__lead-block {
    display: grid;
    justify-items: center;
    width: min(100%, 38.8rem);
    margin-inline: auto;
    text-align: center;
  }
}

.p-home__lead-text {
  display: block;
  width: min(100%, 27.8rem);
}
@media (width >= 1024px) {
  .p-home__lead-text {
    width: min(100%, 38.2rem);
  }
}

.p-home__lead-text picture,
.p-home__lead-text img {
  display: block;
}

.p-home__lead-text img {
  width: 100%;
  height: auto;
}

.p-home__text-line {
  display: block;
}

.p-home__text-stack {
  gap: 3.2rem;
}

@media (width >= 1024px) {
  .p-home__text-stack--greeting {
    gap: 4.3rem;
    padding: 0 4rem;
    margin-top: 6.6rem;
  }
}
@media (width < 1024px) {
  .p-home__text-stack--greeting {
    gap: 4.4rem;
    margin-top: 4.7rem;
  }
}
@media (width < 1024px) {
  .p-home__text-stack--greeting .c-text-md br {
    display: none;
  }
}

.p-home__accent-image {
  justify-self: stretch;
  overflow: hidden;
}
@media (width >= 1024px) {
  .p-home__accent-image {
    width: calc(100% + 10rem);
    margin-inline: -5rem;
    margin-top: 3.8rem;
  }
}
@media (width < 1024px) {
  .p-home__accent-image {
    width: calc(100% + 4rem);
    margin-inline: -2rem;
    margin-top: 2.9rem;
  }
}

.p-home__profile {
  display: flex;
  background: #EFF3FF;
}

.p-home__profile-photo {
  position: relative;
  overflow: hidden;
  background: #EFF3FF;
}
@media (width >= 1024px) {
  .p-home__profile-photo {
    width: 19rem;
    aspect-ratio: 190/238;
  }
}
@media (width < 1024px) {
  .p-home__profile-photo {
    width: 11.7rem;
    aspect-ratio: 117/147;
  }
}
.p-home__profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home__profile-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.p-home__profile-role {
  display: grid;
  gap: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #111;
  letter-spacing: 0.05em;
  margin-block: var(--text-trim-block-offset);
}

.p-home__profile-name {
  padding-top: 1.5rem;
  font-family: var(--home-font-jp-bold);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2857bf;
  letter-spacing: 0.05em;
  margin-block: var(--text-trim-block-offset);
}

.p-home__profile-latin {
  padding-top: 0.7rem;
  font-family: var(--home-font-en-demi);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: #3157C5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  margin-block: var(--text-trim-block-offset);
}

.p-home__sub-title {
  font-family: var(--home-font-jp-bold);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2857bf;
  margin-block: var(--text-trim-block-offset);
}

.p-home__career {
  display: grid;
  row-gap: 3.3rem;
}

.p-home__career-table {
  display: block;
  width: 100%;
  max-width: 100%;
}

.p-home__career-table tbody {
  display: block;
  width: 100%;
}

.p-home__career-row {
  position: relative;
  display: grid;
  width: 100%;
}
@media (width >= 1024px) {
  .p-home__career-row {
    grid-template-columns: repeat(24, minmax(0, 1fr));
    column-gap: 1rem;
  }
}
@media (width < 1024px) {
  .p-home__career-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 1rem;
  }
}
.p-home__career-row::before, .p-home__career-row:last-child::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 0.1rem;
  content: "";
  background: repeating-linear-gradient(to right, #8a8e9c 0, #8a8e9c 0.1rem, transparent 0.1rem, transparent 0.4rem);
}
.p-home__career-row::before {
  top: 0;
}
.p-home__career-row:last-child::after {
  bottom: 0;
}

.p-home__career-era,
.p-home__career-month,
.p-home__career-detail {
  display: block;
  padding-block: 2.2rem;
  padding-inline: 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin-block: var(--text-trim-block-offset);
}

.p-home__career-era {
  color: #2857bf;
}
@media (width >= 1024px) {
  .p-home__career-era {
    grid-column: 1/6;
  }
}
@media (width < 1024px) {
  .p-home__career-era {
    grid-column: 1/5;
  }
}

.p-home__career-month {
  color: #1d1d1f;
}
@media (width >= 1024px) {
  .p-home__career-month {
    grid-column: 6/9;
  }
}
@media (width < 1024px) {
  .p-home__career-month {
    grid-column: 5/7;
  }
}

.p-home__career-detail {
  color: #1d1d1f;
  white-space: normal;
}
@media (width >= 1024px) {
  .p-home__career-detail {
    grid-column: 9/-1;
  }
}
@media (width < 1024px) {
  .p-home__career-detail {
    grid-column: 7/-1;
  }
}

.p-home__concept-hero {
  width: 100%;
  aspect-ratio: 470/238;
}
.p-home__concept-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-home__concept-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home__company-slider {
  width: calc(100% + 4.8rem);
  margin-inline: -2.4rem;
  margin-bottom: 0;
  overflow: hidden;
}
@media (width >= 1024px) {
  .p-home__company-slider {
    width: calc(100% + 10rem);
    margin-inline: -5rem;
  }
}

.p-home__company-slider .splide__slide {
  width: 32rem;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-home__company-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home__fact-list {
  display: grid;
  gap: 0;
}

.p-home__fact-row {
  display: grid;
  column-gap: 1rem;
  padding-block: 1.7rem;
  border-top: 1px dashed #8a8e9c;
}
@media (width >= 1024px) {
  .p-home__fact-row {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (width < 1024px) {
  .p-home__fact-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.p-home__fact-row dt {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: #2857bf;
  letter-spacing: 0;
}
@media (width >= 1024px) {
  .p-home__fact-row dt {
    grid-column: 1/7;
  }
}
@media (width < 1024px) {
  .p-home__fact-row dt {
    grid-column: 1/5;
  }
}
@media (width >= 1024px) {
  .p-home__fact-row dd {
    grid-column: 9/-1;
  }
}
@media (width < 1024px) {
  .p-home__fact-row dd {
    grid-column: 5/-1;
  }
}
.p-home__fact-row dd p,
.p-home__fact-row dd li {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #1d1d1f;
}

.p-home__fact-row:last-child {
  border-bottom: 1px dashed #8a8e9c;
}

.p-home__fact-group + .p-home__fact-group {
  margin-top: 1.6rem;
}

.p-home__fact-group-heading {
  margin-bottom: 0.2rem;
}

.p-home__fact-list-items {
  display: grid;
  gap: 0;
}

.p-home__fact-list-items li {
  position: relative;
  padding-left: 2.8rem;
}
.p-home__fact-list-items li::before {
  position: absolute;
  top: 0;
  left: 0.9rem;
  display: block;
  content: "・";
}

.p-home__fact-link {
  color: #2857bf;
  text-decoration: underline;
}

.p-home__staff-grid,
.p-home__support-staff {
  display: grid;
}
@media (width >= 1024px) {
  .p-home__staff-grid,
  .p-home__support-staff {
    gap: 2.4rem 3rem;
  }
}
@media (width < 1024px) {
  .p-home__staff-grid,
  .p-home__support-staff {
    gap: 2.4rem 1rem;
  }
}

.p-home__staff-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (width >= 1024px) {
  .p-home__staff-grid {
    gap: 4.7rem 3rem;
  }
}
@media (width < 1024px) {
  .p-home__staff-grid {
    gap: 2.5rem 1rem;
  }
}

.p-home__support-staff-card {
  display: grid;
  gap: 2rem;
  padding-top: 2.2rem;
  border-top: 1px dashed #8a8e9c;
}

.p-home__staff-photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-home__staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-home__staff-content {
  margin-top: 2rem;
}

.p-home__staff-content,
.p-home__support-staff-content {
  display: grid;
  gap: 1.5rem;
}

.p-home__staff-title-block {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.p-home__staff-name-block {
  display: grid;
  gap: 0.5rem;
  width: 100%;
}

.p-home__staff-name,
.p-home__support-staff-name {
  font-family: var(--home-font-jp-bold);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2857bf;
  margin-block: var(--text-trim-block-offset);
}

.p-home__staff-catch {
  display: grid;
  gap: 0;
  font-family: var(--home-font-jp-bold);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1d1d1f;
  margin-block: var(--text-trim-block-offset);
}
@media (width < 1024px) {
  .p-home__staff-catch br {
    display: none;
  }
}

.p-home__staff-copy {
  display: grid;
  gap: 1.2rem;
}

.p-home__staff-body {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1d1d1f;
  margin-block: var(--text-trim-block-offset);
}

.p-home__support-staff {
  grid-template-columns: repeat(2, 1fr);
}

.p-home__staff-role,
.p-home__support-staff-role {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  color: #4d4d53;
  margin-block: var(--text-trim-block-offset);
}

.p-home__staff-latin,
.p-home__support-staff-latin {
  font-family: var(--home-font-en-demi);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(49, 87, 197, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-block: var(--text-trim-block-offset);
}

@media (width >= 1024px) {
  .p-home__scene--services,
  .p-home__scene--faq {
    padding-top: 100svh;
    padding-bottom: 32rem;
  }
}
@media (width < 1024px) {
  .p-home__scene--services,
  .p-home__scene--faq {
    padding-top: calc(100svh + 6.8rem);
    padding-bottom: 10rem;
  }
}

.p-home__service-grid {
  display: grid;
  gap: 4rem;
  counter-reset: service;
}

.p-home__service-card {
  position: relative;
  counter-increment: service;
  background-color: rgba(234, 239, 248, 0.9);
  backdrop-filter: blur(20px);
}
@media (width >= 1024px) {
  .p-home__service-card {
    display: grid;
    grid-template-columns: 6.8rem minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
    padding: var(--home-panel-padding);
  }
}
@media (width < 1024px) {
  .p-home__service-card {
    padding: 3rem 2rem;
  }
}
.p-home__service-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: url("../../assets/images/home/panel-noise.png") top left/20rem 20rem repeat;
  mix-blend-mode: multiply;
  opacity: 0.07;
}
@media (width >= 1024px) {
  .p-home__service-card {
    grid-template-columns: 14.9rem minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    padding: 4.8rem 5rem 4rem;
  }
  .p-home__service-card::before {
    top: -1.2rem;
    left: -1.2rem;
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}

@media (width >= 1024px) {
  .p-home__service-card:nth-child(3) {
    min-height: 30rem;
  }
}

@media (width >= 1024px) {
  .p-home__service-card:nth-child(6) {
    min-height: 33.9rem;
  }
}

.p-home__service-card > * {
  position: relative;
  z-index: 1;
}

.p-home__service-num {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
}
.p-home__service-num img {
  display: block;
  width: 100%;
  height: auto;
}

.p-home__service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
@media (width >= 1024px) {
  .p-home__service-icon {
    aspect-ratio: 149/151;
  }
}
@media (width < 1024px) {
  .p-home__service-icon {
    max-width: 34rem;
    aspect-ratio: 295/150;
    margin-inline: auto;
  }
}
.p-home__service-icon picture {
  display: block;
  width: 100%;
}

.p-home__service-content {
  position: relative;
  z-index: 2;
  gap: 2.6rem;
}
@media (width < 1024px) {
  .p-home__service-content {
    margin-top: 3rem;
  }
}

.p-home__service-title {
  font-family: var(--home-font-jp-bold);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #202020;
  letter-spacing: 0.025em;
  margin-block: var(--text-trim-block-offset);
}
@media (width < 1024px) {
  .p-home__service-title {
    text-align: center;
  }
}

.p-home__service-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #252525;
  text-align: justify;
  margin-block: var(--text-trim-block-offset);
}

.p-home__faq {
  display: grid;
  gap: 2rem;
}
@media (width >= 1024px) {
  .p-home__faq {
    padding: 5rem;
  }
}
@media (width < 1024px) {
  .p-home__faq {
    padding: 5rem 2rem;
  }
}

.p-home__faq-shell {
  width: 100%;
}

.p-home__faq-item {
  overflow: hidden;
}

.p-home__faq-trigger {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  width: 100%;
  color: #1d1d1f;
  text-align: left;
  background: transparent;
}
@media (width >= 1024px) {
  .p-home__faq-trigger {
    grid-template-columns: 4.3rem minmax(0, 1fr) 1.9rem;
    padding: 1.4rem 2rem 1.4rem 2.2rem;
  }
}
@media (width < 1024px) {
  .p-home__faq-trigger {
    grid-template-columns: 2.5rem minmax(0, 1fr) 1.9rem;
    padding: 1.4rem 1rem 1.4rem 1.5rem;
  }
}

.p-home__faq-q,
.p-home__faq-a {
  display: block;
}

.p-home__faq-q {
  width: 2.5rem;
}

.p-home__faq-a {
  width: 2.2rem;
}

.p-home__faq-question {
  font-family: var(--home-font-jp-bold);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-home__faq-icon {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
}
.p-home__faq-icon::before, .p-home__faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.7rem;
  height: 0.1rem;
  content: "";
  background: rgba(49, 87, 197, 0.5);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base);
}
.p-home__faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-home__faq-item.is-accordion-open .p-home__faq-icon::before,
.p-home__faq-item.is-accordion-open .p-home__faq-icon::after {
  background: #3157c5;
}

.p-home__faq-item.is-accordion-open .p-home__faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-home__faq-item.is-accordion-open .p-home__faq-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-home__faq-panel {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-base);
}

.p-home__faq-answer {
  display: grid;
  gap: 1.4rem;
  border-top: 1px dashed #8a8e9c;
}
@media (width >= 1024px) {
  .p-home__faq-answer {
    grid-template-columns: 4.2rem minmax(0, 1fr);
    padding: 2.7rem 2.3rem 2.6rem;
  }
}
@media (width < 1024px) {
  .p-home__faq-answer {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    padding: 2.5rem 1.6rem 2.7rem;
  }
}
.p-home__faq-answer p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #252525;
  letter-spacing: -0.02em;
  margin-block: var(--text-trim-block-offset);
}

.p-home__faq-answer-body {
  display: grid;
  gap: 2.2rem;
}

.p-home__scene.p-home__scene--access {
  --home-access-map-inline-size: 100%;
  --home-access-map-inline-offset: 0px;
  --home-access-map-inline-extra: 0px;
  --home-access-map-block-size: 100%;
  --home-access-map-block-offset: 0px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: calc(var(--home-bottom-bar-height) - 0.1rem);
  overflow: clip;
}
@media (width >= 1024px) {
  .p-home__scene.p-home__scene--access {
    --home-access-map-inline-extra: 20rem;
    --home-access-map-inline-size:
      calc(100% + var(--home-title-width) + var(--home-access-map-inline-extra));
    --home-access-map-inline-offset:
      calc(-50% - (var(--home-access-map-inline-extra) / 2));
  }
}

.p-home__access-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  contain: paint;
  overflow: hidden;
  background: #d9d9d9;
}
.p-home__access-map iframe {
  display: block;
  width: var(--home-access-map-inline-size);
  height: var(--home-access-map-block-size);
  margin-top: var(--home-access-map-block-offset);
  margin-left: var(--home-access-map-inline-offset);
  border: 0;
}
.p-home__access-map .p-home__access-map-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  visibility: visible;
  pointer-events: auto;
  background: transparent;
  opacity: 1;
  transition: opacity var(--home-ui-fade-duration) var(--home-fade-ease), visibility 0s linear 0s;
  will-change: opacity;
}
.p-home__access-map::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: rgba(255, 255, 255, 0.07);
  transition: background-color var(--home-ui-fade-duration) var(--home-fade-ease);
}

.p-home.is-access-map-interactive .p-home__access-map .p-home__access-map-cover {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition-delay: 0s, var(--home-ui-fade-duration);
}

.p-home.is-menu-open[data-home-current-stage=map] .p-home__access-map::after {
  background: rgba(0, 0, 0, 0.28);
}

.p-home__scene--access .p-home__content-shell {
  position: relative;
  z-index: 1;
}
.p-home__scene--access .p-home__content-shell::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: var(--home-access-card-overlap);
  pointer-events: none;
  content: "";
  background: #2743AA;
}
@media (width >= 1024px) {
  .p-home__scene--access .p-home__content-shell {
    width: var(--home-content-width);
    margin: 0 1rem 0 0;
    margin-right: calc(var(--home-frame-offset-inline) + var(--home-side-width));
  }
}
@media (width < 1024px) {
  .p-home__scene--access .p-home__content-shell {
    width: calc(100% - 2rem);
    margin-right: 0;
    margin-left: auto;
  }
}

.p-home__access-card {
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: #2743AA;
  box-shadow: 0 var(--home-access-card-overlap) 0 0 #2743AA;
  isolation: isolate;
}
.p-home__access-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: url("../../assets/images/home/bottom-bar-noise.png") top left/20rem 20rem repeat;
  mix-blend-mode: multiply;
  opacity: 0.1;
}

.p-home__access-card-main {
  position: relative;
  z-index: 2;
  display: grid;
}
@media (width >= 1024px) {
  .p-home__access-card-main {
    gap: 2rem;
    padding: 4.4rem 4.7rem 0.2rem;
  }
}
@media (width < 1024px) {
  .p-home__access-card-main {
    gap: 1.8rem;
    padding: 2.8rem 2.9rem 0.2rem;
  }
}

.p-home__access-brand {
  width: 15rem;
}
@media (width >= 1024px) {
  .p-home__access-brand {
    width: 21rem;
  }
}

.p-home__access-body {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media (width >= 1024px) {
  .p-home__access-body {
    display: grid;
    gap: 0.6rem;
  }
}
