@charset "UTF-8";
/* ---- reset ---- */
canvas {
  display: block;
  vertical-align: bottom;
} /* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffeb00;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
} /* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats, .count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

body {
  overflow: hidden;
}

#f-nav {
  display: none;
}

#frontpage {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#front-logo {
  position: absolute;
  z-index: 1;
  background: #fff;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  opacity: 1;
  animation-name: front-logo;
  animation-delay: 1.2s;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes front-logo {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#front-text {
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation-name: front-text;
  animation-delay: 2s;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
#front-text p {
  writing-mode: vertical-rl;
  display: inline-block;
  text-align: initial;
  text-align: center;
  color: #666666;
  font-size: 0.875rem;
  letter-spacing: 0;
}

@keyframes front-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#front-cover {
  position: absolute;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: all 0.5s ease-out 0s;
  cursor: pointer;
  background: #fff;
}
#front-cover.active {
  opacity: 1;
}

.circle {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffeb00;
  transform: scale(30) rotate(-45deg);
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  transition: all 2.5s ease-out 0s;
}
.active > .circle {
  transform: scale(1) rotate(-45deg);
  animation-name: drip;
  animation-delay: 2.4s;
  animation-duration: 2.1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes drip {
  0% {
    border-radius: 100% 1% 100% 100%;
    top: calc(50% - 50px);
  }
  100% {
    top: 110%;
    border-radius: 100% 1% 100% 100%;
  }
}
@media screen and (max-width: 460px) {
  #front-logo img {
    max-width: 110px;
    margin-top: -20px;
  }
}/*# sourceMappingURL=frontpage.css.map */