@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 {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #080605;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 46.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  padding-top: 40%;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo p {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  max-width: 180px;
}

#splash_logo p span {
  display: block;
  font-size: clamp(0.6rem, 1.2vw, 1.6rem);
  margin-bottom: 16px;
}

.fadeup {
  animation-name: fadeupAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeupAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  #splash_logo {
    top: 50%;
    width: 100%;
    padding-top: 100%;
  }
  #splash_logo p {
    font-size: 4.5rem;
  }
  #splash_logo p span {
    font-size: 1.1rem;
  }
}
.animation_text_wrap {
  position: relative;
}

.c-text {
  overflow: hidden;
  display: flex;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 16px 0;
}
.c-text .c-text__wrap {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: infinity-scroll-left 60s linear infinite;
  will-change: transform;
}
.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);
  }
}/*# sourceMappingURL=animation.css.map */