@charset "UTF-8";
/**** 共通カラー ****/
/* 下から上にフェードイン */
.event.fadeIN {
  opacity: 0;
}

.event.animation.fadeIN {
  animation-name: fadeINAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 46.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  padding-top: 40%;
}
@media screen and (max-width: 767px) {
  #splash_logo {
    max-width: 100px;
  }
}

#splash_logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/tittle_mark.webp) center/contain, no-repeat;
  animation: kaiten 10s infinite linear;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo p {
  font-family: "NotoSansJP-Regular";
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  font-size: clamp(2rem, 5vw, 6.5rem);
  text-align: center;
  color: #ffffff;
}

#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 */