.text_animation_fall {
  opacity: 0;
}

.text_top_fall {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: text_top_fall;
}

@keyframes text_top_fall {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text_animation_up {
  opacity: 0;
}

.text_bottom_up {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: text_bottom_up;
}

@keyframes text_bottom_up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein_left {
  transform: translate3d(0%, 0px, 0px);
}
.fadein_left:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 20;
  background: #fff;
  transform: scaleX(1);
  transform-origin: right center;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-delay: 0.5s;
}
.fadein_left.fadein_left_animation {
  transform: translate3d(0px, 0px, 0px);
  transform-origin: left center;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-delay: 0.2s;
  position: relative;
  left: 0;
}
.fadein_left.fadein_left_animation:before {
  transform: scale(0, 1);
}

.fadein_right {
  transform: translate3d(0, 0px, 0px);
}
.fadein_right:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 20;
  background: #fff;
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-delay: 0.5s;
}
.fadein_right.fadein_right_animation {
  transform: translate3d(0px, 0px, 0px);
  transform-origin: left center;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-delay: 0.2s;
  position: relative;
  left: 0;
}
.fadein_right.fadein_right_animation:before {
  transform: scale(0, 1);
}

.fadein_left_slow {
  opacity: 0;
}

.fadein_left_slow_animation {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fl_l_slow;
}

@keyframes fl_l_slow {
  0% {
    opacity: 0;
    transform: translate(-40px, 60px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadein_right_slow {
  opacity: 0;
}

.fadein_right_slow_animation {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fl_r_slow;
}

@keyframes fl_r_slow {
  0% {
    opacity: 0;
    transform: translate(40px, 60px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
a.more, span.more {
  padding: 20px;
  width: 240px;
  font-size: 15px;
  border: 2px solid #212736;
  text-align: center;
  margin: 30px auto;
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #fff;
}
a.more span, span.more span {
  display: block;
  position: relative;
  font-size: 13px;
  letter-spacing: 0.1rem;
  z-index: 2;
  transition: all 400ms cubic-bezier(0.8, 0, 0.2, 1);
}
a.more:hover span, span.more:hover span {
  color: #fff;
  transition: all 400ms cubic-bezier(0.8, 0, 0.2, 1);
}
a.more:hover:before, span.more:hover:before {
  width: 100%;
}
a.more:before, span.more:before {
  transform-origin: right;
  transition: all 400ms cubic-bezier(0.8, 0, 0.2, 1);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #de5d6f;
  z-index: 2;
}
a.more:after, span.more:after {
  transform-origin: right;
  transition: all 600ms cubic-bezier(0.8, 0, 0.2, 1);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #212736;
}

a.more.show:hover {
  border-color: #de5d6f;
}
a.more.show:after {
  width: 100%;
}
a.more.show span {
  color: #fff;
}

a.scroll {
  position: absolute;
  bottom: 10px;
  left: calc(50% - 20px);
  z-index: 2;
  display: inline-block;
  transform: translate(0, -50%);
  text-decoration: none;
  color: #fff;
  font-family: "Yu gochic", serif;
  padding-top: 60px;
}
a.scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
a.scroll span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.fadeInDown {
  animation-fill-mode: both;
  animation-duration: 1s;
  visibility: visible !important;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=animations.css.map */