@charset "UTF-8";
/* ----------------------------------------------------------------------
  ローディングアニメーション
---------------------------------------------------------------------- */
#loading {
  width: 100vw;
  height: 100%;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.8em;
  text-align: center;
  font-size: 20px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
#loading .image {
  width: 150px;
  height: auto;
}
@media (max-width: 700px) {
  #loading .image {
    width: 180px;
    height: auto;
  }
}
#loading img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: cover;";
}
#loading .image.text_on {
  display: none;
}
#loading .in {
  -webkit-animation: loading_anime 1.5s;
  animation: loading_anime 1.5s;
  letter-spacing: 0.1em;
}
@-webkit-keyframes loading_anime {
  0% {
    margin-top: 10px;
    opacity: 0;
    letter-spacing: 0.2em;
  }
  100% {
    margin-top: 0;
    opacity: 1;
    letter-spacing: 0.1em;
  }
}
@keyframes loading_anime {
  0% {
    margin-top: 10px;
    opacity: 0;
    letter-spacing: 0.2em;
  }
  100% {
    margin-top: 0;
    opacity: 1;
    letter-spacing: 0.1em;
  }
}
#loading .in.img_on {
  display: none;
}

.loaded {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
}

.site-footer-copyright p:last-of-type {
  display: none;
}

/* ----------------------------------------------------------------------
 【テキスト】スクロールして出現するアニメーション
---------------------------------------------------------------------- */
.text_in_07s {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 72px);
}

.text_in_1s {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 72px);
}

.text_in_2s {
  opacity: 0;
  transition: 2s;
  transform: translate(0, 72px);
}

.isAnimate {
  opacity: 1;
  transform: translate(0);
  transform: none;
}

/* ----------------------------------------------------------------------
【テキスト】サイトが読み込まれてから出現するアニメーション
---------------------------------------------------------------------- */
.fade_left {
  opacity: 0;
  transition: ease-out 0.7s;
  transform: translate(-40px, 0);
}

.fade_right {
  opacity: 0;
  transition: ease-out 0.7s;
  transform: translate(40px, 0);
}

.fade_up {
  opacity: 0;
  transition: ease-out 0.7s;
  transform: translate(0, 60px);
}

.fade_up_02 {
  opacity: 0;
  transition: ease-out 0.7s;
  transform: translate(0, 60px);
}

.fade_up_15s {
  opacity: 0;
  transition: ease-out 1.5s;
  transform: translate(0, 40px);
}

.fade_up_18s {
  opacity: 0;
  transition: ease-out 1.8s;
  transform: translate(0, 40px);
}

.fade_up_20s {
  opacity: 0;
  transition: ease-out 2s;
  transform: translate(0, 40px);
}

.isAnimate_02 {
  opacity: 1;
  transform: translate(0);
}/*# sourceMappingURL=anime.css.map */