@charset "UTF-8";
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  text-align: center;
  color: #000;
  /* Loading画像中央配置　*/
}
#splash #splash_text {
  position: absolute;
  top: calc(50% + 120px);
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #000;
}
#splash #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #splash #splash_logo {
    width: 100%;
  }
}
#splash #splash_logo img {
  width: 120px;
}
#splash #splash_logo .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#splash #splash_logo p {
  font-size: 3.6rem;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #splash #splash_logo p {
    font-size: 2.4rem;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=loading.css.map */