@charset "UTF-8";
#wrapper {
  opacity: 0;
}

.loading-done #wrapper {
  transition: opacity 0.2s;
  opacity: 1;
}

/* プリローダー全体 */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* フェードアウト */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* スピナー */
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #FFFFFF;
  border-top: 4px solid #00B3CD;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=loader.css.map */