/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_text {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  top: 70%;
}

/*Loadingバーの線の太さ*/
#splash_text svg {
  height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* background-image: url(../img/topimg06.jpg); */
  background-position: center;
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}

/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}

/*クラス名がついたらY軸方向に0*/
.coveranime {
  transform: scaleY(0);
}

#splash_text img {
  width: 50%;
  max-width: 350px;
  padding-bottom: 25px;
}

/*  */

.TextTyping {
  text-align: center;
}

/*========= タイピング ===============*/

.TextTyping span {
  display: none;
}

/*カーソルの線の設定*/
/* .TextTyping::after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
} */

@keyframes typinganime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  */

@media screen and (max-width: 480px) {
  #splash_text img {
    width: 50%;
  }

  /*割れる画面のアニメーション*/
  .loader_cover {
    background-image: unset;
  }
}

.fadeInEffect {
  opacity: 1 !important;
  transition: opacity 0.4s ease;
}

.hide {
  opacity: 0;
}