@charset "utf-8";
.cmshtml #page-top {
  display: block;
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 33;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.cmshtml #page-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -5px 0 0 -10px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  transform: rotate(-45deg);
  transition: all 0.6s ease;
}
.cmshtml #page-top:hover:before {
  top: 0;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 20px;
    right: 20px;
  }
}
/*------------------------------------------------------*/
.cmshtml .load-fade {
  opacity: 0;
  transition: all 2s;
  overflow: hidden;
}
.cmshtml .load-fade.done {
  opacity: 1;
}
.cmshtml .to-lr {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s;
}
.cmshtml .to-rl {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s;
}
.cmshtml .to-lr.scrollin, .cmshtml .to-rl.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*------------------------------------------------------*/
.cmshtml .slide_mask {
  color: transparent;
  position: relative;
  transition: all 1s;
  transition-delay: 1s;
  overflow: hidden;
}
.cmshtml .catch_txt02.slide_mask {
  transition-delay: 2s;
}
.cmshtml .view_block.slide_mask {
  color: #333;
}
.cmshtml .slide_mask:after {
  background: #000;
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 0.3s;
}
.cmshtml .view_block.slide_mask:after {
  animation: slideMask 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 0.6s;
}
@keyframes slideMask {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
    transform: translateX(0);
  }
  100% {
    width: 100%;
    transform: translateX(100%);
  }
}
.cmshtml .view_block.catch_txt02.slide_mask:after {
  animation: slideMask 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 1.6s;
}
@keyframes slideMask02 {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
    transform: translateX(0);
  }
  100% {
    width: 100%;
    transform: translateX(100%);
  }
}
/*------------------------------------------------------*/