@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,500,700,900&display=swap");
html#scoped {
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif, monospace;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html#scoped * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif, monospace;
  outline: none;
}
html#scoped.no-scroll {
  overflow: hidden;
}
html#scoped body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html#scoped img {
  max-width: 100%;
}
html#scoped .d {
  display: block;
}
html#scoped .d.inline {
  display: inline;
}
html#scoped .d.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
html#scoped .m {
  display: none;
}
html#scoped .m.inline, html#scoped .m.flex {
  display: none;
}

@media screen and (max-width: 800px) {
  html#scoped .d {
    display: none;
  }
  html#scoped .d.inline, html#scoped .d.flex {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  html#scoped .m {
    display: block;
  }
  html#scoped .m.inline {
    display: inline;
  }
  html#scoped .m.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fadeIn {
  opacity: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fadeIn.animate {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fadeInUp.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.fadeInDown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fadeInDown.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(60px);
  -ms-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fadeInLeft.animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  transform: translateX(-60px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fadeInRight.animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.shrinkIn {
  opacity: 0;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.shrinkIn.animate {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popIn {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.popIn.animate {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 800px) {
  body {
    padding-top: 12vw;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 55px;
  padding-right: 20px;
}
header a.logo-link {
  margin-top: 32px;
  width: 400px;
}
header .mobile-menu {
  width: 11.2vw;
  min-width: 11.2vw;
  height: 12vw;
  position: relative;
}
header .mobile-menu img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
header .mobile-menu img.open {
  opacity: 1;
}
header .mobile-menu.active img.open {
  opacity: 0;
}
header .mobile-menu.active img.close {
  opacity: 1;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 23px;
  padding: 10px 50px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
}
header nav a {
  line-height: 33px;
  text-decoration: none;
  padding: 0 10px;
  margin: 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: #003676;
  border-bottom: 2px solid transparent;
  position: relative;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
  -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
  transition-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
}
header nav a.active, header nav a:hover {
  border-color: #C94C1C;
}
header nav a.active span, header nav a:hover span {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  header {
    padding-left: 3.82vw;
    padding-right: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  header {
    padding-left: 5.33vw;
    padding-right: 0;
    background-color: white;
    border-bottom: 0.27vw solid #C65418;
    height: 12vw;
  }
}
@media screen and (max-width: 1440px) {
  header a.logo-link {
    margin-top: 2.22vw;
    width: 45vw;
  }
}
@media screen and (max-width: 800px) {
  header a.logo-link {
    margin-top: 3.47vw;
    width: 55vw;
  }
}
@media screen and (max-width: 1440px) {
  header nav {
    margin-top: 1.61vw;
    padding: 0.69vw 3.47vw;
    border-radius: 3.47vw;
  }
}
@media screen and (max-width: 800px) {
  header nav {
    position: fixed;
    display: block;
    margin-top: 0;
    padding: 0 16.8vw;
    border-radius: 0;
    background-color: white;
    top: 12vw;
    width: 100vw;
    left: 0;
    padding-top: 2.67vw;
    padding-bottom: 16.53vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }
  header nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1440px) {
  header nav a {
    line-height: 2.29vw;
    padding: 0 0.69vw;
    margin: 0 2.08vw;
    font-size: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  header nav a {
    display: block;
    border-bottom: 0.08vw solid #C65418;
    text-align: center;
    padding: 0;
    font-size: 4vw;
    line-height: 13.07vw;
  }
}
@media screen and (max-width: 800px) {
  header nav a span {
    position: absolute;
    height: 0.8vw;
    display: block;
    background-color: #C65418;
    left: 50%;
    bottom: -0.53vw;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
  header nav a span.s1 {
    width: 22.4vw;
  }
  header nav a span.s2 {
    width: 38.13vw;
  }
  header nav a span.s3 {
    width: 26.67vw;
  }
  header nav a span.s4 {
    width: 22.4vw;
  }
}
.fixed-links {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fixed-links.active {
  opacity: 1;
  visibility: visible;
}
.fixed-links img {
  width: 75px;
}
.fixed-links a {
  display: block;
}
.fixed-links a.line {
  margin-bottom: 18px;
}
.fixed-links a.purchase {
  margin-bottom: 32px;
}
.fixed-links a.specialist {
  margin-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-animation-name: specialist;
  animation-name: specialist;
  -webkit-animation-duration: 3000ms;
  animation-duration: 3000ms;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.fixed-links a.specialist.active {
  opacity: 1;
  visibility: visible;
}
.fixed-links .top {
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  .fixed-links {
    bottom: 2.08vw;
    right: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  .fixed-links {
    bottom: 2.13vw;
    right: 3.47vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1440px) {
  .fixed-links img {
    width: 5.21vw;
  }
}
@media screen and (max-width: 800px) {
  .fixed-links img {
    width: auto;
    height: 10.67vw;
  }
}
@media screen and (max-width: 1440px) {
  .fixed-links a.line {
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 800px) {
  .fixed-links a.line {
    margin-bottom: 0;
    margin-right: 3.2vw;
  }
}
@media screen and (max-width: 1440px) {
  .fixed-links a.purchase {
    margin-bottom: 2.22vw;
  }
}
@media screen and (max-width: 800px) {
  .fixed-links a.purchase {
    margin-bottom: 0;
    margin-right: 1.87vw;
  }
}
@media screen and (max-width: 1440px) {
  .fixed-links a.specialist {
    margin-bottom: 3.47vw;
  }
}
@media screen and (max-width: 800px) {
  .fixed-links a.specialist {
    margin-bottom: 0;
    position: absolute;
    right: 0;
    bottom: 16vw;
  }
}
@media screen and (max-width: 800px) {
  .fixed-links a.specialist img {
    width: 22.67vw;
    height: auto;
  }
}
@-webkit-keyframes specialist {
  0% {
    -webkit-transform: translateX(-10px) translateY(10px);
    transform: translateX(-10px) translateY(10px);
  }
  100% {
    -webkit-transform: translateX(10px) translateY(-10px);
    transform: translateX(10px) translateY(-10px);
  }
}
@keyframes specialist {
  0% {
    -webkit-transform: translateX(-10px) translateY(10px);
    transform: translateX(-10px) translateY(10px);
  }
  100% {
    -webkit-transform: translateX(10px) translateY(-10px);
    transform: translateX(10px) translateY(-10px);
  }
}
body {
  background-image: url("../assets/bg-d.jpg");
  background-size: 1920px auto;
  background-repeat: no-repeat;
  background-position: center top 820px;
}

@media screen and (max-width: 1440px) {
  body {
    background-size: 133.33vw auto;
    background-position: center top 56.94vw;
  }
}
@media screen and (max-width: 800px) {
  body {
    background-image: url("../assets/bg-m.jpg");
    background-size: 100vw auto;
    background-position: center top 172vw;
  }
}
section, .sec1-content {
  position: relative;
  width: 1600px;
  margin: 0 auto;
  max-width: 100%;
  z-index: 2;
}

@media screen and (max-width: 1440px) {
  section, .sec1-content {
    width: 111.11vw;
  }
}
@media screen and (max-width: 800px) {
  section, .sec1-content {
    width: 100vw;
  }
}
section h2.common, .sec1-content h2.common {
  font-size: 38px;
  font-weight: 700;
  color: #00428B;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 1440px) {
  section h2.common, .sec1-content h2.common {
    font-size: 2.64vw;
  }
}
@media screen and (max-width: 800px) {
  section h2.common, .sec1-content h2.common {
    font-size: 6.4vw;
  }
}
section .source, .sec1-content .source {
  font-size: 15px;
  line-height: 130%;
  font-weight: 300;
}

@media screen and (max-width: 1440px) {
  section .source, .sec1-content .source {
    font-size: 1.04vw;
  }
}
@media screen and (max-width: 800px) {
  section .source, .sec1-content .source {
    font-size: 3.2vw;
  }
}
section .button-wrap.common, .sec1-content .button-wrap.common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 35px;
}

section .button-wrap.common .button, .sec1-content .button-wrap.common .button {
  width: 270px;
  line-height: 71px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 15px;
  font-size: 25px;
  font-weight: bold;
  color: white;
  background-color: #E10014;
  border: none;
}

@media screen and (max-width: 1440px) {
  section .button-wrap.common .button, .sec1-content .button-wrap.common .button {
    width: 18.75vw;
    line-height: 4.93vw;
    border-radius: 1.04vw;
    font-size: 1.74vw;
  }
}
@media screen and (max-width: 800px) {
  section .button-wrap.common .button, .sec1-content .button-wrap.common .button {
    width: 37.33vw;
    line-height: 10.93vw;
    border-radius: 2.67vw;
    font-size: 5.6vw;
  }
}
section.section1 {
  height: 820px;
  background-image: url("../assets/sec1-bg-d.jpg");
  background-size: 1920px auto;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  position: relative;
}
section.section1 img.eagle {
  position: absolute;
  width: 100%;
  height: 820px;
  top: 0;
  left: 0;
}
section.section1 .slogan {
  position: absolute;
  font-size: 64px;
  font-weight: 900;
  color: #00428B;
  top: 206px;
  left: 86px;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
section.section1 .sub {
  position: absolute;
  top: 296px;
  left: 165px;
  color: #C94C1C;
  font-size: 51px;
  font-weight: 900;
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}
section.section1 img.text {
  width: 1194px;
  position: absolute;
  top: 705px;
  left: 129px;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
section.section2 {
  padding-top: 207px;
  padding-bottom: 239px;
}
section.section2 .sub-heading {
  font-size: 25px;
  color: #00428B;
  text-align: center;
}
section.section2 .slider-wrap {
  width: 1426px;
  margin: 0 auto;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  margin-top: 24px;
  padding-top: 24px;
  padding-left: 65px;
  padding-right: 65px;
  padding-bottom: 55px;
  position: relative;
}
section.section2 .slider-wrap .slider {
  margin-top: 24px;
}
section.section2 .slider-wrap .slide {
  padding-bottom: 50px;
}
section.section2 .slider-wrap .slide a {
  display: block;
  width: 290px;
  max-width: 290px;
  height: 372px;
  margin: 0 auto;
  background-image: url("../assets/slide-bg-d.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  padding: 19px;
  position: relative;
  text-decoration: none;
}
section.section2 .slider-wrap .slide a .cover {
  height: 148px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
section.section2 .slider-wrap .slide a .text {
  margin-top: 9px;
  line-height: 130%;
  font-size: 20px;
  font-weight: 500;
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
section.section2 .slider-wrap .slide a .text span.blue {
  color: #00428B;
}
section.section2 .slider-wrap .slide a .more {
  position: absolute;
  width: 162px;
  line-height: 33px;
  text-align: center;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 500;
  color: white;
  background-color: #00428B;
  border-radius: 20px;
}
section.section2 .slider-wrap .slider-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.section2 .slider-wrap .slider-nav .prev, section.section2 .slider-wrap .slider-nav .next {
  width: 42px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
section.section2 .slider-wrap .slider-nav .prev {
  background-image: url("../assets/slide-prev-d.svg");
}
section.section2 .slider-wrap .slider-nav .next {
  background-image: url("../assets/slide-next-d.svg");
}
section.section2 .slider-wrap .slider-nav .dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  padding-top: 12px;
  margin: 0 13px;
}
section.section2 .slider-wrap .slider-nav .dots .slick-dots li {
  padding: 0;
  margin: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #BFC0C0;
  list-style: none;
  margin: 0 7px;
  cursor: pointer;
}
section.section2 .slider-wrap .slider-nav .dots .slick-dots li.slick-active {
  background-color: #00428B;
}
section.section2 .slider-wrap .slider-nav .dots .slick-dots li button {
  display: none;
}
section.section3 {
  padding-top: 207px;
  padding-bottom: 148px;
}
section.section3 .video-wrap {
  width: 1045px;
  margin: 0 auto;
  margin-top: 48px;
}
section.section3 .video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
section.section4 {
  padding-bottom: 104px;
}
section.section4 .content {
  width: 1545px;
  max-width: 100%;
  margin: 0 auto;
}
section.section4 .content .source {
  margin-top: 28px;
  margin-left: 214px;
}
section.section5 {
  padding-bottom: 107px;
}
section.section5 .content {
  width: 1288px;
  margin: 0 auto;
  position: relative;
}
section.section5 .content .source {
  position: absolute;
  left: 86px;
  bottom: 40px;
  width: 1123px;
}
section.section6 {
  padding-bottom: 147px;
}
section.section6 .content {
  width: 1288px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
section.section6 .content .source {
  position: absolute;
  left: 86px;
  bottom: 20px;
  width: 1123px;
}
section.section6 .content img.eagle {
  position: absolute;
  width: 74px;
  top: 0;
  left: 156px;
}
section.section7 {
  padding-bottom: 116px;
}
section.section7 .content {
  width: 1288px;
  margin: 0 auto;
  position: relative;
}
section.section7 .content .source {
  position: absolute;
  left: 86px;
  bottom: 30px;
  width: 1123px;
  z-index: 1;
}
section.section7 .content img.d, section.section7 .content img.m {
  position: relative;
  z-index: 1;
}
section.section7 .content img.eagle {
  position: absolute;
  width: 126px;
  top: -45px;
  right: 145px;
}
section.section8 {
  padding-bottom: 147px;
}
section.section8 .content {
  width: 1446px;
  margin: 0 auto;
  position: relative;
}
section.section8 .content .source {
  position: absolute;
  left: 66px;
  bottom: 0;
  width: 483px;
}
section.section8 .content img.eagle {
  position: absolute;
  width: 180px;
  top: 190px;
  right: 26px;
}
section.section9 {
  padding-bottom: 40px;
}
section.section9 .content {
  width: 1446px;
  margin: 0 auto;
  position: relative;
  margin-top: 26px;
}
section.section9 .content .title {
  position: absolute;
  top: 0;
  left: 225px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  line-height: 78px;
}
section.section9 .content .title span.orange {
  color: #FF791C;
}
section.section9 .content .note {
  font-size: 15px;
  font-weight: bold;
  line-height: 130%;
  width: 1349px;
  margin-left: 49px;
  margin-top: -35px;
  text-align: justify;
}
section.section9 .content .note span.red {
  color: #B21623;
}
section.section10 {
  padding-bottom: 212px;
}
section.section10 .content {
  width: 1009px;
  height: 667px;
  margin: 0 auto;
  position: relative;
  margin-top: 37px;
}
section.section10 .content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
section.section10 .content img.active {
  opacity: 1;
}
section.section10 .content .content-wrap {
  position: relative;
  z-index: 1;
}
section.section10 .content .content-wrap .flex-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.section10 .content .content-wrap .flex-tabs .tab {
  width: 367px;
  height: 155px;
  margin: 0 13px;
  cursor: pointer;
}
section.section10 .content .content-wrap .tab-content {
  display: none;
}
section.section10 .content .content-wrap .tab-content.active {
  display: block;
}
section.section10 .content .content-wrap .tab-content .title {
  margin-top: 24px;
  font-size: 22px;
  text-align: center;
}
section.section10 .content .content-wrap .tab-content .separator {
  width: 886px;
  margin: 0 auto;
  margin-top: 16px;
  height: 1px;
  background-color: #287BA1;
}
section.section10 .content .content-wrap .tab-content .flex-banks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 85px;
  margin-top: 27px;
}
section.section10 .content .content-wrap .tab-content .flex-banks .pop {
  cursor: pointer;
}
section.section10 .content .content-wrap .tab-content .flex-banks .heading {
  width: 115px;
  min-width: 115px;
  line-height: 37px;
  height: 37px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: white;
  background-color: #00428B;
  border-radius: 10px;
  margin-right: 15px;
}
section.section10 .content .content-wrap .tab-content .flex-banks.f2 {
  margin-top: 14px;
}
section.section10 .content .content-wrap .tab-content .flex-banks.f2 .heading {
  background-color: #287BA1;
}
section.section10 .content .content-wrap .tab-content .banks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -7.5px -5px;
}
section.section10 .content .content-wrap .tab-content .banks span {
  font-size: 1.2vw;
  line-height: 1.3vw;
  margin: 0.49vw 0.34vw;
  padding: 0 1vw;
  width: 230px;
}
section.section10 .content .content-wrap .tab-content .banks .bank {
  border: 1px solid #287BA1;
  border-radius: 10px;
  padding-left: 13px;
  padding-right: 37px;
  font-size: 22px;
  color: #287BA1;
  line-height: 35px;
  margin: 7.5px 5px;
  text-decoration: none;
  cursor: pointer;
  background-image: url("../assets/arrows-navy.svg");
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: right 13px center;
}
section.section10 .content .content-wrap .tab-content .banks .bank:hover {
  background-color: #287BA1;
  color: white;
  background-image: url("../assets/arrows-white.svg");
}
section.section10 .content .content-wrap .tab-content .banks .bank.blue {
  border-color: #00428B;
  color: #00428B;
}
section.section10 .content .content-wrap .tab-content .banks .bank.blue:hover {
  background-color: #00428B;
  color: white;
}
section.section10 .content .content-wrap .tab-content .info-wrap {
  width: 939px;
  margin: 0 auto;
  margin-top: 28px;
  margin-bottom: 29px;
  background-color: #E5E5E5;
  padding: 19px 52px 15px 42px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
}
section.section10 .content .content-wrap .tab-content .info-wrap ol {
  margin: 0;
  padding-left: 20px;
}
section.section10 .content .content-wrap .tab-content .info-wrap ol li {
  margin-top: 7px;
}
section.section10 .content .content-wrap .tab-content .info-wrap ol li a {
  color: #005ACB;
}
section.section10 .content .content-wrap .tab-content .t1 {
  margin-top: 110px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
section.section10 .content .content-wrap .tab-content .t2 {
  margin-top: 3px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 98px;
}
section.section10 .content .content-wrap .tab-content .t2 span.blue {
  color: #287BA1;
}
section.section11 {
  padding-bottom: 105px;
}
section.section11 .content {
  width: 1009px;
  margin: 0 auto;
  margin-top: 35px;
}
section.section11 .content .heading {
  position: relative;
  line-height: 105px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  background-color: #287BA1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
}
section.section11 .content .heading img.call {
  width: 59px;
  position: absolute;
  top: 23px;
  left: 644px;
}
section.section11 .content .form-wrap {
  background-color: white;
  border: 1px solid #287BA1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-top: 19px;
  padding-bottom: 28px;
}
section.section11 .content .form-wrap .text {
  font-size: 20px;
  text-align: center;
}
section.section11 .content .form-wrap form {
  margin-top: 32px;
}
section.section11 .content .form-wrap form .input-wrap {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.section11 .content .form-wrap form .input-wrap label {
  font-size: 20px;
  min-width: 70px;
  line-height: 57px;
}
section.section11 .content .form-wrap form .input-wrap input {
  width: 568px;
  border: 1px solid #287BA1;
  border-radius: 10px;
  padding-left: 24px;
  font-size: 20px;
  height: 57px;
  line-height: 55px;
}
section.section11 .content .form-wrap form .input-wrap .warning {
  line-height: 57px;
  font-size: 20px;
  color: #E10014;
  margin-left: 15px;
}
section.section11 .content .form-wrap form .agree-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 710px;
  margin: 0 auto;
  margin-top: 36px;
  margin-bottom: 36px;
}
section.section11 .content .form-wrap form .agree-wrap input {
  display: none;
}
section.section11 .content .form-wrap form .agree-wrap input:checked + .checkbox .inner {
  opacity: 1;
}
section.section11 .content .form-wrap form .agree-wrap .checkbox {
  width: 21px;
  min-width: 21px;
  height: 21px;
  margin-right: 9px;
  border: 1px solid #E10014;
  border-radius: 50%;
  margin-top: 4px;
  padding: 2px;
  cursor: pointer;
}
section.section11 .content .form-wrap form .agree-wrap .checkbox .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E10014;
  opacity: 0;
}
section.section11 .content .form-wrap form .agree-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.section11 .content .form-wrap form .agree-wrap .label {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
section.section11 .content .form-wrap form .agree-wrap .label a {
  color: #005ACB;
  text-decoration: none;
}
section.section11 .content .form-wrap form .agree-wrap .label .warning {
  color: #E10014;
}
section.section11 .content .form-wrap form .error-message {
  color: #E10014;
}
section.section12 {
  padding-bottom: 131px;
}
section.section12 .links {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.section12 .links a.link {
  display: block;
  width: 265px;
  margin: 0 5px;
}
section.section12 .links .link1 {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
section.section12 .links .link2 {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
section.section12 .links .link3 {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}
section.section12 .links .link4 {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

@media screen and (max-width: 1440px) {
  section.section1 {
    height: 56.94vw;
    background-size: 133.33vw auto;
  }
}
@media screen and (max-width: 800px) {
  section.section1 {
    height: 161.07vw;
    background-image: url("../assets/sec1-bg-m.jpg");
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 1440px) {
  section.section1 img.eagle {
    height: 56.94vw;
  }
}
@media screen and (max-width: 800px) {
  section.section1 img.eagle {
    height: 161.07vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section1 .slogan {
    font-size: 4.44vw;
    top: 14.17vw;
    left: 5.97vw;
  }
}
@media screen and (max-width: 800px) {
  section.section1 .slogan {
    font-size: 8vw;
    top: 19.87vw;
    left: 9.6vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section1 .sub {
    font-size: 3.54vw;
    top: 20.56vw;
    left: 11.46vw;
  }
}
@media screen and (max-width: 800px) {
  section.section1 .sub {
    font-size: 6.13vw;
    top: 44.4vw;
    left: 17vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section1 img.text {
    width: 82.92vw;
    top: 48.75vw;
    left: 8.96vw;
  }
}
@media screen and (max-width: 800px) {
  section.section1 img.text {
    width: 100vw;
    top: 90.53vw;
    left: 0;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 {
    padding-top: 14.38vw;
    padding-bottom: 16.6vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 {
    padding-top: 7.2vw;
    padding-bottom: 12vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 h2.common {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    top: 10vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .sub-heading {
    font-size: 1.74vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .sub-heading {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 4.27vw;
    z-index: 1;
    top: 20vw;
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap {
    width: 99.03vw;
    border-radius: 3.47vw;
    margin-top: 1.67vw;
    padding-top: 1.67vw;
    padding-left: 4.51vw;
    padding-right: 4.51vw;
    padding-bottom: 3.82vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap {
    width: 92.53vw;
    margin-top: 0;
    padding-top: 20.8vw;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 6vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slider {
    margin-top: 1.67vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slide {
    padding-bottom: 3.47vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slide {
    padding-bottom: 13.33vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slide a {
    width: 20.14vw;
    max-width: 20.14vw;
    height: 25.83vw;
    border-radius: 1.39vw;
    -webkit-box-shadow: 0 1.39vw 1.39vw rgba(0, 0, 0, 0.1);
    box-shadow: 0 1.39vw 1.39vw rgba(0, 0, 0, 0.1);
    padding: 1.32vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slide a {
    width: calc(100% - 8.54vw);
    max-width: calc(100% - 8.54vw);
    height: 81.6vw;
    background-image: url("../assets/slide-bg-m.png");
    margin-left: 4.27vw;
    margin-right: 4.27vw;
    border-radius: 3.47vw;
    -webkit-box-shadow: 0 3.47vw 3.47vw rgba(0, 0, 0, 0.1);
    box-shadow: 0 3.47vw 3.47vw rgba(0, 0, 0, 0.1);
    padding: 4.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slide a .cover {
    height: 10.28vw;
    border-top-left-radius: 1.04vw;
    border-top-right-radius: 1.04vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slide a .cover {
    height: 37.33vw;
    border-top-left-radius: 3.47vw;
    border-top-right-radius: 3.47vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slide a .text {
    margin-top: 0.62vw;
    font-size: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slide a .text {
    margin-top: 2.4vw;
    font-size: 4.53vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slide a .more {
    width: 11.25vw;
    line-height: 2.29vw;
    bottom: 1.39vw;
    font-size: 1.25vw;
    border-radius: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slide a .more {
    width: 37.33vw;
    line-height: 9.07vw;
    bottom: 4.27vw;
    font-size: 4.53vw;
    border-radius: 6vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slider-nav {
    bottom: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider-nav {
    bottom: 5.33vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slider-nav .prev, section.section2 .slider-wrap .slider-nav .next {
    width: 2.92vw;
    height: 2.92vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider-nav .prev, section.section2 .slider-wrap .slider-nav .next {
    width: 6.13vw;
    height: 12.27vw;
    position: absolute;
    top: -58vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider-nav .prev {
    background-image: url("../assets/slide-prev-m.svg");
    left: -4.27vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider-nav .next {
    background-image: url("../assets/slide-next-m.svg");
    right: -4.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slider-nav .dots .slick-dots {
    padding-top: 0.83vw;
    margin: 0 0.9vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider-nav .dots .slick-dots {
    padding-top: 0;
    margin: 0 4.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section2 .slider-wrap .slider-nav .dots .slick-dots li {
    width: 1.25vw;
    height: 1.25vw;
    margin: 0 0.49vw;
  }
}
@media screen and (max-width: 800px) {
  section.section2 .slider-wrap .slider-nav .dots .slick-dots li {
    width: 2.67vw;
    height: 2.67vw;
    margin: 0 1.07vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section3 {
    padding-bottom: 10.28vw;
  }
}
@media screen and (max-width: 800px) {
  section.section3 {
    padding-bottom: 9.87vw;
    padding-top: 57px;
  }
}
@media screen and (max-width: 1440px) {
  section.section3 .video-wrap {
    width: 72.57vw;
  }
}
@media screen and (max-width: 800px) {
  section.section3 .video-wrap {
    width: 90.13vw;
    margin-top: 3.73vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section3 .video-wrap iframe {
    -webkit-box-shadow: 0 1.39vw 2.78vw rgba(0, 0, 0, 0.2);
    box-shadow: 0 1.39vw 2.78vw rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 800px) {
  section.section3 .video-wrap iframe {
    -webkit-box-shadow: 0 3.47vw 6.93vw rgba(0, 0, 0, 0.2);
    box-shadow: 0 3.47vw 6.93vw rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 1440px) {
  section.section4 {
    padding-bottom: 7.22vw;
  }
}
@media screen and (max-width: 800px) {
  section.section4 {
    padding-top: 30px;
    padding-bottom: 4vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section4 .content {
    width: 107.08vw;
  }
}
@media screen and (max-width: 800px) {
  section.section4 .content {
    width: 100vw;
    position: relative;
  }
}
@media screen and (max-width: 1440px) {
  section.section4 .content .source {
    margin-top: 1.94vw;
    margin-left: 14.86vw;
  }
}
@media screen and (max-width: 800px) {
  section.section4 .content .source {
    position: absolute;
    left: 6.67vw;
    bottom: 0;
    margin-left: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 1440px) {
  section.section5 {
    padding-bottom: 7.43vw;
  }
}
@media screen and (max-width: 800px) {
  section.section5 {
    padding-bottom: 6vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section5 .content {
    width: 89.44vw;
  }
}
@media screen and (max-width: 800px) {
  section.section5 .content {
    width: 100vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section5 .content .source {
    left: 5.97vw;
    bottom: 2.78vw;
    width: 77.99vw;
  }
}
@media screen and (max-width: 800px) {
  section.section5 .content .source {
    position: relative;
    left: 0;
    bottom: 0;
    width: 86.67vw;
    margin-top: 3.73vw;
    margin-left: 6.67vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section6 {
    padding-bottom: 10.21vw;
  }
}
@media screen and (max-width: 800px) {
  section.section6 {
    padding-bottom: 8.8vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section6 .content {
    width: 89.44vw;
  }
}
@media screen and (max-width: 800px) {
  section.section6 .content {
    width: 100vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section6 .content .source {
    left: 5.97vw;
    bottom: 1.39vw;
    width: 77.99vw;
  }
}
@media screen and (max-width: 800px) {
  section.section6 .content .source {
    left: 6.67vw;
    bottom: 4.8vw;
    width: 86.67vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section6 .content img.eagle {
    width: 5.14vw;
    left: 10.83vw;
  }
}
@media screen and (max-width: 800px) {
  section.section6 .content img.eagle {
    width: 7.73vw;
    left: 5.6vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section7 {
    padding-bottom: 8.06vw;
  }
}
@media screen and (max-width: 800px) {
  section.section7 {
    padding-bottom: 4vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section7 .content {
    width: 89.44vw;
  }
}
@media screen and (max-width: 800px) {
  section.section7 .content {
    width: 100vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section7 .content .source {
    left: 5.97vw;
    bottom: 2.08vw;
    width: 77.99vw;
  }
}
@media screen and (max-width: 800px) {
  section.section7 .content .source {
    left: 6.67vw;
    bottom: 3.2vw;
    width: 86.67vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section7 .content img.eagle {
    width: 8.75vw;
    top: -3.13vw;
    right: 10.07vw;
  }
}
@media screen and (max-width: 800px) {
  section.section7 .content img.eagle {
    width: 14.13vw;
    top: -6.13vw;
    right: 3.73vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section8 {
    padding-bottom: 10.21vw;
  }
}
@media screen and (max-width: 800px) {
  section.section8 {
    padding-bottom: 4vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section8 .content {
    width: 100.42vw;
  }
}
@media screen and (max-width: 800px) {
  section.section8 .content {
    width: 100vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section8 .content .source {
    left: 4.58vw;
    width: 33.47vw;
  }
}
@media screen and (max-width: 800px) {
  section.section8 .content .source {
    left: 6.67vw;
    width: 86.67vw;
    bottom: 11.2vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section8 .content img.eagle {
    width: 12.5vw;
    top: 13.19vw;
    right: 1.8vw;
  }
}
@media screen and (max-width: 800px) {
  section.section8 .content img.eagle {
    width: 26.13vw;
    top: 220vw;
    right: 8.8vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section9 {
    padding-bottom: 9.03vw;
  }
}
@media screen and (max-width: 800px) {
  section.section9 {
    padding-bottom: 28.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section9 .content {
    width: 100.42vw;
    margin-top: 1.81vw;
  }
}
@media screen and (max-width: 800px) {
  section.section9 .content {
    width: 100vw;
    margin-top: 4.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section9 .content .title {
    left: 15.63vw;
    font-size: 2.08vw;
    line-height: 5.42vw;
  }
}
@media screen and (max-width: 800px) {
  section.section9 .content .title {
    left: 5.07vw;
    font-size: 5.07vw;
    line-height: unset;
    text-align: center;
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section9 .content .note {
    font-size: 1.04vw;
    width: 93.68vw;
    margin-left: 3.47vw;
    margin-top: -2.43vw;
  }
}
@media screen and (max-width: 800px) {
  section.section9 .content .note {
    font-size: 3.07vw;
    width: 89.87vw;
    margin-left: 5.07vw;
    margin-top: -3vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 {
    padding-bottom: 14.72vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 {
    padding-bottom: 25.07vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content {
    width: 70.07vw;
    height: 46.18vw;
    margin-top: 2.57vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content {
    width: 100vw;
    height: 198vw;
    margin-top: 11.47vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content img {
    height: 100%;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .flex-tabs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .flex-tabs .tab {
    width: 25.49vw;
    height: 10.76vw;
    margin: 0 0.9vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .flex-tabs .tab {
    width: 48.8vw;
    height: 20.53vw;
    margin: 0;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .title {
    margin-top: 1.67vw;
    font-size: 1.53vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .title {
    margin-top: 2.4vw;
    font-size: 4.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .separator {
    width: 61.53vw;
    margin-top: 1.11vw;
    height: 0.07vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .separator {
    width: 87.47vw;
    margin-top: 3.47vw;
    height: 0.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .flex-banks {
    padding-left: 5.9vw;
    margin-top: 1.88vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .flex-banks {
    padding-left: 0;
    margin-top: 3.47vw;
    -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;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .flex-banks .heading {
    width: 7.99vw;
    min-width: 7.99vw;
    line-height: 2.57vw;
    height: 2.57vw;
    font-size: 1.53vw;
    border-radius: 0.69vw;
    margin-right: 1.04vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .flex-banks .heading {
    width: 23.47vw;
    min-width: 23.47vw;
    line-height: 6.93vw;
    height: 6.93vw;
    margin-right: 0;
    font-size: 4.53vw;
    border-radius: 2.67vw;
    margin-bottom: 2.4vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .flex-banks.f2 {
    margin-top: 0.97vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .flex-banks.f2 {
    margin-top: 2.67vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .banks {
    margin: -0.49vw -0.34vw;
  }
  section.section10 .content .content-wrap .tab-content .banks span {
    font-size: 1.53vw;
    line-height: 2.43vw;
    margin: 0.49vw 0.34vw;
    padding: 0 1vw;
    width: 230px;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .banks {
    margin: -1.07vw -0.53vw;
    padding: 0 1.6vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  section.section10 .content .content-wrap .tab-content .banks span {
    font-size: 4.8vw;
    line-height: 8.27vw;
    margin: 0.49vw 0.34vw;
    padding: 0 1vw;
    width: 180px;
    text-align: center;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .banks .bank {
    font-size: 1.53vw;
    line-height: 2.43vw;
    margin: 0.49vw 0.34vw;
    padding-left: 0.9vw;
    padding-right: 2.57vw;
    border-radius: 0.69vw;
    background-size: 1.18vw auto;
    background-position: right 0.9vw center;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .banks .bank {
    font-size: 4.8vw;
    line-height: 8.27vw;
    margin: 1.07vw 0.53vw;
    padding-left: 2.4vw;
    padding-right: 7.73vw;
    border-radius: 2.67vw;
    background-size: 4vw auto;
    background-position: right 2.13vw center;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .info-wrap {
    width: 65.21vw;
    margin-top: 1.94vw;
    margin-bottom: 2.01vw;
    padding: 1.32vw 3.61vw 1.04vw 2.92vw;
    border-radius: 1.39vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .info-wrap {
    width: 86.67vw;
    margin-top: 4.8vw;
    margin-bottom: 4.8vw;
    padding: 3.47vw;
    border-radius: 2.67vw;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .info-wrap ol {
    padding-left: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .info-wrap ol {
    padding-left: 3.47vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .info-wrap ol li {
    margin-top: 0.49vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .info-wrap ol li {
    margin-top: 1.39vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .t1 {
    margin-top: 7.64vw;
    font-size: 1.67vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .t1 {
    margin-top: 43.73vw;
    font-size: 6.13vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section10 .content .content-wrap .tab-content .t2 {
    margin-top: 0.21vw;
    font-size: 2.08vw;
    margin-bottom: 6.81vw;
  }
}
@media screen and (max-width: 800px) {
  section.section10 .content .content-wrap .tab-content .t2 {
    margin-top: 1.39vw;
    font-size: 7.73vw;
    margin-bottom: 30vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 {
    padding-bottom: 7.29vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 {
    padding-bottom: 24vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content {
    width: 70.07vw;
    margin-top: 2.43vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content {
    width: 100vw;
    margin-top: 11.2vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .heading {
    line-height: 7.29vw;
    font-size: 2.08vw;
    border-top-left-radius: 1.39vw;
    border-top-right-radius: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .heading {
    line-height: 24.53vw;
    font-size: 5.6vw;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .heading img.call {
    width: 4.1vw;
    top: 1.6vw;
    left: 44.58vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .heading img.call {
    width: 15.47vw;
    top: 4.8vw;
    left: 77.6vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap {
    border: 0.07vw solid #287BA1;
    border-bottom-left-radius: 1.39vw;
    border-bottom-right-radius: 1.39vw;
    padding-top: 1.32vw;
    padding-bottom: 1.94vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap {
    border: 0.07vw solid #287BA1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-top: 5.33vw;
    padding-bottom: 7.73vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap .text {
    font-size: 1.39vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap .text {
    font-size: 4.53vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form {
    margin-top: 2.22vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form {
    margin-top: 12.8vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .input-wrap {
    margin-bottom: 1.53vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .input-wrap {
    margin-bottom: 4.27vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 88vw;
    margin-left: 5.87vw;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .input-wrap label {
    font-size: 1.39vw;
    min-width: 4.86vw;
    line-height: 3.93vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .input-wrap label {
    font-size: 4.53vw;
    min-width: 16vw;
    line-height: unset;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .input-wrap .wrap {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .input-wrap input {
    width: 39.44vw;
    border: 0.07vw solid #287BA1;
    border-radius: 0.69vw;
    padding-left: 1.67vw;
    font-size: 1.39vw;
    height: 3.93vw;
    line-height: 3.93vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .input-wrap input {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    border: 0.07vw solid #287BA1;
    border-radius: 2.67vw;
    padding-left: 3.73vw;
    font-size: 4vw;
    height: 16vw;
    line-height: 15.47vw;
    margin-top: 2.13vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .input-wrap .warning {
    line-height: 3.93vw;
    font-size: 1.39vw;
    margin-left: 1.04vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .input-wrap .warning {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    line-height: unset;
    font-size: 4.53vw;
    margin-left: 0;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .agree-wrap {
    width: 49.31vw;
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .agree-wrap {
    width: 88vw;
    margin-top: 0;
    margin-bottom: 6.93vw;
    margin-left: 5.87vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .agree-wrap .checkbox {
    width: 1.46vw;
    min-width: 1.46vw;
    height: 1.46vw;
    margin-right: 0.62vw;
    border: 0.07vw solid #E10014;
    margin-top: 0.28vw;
    padding: 0.14vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .agree-wrap .checkbox {
    width: 5.87vw;
    min-width: 5.87vw;
    height: 5.87vw;
    margin-right: 1.87vw;
    border: 0.07vw solid #E10014;
    margin-top: 1.33vw;
    padding: 0.67vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section11 .content .form-wrap form .agree-wrap .label {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 800px) {
  section.section11 .content .form-wrap form .agree-wrap .label {
    font-size: 4.27vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section12 {
    padding-bottom: 9.1vw;
  }
}
@media screen and (max-width: 800px) {
  section.section12 {
    padding-bottom: 18.4vw;
  }
}
@media screen and (max-width: 1440px) {
  section.section12 .links {
    margin-top: 4.44vw;
  }
}
@media screen and (max-width: 800px) {
  section.section12 .links {
    margin-top: 7.47vw;
    display: block;
  }
}
@media screen and (max-width: 1440px) {
  section.section12 .links a.link {
    width: 18.4vw;
    margin: 0 0.35vw;
  }
}
@media screen and (max-width: 800px) {
  section.section12 .links a.link {
    width: 61.33vw;
    margin: 0 auto;
    margin-bottom: 3.73vw;
  }
}
img.eagle {
  -webkit-animation-name: eagle;
  animation-name: eagle;
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0.265, 1);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes eagle {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes eagle {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.floaties {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.floaties.active {
  opacity: 1;
  visibility: visible;
}
.floaties .content-wrap {
  position: relative;
  width: 83.33vw;
  height: 60vh;
  max-width: 100%;
}
.floaties .content-wrap .ball {
  position: absolute;
  -webkit-animation-name: ball;
  animation-name: ball;
  -webkit-animation-duration: 3000ms;
  animation-duration: 3000ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-transform: translateY(0) scale(0.8);
  -ms-transform: translateY(0) scale(0.8);
  transform: translateY(0) scale(0.8);
}
.floaties .content-wrap .ball1 {
  width: 243px;
  top: -170px;
  right: -167px;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}
.floaties .content-wrap .ball2 {
  width: 184px;
  top: 302px;
  left: -160px;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}
.floaties .content-wrap .ball3 {
  width: 95px;
  bottom: 8px;
  right: -50px;
  -webkit-animation-delay: 2000ms;
  animation-delay: 2000ms;
}
.floaties .content-wrap .line {
  position: absolute;
  -webkit-animation-name: line;
  animation-name: line;
  -webkit-animation-duration: 5000ms;
  animation-duration: 5000ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
.floaties .content-wrap .line.l1 {
  width: 31px;
  top: 399px;
  left: -83px;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
.floaties .content-wrap .line.l2 {
  width: 19px;
  top: 60px;
  left: -6px;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}
.floaties .content-wrap .line.l3 {
  width: 23px;
  top: 544px;
  left: -6px;
  -webkit-animation-delay: 2300ms;
  animation-delay: 2300ms;
}
.floaties .content-wrap .line.l4 {
  width: 33px;
  top: 288px;
  left: 50px;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}
.floaties .content-wrap .line.l5 {
  width: 31px;
  top: 332px;
  left: 250px;
  -webkit-animation-delay: 3200ms;
  animation-delay: 3200ms;
}
.floaties .content-wrap .line.r1 {
  width: 17px;
  top: 149px;
  right: 324px;
  -webkit-animation-delay: 2000ms;
  animation-delay: 2000ms;
}
.floaties .content-wrap .line.r2 {
  width: 33px;
  top: -23px;
  right: 99px;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}
.floaties .content-wrap .line.r3 {
  width: 27px;
  top: 252px;
  right: 43px;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.floaties .content-wrap .line.r4 {
  width: 23px;
  top: 573px;
  right: 7px;
  -webkit-animation-delay: 1600ms;
  animation-delay: 1600ms;
}
.floaties .content-wrap .line.r5 {
  width: 19px;
  top: 181px;
  right: -56px;
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms;
}
.floaties .content-wrap .line.r6 {
  width: 31px;
  top: 399px;
  right: -95px;
  -webkit-animation-delay: 4400ms;
  animation-delay: 4400ms;
}

@media screen and (max-width: 800px) {
  .floaties {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .floaties .content-wrap .ball {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .ball1 {
    width: 16.88vw;
    top: -11.81vw;
    right: -11.6vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .ball2 {
    width: 12.78vw;
    top: 20.97vw;
    left: -11.11vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .ball3 {
    width: 6.6vw;
    bottom: 0.55vw;
    right: -3.47vw;
  }
}
@-webkit-keyframes ball {
  0% {
    -webkit-transform: translateY(0) scale(0.8);
    transform: translateY(0) scale(0.8);
  }
  100% {
    -webkit-transform: translateY(40px) scale(0.8);
    transform: translateY(40px) scale(0.8);
  }
}
@keyframes ball {
  0% {
    -webkit-transform: translateY(0) scale(0.8);
    transform: translateY(0) scale(0.8);
  }
  100% {
    -webkit-transform: translateY(40px) scale(0.8);
    transform: translateY(40px) scale(0.8);
  }
}
@media screen and (max-width: 800px) {
  .floaties .content-wrap .line {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.l1 {
    width: 2.15vw;
    top: 27.64vw;
    left: -5.69vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.l2 {
    width: 1.32vw;
    top: 4.17vw;
    left: -0.41vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.l3 {
    width: 1.6vw;
    top: 37.78vw;
    left: -0.41vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.l4 {
    width: 2.29vw;
    top: 20vw;
    left: 3.47vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.l5 {
    width: 2.15vw;
    top: 23.06vw;
    left: 17.36vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.r1 {
    width: 1.18vw;
    top: 10.35vw;
    right: 22.5vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.r2 {
    width: 2.29vw;
    top: -1.6vw;
    right: 6.88vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.r3 {
    width: 1.88vw;
    top: 17.5vw;
    right: 2.99vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.r4 {
    width: 1.6vw;
    top: 39.79vw;
    right: 0.48vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.r5 {
    width: 1.32vw;
    top: 12.57vw;
    right: -3.89vw;
  }
}
@media screen and (max-width: 1440px) {
  .floaties .content-wrap .line.r6 {
    width: 2.15vw;
    top: 27.64vw;
    right: -6.6vw;
  }
}
@-webkit-keyframes line {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-filter: blur(8px);
    filter: blur(8px);
  }
  70% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes line {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-filter: blur(8px);
    filter: blur(8px);
  }
  70% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
.confirm-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.confirm-wrap.active {
  opacity: 1;
  visibility: visible;
}
.confirm-wrap .content {
  width: 822px;
  height: 332px;
  position: relative;
}
.confirm-wrap .content img.close {
  position: absolute;
  width: 23px;
  top: 49px;
  right: 81px;
  cursor: pointer;
}
.confirm-wrap .content .abs-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.confirm-wrap .content .abs-wrap .heading {
  margin-top: 60px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}
.confirm-wrap .content .abs-wrap .separator {
  margin-top: 10px;
  width: 107px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background-color: black;
}
.confirm-wrap .content .abs-wrap .text {
  width: 580px;
  margin-top: 19px;
  font-size: 22px;
  margin-left: 120px;
}
.confirm-wrap .content .abs-wrap .button {
  margin-top: 35px;
  width: 270px;
  border-radius: 10px;
  background-color: #287BA1;
  color: white;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 70px;
  cursor: pointer;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 1440px) {
  .confirm-wrap .content {
    width: 56.94vw;
    height: 22.97vw;
  }
}
@media screen and (max-width: 800px) {
  .confirm-wrap .content {
    width: 100vw;
    height: 70.13vw;
  }
}
@media screen and (max-width: 1440px) {
  .confirm-wrap .content img.close {
    width: 1.6vw;
    top: 3.4vw;
    right: 5.6vw;
  }
}
@media screen and (max-width: 800px) {
  .confirm-wrap .content img.close {
    width: 6.13vw;
    top: 4.8vw;
    right: 4.8vw;
  }
}
@media screen and (max-width: 1440px) {
  .confirm-wrap .content .abs-wrap .heading {
    margin-top: 4.17vw;
    font-size: 1.74vw;
  }
}
@media screen and (max-width: 800px) {
  .confirm-wrap .content .abs-wrap .heading {
    margin-top: 10.67vw;
    font-size: 5.33vw;
  }
}
@media screen and (max-width: 1440px) {
  .confirm-wrap .content .abs-wrap .separator {
    margin-top: 0.69vw;
    width: 7.43vw;
    height: 0.07vw;
  }
}
@media screen and (max-width: 800px) {
  .confirm-wrap .content .abs-wrap .separator {
    margin-top: 1.33vw;
    width: 22.13vw;
    height: 0.27vw;
  }
}
@media screen and (max-width: 1440px) {
  .confirm-wrap .content .abs-wrap .text {
    width: 40.28vw;
    margin-top: 1.32vw;
    font-size: 1.53vw;
    margin-left: 8.33vw;
  }
}
@media screen and (max-width: 800px) {
  .confirm-wrap .content .abs-wrap .text {
    width: 81.6vw;
    margin-top: 7.2vw;
    font-size: 4.8vw;
    margin-left: 6.67vw;
  }
}
@media screen and (max-width: 1440px) {
  .confirm-wrap .content .abs-wrap .button {
    margin-top: 2.43vw;
    width: 18.75vw;
    border-radius: 0.69vw;
    font-size: 1.74vw;
    line-height: 4.86vw;
  }
}
@media screen and (max-width: 800px) {
  .confirm-wrap .content .abs-wrap .button {
    margin-top: 5.87vw;
    width: 37.33vw;
    border-radius: 2.67vw;
    font-size: 5.87vw;
    line-height: 10.67vw;
  }
}
.header-background {
  background-color: #fafafa;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 48px;
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: 112px;
}

.header-title {
  font-size: 14px;
  font-weight: 700;
  color: #005598;
  margin: 0 0 0 8px;
}

@media (min-width: 768px) {
  .header-container {
    height: 56px;
  }
  .logo-img {
    width: 144px;
  }
  .header-title {
    font-size: 18px;
  }
}
/* 菜單 */
.menu-list {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.menu-list li {
  text-align: center;
}

.menu-list a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color, background-color 0.3s;
  transition: color, background-color 0.3s;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-list a:hover {
  color: #fff;
  background-color: #005598;
}

@-webkit-keyframes show-menu {
  0% {
    -webkit-transform: translateX(160px);
            transform: translateX(160px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes show-menu {
  0% {
    -webkit-transform: translateX(160px);
            transform: translateX(160px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@media (min-width: 1024px) {
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu-list li {
    margin: 0 8px;
  }
}
@media (max-width: 1023px) {
  .menu-list.menu-open {
    display: block;
    position: fixed;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 64px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    -webkit-animation: show-menu 0.4s;
            animation: show-menu 0.4s;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
  }
  .menu-list a {
    display: inline-block;
    padding: 16px 24px;
  }
  .menu-list a:hover {
    color: #005598;
    background-color: initial;
  }
}
/* 小尺寸菜單Icon */
.hamberger {
  position: fixed;
  right: 8px;
  top: 4px;
  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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-color: #005598;
  padding: 8px;
  border-radius: 8px;
  z-index: 9;
}

.hamberger .hamberger-line {
  width: 24px;
  border-radius: 4px;
  border: 1px solid #fff;
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.hamberger.menu-open .hamberger-line-1 {
  -webkit-transform: translateY(6.5px) rotate(45deg);
      -ms-transform: translateY(6.5px) rotate(45deg);
          transform: translateY(6.5px) rotate(45deg);
}

.hamberger.menu-open .hamberger-line-2 {
  opacity: 0;
}

.hamberger.menu-open .hamberger-line-3 {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
      -ms-transform: translateY(-6.5px) rotate(-45deg);
          transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamberger {
    top: 8px;
  }
}
@media (min-width: 1024px) {
  .hamberger {
    display: none;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer {
  position: relative;
  color: #313e54;
  background: #f2f2f2;
  padding: 40px 0px 0;
  --background-rainbow: linear-gradient(
      90deg,
      #df1c4b 0%,
      #f41f5e 15%,
      #f96585 25%,
      #f8613c 40%,
      #b495cd 50%,
      #ceabf9 60%,
      #797df2 75%,
      #489cf6 85%,
      #6f59ed 100%
  );
}

.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  top: 0;
  background: var(--background-rainbow);
}

.footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-company-name {
  font-size: 22px;
  margin: 16px 0;
}

.footer-company-desc {
  font-size: 14px;
}

.footer-head-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 700;
}

.footer-head-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer-head-phone-number {
  font-size: 36px;
  color: #021d3a;
  text-decoration: none;
}

.footer-social-media {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.footer-social-media-item {
  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-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  background: #021d3a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
}

.footer-warning {
  position: relative;
  padding: 24px 0 0;
}

.footer-warning::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  background: var(--background-rainbow);
}

.footer-warning ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-size: 15px;
}

.footer-warning ul li {
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-copyright-text {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  border: solid 1px #50ffcf;
  margin: auto;
  padding: 4px 32px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(75, 153, 255, 0.4)), to(rgba(214, 125, 255, 0.5)));
  background: linear-gradient(90deg, rgba(75, 153, 255, 0.4) 0%, rgba(214, 125, 255, 0.5) 100%);
  line-height: 1.2rem;
}

.footer-bottom-contact {
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  background-color: #021d3a;
  padding: 16px 0;
  margin: 40px 0 0;
}

.footer-bottom-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: -4px;
  background: var(--background-rainbow);
}

@media screen and (min-width: 768px) {
  .footer-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .footer-social-media {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 1024px) {
  .footer-head {
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-head-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .footer-head-phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fab {
  font-family: "Font Awesome 5 Brands" !important;
}

.fas {
  font-family: "Font Awesome 5 Free" !important;
}

.item {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

/* btn */
.btnArea {
  text-align: center;
  font-size: 0px;
  margin: 8px 0px;
}

.btnArea.twoBtn .btn,
.btnArea.threeBtn .btn {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .btnArea.twoBtn .btn,
  .btnArea.threeBtn .btn {
    max-width: 50%;
  }
}

.btn {
  vertical-align: top;
  padding: 8px 0px;
  position: relative;
}
@media (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}

.btn a,
.btn button {
  position: relative;
  font-size: 20px;
  display: block;
  color: #fff;
  line-height: 50px;
  border-radius: 30px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 40px;
  background: #16be11;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.btn.type2 a,
.btn.type2 button {
  background: #E10014;
}

.btn a:hover:before,
.btn button:hover:before {
  width: 800px;
  height: 800px;
}

.btn a:hover,
.btn button:hover {
  -webkit-box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.3);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
}

.btn a:before,
.btn button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  width: 0px;
  height: 0px;
  -webkit-transition: 0.6s ease-in-out all;
  transition: 0.6s ease-in-out all;
}