@charset "UTF-8";

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

.load-9 {
  width: 100px;
  height: 100px;
  padding: 20px 20px 20px;
  border-radius: 5px;
  text-align: center;
  margin: 200px auto;
  background-color: #FFF;
  border: solid;
  border-color: #d8d8d8;
}
.load-9 .spinner {
  animation: loadingI 2s linear infinite;
  margin-top: 25px;
}
.load-9 .bubble-1,
.load-9 .bubble-2 {
  animation: bounce 2s ease-in-out infinite;
}
.load-9 .bubble-2 {
  animation-delay: -1s;
}
.bubble-1,
.bubble-2 {
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #FF6300;
}
.bubble-2 {
  top: auto;
  bottom: 0;
}
@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}
