@charset "utf-8";
/* CSS Document */
/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;    
}

/* ロードアニメーション */
.loader {
position: fixed;
    top: 45%;
    left: 45%;
    width: 10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side, #ffffff 94%, #0000) top / 8px 8px no-repeat,
      conic-gradient(#0000 30%, #ffffff);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

/* ロード終わり*/ 
.loaded {
  opacity: 0;
  visibility: hidden;
}
