@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;
}
.cmshtml .load-fade {
  opacity: 0;
  transition: all 1.2s;
}
.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 .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);
  }
}


/*====================================================*/
.cmshtml .timeline {
  position: relative;
}
.cmshtml .timeline_box {
  display: flex;
  position: relative;
}
.cmshtml .timeline_box > div:first-child {
  border-right: 2px solid #FF9500;
  width: 15%;
}
.cmshtml .timeline_box > div:nth-child(2) {
  width: 85%;
  padding-left: 5%;
}
.cmshtml .time_txt {
  font-size: 30px;
}
.cmshtml .event_tit {
  font-size: 28px;
}
.cmshtml .event_txt {
  font-size: 19px;
}
.cmshtml .timearea {
  position: relative;
}
.cmshtml .time_txt {
  position: relative;
  padding-right: 10px;
}
.cmshtml .time_txt:before {
  background: #FF9500;
  border-radius: 50%;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  transform: translateX(55%);
}
.cmshtml .eventarea {
  padding: 0 0 40px;
  position: relative;
}


.cmshtml .gradient_tit {
    font-weight: 600;
    font-size: 36px;
    padding-right: 10px;
    padding-left: 10px;
    background-size: 100% 30%;
    background-position: bottom;
    background-repeat: no-repeat; 
}


@media screen and (max-width: 1000px) {
  .cmshtml .time_txt {
    font-size: 24px;
  }
  .cmshtml .event_tit {
    font-size: 20px;
  }
  .cmshtml .event_txt {
    font-size: 16px;
  }
  .cmshtml .time_txt:before {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 680px) {
  .cmshtml .timeline_box > div:first-child {
    width: 80px !important;
    margin-left: auto !important;
  }
  .cmshtml .timeline_box > div:nth-child(2) {
    width: calc(100% - 80px) !important;
    margin-left: auto !important;
  }
  .cmshtml .time_txt {
    font-size: 18px;
  }
  .cmshtml .event_tit {
    font-size: 16px;
  }
  .cmshtml .event_txt {
    font-size: 14px;
  }
  .cmshtml .gradient_tit {
    font-size: 24px;
  }
}