@charset "utf-8";
.cmshtml #page-top {
  background: url("../img/top.png") no-repeat top 6px center;
  background-color: #fff;
  border: 1px solid #0090D7;
  color: #0090D7;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 1;
  width: 45px;
  height: 45px;
  padding: 4px;
  position: fixed;
  bottom: 34px;
  right: 38px;
  z-index: 33;
  transition: all 0.3s;
}
.cmshtml #page-top:hover {
  background: url("../img/top02.png") no-repeat top 6px center;
  background-color: #0090D7;
  color: #fff;
}
@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 #header + * {
  margin-top: 144px;
}
@media screen and (max-width: 1300px) {
  .cmshtml #header + * {
    margin-top: 114px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml #header + * {
    margin-top: 73px;
  }
}