@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, ar, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../vendor/fonts/NotoSansTC-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../vendor/fonts/NotoSansTC-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/fonts/NotoSansTC-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/fonts/Poppins-Bold.ttf") format("truetype");
}
@-webkit-keyframes ani-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes ani-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes ani-kv-light {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ani-kv-light {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes ani-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ani-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ani-kv-car {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes ani-kv-car {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@-webkit-keyframes ani-kv-people {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes ani-kv-people {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@-webkit-keyframes ani-kv-arrow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes ani-kv-arrow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes ani-kv-circle {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes ani-kv-circle {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  color: #383737;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  body {
    padding-top: 56px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 46px;
  }
}

select, button, textarea, input {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
}

a {
  color: #ffffff;
}

a, a:focus {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

a:active {
  outline: none;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}

.container {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1350px;
  }
}
@media (min-width: 1599px) {
  .container {
    width: 1450px;
  }
}

.container--xl {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container--xl {
    width: 750px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .container--xl {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container--xl {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container--xl {
    width: 1350px;
  }
}
@media (min-width: 1600px) {
  .container--xl {
    width: 1400px;
  }
}
@media (min-width: 1700px) {
  .container--xl {
    width: 1588px;
  }
}

.pop__container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.pop__close {
  width: 20px;
  height: 20px;
  background: url("../images/pop/pop-close.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .pop__close {
    top: 15px;
    right: 15px;
  }
}
@media (hover: hover) {
  .pop__close:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.pop__wrap {
  width: 1240px;
  position: relative;
}
@media (max-width: 1599px) {
  .pop__wrap {
    width: 90vw;
  }
}

.pop--info .pop__block {
  font-size: 1.125em;
  font-weight: 700;
  color: #414d5e;
  background: -webkit-gradient(linear, left top, left bottom, from(#e7f1ff), to(#dcf9ff));
  background: linear-gradient(to bottom, #e7f1ff 0%, #dcf9ff 100%);
  padding: 15px 30px;
  line-height: 1.5;
  border-radius: 30px;
  text-align: justify;
  padding: 50px 72px 25px;
}
@media (max-width: 767px) {
  .pop--info .pop__block {
    font-size: 1em;
    padding: 40px 15px 15px;
    border-radius: 15px;
  }
}
.pop--info .pop__block .highlight {
  color: #e23838;
}
.pop--info .pop__block .sm {
  font-weight: 400;
  font-size: 0.8889em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .pop--info .pop__block .sm {
    font-size: 0.75em;
  }
}

.navbar {
  background: rgba(255, 255, 255, 0.36);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  padding-left: 40px;
  padding-right: 66px;
}
@media (max-width: 1599px) {
  .navbar {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 1399px) {
  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .navbar {
    padding: 8px 15px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 480px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.navbar--active {
  background: rgba(255, 255, 255, 0.9);
}
.navbar__logo {
  position: relative;
  display: block;
  width: 150px;
  z-index: 11;
}
@media (max-width: 991px) {
  .navbar__logo {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .navbar__logo {
    width: 120px;
  }
}
@media (max-width: 575px) {
  .navbar__logo {
    width: 77px;
  }
}
.navbar__logo img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.navbar__body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar__links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1075px;
  height: 89px;
  background: url("../images/common/navbar-links-bg.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 12px;
  margin-bottom: -9px;
  position: relative;
}
@media (max-width: 1599px) {
  .navbar__links {
    width: 1000px;
    background-size: 100% 100%;
  }
}
@media (max-width: 1399px) {
  .navbar__links {
    width: 850px;
    height: 80px;
  }
}
@media (max-width: 1199px) {
  .navbar__links {
    width: 660px;
    height: 74px;
  }
}
@media (max-width: 991px) {
  .navbar__links {
    display: none;
  }
}
.navbar__links::before {
  content: "";
  display: block;
  width: 41px;
  height: 80px;
  background: url("../images/common/navbar-links-bg-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -40px;
}
@media (max-width: 1399px) {
  .navbar__links::before {
    height: 70px;
  }
}
@media (max-width: 1199px) {
  .navbar__links::before {
    height: 65px;
  }
}
.navbar__link {
  display: block;
  position: relative;
  font-size: 1.375em;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  width: 20%;
  position: relative;
}
@media (max-width: 1399px) {
  .navbar__link {
    font-size: 1.25em;
  }
}
@media (max-width: 1199px) {
  .navbar__link {
    font-size: 1.125em;
  }
}
.navbar__link .highlight {
  color: #99faff;
}
.navbar__link::before {
  content: "";
  display: block;
  width: 2px;
  height: 44px;
  background: -webkit-gradient(linear, left top, left bottom, from(#3a559f), color-stop(50%, #7089cf), to(#3a559f));
  background: linear-gradient(to bottom, #3a559f 0%, #7089cf 50%, #3a559f 100%);
  position: absolute;
  top: calc(50% - 32px);
  left: -1px;
}
.navbar__link--active {
  text-shadow: 0 0 55px #ffffff;
}
.navbar__link--active .highlight {
  color: #ffffff;
}
@media (hover: hover) {
  .navbar__link:hover {
    text-shadow: 0 0 55px #ffffff;
  }
  .navbar__link:hover .highlight {
    color: #ffffff;
  }
}
.navbar__link:first-child {
  margin-left: 0;
}
.navbar__link:first-child::before {
  display: none;
}
.navbar__social {
  margin-left: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 1599px) {
  .navbar__social {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .navbar__social {
    margin-left: 5px;
  }
}
.navbar__social-item {
  margin-left: 15px;
  width: 40px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 1199px) {
  .navbar__social-item {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .navbar__social-item {
    width: 30px;
    margin-left: 5px;
  }
}
.navbar__social-item:first-child {
  margin-left: 0;
}
.navbar__social-item img {
  display: block;
}
.navbar__social-item--fb:hover {
  -webkit-box-shadow: 0 5px 10px rgba(52, 112, 210, 0.3);
          box-shadow: 0 5px 10px rgba(52, 112, 210, 0.3);
}
.navbar__social-item--line:hover {
  -webkit-box-shadow: 0 5px 10px rgba(39, 195, 18, 0.3);
          box-shadow: 0 5px 10px rgba(39, 195, 18, 0.3);
}

.footer {
  background: #f5f5f5;
  line-height: 1.46;
  padding-top: 50px;
}
@media (min-width: 1700px) {
  .footer .container {
    width: 1500px;
  }
}
.footer__text {
  font-size: 1.125em;
  font-weight: 700;
  color: #333333;
  line-height: 1.7;
}
@media (max-width: 1199px) {
  .footer__text {
    font-size: 1.125em;
  }
}
@media (max-width: 767px) {
  .footer__text {
    font-size: 1em;
  }
}
.footer__block {
  text-align: center;
  font-size: 0.875em;
  font-weight: 400;
  color: #f5f5f5;
  letter-spacing: 0.1em;
  margin-top: 50px;
  background: #575757;
  padding: 13px 15px;
}
@media (max-width: 991px) {
  .footer__block {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .footer__block {
    padding-bottom: 75px;
    font-size: 0.75em;
  }
}
.footer__block a {
  color: #f5f5f5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__block a:hover {
  opacity: 0.8;
}
.footer__item {
  display: inline;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .footer__item {
    display: block;
    margin-left: 0;
  }
}
.footer__item::before {
  content: "｜";
  margin-right: 15px;
}
@media (max-width: 767px) {
  .footer__item::before {
    display: none;
  }
}
.footer__item:first-child {
  margin-left: 0;
}
.footer__item:first-child::before {
  display: none;
  margin-right: 0;
}

.kv {
  overflow: hidden;
  position: relative;
  background: url("../images/kv/kv-bg.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 900px;
  -webkit-animation: ani-fade 0.8s ease;
          animation: ani-fade 0.8s ease;
}
@media (min-width: 1921px) {
  .kv {
    height: 47vw;
  }
}
@media (max-width: 1599px) {
  .kv {
    height: 750px;
  }
}
@media (max-width: 1199px) {
  .kv {
    height: 580px;
  }
}
@media (max-width: 991px) {
  .kv {
    height: 420px;
  }
}
@media (max-width: 767px) {
  .kv {
    background: url("../images/kv/kv-bg-sm.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 126vw;
  }
}
.kv--active .kv__title, .kv--active .kv__light, .kv--active .kv__people, .kv--active .kv__car, .kv--active .kv__arrow::before, .kv--active .kv__arrow::after, .kv--active .kv__circle, .kv--active .kv__circle::before, .kv--active .kv__circle::after {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.kv__title {
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-title.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  opacity: 0;
  -webkit-animation: zoomIn 0.8s ease;
          animation: zoomIn 0.8s ease;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  text-indent: -99999px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 50% 30%;
          transform-origin: 50% 30%;
}
@media (max-width: 767px) {
  .kv__title {
    background: url("../images/kv/kv-title-sm.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__taiwan {
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-taiwan.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .kv__taiwan {
    background: url("../images/kv/kv-taiwan-sm.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__light {
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-light.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-animation: ani-kv-light 2s ease infinite;
          animation: ani-kv-light 2s ease infinite;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__light {
    background: url("../images/kv/kv-light-sm.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__people {
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-people.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-animation: ani-kv-people 0.6s linear;
          animation: ani-kv-people 0.6s linear;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__people {
    background: url("../images/kv/kv-people-sm.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__car {
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-car.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-animation: ani-kv-car 0.6s ease-out;
          animation: ani-kv-car 0.6s ease-out;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__car {
    background: url("../images/kv/kv-car-sm.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
  }
}
.kv__arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-arrow-1.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-animation: ani-kv-arrow 2s ease infinite;
          animation: ani-kv-arrow 2s ease infinite;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__arrow::before {
    background: url("../images/kv/kv-arrow-sm-1.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-arrow-2.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-animation: ani-kv-arrow 2s ease infinite;
          animation: ani-kv-arrow 2s ease infinite;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__arrow::after {
    background: url("../images/kv/kv-arrow-sm-2.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__circle {
  mix-blend-mode: screen;
  opacity: 0;
  -webkit-animation: ani-fade 2s ease;
          animation: ani-fade 2s ease;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.kv__circle::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-circle-1.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: screen;
  -webkit-animation: ani-kv-circle 2s ease infinite;
          animation: ani-kv-circle 2s ease infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__circle::before {
    background: url("../images/kv/kv-circle-sm-1.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.kv__circle::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/kv/kv-circle-2.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: screen;
  -webkit-animation: ani-kv-circle 2s ease infinite;
          animation: ani-kv-circle 2s ease infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media (max-width: 767px) {
  .kv__circle::after {
    background: url("../images/kv/kv-circle-sm-2.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.s1 {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
  background: url("../images/s1/s1-info-bg.png");
  background-position: center top 610px;
  background-size: auto;
  background-repeat: no-repeat;
}
@media (max-width: 1699px) {
  .s1 {
    background-position: center top 570px;
  }
}
@media (max-width: 1399px) {
  .s1 {
    background-position: center top 480px;
  }
}
@media (max-width: 1199px) {
  .s1 {
    background-position: center top 440px;
    background-size: 1400px auto;
  }
}
@media (max-width: 991px) {
  .s1 {
    background: url("../images/s1/s1-info-bg.png"), url("../images/s1/s1-bg-tb.jpg"), #16b0fb;
    background-position: center top 395px, center top;
    background-size: 1400px auto, auto;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (max-width: 480px) {
  .s1 {
    background-size: 1400px auto, 850px auto;
    background-position: center top 325px, center top;
  }
}
.s1__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .s1__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.s1__head {
  width: 700px;
  padding-top: 15px;
  padding-left: 44px;
}
@media (max-width: 1699px) {
  .s1__head {
    padding-top: 30px;
    padding-left: 0;
    width: 580px;
  }
}
@media (max-width: 1399px) {
  .s1__head {
    width: 500px;
    padding-top: 5px;
  }
}
@media (max-width: 1199px) {
  .s1__head {
    width: 400px;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .s1__head {
    width: 100%;
  }
}
.s1__body {
  width: calc(100% - 700px);
}
@media (max-width: 1699px) {
  .s1__body {
    width: calc(100% - 580px);
  }
}
@media (max-width: 1399px) {
  .s1__body {
    width: calc(100% - 500px);
  }
}
@media (max-width: 1199px) {
  .s1__body {
    width: 550px;
  }
}
@media (max-width: 991px) {
  .s1__body {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .s1__body {
    max-width: 100%;
    margin-top: 40px;
  }
}
.s1__title {
  width: 624px;
  height: 626px;
  background: url("../images/s1/s1-title.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
@media (max-width: 1699px) {
  .s1__title {
    width: 550px;
    height: 580px;
  }
}
@media (max-width: 1399px) {
  .s1__title {
    width: 480px;
    height: 510px;
  }
}
@media (max-width: 1199px) {
  .s1__title {
    width: 380px;
    height: 410px;
  }
}
@media (max-width: 991px) {
  .s1__title {
    margin-left: auto;
    margin-right: auto;
    height: 380px;
  }
}
@media (max-width: 480px) {
  .s1__title {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 374px) {
  .s1__title {
    width: 280px;
  }
}
.s1__block {
  width: 888px;
}
@media (max-width: 1699px) {
  .s1__block {
    width: 100%;
  }
}
.s1__item {
  background: url("../images/s1/s1-item.png");
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 823px;
  border-radius: 23px;
  padding: 50px 42px;
}
@media (max-width: 1699px) {
  .s1__item {
    height: 780px;
  }
}
@media (max-width: 1399px) {
  .s1__item {
    height: 660px;
  }
}
@media (max-width: 1199px) {
  .s1__item {
    height: 580px;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .s1__item {
    height: auto;
  }
}
.s1__item .source {
  margin-top: 18px;
}
.s1__chart img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.s1__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: -50px;
}
@media (max-width: 1699px) {
  .s1__btn {
    margin-top: -80px;
  }
}
@media (max-width: 991px) {
  .s1__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -30px;
    width: 100%;
  }
}
.s1__btn-item {
  width: 88px;
  height: 88px;
  cursor: pointer;
  border-radius: 10em;
  margin-left: 70px;
}
@media (max-width: 1699px) {
  .s1__btn-item {
    margin-left: 40px;
  }
}
@media (max-width: 1399px) {
  .s1__btn-item {
    width: 78px;
    height: 78px;
  }
}
@media (max-width: 1199px) {
  .s1__btn-item {
    width: 68px;
    height: 68px;
    margin-left: 30px;
  }
}
@media (max-width: 480px) {
  .s1__btn-item {
    margin-left: 15px;
  }
}
.s1__btn-item:nth-child(1) {
  background: url("../images/s1/s1-btn-1-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .s1__btn-item:nth-child(1):hover {
    background: url("../images/s1/s1-btn-1-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.s1__btn-item:nth-child(1).s1__btn-item--active {
  background: url("../images/s1/s1-btn-1-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
.s1__btn-item:nth-child(2) {
  background: url("../images/s1/s1-btn-2-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .s1__btn-item:nth-child(2):hover {
    background: url("../images/s1/s1-btn-2-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.s1__btn-item:nth-child(2).s1__btn-item--active {
  background: url("../images/s1/s1-btn-2-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
.s1__btn-item:nth-child(3) {
  background: url("../images/s1/s1-btn-3-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .s1__btn-item:nth-child(3):hover {
    background: url("../images/s1/s1-btn-3-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.s1__btn-item:nth-child(3).s1__btn-item--active {
  background: url("../images/s1/s1-btn-3-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
.s1__btn-item:nth-child(4) {
  background: url("../images/s1/s1-btn-4-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .s1__btn-item:nth-child(4):hover {
    background: url("../images/s1/s1-btn-4-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.s1__btn-item:nth-child(4).s1__btn-item--active {
  background: url("../images/s1/s1-btn-4-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
@media (hover: hover) {
  .s1__btn-item:hover {
    -webkit-box-shadow: 0 0 30px #74fbff;
            box-shadow: 0 0 30px #74fbff;
  }
}
.s1__btn-item:first-child {
  margin-left: 0;
}
.s1__subtitle {
  font-size: 2.625em;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
}
@media (max-width: 1699px) {
  .s1__subtitle {
    font-size: 2.25em;
  }
}
@media (max-width: 1399px) {
  .s1__subtitle {
    font-size: 1.875em;
    margin-top: 10px;
  }
}
@media (max-width: 1199px) {
  .s1__subtitle {
    font-size: 1.625em;
  }
}
@media (max-width: 480px) {
  .s1__subtitle {
    font-size: 1.375em;
  }
}
@media (max-width: 374px) {
  .s1__subtitle {
    font-size: 1.125em;
  }
}
.s1__subtitle-item {
  position: relative;
  padding-left: 25px;
}
@media (max-width: 1399px) {
  .s1__subtitle-item {
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .s1__subtitle-item {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .s1__subtitle-item {
    text-align: center;
    padding-left: 0;
  }
}
.s1__subtitle-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/s1/s1-subtitle-item-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 1399px) {
  .s1__subtitle-item::before {
    top: 5px;
  }
}
@media (max-width: 1199px) {
  .s1__subtitle-item::before {
    top: 6px;
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 991px) {
  .s1__subtitle-item::before {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    margin-right: 5px;
  }
}
@media (max-width: 374px) {
  .s1__subtitle-item::before {
    width: 6px;
    height: 6px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.s1__subtitle-item::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 35px;
  background: url("../images/s1/s1-subtitle-item-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-left: 20px;
}
@media (max-width: 1699px) {
  .s1__subtitle-item::after {
    width: 35px;
    height: 32px;
  }
}
@media (max-width: 1399px) {
  .s1__subtitle-item::after {
    width: 30px;
    height: 26px;
    margin-left: 15px;
  }
}
@media (max-width: 1199px) {
  .s1__subtitle-item::after {
    width: 22px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .s1__subtitle-item::after {
    width: 16px;
    height: 15px;
  }
}
@media (max-width: 374px) {
  .s1__subtitle-item::after {
    width: 15px;
    height: 14px;
    margin-left: 10px;
  }
}

.s2 {
  padding-top: 120px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .s2 {
    padding-top: 90px;
  }
}
@media (max-width: 1199px) {
  .s2 {
    padding-top: 60px;
  }
}
@media (max-width: 991px) {
  .s2 {
    background: url("../images/s2/s2-bg-2.jpg"), #16b0fb;
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
  }
}
.s2__bg1 {
  background: url("../images/s2/s2-bg_01.png");
  background-position: center bottom;
  background-size: auto;
  background-repeat: no-repeat;
  padding-bottom: 15px;
  position: relative;
}
@media (max-width: 1399px) {
  .s2__bg1 {
    background-size: 1580px auto;
    padding-top: 35px;
  }
}
@media (max-width: 1199px) {
  .s2__bg1 {
    background-size: 1400px auto;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .s2__bg1 {
    padding-top: 60px;
    background-size: 1150px auto;
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .s2__bg1 {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #fdf9cc), to(rgba(153, 250, 255, 0)));
    background-image: linear-gradient(to right, #fdf9cc 10%, rgba(153, 250, 255, 0) 100%);
    background-size: auto 45px;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .s2__bg1 {
    background-size: auto 75px;
  }
}
@media (max-width: 374px) {
  .s2__bg1 {
    background-size: auto 65px;
  }
}
@media (max-width: 767px) {
  .s2__bg1::before {
    content: "";
    display: block;
    width: 150px;
    height: 100px;
    background: url("../images/s2/s2-robot.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 45px;
  }
}
@media (max-width: 480px) {
  .s2__bg1::before {
    right: -20px;
    width: 110px;
    height: 70px;
    bottom: 75px;
  }
}
@media (max-width: 374px) {
  .s2__bg1::before {
    display: none;
  }
}
.s2__bg2 {
  background: url("../images/s2/s2-bg_02.png");
  background-position: center top;
  background-size: auto;
  background-repeat: repeat-y;
  padding-bottom: 45px;
}
@media (min-width: 1921px) {
  .s2__bg2 {
    background-size: 100% auto;
  }
}
@media (max-width: 1399px) {
  .s2__bg2 {
    background-size: 110% auto;
  }
}
@media (max-width: 991px) {
  .s2__bg2 {
    padding-bottom: 100px;
  }
}
.s2 .source {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 1200px) {
  .s2 .source {
    width: 95%;
  }
}
@media (min-width: 1600px) {
  .s2 .source {
    width: 1300px;
  }
}
@media (min-width: 1700px) {
  .s2 .source {
    width: 1350px;
  }
}
@media (max-width: 767px) {
  .s2 .source {
    margin-top: 15px;
  }
}
.s2 .container--xl {
  padding-left: 35px;
  padding-right: 35px;
}
@media (min-width: 768px) {
  .s2 .container--xl {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1700px) {
  .s2 .container--xl {
    padding-left: 62px;
    padding-right: 62px;
  }
}
.s2__title {
  width: 792px;
  height: 118px;
  background: url("../images/s2/s2-title.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-indent: -9999px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .s2__title {
    width: 630px;
    height: 92px;
  }
}
@media (max-width: 1199px) {
  .s2__title {
    width: 520px;
    height: 82px;
  }
}
@media (max-width: 991px) {
  .s2__title {
    width: 480px;
    height: 72px;
  }
}
@media (max-width: 767px) {
  .s2__title {
    width: 260px;
    height: 130px;
    background: url("../images/s2/s2-title-sm.png");
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media (max-width: 480px) {
  .s2__title {
    width: 220px;
    height: 120px;
  }
}
.s2__subtitle {
  font-size: 2.625em;
  font-weight: 700;
  color: #333333;
  font-style: italic;
  position: relative;
  margin-top: 35px;
}
@media (max-width: 1699px) {
  .s2__subtitle {
    font-size: 2.25em;
  }
}
@media (max-width: 1399px) {
  .s2__subtitle {
    font-size: 1.875em;
    margin-top: 15px;
  }
}
@media (max-width: 1199px) {
  .s2__subtitle {
    font-size: 1.625em;
  }
}
@media (max-width: 991px) {
  .s2__subtitle {
    text-align: center;
    font-size: 1.625em;
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .s2__subtitle {
    font-size: 1.4375em;
  }
}
@media (max-width: 480px) {
  .s2__subtitle {
    font-size: 1.375em;
  }
  .s2__subtitle .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 374px) {
  .s2__subtitle {
    font-size: 1.125em;
    padding-left: 0;
  }
}
.s2__subtitle-item {
  position: relative;
  padding-left: 25px;
}
@media (max-width: 1399px) {
  .s2__subtitle-item {
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .s2__subtitle-item {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .s2__subtitle-item {
    text-align: center;
    padding-left: 0;
  }
}
.s2__subtitle-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/s1/s1-subtitle-item-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 1399px) {
  .s2__subtitle-item::before {
    top: 5px;
  }
}
@media (max-width: 1199px) {
  .s2__subtitle-item::before {
    top: 6px;
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 991px) {
  .s2__subtitle-item::before {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    margin-right: 5px;
  }
}
@media (max-width: 374px) {
  .s2__subtitle-item::before {
    width: 6px;
    height: 6px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.s2__block {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1699px) {
  .s2__block {
    width: 100%;
  }
}
.s2__item {
  padding-top: 35px;
}
.s2__chart--style2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 14px;
  padding-right: 14px;
}
@media (max-width: 767px) {
  .s2__chart--style2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    width: 350px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1699px) {
  .s2__chart--style2 .s2__chart-item {
    width: 32%;
  }
}
@media (max-width: 767px) {
  .s2__chart--style2 .s2__chart-item {
    width: 100%;
    margin-top: 15px;
  }
  .s2__chart--style2 .s2__chart-item:first-child {
    margin-top: 0;
  }
}
.s2__text {
  font-size: 1.25em;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  width: 1210px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 44px;
  padding-right: 44px;
  margin-bottom: 5px;
}
@media (max-width: 1399px) {
  .s2__text {
    width: 90%;
    font-size: 1.125em;
  }
}
@media (max-width: 991px) {
  .s2__text {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .s2__text {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.875em;
    width: 95%;
  }
}
.s2__text::before {
  content: "";
  display: block;
  width: 10px;
  height: 50px;
  background: url("../images/s2/s2-text-bg.png");
  background-position: left top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .s2__text::before {
    height: 44px;
  }
}
@media (max-width: 991px) {
  .s2__text::before {
    top: 5%;
    height: 90%;
    background-size: 6px auto;
    background-repeat: repeat-y;
  }
}
.s2__text::after {
  content: "";
  display: block;
  width: 10px;
  height: 50px;
  background: url("../images/s2/s2-text-bg.png");
  background-position: right top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1399px) {
  .s2__text::after {
    height: 44px;
  }
}
@media (max-width: 991px) {
  .s2__text::after {
    top: 5%;
    height: 90%;
  }
}
@media (max-width: 991px) {
  .s2__text::after {
    top: 5%;
    height: 90%;
    background-size: 6px auto;
    background-repeat: repeat-y;
  }
}
.s2 .slick-prev {
  left: -85px;
}
@media (max-width: 1599px) {
  .s2 .slick-prev {
    left: -65px;
  }
}
@media (max-width: 1199px) {
  .s2 .slick-prev {
    left: -40px;
  }
}
.s2 .slick-next {
  right: -85px;
}
@media (max-width: 1599px) {
  .s2 .slick-next {
    right: -65px;
  }
}
@media (max-width: 1199px) {
  .s2 .slick-next {
    right: -40px;
  }
}

.s3 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 25px;
  overflow: hidden;
  background: url("../images/s3/s3-bg_02.jpg"), #c6dff3;
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
}
@media (min-width: 1921px) {
  .s3 {
    background-size: 100% auto;
  }
}
@media (max-width: 1199px) {
  .s3 {
    background-size: 1300px auto;
  }
}
@media (max-width: 991px) {
  .s3 {
    background-size: 1000px auto;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .s3 {
    background-size: 800px auto;
    padding-top: 100px;
  }
}
@media (max-width: 480px) {
  .s3 {
    background-size: 530px auto;
  }
}
@media (max-width: 1599px) {
  .s3 .container {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .s3 .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.s3__bg1 {
  background: url("../images/s3/s3-bg-1.png");
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 12px;
  padding-left: 50px;
  height: 104px;
  margin-top: -45px;
}
@media (max-width: 1599px) {
  .s3__bg1 {
    border-top-left-radius: 30px;
  }
}
@media (max-width: 1399px) {
  .s3__bg1 {
    height: 90px;
  }
}
@media (max-width: 991px) {
  .s3__bg1 {
    background: -webkit-gradient(linear, left top, right top, from(#fcf9cd), to(#99faff));
    background: linear-gradient(to right, #fcf9cd 0%, #99faff 100%);
    border-top-right-radius: 30px;
    padding-left: 0;
    height: 80px;
    padding-top: 10px;
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .s3__bg1 {
    height: auto;
    padding-bottom: 40px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}
.s3__bg1::before {
  content: "";
  display: block;
  width: 804px;
  height: 387px;
  background: url("../images/s3/s3-no.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: -280px;
  right: -70px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1599px) {
  .s3__bg1::before {
    right: -180px;
  }
}
@media (max-width: 1399px) {
  .s3__bg1::before {
    width: 650px;
    height: 300px;
    top: -200px;
    right: -140px;
  }
}
@media (max-width: 1199px) {
  .s3__bg1::before {
    width: 500px;
    height: 240px;
    top: -150px;
    right: -95px;
  }
}
@media (max-width: 991px) {
  .s3__bg1::before {
    display: none;
  }
}
.s3__bg2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 600px;
  background: #ffffff;
  border-radius: 30px;
  border-top-left-radius: 0;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .s3__bg2 {
    height: 550px;
  }
}
@media (max-width: 1199px) {
  .s3__bg2 {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .s3__bg2 {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .s3__bg2 {
    height: auto;
  }
}
.s3__title {
  width: 880px;
  height: 250px;
  background: url("../images/s3/s3-title.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-indent: -9999px;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1399px) {
  .s3__title {
    width: 700px;
    height: 220px;
  }
}
@media (max-width: 1199px) {
  .s3__title {
    width: 550px;
    height: 180px;
  }
}
@media (max-width: 991px) {
  .s3__title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .s3__title {
    width: 260px;
    height: 180px;
    background: url("../images/s3/s3-title-sm.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media (max-width: 480px) {
  .s3__title {
    width: 220px;
    height: 155px;
  }
}
.s3__subtitle {
  font-size: 2.625em;
  font-weight: 700;
  color: #333333;
  font-style: italic;
  position: relative;
}
@media (max-width: 1699px) {
  .s3__subtitle {
    font-size: 2.25em;
  }
}
@media (max-width: 1399px) {
  .s3__subtitle {
    font-size: 1.875em;
  }
}
@media (max-width: 1199px) {
  .s3__subtitle {
    font-size: 1.625em;
  }
}
@media (max-width: 991px) {
  .s3__subtitle {
    text-align: center;
    font-size: 1.625em;
  }
}
@media (max-width: 767px) {
  .s3__subtitle {
    font-size: 1.4375em;
  }
  .s3__subtitle .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 480px) {
  .s3__subtitle {
    font-size: 1.375em;
  }
}
@media (max-width: 374px) {
  .s3__subtitle {
    font-size: 1.125em;
    padding-left: 0;
  }
}
.s3__subtitle-item {
  position: relative;
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .s3__subtitle-item {
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .s3__subtitle-item {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .s3__subtitle-item {
    text-align: center;
    padding-left: 0;
  }
}
.s3__subtitle-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/s1/s1-subtitle-item-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 1399px) {
  .s3__subtitle-item::before {
    top: 5px;
  }
}
@media (max-width: 1199px) {
  .s3__subtitle-item::before {
    top: 6px;
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 991px) {
  .s3__subtitle-item::before {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    margin-right: 5px;
  }
}
@media (max-width: 374px) {
  .s3__subtitle-item::before {
    width: 6px;
    height: 6px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.s3__block {
  width: 100%;
  padding-top: 30px;
}
@media (max-width: 1599px) {
  .s3__block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1399px) {
  .s3__block {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .s3__block {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
.s3__chart--style2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .s3__chart--style2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    width: 350px;
    max-width: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 1699px) {
  .s3__chart--style2 .s3__chart-item {
    width: 32%;
  }
}
@media (max-width: 767px) {
  .s3__chart--style2 .s3__chart-item {
    width: 100%;
  }
  .s3__chart--style2 .s3__chart-item:first-child {
    margin-top: 0;
  }
}
.s3__text {
  font-size: 1.25em;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  width: 1264px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 1599px) {
  .s3__text {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    letter-spacing: -0.01em;
  }
}
@media (max-width: 1399px) {
  .s3__text {
    font-size: 1.125em;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .s3__text {
    font-size: 1em;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .s3__text {
    font-size: 0.875em;
    width: 95%;
  }
}
.s3__text::before {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  background: url("../images/s2/s2-text-bg.png");
  background-position: left top;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .s3__text::before {
    height: 44px;
  }
}
@media (max-width: 991px) {
  .s3__text::before {
    top: 5%;
    height: 90%;
    background-size: 6px auto;
    background-repeat: repeat-y;
  }
}
.s3__text::after {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  background: url("../images/s2/s2-text-bg.png");
  background-position: right top;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1399px) {
  .s3__text::after {
    height: 44px;
  }
}
@media (max-width: 991px) {
  .s3__text::after {
    top: 5%;
    height: 90%;
  }
}
@media (max-width: 991px) {
  .s3__text::after {
    top: 5%;
    height: 90%;
    background-size: 6px auto;
    background-repeat: repeat-y;
  }
}
.s3__source {
  margin-top: 25px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .s3__source {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.s3 .slick-prev {
  left: -80px;
}
@media (max-width: 1199px) {
  .s3 .slick-prev {
    left: -55px;
  }
}
@media (max-width: 767px) {
  .s3 .slick-prev {
    left: -30px;
  }
}
.s3 .slick-next {
  right: -80px;
}
@media (max-width: 1199px) {
  .s3 .slick-next {
    right: -55px;
  }
}
@media (max-width: 767px) {
  .s3 .slick-next {
    right: -30px;
  }
}

.files {
  overflow: hidden;
  background: url("../images/s1/s1-info-bg.png"), url("../images/files/files-bg.jpg");
  background-position: top 734px center, top center;
  background-size: auto, auto;
  background-repeat: no-repeat, no-repeat;
  padding-top: 166px;
  padding-bottom: 45px;
  position: relative;
}
@media (min-width: 1921px) {
  .files {
    background: url("../images/s1/s1-info-bg.png"), url("../images/files/files-bg-up.jpg"), #265988;
    background-position: top 734px center, top center;
    background-size: auto, auto;
    background-repeat: no-repeat, no-repeat;
  }
}
@media (max-width: 1699px) {
  .files {
    background-size: auto, 1840px auto;
    background-position: top 734px left calc(50vw - 1000px), top right calc(50vw - 850px);
  }
}
@media (max-width: 1399px) {
  .files {
    background-size: 1500px auto, 1500px auto;
    background-position: top 580px left calc(50vw - 800px), top right calc(50vw - 700px);
    padding-top: 120px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .files {
    background-size: 1300px auto, 1350px auto;
    background-position: top 480px left calc(50vw - 690px), top right calc(50vw - 630px);
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .files {
    background: url("../images/s1/s1-info-bg.png"), url("../images/files/files-bg-tb.jpg"), #daf7fc;
    background-position: top 294px left, top center;
    background-size: 160% 182px, auto;
    background-repeat: no-repeat, no-repeat;
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .files {
    background-size: 240% 182px, auto;
  }
}
@media (max-width: 480px) {
  .files {
    background-position: top 264px left, top center;
    background-size: 240% 162px, 894px auto;
  }
}
.files__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding-right: 45px;
}
@media (max-width: 1599px) {
  .files__wrap {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .files__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
}
.files__head {
  padding-left: 40px;
  width: calc(100% - 790px);
}
@media (max-width: 1699px) {
  .files__head {
    padding-left: 0;
  }
}
@media (max-width: 1399px) {
  .files__head {
    width: calc(100% - 650px);
  }
}
@media (max-width: 1199px) {
  .files__head {
    width: calc(100% - 550px);
  }
}
@media (max-width: 991px) {
  .files__head {
    width: 100%;
  }
}
.files__body {
  width: 790px;
  padding-top: 80px;
}
@media (max-width: 1399px) {
  .files__body {
    width: 650px;
  }
}
@media (max-width: 1199px) {
  .files__body {
    width: 550px;
  }
}
@media (max-width: 991px) {
  .files__body {
    width: 100%;
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .files__body {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 480px) {
  .files__body {
    padding-top: 60px;
  }
}
.files__title {
  width: 438px;
  height: 230px;
  background: url("../images/files/files-title.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
@media (max-width: 1399px) {
  .files__title {
    width: 350px;
    height: 180px;
  }
}
@media (max-width: 1199px) {
  .files__title {
    width: 300px;
    height: 156px;
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .files__title {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    background: url("../images/files/files-title-tb.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
@media (max-width: 480px) {
  .files__title {
    width: 230px;
    height: 120px;
  }
}
.files__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 375px;
}
@media (max-width: 1399px) {
  .files__btn {
    margin-top: 300px;
  }
}
@media (max-width: 1199px) {
  .files__btn {
    margin-top: 220px;
  }
}
@media (max-width: 991px) {
  .files__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 45px;
    width: 100%;
  }
}
.files__btn-item {
  width: 88px;
  height: 88px;
  cursor: pointer;
  border-radius: 10em;
  margin-left: 75px;
}
@media (max-width: 1699px) {
  .files__btn-item {
    margin-left: 40px;
  }
}
@media (max-width: 1399px) {
  .files__btn-item {
    width: 78px;
    height: 78px;
  }
}
@media (max-width: 1199px) {
  .files__btn-item {
    width: 68px;
    height: 68px;
    margin-left: 30px;
  }
}
@media (max-width: 480px) {
  .files__btn-item {
    margin-left: 15px;
  }
}
.files__btn-item:nth-child(1) {
  background: url("../images/files/files-btn-1-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .files__btn-item:nth-child(1):hover {
    background: url("../images/files/files-btn-1-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.files__btn-item:nth-child(1).files__btn-item--active {
  background: url("../images/files/files-btn-1-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
.files__btn-item:nth-child(2) {
  background: url("../images/files/files-btn-2-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .files__btn-item:nth-child(2):hover {
    background: url("../images/files/files-btn-2-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.files__btn-item:nth-child(2).files__btn-item--active {
  background: url("../images/files/files-btn-2-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
.files__btn-item:nth-child(3) {
  background: url("../images/files/files-btn-3-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .files__btn-item:nth-child(3):hover {
    background: url("../images/files/files-btn-3-2.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.files__btn-item:nth-child(3).files__btn-item--active {
  background: url("../images/files/files-btn-3-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px #74fbff;
          box-shadow: 0 0 30px #74fbff;
}
@media (hover: hover) {
  .files__btn-item:hover {
    -webkit-box-shadow: 0 0 30px #74fbff;
            box-shadow: 0 0 30px #74fbff;
  }
}
.files__btn-item:first-child {
  margin-left: 0;
}
.files__subtitle {
  font-size: 2.625em;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
  margin-top: 10px;
}
@media (max-width: 1699px) {
  .files__subtitle {
    font-size: 2.25em;
  }
}
@media (max-width: 1399px) {
  .files__subtitle {
    font-size: 1.875em;
    margin-top: 10px;
  }
}
@media (max-width: 1199px) {
  .files__subtitle {
    font-size: 1.625em;
  }
}
@media (max-width: 480px) {
  .files__subtitle {
    font-size: 1.375em;
  }
}
@media (max-width: 374px) {
  .files__subtitle {
    font-size: 1.125em;
  }
}
.files__subtitle-item {
  position: relative;
  padding-left: 25px;
}
@media (max-width: 1399px) {
  .files__subtitle-item {
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .files__subtitle-item {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .files__subtitle-item {
    text-align: center;
    padding-left: 0;
  }
}
.files__subtitle-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/s1/s1-subtitle-item-1.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width: 1399px) {
  .files__subtitle-item::before {
    top: 5px;
  }
}
@media (max-width: 1199px) {
  .files__subtitle-item::before {
    top: 6px;
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 991px) {
  .files__subtitle-item::before {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    margin-right: 5px;
  }
}
@media (max-width: 374px) {
  .files__subtitle-item::before {
    width: 6px;
    height: 6px;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.files__subtitle-item::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 35px;
  background: url("../images/s1/s1-subtitle-item-2.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-left: 20px;
}
@media (max-width: 1699px) {
  .files__subtitle-item::after {
    width: 35px;
    height: 32px;
  }
}
@media (max-width: 1399px) {
  .files__subtitle-item::after {
    width: 30px;
    height: 26px;
    margin-left: 15px;
  }
}
@media (max-width: 1199px) {
  .files__subtitle-item::after {
    width: 22px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .files__subtitle-item::after {
    width: 16px;
    height: 15px;
  }
}
@media (max-width: 374px) {
  .files__subtitle-item::after {
    width: 15px;
    height: 14px;
    margin-left: 10px;
  }
}
.files__chart {
  text-align: center;
}
.files__chart--style2 {
  width: 790px;
  height: 159px;
  background: url("../images/files/files-chart-1-1-title.png"), url("../images/files/files-chart-1-1.png");
  background-position: center top, center top 27px;
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat;
  padding-top: 60px;
  margin-bottom: 26px;
}
@media (max-width: 1399px) {
  .files__chart--style2 {
    width: 100%;
    height: 160px;
    background: url("../images/files/files-chart-1-1-title.png"), url("../images/files/files-chart-1-1-lg.png");
    background-position: center top, center top 27px;
    background-size: 100% auto, 100% calc(100% - 27px);
    background-repeat: no-repeat, no-repeat;
  }
}
@media (max-width: 767px) {
  .files__chart--style2 {
    height: 28vw;
    padding-top: 10vw;
    padding-bottom: 2vw;
  }
}
@media (max-width: 480px) {
  .files__chart--style2 {
    padding-top: 12vw;
    height: 34vw;
  }
}
.files__chart--style3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .files__chart--style3 {
    padding-left: 2vw;
    margin-top: 3vw;
  }
}
@media (max-width: 480px) {
  .files__chart--style3 {
    padding-left: 0;
  }
}
.files__chart--style3 .files__chart-item {
  width: 377px;
  height: 611px;
  background: url("../images/files/files-chart-2-bg.png");
  background-position: center top 16px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .files__chart--style3 .files__chart-item {
    width: 48%;
    height: 570px;
    background-size: 100% calc(100% - 16px);
  }
}
@media (max-width: 1199px) {
  .files__chart--style3 .files__chart-item {
    height: 520px;
  }
}
@media (max-width: 767px) {
  .files__chart--style3 .files__chart-item {
    height: 100%;
    padding-top: 0;
    padding-bottom: 3vw;
    background: none;
    border: 1px solid #1c47d9;
  }
}
.files__chart--style3 .files__chart-title {
  margin-left: -12px;
}
@media (max-width: 767px) {
  .files__chart--style3 .files__chart-title {
    margin-left: 0;
    margin-top: -3vw;
  }
  .files__chart--style3 .files__chart-title img {
    max-width: 120%;
  }
}
.files__chart--style4 {
  margin-bottom: 15px;
}
.files__chart--style4 .files__chart-item {
  width: 100%;
  height: 100%;
  border: 1px solid #1c47d9;
  padding-top: 3vw;
  padding-bottom: 3vw;
}
.files__chart--style4 .files__chart-title {
  margin-bottom: -2vw;
}
.files__chart--style4 .files__chart-title img {
  display: block;
  width: 35vw;
}
@media (max-width: 767px) {
  .files__chart--style4 .files__chart-title img {
    width: 60vw;
  }
}
.files__table--style2 {
  width: 748px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1399px) {
  .files__table--style2 {
    width: 95%;
  }
}
.files__table--style2::before {
  content: "";
  display: block;
  width: 18px;
  height: 100%;
  background: url("../images/files/files-chart-1-table.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 116px;
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .files__table--style2::before {
    left: 85px;
  }
}
@media (max-width: 1199px) {
  .files__table--style2::before {
    left: 72px;
  }
}
@media (max-width: 991px) {
  .files__table--style2::before {
    left: 88px;
  }
}
@media (max-width: 767px) {
  .files__table--style2::before {
    display: none;
  }
}
.files__table--style2 tr:first-child {
  background: #91e0ff;
}
.files__table--style2 tr:first-child th {
  background: #0077b5;
  color: #ffffff;
}
.files__table--style2 tr:nth-child(2) {
  background: -webkit-gradient(linear, left top, left bottom, from(#d1f0ff), to(#aed9ef));
  background: linear-gradient(to bottom, #d1f0ff 0%, #aed9ef 100%);
}
.files__table--style2 tr:nth-child(2) th {
  background: #ffffff;
  color: #0d3b69;
}
.files__table--style2 tr:nth-child(2) td {
  color: #0d3b69;
  font-weight: 900;
  font-family: Poppins, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: 1.333em;
  padding: 14px 0;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .files__table--style2 tr:nth-child(2) {
    font-size: 2.2vw;
  }
}
.files__table--style2 th, .files__table--style2 td {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 1399px) {
  .files__table--style2 th, .files__table--style2 td {
    font-size: 0.8125em;
  }
}
@media (max-width: 767px) {
  .files__table--style2 th, .files__table--style2 td {
    font-size: 1.8vw;
  }
}
.files__table--style2 th {
  color: #ffffff;
}
.files__table--style2 td {
  padding: 10px 0;
  border-left: 1px solid #c8f0ff;
  color: #145ba1;
  line-height: 1;
}
.files__table--style3 {
  width: 348px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 1399px) {
  .files__table--style3 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .files__table--style3 {
    margin-top: 1vw;
  }
}
.files__table--style3::before {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  background: url("../images/files/files-chart-2-table.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 39px;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .files__table--style3::before {
    top: 37px;
  }
}
@media (max-width: 767px) {
  .files__table--style3::before {
    display: none;
  }
}
.files__table--style3 tr {
  border-top: 1px solid #c8f0ff;
}
.files__table--style3 tr:first-child {
  background: #91e0ff;
}
.files__table--style3 tr:first-child th {
  background: #0077b5;
  color: #ffffff;
  font-size: 1.125em;
}
@media (max-width: 1199px) {
  .files__table--style3 tr:first-child th {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .files__table--style3 tr:first-child th {
    font-size: 3vw;
  }
}
.files__table--style3 tr:first-child td {
  background: #ffffff;
  color: #0d3b69;
  font-size: 1.125em;
}
@media (max-width: 1199px) {
  .files__table--style3 tr:first-child td {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .files__table--style3 tr:first-child td {
    font-size: 3vw;
  }
}
.files__table--style3 th, .files__table--style3 td {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.files__table--style3 th {
  background: #91e0ff;
  color: #044280;
  font-size: 1.375em;
  letter-spacing: -0.05em;
  width: 200px;
}
@media (max-width: 1399px) {
  .files__table--style3 th {
    font-size: 1.125em;
    width: 160px;
  }
}
@media (max-width: 1199px) {
  .files__table--style3 th {
    font-size: 1em;
    width: 130px;
  }
}
@media (max-width: 767px) {
  .files__table--style3 th {
    font-size: 3vw;
    width: 18vw;
    padding: 0.5vw;
  }
}
.files__table--style3 td {
  padding: 10px 0;
  line-height: 1;
  color: #0d3b69;
  font-weight: 900;
  font-family: Poppins, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: 1.75em;
  letter-spacing: 0;
  background: -webkit-gradient(linear, left top, right top, from(#d1f0ff), to(#aed9ef));
  background: linear-gradient(to right, #d1f0ff 0%, #aed9ef 100%);
}
@media (max-width: 1399px) {
  .files__table--style3 td {
    font-size: 1.5em;
  }
}
@media (max-width: 1199px) {
  .files__table--style3 td {
    font-size: 1.25em;
  }
}
@media (max-width: 767px) {
  .files__table--style3 td {
    font-size: 3.7vw;
    padding: 2.3vw 0;
  }
}
.files__table--style4 {
  width: 90%;
  margin-top: 1vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.files__table--style4 tr {
  border-top: 1px solid #c8f0ff;
}
.files__table--style4 tr:first-child {
  background: #91e0ff;
}
.files__table--style4 tr:first-child th {
  background: #0077b5;
  color: #ffffff;
  font-size: 3.5vw;
}
.files__table--style4 tr:first-child td {
  background: #ffffff;
  color: #0d3b69;
  font-size: 3.5vw;
}
.files__table--style4 th, .files__table--style4 td {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.files__table--style4 th {
  background: #91e0ff;
  color: #044280;
  letter-spacing: -0.05em;
  font-size: 3.5vw;
  width: 35vw;
  padding: 0.5vw;
}
.files__table--style4 td {
  line-height: 1;
  color: #0d3b69;
  font-weight: 900;
  font-family: Poppins, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-size: 4vw;
  padding: 2.3vw 0;
  letter-spacing: 0;
  background: -webkit-gradient(linear, left top, right top, from(#d1f0ff), to(#aed9ef));
  background: linear-gradient(to right, #d1f0ff 0%, #aed9ef 100%);
}
.files .source {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .files .source {
    margin-top: 15px;
  }
}
.files .slick-prev {
  left: -85px;
}
@media (max-width: 1599px) {
  .files .slick-prev {
    left: -65px;
  }
}
@media (max-width: 1199px) {
  .files .slick-prev {
    left: -40px;
  }
}
@media (max-width: 991px) {
  .files .slick-prev {
    left: -55px;
  }
}
@media (max-width: 767px) {
  .files .slick-prev {
    left: -45px;
  }
}
.files .slick-next {
  right: -85px;
}
@media (max-width: 1599px) {
  .files .slick-next {
    right: -65px;
  }
}
@media (max-width: 1199px) {
  .files .slick-next {
    right: -40px;
  }
}
@media (max-width: 991px) {
  .files .slick-next {
    right: -55px;
  }
}
@media (max-width: 767px) {
  .files .slick-next {
    right: -45px;
  }
}

.download {
  background: url("../images/download/download-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 115px;
  padding-bottom: 46px;
}
@media (max-width: 991px) {
  .download {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .download {
    background-size: auto 160%;
    background-position: center bottom;
  }
}
.download::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/download/download-bg-2.png");
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1599px) {
  .download::before {
    background-size: 1750px auto;
  }
}
@media (max-width: 1399px) {
  .download::before {
    background-size: 1500px auto;
  }
}
@media (max-width: 1199px) {
  .download::before {
    background-size: 1200px auto;
  }
}
@media (max-width: 991px) {
  .download::before {
    background-size: 1000px auto;
  }
}
@media (max-width: 767px) {
  .download::before {
    background-size: 1100px auto;
    background-position: left calc(50vw - 720px) top;
  }
}
@media (max-width: 480px) {
  .download::before {
    background-position: left -150px top;
  }
}
@media (min-width: 1700px) {
  .download .container {
    width: 1500px;
  }
}
.download__title {
  background: url("../images/download/download-title.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 264px;
  height: 66px;
  margin-left: auto;
  margin-right: auto;
  text-indent: -9999px;
}
.download__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .download__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.download__item {
  width: 720px;
  height: 478px;
  padding-top: 65px;
  padding-left: 83px;
  padding-right: 83px;
}
@media (max-width: 1599px) {
  .download__item {
    width: 48%;
  }
}
@media (max-width: 1399px) {
  .download__item {
    padding-left: 60px;
    padding-right: 60px;
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .download__item {
    padding-top: 45px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .download__item {
    padding-left: 30px;
    padding-right: 30px;
    height: 320px;
  }
}
@media (max-width: 767px) {
  .download__item {
    width: 400px;
  }
}
@media (max-width: 480px) {
  .download__item {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
  }
}
.download__item:nth-child(1) {
  background: url("../images/download/download-item-bg-1.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.download__item:nth-child(1) .download__title {
  background: url("../images/download/download-title-1.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.download__item:nth-child(2) {
  background: url("../images/download/download-item-bg-2.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.download__item:nth-child(2) .download__title {
  background: url("../images/download/download-title-2.png");
  background-position: top right;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.download__title {
  width: 214px;
  height: 62px;
  text-indent: -9999px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .download__title {
    width: 180px;
    height: 52px;
  }
}
@media (max-width: 1199px) {
  .download__title {
    width: 160px;
    height: 44px;
    margin-bottom: 30px;
  }
}
.download__subtitle {
  font-size: 1.875em;
  font-weight: 700;
  color: #ff6b23;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .download__subtitle {
    font-size: 1.5em;
  }
}
@media (max-width: 991px) {
  .download__subtitle {
    font-size: 1.25em;
  }
}
.download__subtitle::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/download/download-icon.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
}
@media (max-width: 1199px) {
  .download__subtitle::before {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
  }
}
.download__text {
  font-size: 1.5em;
  font-weight: 500;
  color: #333333;
  line-height: 1.8;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .download__text {
    font-size: 1.25em;
  }
}
@media (max-width: 991px) {
  .download__text {
    font-size: 1em;
  }
}
.download__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -22px;
  margin-bottom: -22px;
}
.download__link-item {
  font-size: 2.25em;
  color: #333333;
  position: relative;
  border-bottom: 1px solid #d6e6e7;
  padding: 22px 50px;
}
@media (max-width: 1399px) {
  .download__link-item {
    font-size: 1.875em;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .download__link-item {
    font-size: 1.5em;
  }
}
@media (max-width: 480px) {
  .download__link-item {
    font-size: 1.25em;
    padding-left: 40px;
  }
}
.download__link-item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/download/download-icon.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 12px);
  left: 12px;
}
@media (max-width: 1199px) {
  .download__link-item::before {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
  }
}
.download__link-item::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 45px;
  background: url("../images/download/download-link-icon-1.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 24px);
  right: 28px;
}
@media (max-width: 1399px) {
  .download__link-item::after {
    width: 30px;
    height: 35px;
    top: calc(50% - 17px);
  }
}
@media (max-width: 480px) {
  .download__link-item::after {
    width: 25px;
    height: 30px;
    top: calc(50% - 15px);
  }
}
@media (hover: hover) {
  .download__link-item:hover {
    color: #ff6b23;
  }
  .download__link-item:hover::after {
    background: url("../images/download/download-link-icon-2.png");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.download__link-item:last-child {
  border-bottom: none;
}

.show--md {
  display: none;
}
@media (max-width: 1199px) {
  .show--md {
    display: block;
  }
}

.show--tb {
  display: none;
}
@media (max-width: 991px) {
  .show--tb {
    display: block;
  }
}

.show--sm {
  display: none;
}
@media (max-width: 767px) {
  .show--sm {
    display: block;
  }
}

.show--mblg {
  display: none;
}
@media (max-width: 480px) {
  .show--mblg {
    display: block;
  }
}

@media (max-width: 1199px) {
  .hide--md {
    display: none;
  }
}

@media (max-width: 991px) {
  .hide--tb {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide--sm {
    display: none;
  }
}

.red {
  color: #e71a0f;
}

#s1 {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media (max-width: 991px) {
  #s1 {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@media (max-width: 767px) {
  #s1 {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  #s2 {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

#s3 {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}
@media (max-width: 991px) {
  #s3 {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

@media (max-width: 767px) {
  #files {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

#download {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}
@media (max-width: 991px) {
  #download {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

.fixednav {
  display: none;
}
@media (max-width: 991px) {
  .fixednav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: bottom;
    transition-property: bottom;
    background: #3a559f;
    padding: 15px 0;
  }
}
.fixednav__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fixednav__item {
  width: 20%;
  font-size: 1.25em;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .fixednav__item {
    font-size: 1em;
  }
}
@media (max-width: 374px) {
  .fixednav__item {
    font-size: 4vw;
  }
}
.fixednav__item .highlight {
  color: #99faff;
}
.fixednav__item::before {
  content: "";
  display: block;
  width: 2px;
  height: 44px;
  background: -webkit-gradient(linear, left top, left bottom, from(#3a559f), color-stop(50%, #7089cf), to(#3a559f));
  background: linear-gradient(to bottom, #3a559f 0%, #7089cf 50%, #3a559f 100%);
  position: absolute;
  top: calc(50% - 22px);
  left: -1px;
}
.fixednav__item:first-child {
  margin-left: 0;
}
.fixednav__item:first-child::before {
  display: none;
}
.fixednav__item--active {
  text-shadow: 0 0 55px #ffffff;
}
.fixednav__item--active .highlight {
  color: #ffffff;
}

.bg {
  background: url("../images/common/bg.jpg");
  background-position: center top;
  background-size: auto;
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 160px;
  position: relative;
}
@media (min-width: 1921px) {
  .bg {
    background-size: cover;
    padding-bottom: 7vw;
  }
}
@media (max-width: 1399px) {
  .bg {
    background-size: 1650px auto;
  }
}
@media (max-width: 1199px) {
  .bg {
    background-size: 1450px auto;
    background-position: left calc(50vw - 700px) top;
  }
}
@media (max-width: 991px) {
  .bg {
    padding-top: 0;
    padding-bottom: 0;
    background: none;
  }
}
.bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 166px;
  background: url("../images/s3/s3-bg_01.png");
  background-position: center bottom;
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@media (min-width: 1921px) {
  .bg::before {
    background-size: 100% auto;
    height: 10vw;
  }
}
@media (max-width: 1199px) {
  .bg::before {
    background-size: 1300px auto;
    bottom: -1px;
  }
}
@media (max-width: 991px) {
  .bg::before {
    background-size: 1000px auto;
  }
}
@media (max-width: 767px) {
  .bg::before {
    background-size: 800px auto;
  }
}
@media (max-width: 480px) {
  .bg::before {
    background-size: 530px auto;
  }
}

.source {
  font-size: 1em;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  text-align: justify;
}
@media (max-width: 767px) {
  .source {
    font-size: 0.875em;
  }
}
.source--blue {
  color: #3653bb;
}

.gotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  font-size: 1em;
  background: #3653bb;
  color: #ffffff;
  padding: 15px 10px;
  cursor: pointer;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .gotop {
    bottom: 150px;
  }
}
@media (max-width: 767px) {
  .gotop {
    bottom: 85px;
    font-size: 0.875em;
    padding: 12px 8px;
  }
}