@charset "UTF-8";
/* CSS Document */
html {
  font-family: "Noto Sans JP", "nocturne-serif", "itc-avant-garde-gothic-pro", "roboto", "toppan-bunkyu-midashi-min-st", "Oswald", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.3333333333vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  overflow-y: scroll;
}

body {
  background-color: #e4e4e4;
}

.loading-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  position: fixed;
  background: #0a0e27;
}

.neon-ring {
  width: 100px;
  height: 100px;
  border: 4px solid transparent;
  border-radius: 50%;
  border-top-color: #FFFF00;
  border-right-color: #FFFF00;
  position: relative;
  animation: spin 1.5s linear infinite;
  filter: drop-shadow(0 0 10px #FFFF00) drop-shadow(0 0 20px #FFFF00);
}

.neon-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #E82D2D;
  border-left-color: #E82D2D;
  animation: spin 1s linear infinite reverse;
  filter: drop-shadow(0 0 10px #E82D2D) drop-shadow(0 0 20px #E82D2D);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#news {
  width: 50rem;
  line-height: 3.8rem;
  height: 3.8rem;
  border-radius: 100vmax;
  overflow: hidden;
  color: #000;
  background: url(../images/news.svg) left no-repeat #FFF;
  background-size: auto 100%;
  margin-right: 11rem;
  filter: drop-shadow(0 0.3rem 0.6rem rgba(0, 0, 0, 0.16));
}

#news li {
  font-weight: bold;
  font-size: 1.8rem;
  margin-left: 11rem;
}

ul.marquee {
  display: block;
  padding: 0;
  list-style: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 3.8rem;
  line-height: 3.8rem;
  margin-top: 0rem;
  margin-right: auto;
  margin-bottom: 0rem;
  margin-left: auto;
}

ul.marquee li {
  /* required styles */
  position: absolute;
  top: -999em;
  left: 0rem;
  display: block;
  white-space: nowrap; /* keep all text on a single line */
  /* optional styles for appearance */
}

ul.marquee li span {
  font-size: 1.8rem;
  margin-right: 1rem;
  font-family: "Roboto", sans-serif;
}

ul.marquee li a {
  text-decoration: underline;
  color: #E56C3E;
}

/***********************************************************************
ミディアムデバイス (スマートフォン) のスタイル
**********************************************************************/
@media (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
  @supports (-webkit-touch-callout: none) {
    html {
      font-size: 133.3333333333% !important;
    }
  }
  .sp_no {
    display: none;
  }
  html, body {
    width: 75rem;
    overflow-x: hidden;
  }
  html {
    overflow: auto;
  }
  .loading-wrapper {
    width: 75rem;
  }
  #news {
    width: 70rem;
    z-index: 10;
    height: 5rem;
    background-size: 14.5rem auto;
  }
  ul.marquee {
    height: 5rem;
    line-height: 5rem;
  }
  #news li {
    font-size: 2.4rem;
    margin-left: 16rem;
  }
  ul.marquee li span {
    font-size: 2.6rem;
  }
}
/***********************************************************************
ラージデバイス (デスクトップ) のスタイル
**********************************************************************/
@media (min-width: 751px) {
  html {
    font-size: 0.5208333333vw;
  }
  .pc_no {
    display: none !important;
  }
  html, body {
    width: 192rem;
    height: 100%;
  }
}/*# sourceMappingURL=common.css.map */