@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;
}

.loading-wrapper {
  text-align: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  flex-direction: column;
}

/* 上下ピコピコ */
.image-bounce {
  animation: bounce 0.6s infinite alternate;
}

/* 左右くるくる */
.loading-image {
  width: 14rem;
  animation: spinFlip 4s infinite ease-in-out;
  margin-bottom: 2rem;
}

/* 上下 */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}
/* マラカス感ある反転 */
@keyframes spinFlip {
  0% {
    transform: scaleX(1);
  }
  /* しばらく通常 */
  20% {
    transform: scaleX(1);
  }
  /* くるっ */
  30% {
    transform: scaleX(-1);
  }
  /* 反転状態で停止（ディレイ） */
  80% {
    transform: scaleX(-1);
  }
  /* 元に戻って次のループへ */
  100% {
    transform: scaleX(1);
  }
}
/* LOADING文字 */
.loading-text span {
  display: inline-block;
  font-size: 4rem;
  letter-spacing: 0.5rem;
  opacity: 0.3;
  font-family: "coldsmith-pro", sans-serif;
  font-weight: 400;
}

#news {
  width: 80rem;
  line-height: 5rem;
  height: 5rem;
  border-radius: 5rem;
  background: #FFF;
  overflow: hidden;
  position: absolute;
  color: #000;
  top: 11rem;
  left: 4rem;
}

#news li {
  font-weight: bold;
  font-size: 2.4rem;
}

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

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

ul.marquee li span {
  color: #009440;
  margin-right: 1.5rem;
  font-size: 2.6rem;
  padding-left: 2rem;
  font-family: "Roboto", sans-serif;
}

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

body {
  background: #009440;
  font-family: "Noto Sans JP", sans-serif;
}

#wrapper {
  width: 100%;
  position: relative;
}

footer {
  background: #000000;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
footer ul.sns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
footer ul.sns li img {
  width: 9rem;
}
footer address {
  text-align: center;
  color: #FFF;
  margin-top: 1.5rem;
  font-size: 2rem;
}

/***********************************************************************
ミディアムデバイス (スマートフォン) のスタイル
**********************************************************************/
@media (max-width: 750px) {
  .sp_no {
    display: none;
  }
  html, body {
    width: 75rem;
    overflow-x: hidden;
  }
  #news {
    width: 72rem;
    z-index: 10;
    left: 1rem;
    top: 8.5rem;
  }
}
/***********************************************************************
ラージデバイス (デスクトップ) のスタイル
**********************************************************************/
@media (min-width: 751px) {
  html {
    font-size: 0.5208333333vw;
  }
  .pc_no {
    display: none !important;
  }
  html, body {
    width: 192rem;
    height: 100%;
  }
  #wrapper {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
  }
  #wrapper::before {
    content: "";
    width: calc(100% + 20rem);
    height: 100%;
    background: url(../images/wave_pc.jpg) center center;
    background-size: auto 100%;
    position: absolute;
    left: 0rem;
    transition: 5s;
    opacity: 0;
  }
  #wrapper.mov::before {
    left: -10rem;
    opacity: 1;
  }
  footer {
    background: none;
  }
  footer ul.sns {
    left: 52rem;
    top: 4rem;
    gap: 0.6rem;
    position: absolute;
  }
  footer ul.sns li img {
    width: 4.6rem;
  }
  address {
    font-size: 1.6rem;
    color: #FFF;
    text-align: center;
    padding: 2rem;
  }
}/*# sourceMappingURL=common.css.map */