@charset "UTF-8";
/*
.container {
  width: 100%;
  @include mq("tb") {
    width: 90%;
  }
  @include mq("pc") {
    width: 80%;
  }
}
*/
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-regular {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* オーバーレイ */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #59AAD3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  pointer-events: all; /* ローディング画面が操作をキャッチ */
  animation: bg 0.001s;
}

.loading-logo {
  width: min(60vw, 300px);
  animation: logo 2s;
}
.loading-logo img {
  filter: invert(99%) sepia(3%) saturate(1%) hue-rotate(82deg) brightness(106%) contrast(100%);
}

@keyframes bg {
  0% {
    background: #fff;
  }
  100% {
    background: #59AAD3;
  }
}
@keyframes logo {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  20% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  pointer-events: none;
}

body.no-scroll {
  overflow: hidden;
}

.inner-header {
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex-wave { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wavescontainer {
  position: relative;
}
.wavescontainer::after {
  content: "";
  position: absolute;
  display: block;
  bottom: calc(-100vh + 1px);
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}

.fade-out2 {
  transition: 1s ease-in;
  transform: translateY(-100vh);
}

.waves {
  position: relative;
  width: 100vw;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

/* Animation */
.parallax-wave > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax-wave > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 3s;
}

.parallax-wave > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 5s;
}

.parallax-wave > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 7s;
}

.parallax-wave > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 10s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}/*# sourceMappingURL=loading.css.map */