/*------------------------------------
トップページ　ローディング画面用CSS
------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
}
  
.loading .load-content {
  width: 250px;
}

@media only screen and (max-width: 1080px) {
  
}

@media only screen and (max-width: 767px) {
  
}