@charset "UTF-8";
/**** 共通カラー ****/
/* ループテキスト */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes lineGrowDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.Fade_IN {
  opacity: 0;
  will-change: transform, opacity;
  transform: translateY(40px);
  visibility: hidden;
}

.Fade_IN.show {
  animation: Fade_In 0.6s ease-out 0.2s forwards;
}

@keyframes Fade_In {
  from {
    opacity: 0;
    transform: translateY(60px);
    visibility: visible;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #ffffff;
  text-align: center;
  color: #fff;
  font-family: "CormorantGaramond-Regular";
}

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

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

#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;
  }
}/*# sourceMappingURL=animation.css.map */