@charset "UTF-8";
/**** 共通カラー ****/
.scrollFade,
.scrollFade02,
.loadFade {
  opacity: 0;
  filter: blur(20px);
  will-change: opacity, transform, filter;
}

/* scrollで入ったらフワッと＆少し下から */
.scrollFade {
  transform: translateY(20px);
}

.scrollFade02 {
  transform: translateY(30px);
}

.loadFade {
  transform: translateY(20px);
}

.scrollFade.show {
  animation: fadeBlurIn 0.8s ease-out forwards;
}

.scrollFade02.show {
  animation: fadeBlurIn 1s ease-out forwards;
}

/* loadで出す要素は位置を動かさない（レイアウトのガタつき対策） */
.loadFade.show {
  animation: fadeBlurLoad 1s ease-out forwards;
}

/* ===== キーフレーム ===== */
@keyframes fadeBlurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
@keyframes fadeBlurLoad {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
/* ===== スマホは短め ===== */
@media (max-width: 768px) {
  .scrollFade.show,
  .loadFade.show {
    animation-duration: 0.3s;
  }
}
/* ===== prefers-reduced-motion 配慮 ===== */
@media (prefers-reduced-motion: reduce) {
  .scrollFade,
  .loadFade {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
.scrollFade.show:nth-child(1) {
  animation-delay: 0s;
}

.scrollFade.show:nth-child(2) {
  animation-delay: 0.2s;
}

.scrollFade.show:nth-child(3) {
  animation-delay: 0.4s;
}

.scrollFade.show:nth-child(4) {
  animation-delay: 0.6s;
}

#splash {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}
#splash::after {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  background: #181919;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  max-width: 150px;
  z-index: 2;
  transform: translateY(-50%);
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 576px) {
  #splash_logo {
    max-width: 80px;
  }
}
#splash_logo .fv-logo {
  display: inline-block;
  animation: spin 10s linear infinite;
  will-change: transform;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#splash.is-hide::after {
  transform: translateY(-100%);
  pointer-events: none;
}

#splash_logo.is-fade {
  opacity: 0;
}

.animation_text_wrap {
  position: relative;
}

.c-text {
  color: #ffffff;
  font-size: clamp(6rem, 6.6vw, 8rem);
  font-family: "Orbitron-Bold";
  overflow: hidden;
  display: flex;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.6;
}
.c-text .c-text__wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  /* コンテンツの幅にフィット */
  animation: infinity-scroll-left 40s linear infinite;
}
.c-text .c-text__wrap_2 {
  animation: infinity-scroll-left 70s linear infinite;
}
.c-text .c-text__item {
  display: inline-block;
  padding: 0 10px;
}

/* ループテキスト */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes lineGrowDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes loop-r {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.js-view {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.18, 1.35, 0.35, 1);
  will-change: transform, opacity;
}

.js-view.action {
  opacity: 1;
  transform: translateY(0) scale(1);
}/*# sourceMappingURL=animation.css.map */