@charset "UTF-8";
/* animation
====================================================================================================================================== */
@keyframes pikopiko {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3px);
  }
}
@keyframes showDot {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(80%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes showDot_img {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showDot_fukidashi {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showCopy {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mvBg {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes textB-W {
  0% {
    color: #111;
  }
  100% {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
}
@keyframes textShadow {
  100% {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
}
/* top
====================================================================================================================================== */
.first_conts .fukidashi,
.about_us .dot_fukidashi {
  animation: pikopiko 0.8s steps(2) infinite;
}

.kataribe_word {
  position: relative;
}

.kataribe_word .wrap {
  display: flex;
  flex-direction: column;
  /* 縦並びにする */
  transition: transform 1s ease-in-out;
}

/* mainvisual */
.top .first_conts {
  position: relative;
}
.top .first_conts:after,
.top .first_conts #header,
.top .first_conts .main_copy {
  animation: mvBg 1s 2s ease-in-out forwards;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}
.top .first_conts:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.top .first_conts #header {
  animation-name: textShadow;
}
.top .first_conts #header .pulldown_sp {
  text-shadow: none;
}
.top .first_conts .main_copy {
  animation-name: textB-W;
}

/* ドットイメージ */
.dot_anime > *,
.first_conts .button_area,
.main_copy .main_text,
.main_copy .sub_text {
  opacity: 0;
  transform: translateY(20px);
}

.dot_anime.show > *,
.first_conts .dot_anime > * {
  animation: showDot 0.8s forwards;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.dot_anime.show > .dot_anime,
.first_conts .dot_anime > .dot_anime {
  opacity: 1;
  animation: none;
}
.dot_anime.show > img,
.dot_anime.show > .dot_fukidashi,
.first_conts .dot_anime > img,
.first_conts .dot_anime > .dot_fukidashi {
  animation-name: showDot_img;
}
.dot_anime.show.fukidashi_img > *,
.first_conts .dot_anime.fukidashi_img > * {
  animation-name: showDot_fukidashi;
  animation-duration: 0.2s;
  animation-timing-function: ease;
}
.dot_anime.show .dot01,
.dot_anime.show .dot05,
.first_conts .dot_anime .dot01,
.first_conts .dot_anime .dot05 {
  animation-delay: 0s;
}
.dot_anime.show .dot02,
.dot_anime.show .dot04,
.first_conts .dot_anime .dot02,
.first_conts .dot_anime .dot04 {
  animation-delay: 0.25s;
}
.dot_anime.show .dot03,
.dot_anime.show .dot06,
.first_conts .dot_anime .dot03,
.first_conts .dot_anime .dot06 {
  animation-delay: 0.5s;
}

.main_copy .main_text,
.main_copy .sub_text,
.first_conts .button_area {
  transform: translateY(10px);
  animation: showCopy 0.7s 0.2s forwards;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main_copy .sub_text {
  animation-delay: 0.35s;
}

.first_conts .button_area {
  animation-delay: 0.5s;
}/*# sourceMappingURL=anime.css.map */