[data-scroll-anim] {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.5s ease;
}
[data-scroll-anim][data-scroll-anim="2"] {
  transition-delay: 0.5s;
}
[data-scroll-anim][data-scroll-anim="3"] {
  transition-delay: 0.9s;
}
[data-scroll-anim].active {
  opacity: 1;
  transform: translateY(0);
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #FF9800;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.is-active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ucb-box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
}
.ucb-box .box-ic {
  flex-shrink: 1;
}
.ucb-box .box-txt {
  flex-grow: 1;
}
.ucb-box.bx-org {
  background-color: #FF9800;
}
.ucb-box.bx-blue {
  background-color: #004A64;
}
.ucb-box.bx-trans {
  background-color: transparent;
}

header {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 9;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .logo {
  width: 100px;
}

nav {
  display: flex;
  justify-content: center;
  top: 100px;
  width: 100%;
  position: fixed;
  height: 0;
  background: #fff;
  z-index: 10;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.13);
  transition: height 0.3s linear;
  overflow: hidden;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}
nav ul li {
  padding: 15px;
}
nav ul li a {
  color: #D86018;
  text-decoration: underline;
}
nav.active {
  height: 430px;
}

.wrapper {
  margin: 0 auto;
  padding-bottom: 90px;
}

.banner {
  position: sticky;
  top: 100px;
  transition: all 0.1s ease;
  padding-top: 30px;
  z-index: 8;
  overflow: hidden;
}
.banner .banner-txt {
  font-size: 20px;
  color: #004A64;
  font-family: Arial Black, sans-serif;
  font-weight: 800;
}
.banner .banner-txt span {
  display: block;
  margin-bottom: 6px;
}
.banner .banner-txt span:last-child {
  margin-bottom: 6px;
}
.banner .banner-txt .orange {
  font-weight: 900;
  font-size: 26px;
  color: #D86018;
}
.banner .banner-img {
  position: relative;
  width: 100%;
  margin-left: 0;
  transition: margin 0.8s linear 2s, left 0.8s linear 2s, width 0.8s linear 2s;
}
.banner .banner-img img {
  width: 100%;
}
.banner .banner-img.state02 {
  transition-delay: 0.1s;
}
.banner .scroll-direction {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.banner .scroll-direction span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 3px solid #004A64;
  border-radius: 50%;
}
.banner .scroll-direction span:after {
  content: "";
  width: 17px;
  height: 19px;
  background-image: url("../img/global/ic-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}
@media (max-width: 575.98px) {
  .banner .scroll-direction span {
    transform: scale(0.5) translateY(-40%);
  }
}
.banner .scroll-direction.active span:after {
  animation: animate-direction 0.7s linear alternate infinite;
}
.banner .scroll-direction.hidden {
  display: none;
}
.banner.scrolled {
  background-color: #dae5f4;
}
@media (max-width: 575.98px) {
  .banner {
    padding-top: 15px;
  }
  .banner .banner-txt {
    font-size: 16px;
  }
  .banner .banner-txt .orange {
    font-size: 20px;
  }
}

.first-section {
  padding-top: 25px;
}
.first-section.active {
  padding-top: 90px;
}

.path-guide {
  position: relative;
}
.path-guide .path-links {
  position: absolute;
  display: flex;
  justify-content: space-around;
  width: 83%;
  height: 100%;
  top: 0;
  left: 9%;
}
.path-guide .path-links a {
  display: block;
  width: 23%;
  height: 100%;
  float: left;
}

footer {
  padding: 40px 0;
  font-size: 12px;
  color: #D86018;
}
footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: #ff9800;
  background: linear-gradient(90deg, #ff9800 0%, #d86018 100%);
  transform: translateY(-40px);
}
footer .footer-inner {
  display: flex;
  align-items: center;
}
footer .footer-inner .footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-inner .footer-logo .footer-logo-01 {
  width: 100px;
}
footer .footer-inner .footer-logo .footer-logo-02 {
  width: 120px;
}
footer .footer-inner .footer-links {
  flex-grow: 1;
  max-width: 600px;
  margin-left: 100px;
}
footer .footer-inner .footer-links ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
footer .footer-inner .footer-links ul li {
  padding-right: 15px;
}
footer .footer-inner .footer-links ul li a {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  footer .footer-inner .footer-links {
    margin-left: 80px;
  }
}
@media (max-width: 575.98px) {
  footer .footer-inner {
    display: block;
  }
  footer .footer-inner .footer-logo {
    margin-bottom: 45px;
  }
  footer .footer-inner .footer-logo .footer-logo-01 {
    width: 75px;
  }
  footer .footer-inner .footer-logo .footer-logo-02 {
    width: 95px;
  }
  footer .footer-inner .footer-links {
    margin-left: 0;
    text-align: center;
  }
  footer .footer-inner .footer-links ul {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  header {
    height: 70px;
  }
  header .header-inner .logo {
    width: 80px;
  }

  .banner {
    top: 70px;
  }

  .first-section {
    padding-top: 10px;
  }
}

/*# sourceMappingURL=elements.css.map */
