@charset "utf-8";

/*-------------------------------------
  TOP
--------------------------------------*/
/* top KEY */
.animate_js.top_key .ofi_wrap,
.animate_js .calendar_box {
  opacity: 0;
}

.animate_js.scrolled.top_key .ofi_wrap,
.animate_js.scrolled .calendar_box {
  opacity: 1;
  transition: .6s .2s;
}
.animate_js.scrolled .calendar_box {
  transition-delay: 1s;
}

@media screen and (min-width: 992px) {
  .fixed_copyright {
    opacity: 0;
  }

  .animate_js.scrolled.top_key ~ .footer .fixed_copyright {
    opacity: 1;
    transition: .6s 1.6s;
  }
}




/* top NEWS */
.animate_js .news_title > .title,
.animate_js .news_title > .more_link,
.animate_js .ul_news {
  opacity: 0;
  /*transform: translateY(3em);*/
}
.animate_js.scrolled .news_title > .title,
.animate_js.scrolled .news_title > .more_link,
.animate_js.scrolled .ul_news {
  opacity: 1;
  /*transform: translateY(0);*/
  transition: .6s .2s;
}
.animate_js.scrolled .news_title > .more_link {
  transition-delay: .6s;
}
.animate_js.scrolled .ul_news {
  transition-delay: 1s;
}



/* top foot link */
.animate_js .fx_col .item {
  opacity: 0;
  transform: translateY(3em);
}

.animate_js.scrolled .fx_col .item {
  opacity: 1;
  transform: translateY(0);
  transition: .6s .2s;
}
.animate_js.scrolled .fx_col .item:nth-child(2) {
  transition-delay: .6s;
}
.animate_js.scrolled .fx_col .item:nth-child(3) {
  transition-delay: 1s;
}
.animate_js.scrolled .fx_col .item:nth-child(4) {
  transition-delay: 1.4s;
}