@charset "UTF-8";
/* CSS Document */
/*ローディング*/
#wrap.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  animation: fadeOut 1.5s 4.0s forwards;
}
/* ローディング完了後に非表示 */
#wrap.loading.hidden {
  opacity: 0;
  pointer-events: none; /* クリックなどの操作を無効にする */
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}
