@charset "utf-8";
.cmshtml #page-top {
  cursor: pointer;
  color: #E60012;
  display: block;
  font-size: 14px;
  padding-top: 41px;
  position: fixed;
  bottom: 120px;
  right: 44px;
  z-index: 33;
}
.cmshtml #page-top:before {
  border-top: 2px solid #E60012;
  border-right: 1px solid #E60012;
  content: "";
  display: block;
  width: 6px;
  height: 34px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: skewY(-55deg);
  transition: all 0.5s ease;
}
.cmshtml #page-top:hover:before {
  top: -10px;
  height: 44px;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 50px;
    right: 20px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml #page-top {
    bottom: 80px;
  }
}
/*------------------------------------------------------*/
.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 .sec_tit {
  position: relative;
}
.cmshtml .main_tit {
  font-size: 140px;
  font-size: 7.3vw;
  font-size: min(7.3vw, 140px);
  font-size: min(4.8vw, 140px);
  font-weight: 100;
  line-height: 1;
}
.cmshtml .sub_tit {
  font-size: 30px;
  font-size: 24px;
  font-weight: 500;
  padding-left: 55px;
  position: relative;
}
.cmshtml .sub_tit:before {
  background: #E60012;
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .cmshtml .sub_tit {
    font-size: 24px;
    padding-left: 40px;
  }
  .cmshtml .sub_tit:before {
    width: 30px;
    height: 2px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml .main_tit {
    font-size: 50px;
  }
  .cmshtml .sub_tit {
    font-size: 18px;
    padding-left: 20px;
  }
  .cmshtml .sub_tit:before {
    width: 15px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .main_tit {
    font-size: 36px;
  }
  .cmshtml .sub_tit {
    font-size: 14px;
    padding-left: 15px;
  }
  .cmshtml .sub_tit:before {
    width: 10px;
    height: 1px;
  }
}