@charset "UTF-8";
.scroll-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.15s ease-out, transform 1.15s ease-out;
}
.scroll-anim.fadeIn {
  transform: none;
}
.scroll-anim.fadeInUp {
  transform: translateY(24px);
}
.scroll-anim.fadeInDown {
  transform: translateY(-24px);
}
.scroll-anim.fadeInRight {
  transform: translateX(-24px);
}
.scroll-anim.fadeInLeft {
  transform: translateX(24px);
}
.scroll-anim.delay-1 {
  transition-delay: 0.12s;
}
.scroll-anim.delay-2 {
  transition-delay: 0.24s;
}
.scroll-anim.popIn {
  opacity: 0;
  transform: scale(0.62);
  transition: none;
}
.scroll-anim.is-animated {
  opacity: 1;
  transform: none;
}

.scroll-anim.popIn.is-animated {
  transform: scale(1);
  animation: scroll-anim-pop 0.9s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

.scroll-anim.popIn.delay-1.is-animated {
  animation-delay: 0.28s;
}

.scroll-anim.popIn.delay-2.is-animated {
  animation-delay: 0.56s;
}

@keyframes scroll-anim-pop {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }
  72% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 帯が左から右へ流れてテキストを見せる */
.scroll-anim.reveal-wipe {
  --wipe-band: #0085c1;
  opacity: 1;
  transform: none;
}
.scroll-anim.reveal-wipe .m-recruit-heading__en,
.scroll-anim.reveal-wipe .m-recruit-heading__title {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}
.scroll-anim.reveal-wipe .m-recruit-heading__en::after,
.scroll-anim.reveal-wipe .m-recruit-heading__title::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: var(--wipe-band);
  content: "";
  transform: translateX(-101%);
  pointer-events: none;
}
.scroll-anim.reveal-wipe.m-recruit-heading--center .m-recruit-heading__en,
.scroll-anim.reveal-wipe.m-recruit-heading--center .m-recruit-heading__title {
  margin-right: auto;
  margin-left: auto;
}
.scroll-anim.reveal-wipe.m-recruit-heading--white {
  --wipe-band: #0085c1;
}
.scroll-anim.reveal-wipe.is-animated .m-recruit-heading__en,
.scroll-anim.reveal-wipe.is-animated .m-recruit-heading__title {
  animation: reveal-wipe-clip 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.scroll-anim.reveal-wipe.is-animated .m-recruit-heading__en::after,
.scroll-anim.reveal-wipe.is-animated .m-recruit-heading__title::after {
  animation: reveal-wipe-band 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.scroll-anim.reveal-wipe.is-animated .m-recruit-heading__title {
  animation-delay: 0.1s;
}
.scroll-anim.reveal-wipe.is-animated .m-recruit-heading__title::after {
  animation-delay: 0.1s;
}

/* 画像：最初から帯で覆い、右へ流れて見せる */
.scroll-anim.reveal-wipe-media {
  --wipe-band: #f45d60;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: none;
}
.scroll-anim.reveal-wipe-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: var(--wipe-band);
  content: "";
  transform: translateX(0);
  pointer-events: none;
}
.scroll-anim.reveal-wipe-media.is-animated::after {
  animation: reveal-wipe-cover-out 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.scroll-anim.reveal-wipe-media.delay-1.is-animated::after {
  animation-delay: 0.12s;
}
.scroll-anim.reveal-wipe-media.delay-2.is-animated::after {
  animation-delay: 0.24s;
}

@keyframes reveal-wipe-cover-out {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes reveal-wipe-clip {
  0%, 42% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes reveal-wipe-band {
  0% {
    transform: translateX(-101%);
  }
  42% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
/* 下層ヘッダー画像：メインカラーのカーテンが左から右へ流れる */
.m-subpage-hero__visual {
  position: relative;
}
.m-subpage-hero__visual::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 112%;
  background-color: #0085c1;
  background-image: linear-gradient(90deg, #0085c1 0%, #0085c1 78%, rgba(0, 133, 193, 0) 100%);
  content: "";
  transform: translateX(0);
  pointer-events: none;
}
.m-subpage-hero__visual img {
  filter: blur(16px) grayscale(1);
  transform: scale(1.04);
  will-change: filter, transform;
}
.m-subpage-hero__visual.is-curtain-animated::after {
  animation: subpage-hero-curtain 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.m-subpage-hero__visual.is-curtain-animated img {
  animation: subpage-hero-unblur 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.22s forwards;
}

@keyframes subpage-hero-curtain {
  0%, 12% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes subpage-hero-unblur {
  0% {
    filter: blur(16px) grayscale(1);
    transform: scale(1.04);
  }
  100% {
    filter: blur(0) grayscale(0);
    transform: scale(1);
  }
}
/* トップFV：ぼかしがとける */
.p-hero__slider {
  filter: blur(16px);
  will-change: filter;
}

.p-hero.is-fv-unblur .p-hero__slider {
  animation: p-hero-unblur 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes p-hero-unblur {
  0% {
    filter: blur(16px);
  }
  100% {
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-anim {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .scroll-anim.reveal-wipe .m-recruit-heading__en,
  .scroll-anim.reveal-wipe .m-recruit-heading__title {
    clip-path: none;
    animation: none;
  }
  .scroll-anim.reveal-wipe .m-recruit-heading__en::after,
  .scroll-anim.reveal-wipe .m-recruit-heading__title::after {
    display: none;
    animation: none;
  }
  .scroll-anim.reveal-wipe-media {
    animation: none;
  }
  .scroll-anim.reveal-wipe-media::after {
    display: none;
    animation: none;
  }
  .m-subpage-hero__visual::after {
    display: none;
    animation: none;
  }
  .m-subpage-hero__visual img {
    filter: none;
    transform: none;
    animation: none;
  }
  .p-hero__slider {
    filter: none;
    animation: none;
  }
}/*# sourceMappingURL=animation.css.map */