@charset "UTF-8";

/* loading layout */
#loading {
  display: none; /* js for one access */
  width: 100%;
  height: 100vh;
  background: #fff;
  position: relative;
  z-index: 1200; /* for nav.cover */
  }
  #loading img {
    display: block;
    width: 300px;/* 130 */
    height: auto;
    aspect-ratio: 1 / 1;
    margin: auto;
    position: absolute;
    z-index: 102;
    top: -150px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #loading p {
    width: 150px;
    height: 150px;
    text-align: center;
    letter-spacing: 0.1em;
    text-indent: 0.5em;
    color: var(--pastel_red);
    margin: auto;
    position: absolute;
    z-index: 101;
    /*top: 180px;*/
    top: 330px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #loading.is-active {
    display: block; /* js for one access */
}
/* loading layout end */

/* loading animation */
/* HTML: <div class="loader"></div> */
.loader {
  width: 150px;
  height: 12px;
  border-radius: 20px;
  color: var(--pastel_red);
  border: 1px solid;
  margin: auto;
  position: absolute;
  z-index: 101;
  /*top: 0;*/
  top: 150px;
  bottom: 0;
  left: 0;
  right: 0;
}
.loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
  animation: l6 4s infinite;
}
@keyframes l6 {
    100% {inset:0}
}
/* loading animation  end */
