/* boxA */
@charset"UTF-8";
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:100,300,400,500,700,800,900&display=swap');

/* ロード画面 */
/*
.loading{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: all 1s;
}
.loading p{
  width: 280px;
  margin: 0 auto 30px;
  color: gray;

}
.loading-animation{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid rgba(251,251,251,0.3);
  border-top: 6px solid rgba(251,251,251,0.9);
  animation: kurukuru 1s ease infinite normal;
}
.loaded{
  opacity: 0;
  visibility: hidden;
}

@keyframes kurukuru{
  0%{transform: rotate(0deg)}
  100%{transform: rotate(360deg);}
}
*/