@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 screen and (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;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c8ed6;
  transition: opacity 0.6s ease;
}

#splash.is-hide {
  opacity: 0;
  pointer-events: none;
}

#splash_logo .fv-logo {
  display: inline-block;
  color: #ffffff;
  font-size: clamp(4rem, 3.333vw, 4.8rem);
  letter-spacing: 0.12em;
  animation: splashLogoRise 0.8s ease-out forwards;
}

@keyframes splashLogoRise {
  from {
    opacity: 0;
    transform: translateY(2.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #splash_logo .fv-logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.animation_text_wrap {
  position: relative;
}

.c-text {
  color: #ffffff;
  font-size: clamp(6rem, 5vw, 7.2rem);
  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: 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_fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js_fade.is_show {
  opacity: 1;
  transform: none;
}

.js_fade_stagger > .js_fade:nth-child(1) {
  transition-delay: 0s;
}
.js_fade_stagger > .js_fade:nth-child(2) {
  transition-delay: 0.12s;
}
.js_fade_stagger > .js_fade:nth-child(3) {
  transition-delay: 0.24s;
}
.js_fade_stagger > .js_fade:nth-child(4) {
  transition-delay: 0.36s;
}
.js_fade_stagger > .js_fade:nth-child(5) {
  transition-delay: 0.48s;
}
.js_fade_stagger > .js_fade:nth-child(6) {
  transition-delay: 0.6s;
}
.js_fade_stagger > .js_fade:nth-child(7) {
  transition-delay: 0.72s;
}
.js_fade_stagger > .js_fade:nth-child(8) {
  transition-delay: 0.84s;
}
.js_fade_stagger > .js_fade:nth-child(9) {
  transition-delay: 0.96s;
}
.js_fade_stagger > .js_fade:nth-child(10) {
  transition-delay: 1.08s;
}
.js_fade_stagger > .js_fade:nth-child(11) {
  transition-delay: 1.2s;
}
.js_fade_stagger > .js_fade:nth-child(12) {
  transition-delay: 1.32s;
}
.js_fade_stagger > .js_fade:nth-child(13) {
  transition-delay: 1.44s;
}
.js_fade_stagger > .js_fade:nth-child(14) {
  transition-delay: 1.56s;
}
.js_fade_stagger > .js_fade:nth-child(15) {
  transition-delay: 1.68s;
}
.js_fade_stagger > .js_fade:nth-child(16) {
  transition-delay: 1.8s;
}

@media (prefers-reduced-motion: reduce) {
  .js_fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.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);
}

.js-view:nth-child(1) {
  transition-delay: 0s;
}

.js-view:nth-child(2) {
  transition-delay: 0.12s;
}

.js-view:nth-child(3) {
  transition-delay: 0.24s;
}

.js-view:nth-child(4) {
  transition-delay: 0.36s;
}

.js-view:nth-child(5) {
  transition-delay: 0.48s;
}

.js-view:nth-child(6) {
  transition-delay: 0.6s;
}

@keyframes circlemove {
  0% {
    left: 93px;
  }
  70% {
    opacity: 1;
  }
  100% {
    left: 123px;
    opacity: 0;
  }
}

/*# sourceMappingURL=animation.css.map */
