@charset "utf-8";
.cmsbody.motion {
  height: 100vh;
  overflow: hidden;
}
.cmsbody.motion_finish {
  height: auto;
  overflow: visible;
}
.cmshtml .motion #header, .cmshtml .motion .mv_wrap, .cmshtml .motion .contents {
  transform: scale(0.9);
  opacity: 0;
  transition: all 1s;
}
.cmshtml .motion_finish #header, .cmshtml .motion_finish .mv_wrap, .cmshtml .motion_finish .contents {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}
.cmshtml #loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding-bottom: 50px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  transition: all 0.6s;
}
.cmshtml .no_motion #loading {
  opacity: 0;
  pointer-events: none;
}
.cmshtml #loading:before, .cmshtml #loading:after {
  background: #444;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  z-index: 1;
}
.cmshtml #loading:before {
  top: 0;
}
.cmshtml #loading:after {
  bottom: 0;
}
.cmshtml #loading.finish:before, .cmshtml #loading.finish:after {
  animation: no_height 1s forwards;
  animation-iteration-count: 1;
}
@keyframes no_height {
  0% {
    height: 50%;
  }
  100% {
    height: 0;
  }
}
.cmshtml #loading.loaded {
  opacity: 1;
  transition-delay: 2s;
}
.cmshtml #loading.finish {
  pointer-events: none;
}
.cmshtml .load_line {
  background: #f00;
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  margin: auto;
  position: absolute;
  left: 0;
  top: 50px;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s;
}
.cmshtml .loaded .load_line {
  animation: load_bar 2s forwards;
  animation-iteration-count: 1;
}
.cmshtml .finish .load_line {
  opacity: 0;
}
@keyframes load_bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*------------------------------------------------------*/
.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 0.6s ease;
}
.cmshtml .to-rl {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}
.cmshtml .to-lr.scrollin, .cmshtml .to-rl.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*------------------------------------------------------*/
.cmshtml .slide_news {
  visibility: hidden;
}
.cmshtml .slick-initialized {
  visibility: visible;
}
/*------------------------------------------------------*/
@media screen and (max-width: 1500px) {
  .cmshtml .sec_tit {
    font-size: 36px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml .sec_tit {
    font-size: 30px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .sec_tit {
    font-size: 22px;
  }
}
/*------------------------------------------------------*/
.cmshtml .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*------------------------------------------------------*/