@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
@font-face {
  font-family: "GenSenRounded TW";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/GenSenRounded2TW-R.woff2") format("woff2");
}
@font-face {
  font-family: "GenSenRounded TW";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/GenSenRounded2TW-M.woff2") format("woff2");
}
@font-face {
  font-family: "GenSenRounded TW";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/GenSenRounded2TW-B.woff2") format("woff2");
}
@font-face {
  font-family: "GenSenRounded TW";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/GenSenRounded2TW-H.woff2") format("woff2");
}
html#scoped {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  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: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  outline: none;
}
html#scoped section.form *:not(.btn-submit) {
  font-family: "Microsoft JhengHei", "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}
html#scoped.no-scroll {
  overflow: hidden;
}
html#scoped body {
  margin: 0;
  background-color: #FFF9E0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html#scoped .d {
  display: block;
}
html#scoped .d.inline {
  display: inline;
}
html#scoped .d.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  html#scoped .d {
    display: none;
  }
  html#scoped .d.inline {
    display: none;
  }
  html#scoped .d.flex {
    display: none;
  }
}
html#scoped .m {
  display: none;
}
html#scoped .m.inline {
  display: none;
}
html#scoped .m.flex {
  display: none;
}
@media screen and (max-width: 767px) {
  html#scoped .m {
    display: block;
  }
  html#scoped .m.inline {
    display: inline;
  }
  html#scoped .m.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

html {
  scroll-behavior: smooth;
}

.inview.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.inview.fadeInUp.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.inview.fadeInDown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.inview.fadeInDown.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.inview.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.inview.fadeInLeft.animate {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.inview.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.inview.fadeInRight.animate {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.inview.shrinkIn {
  opacity: 0;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.inview.shrinkIn.animate {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.inview.fadeIn {
  opacity: 0;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.inview.fadeIn.animate {
  opacity: 1;
}

html#scoped .delay300 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
html#scoped .delay600 {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #FFFFFF;
  border-bottom: 3px solid #27327B;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header {
    border-bottom: 0.23vw solid #27327B;
  }
}
@media screen and (max-width: 767px) {
  header {
    border-bottom: 0.53vw solid #27327B;
  }
}
header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header .header-inner {
    height: 6.25vw;
    padding: 0 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  header .header-inner {
    height: 12.8vw;
    padding: 0 5.33vw;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .logo img {
  width: 210px;
  height: auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header .logo img {
    width: 16.41vw;
  }
}
@media screen and (max-width: 767px) {
  header .logo img {
    width: 33.33vw;
  }
}
header nav.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
header .nav-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 80px;
  padding: 0 20px;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header .nav-tab {
    height: 6.25vw;
    padding: 0 1.56vw;
    font-size: 1.72vw;
    line-height: 1.72vw;
  }
}
header .nav-tab span {
  display: block;
}
header .nav-tab .tab-dot {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10px;
  height: 10px;
  opacity: 0;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header .nav-tab .tab-dot {
    bottom: 0.78vw;
    width: 0.78vw;
    height: 0.78vw;
  }
}
header .nav-tab:hover {
  color: #FF7A00;
}
header .nav-tab.active {
  color: #FF7A00;
}
header .nav-tab.active .tab-dot {
  opacity: 1;
}
header .nav-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header .nav-btn {
    margin-left: 0.78vw;
  }
}
header .nav-btn img {
  height: 48px;
  width: auto;
  display: block;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  header .nav-btn img {
    height: 3.75vw;
  }
}
header .nav-btn:hover {
  opacity: 0.8;
}
header .menu-wrap {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  header .menu-wrap {
    width: 8vw;
    height: 8vw;
  }
}
header .menu-wrap .menu-icon, header .menu-wrap .menu-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header .menu-wrap .menu-close {
  display: none;
}
header .menu-wrap.active .menu-icon {
  display: none;
}
header .menu-wrap.active .menu-close {
  display: block;
}
header .mobile-nav {
  display: none;
  position: fixed;
  top: 13.33vw;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 9;
  overflow-y: auto;
  max-height: calc(100vh - 12.8vw - 0.53vw);
}
@media screen and (max-width: 767px) {
  header .mobile-nav.active {
    display: block;
  }
}
header .mobile-nav-inner {
  padding: 5.33vw 0 0;
}
header .mobile-tab {
  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;
  gap: 1.33vw;
  padding: 2.4vw 5.33vw 2.67vw;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
header .mobile-tab .tab-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.67vw;
  width: 100%;
}
header .mobile-tab .tab-name {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 5.33vw;
  font-weight: 700;
  line-height: 5.33vw;
  color: #000000;
}
header .mobile-tab .tab-desc {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 5.33vw;
  font-weight: 700;
  line-height: 5.33vw;
  color: #333333;
}
header .mobile-tab .tab-dot {
  width: 2.67vw;
  height: 2.67vw;
  opacity: 0;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
header .mobile-tab:hover .tab-name, header .mobile-tab:hover .tab-desc, header .mobile-tab.active .tab-name, header .mobile-tab.active .tab-desc {
  color: #FF7A00;
}
header .mobile-tab:hover .tab-dot, header .mobile-tab.active .tab-dot {
  opacity: 1;
}
header .mobile-btn-wrap {
  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;
  padding: 2.67vw 5.33vw 5.33vw;
}
header .mobile-nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  text-decoration: none;
  margin: 0 auto;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
header .mobile-nav-btn img {
  width: 51.2vw;
  height: auto;
  display: block;
}
header .mobile-nav-btn:hover {
  opacity: 0.8;
}
header .menu-flower {
  display: block;
  width: 71.47vw;
  margin-left: auto;
  padding-bottom: 5.33vw;
}

body {
  padding-top: 83px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  body {
    padding-top: 6.48vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 13.33vw;
  }
}

footer .footer-disclosure {
  border-bottom: 2px solid #E5E5E5;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure {
    border-bottom-width: 0.53vw;
  }
}
footer .footer-disclosure .center-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .center-box {
    padding: 0 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .center-box {
    padding: 0 2.67vw;
  }
}
footer .footer-disclosure .disclosure-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 15px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-header {
    gap: 0.78vw;
    padding: 1.17vw 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-header {
    gap: 2.67vw;
    padding: 4vw 0;
  }
}
footer .footer-disclosure .disclosure-header span {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 24px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-header span {
    font-size: 1.88vw;
    line-height: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-header span {
    font-size: 5.33vw;
    line-height: 5.33vw;
  }
}
footer .footer-disclosure .disclosure-header .arrow-icon {
  width: 30px;
  height: 30px;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-header .arrow-icon {
    width: 2.34vw;
    height: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-header .arrow-icon {
    width: 5.33vw;
    height: 5.33vw;
  }
}
footer .footer-disclosure.active .arrow-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
footer .footer-disclosure .disclosure-body {
  display: none;
  padding: 0 0 35px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-body {
    padding-bottom: 2.73vw;
    max-width: 93.75vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-body {
    padding-bottom: 9.33vw;
  }
}
footer .footer-disclosure.active .disclosure-body {
  display: block;
}
footer .footer-disclosure .disclosure-body p {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #545454;
  margin: 0 0 20px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-body p {
    font-size: 1.56vw;
    line-height: 2.5vw;
    margin-bottom: 1.56vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-body p {
    font-size: 4.27vw;
    line-height: 6.83vw;
    margin-bottom: 4.27vw;
  }
}
footer .footer-disclosure .disclosure-body p:last-child {
  margin-bottom: 0;
}
footer .footer-disclosure .disclosure-body .notice-title {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #FB1926;
  text-align: justify;
  margin: 0 0 10px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-body .notice-title {
    font-size: 1.56vw;
    line-height: 2.5vw;
    margin-bottom: 0.78vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-body .notice-title {
    font-size: 4.27vw;
    line-height: 6.83vw;
    margin-bottom: 2.67vw;
  }
}
footer .footer-disclosure .disclosure-body ul.notice {
  list-style: disc;
  padding-left: 24px;
  font-weight: 700;
  color: #FB1926;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-body ul.notice {
    padding-left: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-body ul.notice {
    padding-left: 4.27vw;
  }
}
footer .footer-disclosure .disclosure-body ul.notice li {
  margin-bottom: 10px;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #FB1926;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-disclosure .disclosure-body ul.notice li {
    font-size: 1.56vw;
    line-height: 2.5vw;
    margin-bottom: 0.78vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-disclosure .disclosure-body ul.notice li {
    font-size: 4.27vw;
    line-height: 6.83vw;
    margin-bottom: 2.67vw;
  }
}
footer .footer-disclosure .disclosure-body ul.notice li:last-child {
  margin-bottom: 0;
}
footer .footer-bottom .footer-top {
  background-color: #FFFFFF;
}
footer .footer-bottom .footer-top .center-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 98px;
  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;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-top .center-box {
    padding: 0 3.13vw;
    height: 7.66vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-top .center-box {
    padding: 7.2vw 4.27vw;
    height: auto;
    -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;
    gap: 5.33vw;
  }
}
footer .footer-bottom .footer-logo {
  width: 182px;
  display: block;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-logo {
    width: 14.22vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-logo {
    width: 44.37vw;
  }
}
footer .footer-bottom .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-right {
    gap: 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-right {
    -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;
    gap: 5.33vw;
  }
}
footer .footer-bottom .footer-address {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 21px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-address {
    font-size: 1.09vw;
    line-height: 1.64vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-address {
    font-size: 3.73vw;
    line-height: 5.6vw;
  }
}
footer .footer-bottom .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-links {
    gap: 1.72vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-links {
    gap: 5.87vw;
  }
}
footer .footer-bottom .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #707070;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-link {
    font-size: 1.02vw;
    line-height: 1.17vw;
    gap: 0.39vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-link {
    font-size: 3.47vw;
    line-height: 4vw;
    gap: 1.33vw;
  }
}
footer .footer-bottom .footer-link:hover {
  opacity: 0.7;
}
footer .footer-bottom .footer-link img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-link img {
    width: 1.56vw;
    height: 1.56vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-link img {
    width: 5.33vw;
    height: 5.33vw;
  }
}
footer .footer-bottom .footer-fraud-warning {
  background-color: #FADE67;
  height: 56px;
  line-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-fraud-warning {
    height: 3.91vw;
    line-height: 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-fraud-warning {
    height: 11.73vw;
    line-height: 11.73vw;
  }
}
footer .footer-bottom .footer-fraud-warning span {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #27327B;
  text-align: center;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-fraud-warning span {
    font-size: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-fraud-warning span {
    font-size: 4.27vw;
  }
}
footer .footer-bottom .footer-copyright-bar {
  background-color: #27327B;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-copyright-bar {
    height: 3.44vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-copyright-bar {
    height: auto;
    padding: 3.47vw 9.87vw;
  }
}
footer .footer-bottom .footer-copyright-bar .center-box {
  text-align: center;
}
footer .footer-bottom .footer-copyright-bar span {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 21px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  footer .footer-bottom .footer-copyright-bar span {
    font-size: 1.41vw;
    line-height: 1.67vw;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .footer-copyright-bar span {
    font-size: 3.47vw;
    line-height: 5.2vw;
  }
}

section.kv {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 923px;
  background-image: url("../assets/kv/kv-d.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media screen and (max-width: 1920px) {
  section.kv {
    height: 48.07vw;
  }
}
@media screen and (max-width: 767px) {
  section.kv {
    height: auto;
    background-image: none;
  }
}
section.kv img.text {
  width: 708px;
  position: absolute;
  top: 180px;
  left: calc(50% - 688px);
  opacity: 0;
  -webkit-transition: all 1500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 1500ms cubic-bezier(0.68, 0, 0.265, 1);
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
}
section.kv img.text.animate {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1920px) {
  section.kv img.text {
    width: 36.88vw;
    top: 9.38vw;
    left: calc(50% - 35.83vw);
    -webkit-transform: translateX(-5.21vw);
        -ms-transform: translateX(-5.21vw);
            transform: translateX(-5.21vw);
  }
}
@media screen and (max-width: 767px) {
  section.kv img.text {
    width: 85.87vw;
    top: 1vw;
    left: 6vw;
    -webkit-transform: translateX(-26.67vw);
        -ms-transform: translateX(-26.67vw);
            transform: translateX(-26.67vw);
  }
}
section.kv img.bg {
  width: 100%;
}
section.kv .stamp {
  position: absolute;
  width: 417px;
  top: 550px;
  left: calc(50% + 260px);
  opacity: 0;
  -webkit-transition: all 1500ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 1500ms cubic-bezier(0.68, 0, 0.265, 1);
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
}
section.kv .stamp.animate {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1920px) {
  section.kv .stamp {
    width: 21.72vw;
    top: 28.65vw;
    left: calc(50% + 13.54vw);
    -webkit-transform: translateX(5.21vw);
        -ms-transform: translateX(5.21vw);
            transform: translateX(5.21vw);
  }
}
@media screen and (max-width: 767px) {
  section.kv .stamp {
    width: 70vw;
    top: 95vw;
    left: unset;
    right: -7vw;
    -webkit-transform: translateX(26.67vw);
        -ms-transform: translateX(26.67vw);
            transform: translateX(26.67vw);
  }
}
section.kv .stamp img.stamp-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section.kv .stamp img.stamp-circle {
  -webkit-animation-name: stamp-rotate;
          animation-name: stamp-rotate;
  -webkit-animation-duration: 8000ms;
          animation-duration: 8000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  position: absolute;
  width: 253px;
  top: 75px;
  left: 63px;
}
@media screen and (max-width: 1920px) {
  section.kv .stamp img.stamp-circle {
    width: 13.18vw;
    top: 3.91vw;
    left: 3.28vw;
  }
}
@media screen and (max-width: 767px) {
  section.kv .stamp img.stamp-circle {
    width: 42vw;
    top: 12vw;
    left: 11vw;
  }
}
@-webkit-keyframes stamp-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes stamp-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

section.section1 {
  position: relative;
  background-image: url(../assets/section1/sec1-bg-d.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1920px auto;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
section.section1.bg-hidden {
  background-image: none;
}
@media screen and (max-width: 767px) {
  section.section1 {
    background-image: none;
  }
}
section.section1 .tab-nav {
  padding: 0 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .tab-nav {
    padding: 0 3.13vw;
  }
}
section.section1 .tab-nav .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .tab-nav .tab-list {
    gap: 0;
  }
}
section.section1 .tab-nav .tab-item {
  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: 233px;
  height: 243px;
  margin-left: -10px;
  margin-right: -10px;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .tab-nav .tab-item {
    width: 18.11vw;
    height: 18.87vw;
    margin-left: -0.8vw;
    margin-right: -0.8vw;
  }
}
section.section1 .tab-nav .tab-item img {
  width: 100%;
  height: auto;
}
section.section1 .tab-nav .tab-item h1 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
section.section1 .tab-nav .tab-item .tab-hover {
  display: none;
}
section.section1 .tab-nav .tab-item .tab-selected {
  display: none;
}
section.section1 .tab-nav .tab-item:hover:not(.active) .tab-default {
  display: none;
}
section.section1 .tab-nav .tab-item:hover:not(.active) .tab-hover {
  display: block;
}
section.section1 .tab-nav .tab-item.active .tab-default {
  display: none;
}
section.section1 .tab-nav .tab-item.active .tab-selected {
  display: block;
}
section.section1 .tab-nav-mobile {
  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;
  position: relative;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-current {
  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;
  gap: 1.87vw;
  width: 75.47vw;
  margin: 0 auto;
  cursor: pointer;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-current .tab-nav-mobile-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.67vw;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-current .tab-nav-name {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 5.33vw;
  font-weight: 700;
  line-height: 1em;
  color: #0F64AF;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-current .tab-nav-desc {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 5.33vw;
  font-weight: 700;
  line-height: 1em;
  color: #0F64AF;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-current .tab-arrow {
  width: 100%;
  height: auto;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 75.47vw;
  background: #FFF;
  border-radius: 2.67vw;
  -webkit-box-shadow: 0 1.07vw 2.67vw rgba(0, 0, 0, 0.15);
          box-shadow: 0 1.07vw 2.67vw rgba(0, 0, 0, 0.15);
  z-index: 10;
  padding: 2.67vw 0;
  margin-top: 2.67vw;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-dropdown.open {
  display: block;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.67vw;
  padding: 2.67vw 5.33vw;
  text-decoration: none;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
section.section1 .tab-nav-mobile .tab-nav-mobile-item.active {
  background: rgba(15, 100, 175, 0.1);
}
section.section1 .tab-nav-mobile .tab-nav-mobile-item .tab-nav-name {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 4.27vw;
  font-weight: 700;
  line-height: 1em;
  color: #0F64AF;
}
section.section1 .tab-nav-mobile .tab-nav-mobile-item .tab-nav-desc {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 4.27vw;
  font-weight: 700;
  line-height: 1em;
  color: #0F64AF;
}
section.section1 .tab-content-wrap .tab-content {
  display: none;
}
section.section1 .tab-content-wrap .tab-content.active {
  display: block;
}
section.section1 .sec1-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 40px;
  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;
  gap: 50px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-content {
    padding: 3.91vw 3.13vw;
    gap: 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-content {
    padding: 10.67vw 4.27vw;
    padding-top: 5vw;
    gap: 5vw;
  }
}
section.section1 .sec1-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;
  gap: 0;
}
section.section1 .sec1-title {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.8em;
  color: #000000;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-title {
    font-size: 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-title {
    font-size: 7.2vw;
  }
}
section.section1 .sec1-subtitle {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.8em;
  color: #000000;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-subtitle {
    font-size: 2.73vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-subtitle {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
section.section1 .hl {
  position: relative;
  display: inline;
  color: #FC5D66;
}
section.section1 .punct {
  letter-spacing: 0.1em;
}
section.section1 .hl .highlight {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 11px;
  opacity: 0.7;
  pointer-events: none;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .hl .highlight {
    height: 0.86vw;
    bottom: -1.16vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .hl .highlight {
    height: 2.93vw;
    bottom: -2.13vw;
  }
}
section.section1 .sec1-sticky-outer {
  position: relative;
  width: 100%;
}
section.section1 .sec1-illus-wrap {
  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;
  width: 100%;
}
section.section1 .sec1-illus-wrap.is-fixed {
  position: fixed;
  z-index: 3;
}
section.section1 .sec1-illus-wrap.is-bottom {
  position: absolute;
  left: 0 !important;
  top: auto !important;
  bottom: 0;
  width: 100% !important;
}
section.section1 .sec1-illus {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100%;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-illus {
    width: 75%;
  }
}
@media screen and (min-width: 1281px) and (max-height: 800px) {
  section.section1 .sec1-illus {
    width: 75%;
  }
}
section.section1 .sec1-illus .illus {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  width: 100%;
  height: auto;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 700ms cubic-bezier(0.68, 0, 0.265, 1), -webkit-transform 700ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: opacity 700ms cubic-bezier(0.68, 0, 0.265, 1), -webkit-transform 700ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: opacity 700ms cubic-bezier(0.68, 0, 0.265, 1), transform 700ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: opacity 700ms cubic-bezier(0.68, 0, 0.265, 1), transform 700ms cubic-bezier(0.68, 0, 0.265, 1), -webkit-transform 700ms cubic-bezier(0.68, 0, 0.265, 1);
}
section.section1 .sec1-illus .illus2 {
  opacity: 0;
  -webkit-transform: translateY(120px);
      -ms-transform: translateY(120px);
          transform: translateY(120px);
  pointer-events: none;
}
section.section1 .sec1-illus.show-illus2 .illus1 {
  opacity: 0;
  -webkit-transform: translateY(-60px);
      -ms-transform: translateY(-60px);
          transform: translateY(-60px);
  pointer-events: none;
}
section.section1 .sec1-illus.show-illus2 .illus2 {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
section.section1 .sec1-illus.show-illus2 .sec1-arrows {
  opacity: 0;
  pointer-events: none;
}
section.section1 .sec1-illus .sec1-arrows {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  -webkit-animation: arrowBounce 1.2s ease-in-out infinite;
          animation: arrowBounce 1.2s ease-in-out infinite;
  -webkit-transition: all 600ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 600ms cubic-bezier(0.68, 0, 0.265, 1);
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-illus .sec1-arrows {
    bottom: -3.13vw;
    width: 2.66vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-illus .sec1-arrows {
    bottom: -9.6vw;
    width: 8.8vw;
  }
}
@-webkit-keyframes arrowBounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-6px);
            transform: translateX(-50%) translateY(-6px);
  }
}
@keyframes arrowBounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-6px);
            transform: translateX(-50%) translateY(-6px);
  }
}
section.section1 .sec1-bottom {
  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;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-bottom {
    margin-top: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-bottom {
    gap: 3.47vw;
    margin-top: 6.4vw;
  }
}
section.section1 .sec1-bottom-text {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4em;
  color: #000000;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-bottom-text {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-bottom-text {
    display: none;
  }
}
section.section1 .sec1-board {
  width: 923px;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-board {
    width: 72.11vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-board {
    width: 100%;
    -webkit-transform: scale(1.12);
        -ms-transform: scale(1.12);
            transform: scale(1.12);
  }
}
section.section1 .sec1-note {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
  color: #511E1B;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.section1 .sec1-note {
    font-size: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  section.section1 .sec1-note {
    font-size: 3.73vw;
    margin-top: -4vw;
  }
}

.section2-bg.top {
  height: 247px;
  background-image: url(../assets/section2/bg-sec2a-d.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
  margin-top: -1px;
  margin-bottom: -1px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2-bg.top {
    height: 15.42vw;
  }
}
@media screen and (max-width: 767px) {
  .section2-bg.top {
    height: 17.33vw;
    background-image: url(../assets/section2/bg-sec2a-m.svg);
    background-size: cover;
  }
}

.section2-bg.bot {
  height: 229px;
  background-image: url(../assets/section2/bg-sec2b-d.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 100%;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2-bg.bot {
    height: 14.27vw;
  }
}
@media screen and (max-width: 767px) {
  .section2-bg.bot {
    height: 13.87vw;
    background-image: url(../assets/section2/bg-sec2b-m.svg);
    background-size: cover;
  }
}

.section2 {
  position: relative;
  overflow: hidden;
  background-color: #FFF2C0;
  margin-top: -80px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 {
    margin-top: -5.47vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 {
    background-color: #FBEEBD;
    padding-bottom: 8vw;
    margin-top: 0;
  }
}
.section2 .center-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .center-box {
    padding: 0 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .center-box {
    padding: 0 4.27vw;
  }
}
.section2 .section2-title {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 23px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .section2-title {
    margin-bottom: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .section2-title {
    margin-bottom: 6.4vw;
  }
}
.section2 .section2-title img.d {
  width: 913px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .section2-title img.d {
    width: 71.33vw;
  }
}
.section2 .section2-title img.m {
  width: 100vw;
  margin-left: -4.27vw;
}
.section2 .feature-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding-top: 70px;
  margin-bottom: 30px;
  margin-top: 64px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-cards {
    gap: 2.34vw;
    padding-top: 5.47vw;
    margin-bottom: 2.34vw;
    margin-top: 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14.67vw;
    padding-top: 0vw;
    margin-bottom: 4vw;
  }
}
.section2 .feature-card:nth-of-type(2) {
  margin-top: -64px;
  height: 100%;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card:nth-of-type(2) {
    margin-top: -3.91vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card:nth-of-type(2) {
    margin-top: 0;
  }
}
.section2 .feature-card.sp {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.section2 .feature-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  border-radius: 50px;
  overflow: visible;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 20px rgba(98, 49, 12, 0.2);
          box-shadow: 0 4px 20px rgba(98, 49, 12, 0.2);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card {
    border-radius: 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card {
    border-radius: 5.33vw;
    -webkit-box-shadow: 0 3px 15px rgba(98, 49, 12, 0.2);
            box-shadow: 0 3px 15px rgba(98, 49, 12, 0.2);
  }
}
.section2 .feature-card::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid #CFE7FF;
  border-radius: 35px;
  pointer-events: none;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card::after {
    top: 1.17vw;
    left: 1.17vw;
    right: 1.17vw;
    bottom: 1.17vw;
    border-radius: 2.73vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card::after {
    top: 2.67vw;
    left: 2.67vw;
    right: 2.67vw;
    bottom: 2.67vw;
    border-width: 3px;
    border-radius: 2.67vw;
  }
}
.section2 .feature-card .card-content {
  position: relative;
  z-index: 1;
  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;
  padding: 0 35px 45px;
  gap: 30px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card .card-content {
    padding: 0 2.73vw 3.91vw;
    gap: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card .card-content {
    padding: 0 4.93vw 6.4vw;
    gap: 4vw;
  }
}
.section2 .feature-card .card-icon {
  width: 240px;
  margin-top: -51px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card .card-icon {
    width: 18.75vw;
    margin-top: -3.98vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card .card-icon {
    width: 48vw;
    margin-top: -9.33vw;
  }
}
.section2 .feature-card .card-text {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card .card-text {
    gap: 1.17vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card .card-text {
    gap: 2.67vw;
  }
}
.section2 .feature-card .card-title {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4em;
  color: #0F64AF;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card .card-title {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card .card-title {
    font-size: 5.33vw;
  }
}
.section2 .feature-card .card-title span.red {
  color: #FC5D66;
}
.section2 .feature-card .card-desc {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
  color: #545454;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card .card-desc {
    font-size: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card .card-desc {
    font-size: 4.8vw;
  }
}
.section2 .feature-card .card-note {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  color: #5389C0;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .feature-card .card-note {
    font-size: 1.41vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .feature-card .card-note {
    font-size: 3.73vw;
  }
}
.section2 .feature-card span.orange {
  color: #FF7A00;
}
.section2 .disclaimer {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
  color: #511E1B;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .disclaimer {
    font-size: 1.88vw;
    margin-bottom: 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .disclaimer {
    font-size: 3.73vw;
    margin-bottom: 4vw;
  }
}
.section2 .divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section2 .divider img {
  height: 6px;
  width: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .divider img {
    height: 0.47vw;
    margin-bottom: 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .divider img {
    margin-bottom: 3.13vw;
  }
}
.section2 .cta-area {
  text-align: center;
}
.section2 .cta-area .cta-text {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4em;
  color: #000000;
  margin: 0 0 20px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .cta-area .cta-text {
    font-size: 2.66vw;
    margin-bottom: 1.56vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .cta-area .cta-text {
    font-size: 5.33vw;
    margin-bottom: 1.33vw;
  }
}
.section2 .cta-area .cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .section2 .cta-area .cta-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
}
.section2 .cta-area .cta-label {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4em;
  color: #000000;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .cta-area .cta-label {
    font-size: 2.66vw;
  }
}
@media screen and (max-width: 767px) {
  .section2 .cta-area .cta-label {
    font-size: 5.33vw;
  }
}
.section2 .cta-area .btn-consult {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.section2 .cta-area .btn-consult img {
  height: auto;
  display: block;
}
.section2 .cta-area .btn-consult img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.section2 .cta-area .btn-consult:hover img.hover {
  opacity: 1;
}
.section2 .cta-area .btn-consult img.d {
  width: 395px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section2 .cta-area .btn-consult img.d {
    width: 30.86vw;
  }
}
.section2 .cta-area .btn-consult img.m {
  width: 64vw;
}
.section2 .cta-area .btn-other {
  display: none;
  text-decoration: none;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 767px) {
  .section2 .cta-area .btn-other {
    display: inline-block;
  }
}
.section2 .cta-area .btn-other img {
  width: 64vw;
  height: auto;
}

.section3 {
  position: relative;
  padding-top: 0;
  padding-bottom: 30px;
  overflow: hidden;
  background-image: url(../assets/section3/bg-sec3.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 2560px auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 {
    padding-top: 0;
    padding-bottom: 2.34vw;
    background-size: 200vw auto;
  }
}
@media screen and (max-width: 767px) {
  .section3 {
    padding: 10.67vw 0;
    background-image: none;
  }
}
.section3 .center-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .center-box {
    padding: 0 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .center-box {
    padding: 0 4.27vw;
  }
}
.section3 .section3-title {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .section3-title {
    margin-bottom: 3.52vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .section3-title {
    margin-bottom: 6.4vw;
  }
}
.section3 .section3-title img.d {
  width: 568px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .section3-title img.d {
    width: 44.38vw;
  }
}
.section3 .section3-title img.m {
  width: 91.47vw;
}
.section3 .qa-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-list {
    gap: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-list {
    gap: 4.27vw;
  }
}
.section3 .qa-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  background-color: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(98, 49, 12, 0.2);
          box-shadow: 0 4px 20px rgba(98, 49, 12, 0.2);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-item {
    border-radius: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-item {
    border-radius: 5.33vw;
  }
}
.section3 .qa-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 25px;
  background-color: #5389C0;
  min-width: 100px;
  border-right: 4px solid #AECFF1;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-header {
    padding: 2.34vw 1.95vw;
    min-width: 7.81vw;
    border-right-width: 0.31vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-header {
    padding: 4.27vw 2.67vw;
    min-width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-right-width: 0.53vw;
  }
}
.section3 .qa-number {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1em;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-number {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-number {
    font-size: 5.33vw;
    line-height: 1.6em;
  }
}
.section3 .qa-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
}
.section3 .qa-question {
  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;
  padding: 30px 40px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-question {
    padding: 2.34vw 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-question {
    padding: 4.27vw;
  }
}
.section3 .qa-text {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
  color: #000000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 36px;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-text {
    font-size: 2.34vw;
    padding-right: 2.81vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-text {
    font-size: 5.33vw;
    padding-right: 2.67vw;
  }
}
.section3 .qa-arrow {
  width: 24px;
  min-width: 24px;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-arrow {
    width: 1.88vw;
    min-width: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-arrow {
    width: 8vw;
    min-width: 8vw;
  }
}
.section3 .qa-item.active .qa-arrow {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.section3 .qa-divider {
  margin: 0 40px;
  display: none;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-divider {
    margin: 0 3.13vw;
    margin-bottom: 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-divider {
    margin: 0 4.27vw;
    margin-bottom: 4.27vw;
  }
}
.section3 .qa-divider img {
  width: 100%;
  height: auto;
  display: block;
}
.section3 .qa-answer {
  display: none;
  padding: 0 40px 30px;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-answer {
    padding: 0 3.13vw 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-answer {
    padding: 0 4.27vw 4.27vw;
  }
}
.section3 ol li {
  color: #545454;
}
.section3 .qa-answer-highlight, .section3 li {
  font-size: 24px;
  line-height: 1.6em;
  color: #FF7A00;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-answer-highlight, .section3 li {
    font-size: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-answer-highlight, .section3 li {
    font-size: 4.8vw;
  }
}
.section3 .qa-answer-text {
  font-size: 24px;
  line-height: 1.6em;
  color: #545454;
  margin: 0;
}
.section3 .qa-answer-text.note {
  color: #5389C0;
  font-size: 18px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-answer-text {
    font-size: 1.88vw;
  }
  .section3 .qa-answer-text.note {
    font-size: 1.41vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-answer-text {
    font-size: 4.8vw;
  }
  .section3 .qa-answer-text.note {
    font-size: 3.73vw;
  }
}
.section3 .qa-answer-text a {
  color: #5389C0;
}
.section3 .qa-answer-cta {
  color: #545454;
  font-size: 24px;
  line-height: 1.6em;
  margin: 15px 0 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .section3 .qa-answer-cta {
    font-size: 1.88vw;
    margin-top: 1.17vw;
  }
}
@media screen and (max-width: 767px) {
  .section3 .qa-answer-cta {
    font-size: 4.8vw;
    margin-top: 2.67vw;
  }
}
.section3 .qa-answer-cta .qa-link {
  color: #016EB3;
  text-decoration: underline;
  cursor: pointer;
}
.section3 span.orange {
  color: #FF7A00;
}

section.form {
  position: relative;
  overflow: hidden;
  font-family: "Microsoft JhengHei", "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  background-image: url(../assets/section4/sec4-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2560px auto;
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form {
    background-size: 200vw auto;
    padding-top: 13.33vw;
    padding-bottom: 7.81vw;
  }
}
@media screen and (max-width: 767px) {
  section.form {
    background-size: cover;
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
    background-image: url(../assets/section4/sec4-bg-m.png);
    background-color: transparent;
    background-position: top center;
  }
}
section.form .center-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .center-box {
    padding: 0 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .center-box {
    padding: 0 4.27vw;
  }
}
section.form .form-title {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-title {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-title {
    margin-bottom: 6.67vw;
  }
}
section.form .form-title img.d {
  width: 762px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-title img.d {
    width: 59.53vw;
  }
}
section.form .form-title img.m {
  width: 90.88vw;
}
section.form .form-subtitle {
  font-family: "Microsoft JhengHei", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  color: #000000;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-subtitle {
    font-size: 1.88vw;
    line-height: 3vw;
    margin-bottom: 3.52vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-subtitle {
    font-size: 4.8vw;
    line-height: 7.68vw;
    margin-bottom: 5.33vw;
  }
}
section.form .form-subtitle .link-here {
  color: #016EB3;
  font-weight: 700;
  text-decoration: underline;
}
section.form .form-card {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 50px;
  padding: 60px 0;
  -webkit-box-shadow: 0 4px 40px rgba(98, 49, 12, 0.2);
          box-shadow: 0 4px 40px rgba(98, 49, 12, 0.2);
  position: relative;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-card {
    border-radius: 3.91vw;
    padding: 4.69vw 0;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-card {
    border-radius: 5.33vw;
    padding: 8vw 0;
  }
}
section.form .form-card::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 4px solid #CFE7FF;
  border-radius: 50px;
  pointer-events: none;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-card::after {
    top: 1.95vw;
    left: 1.95vw;
    right: 1.95vw;
    bottom: 1.95vw;
    border-width: 0.31vw;
    border-radius: 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-card::after {
    display: none;
  }
}
section.form form {
  max-width: 665px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section.form form {
    max-width: none;
    padding: 0 4.27vw;
  }
}
section.form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-row {
    margin-bottom: 2.34vw;
    gap: 1.17vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-row {
    margin-bottom: 5.87vw;
    gap: 2.13vw;
  }
}
section.form .form-row.sms-code-wrap {
  display: none;
}
section.form .form-row.sms-code-wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  section.form .form-row.field-captcha,
  section.form .form-row.field-mobile {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-row.field-captcha .form-label,
  section.form .form-row.field-mobile .form-label {
    padding-top: 1.07vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-row.field-mobile .form-label {
    padding-top: 3.47vw;
  }
}
section.form .form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  min-width: 170px;
  font-family: "Microsoft JhengHei", "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #27327B;
  line-height: 26px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-label {
    min-width: 13.28vw;
    font-size: 2.03vw;
    line-height: 2.03vw;
    gap: 1.17vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 21.33vw;
            flex: 0 0 21.33vw;
    min-width: auto;
    font-size: 5.33vw;
    line-height: 5.33vw;
  }
  section.form .form-label span.sp {
    line-height: 6.5vw;
  }
}
section.form .form-label .icon-required {
  width: 14px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-label .icon-required {
    width: 1.09vw;
  }
}
section.form .form-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.form .input-wrap {
  position: relative;
}
section.form .input-wrap input, section.form .input-wrap select {
  width: 100%;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  padding: 20px;
  font-family: "Microsoft JhengHei", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 24px;
  color: #333333;
  background-color: #FFFFFF;
}
section.form .input-wrap input::-webkit-input-placeholder, section.form .input-wrap select::-webkit-input-placeholder {
  color: #8A8A8A;
}
section.form .input-wrap input:-ms-input-placeholder, section.form .input-wrap select:-ms-input-placeholder {
  color: #8A8A8A !important;
}
section.form .input-wrap input::-moz-placeholder, section.form .input-wrap select::-moz-placeholder {
  color: #8A8A8A;
}
section.form .input-wrap input::-ms-input-placeholder, section.form .input-wrap select::-ms-input-placeholder {
  color: #8A8A8A;
}
section.form .input-wrap input::placeholder, section.form .input-wrap select::placeholder {
  color: #8A8A8A;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .input-wrap input, section.form .input-wrap select {
    border-radius: 0.78vw;
    padding: 1.56vw;
    font-size: 1.88vw;
    line-height: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .input-wrap input, section.form .input-wrap select {
    border-radius: 2.67vw;
    padding: 3.47vw 4.27vw;
    font-size: 5.33vw;
    line-height: 5.33vw;
    border: 0.27vw solid #DCDCDC;
  }
}
section.form .input-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
section.form .input-wrap select::-ms-expand {
  display: none;
}
section.form .input-wrap select {
  padding-right: 52px;
  color: #8A8A8A;
  cursor: pointer;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .input-wrap select {
    padding-right: 4.06vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .input-wrap select {
    padding-right: 10.67vw;
  }
}
section.form .input-wrap select.selected {
  color: #333333;
}
section.form .input-wrap .select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  pointer-events: none;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .input-wrap .select-arrow {
    right: 1.56vw;
    width: 1.72vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .input-wrap .select-arrow {
    right: 4.27vw;
    width: 5.87vw;
  }
}
section.form .captcha-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .captcha-row {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .captcha-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.67vw;
  }
}
section.form .captcha-row .input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  section.form .captcha-row .input-wrap {
    width: 100%;
  }
}
section.form .captcha-row .captcha-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .captcha-row .captcha-right {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .captcha-row .captcha-right {
    gap: 2.67vw;
  }
}
section.form .captcha-row #demoSounds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #6494C0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .captcha-row #demoSounds {
    width: 2.81vw;
    height: 2.81vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .captcha-row #demoSounds {
    width: 9.6vw;
    height: 9.6vw;
  }
}
section.form .captcha-row #demoSounds:hover {
  color: #3A6F9F;
}
section.form .captcha-row #demoSounds img {
  width: 100%;
  height: 100%;
}
section.form .captcha-row .captcha-img {
  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;
  gap: 5px;
  cursor: pointer;
  min-width: 161px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .captcha-row .captcha-img {
    gap: 0.39vw;
    min-width: 12.58vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .captcha-row .captcha-img {
    gap: 1.33vw;
    min-width: auto;
  }
}
section.form .captcha-row .captcha-img #captcha {
  width: 161px;
  height: 36px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .captcha-row .captcha-img #captcha {
    width: 12.58vw;
    height: 2.81vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .captcha-row .captcha-img #captcha {
    width: 42.93vw;
    height: 9.6vw;
  }
}
section.form .captcha-row .captcha-img #captcha img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.form .captcha-row .captcha-img .captcha-hint {
  font-family: "Microsoft JhengHei", "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 16px;
  color: #4F5156;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .captcha-row .captcha-img .captcha-hint {
    font-size: 1.25vw;
    line-height: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .captcha-row .captcha-img .captcha-hint {
    font-size: 4.27vw;
    line-height: 4.27vw;
  }
}
section.form .mobile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .mobile-row {
    gap: 0.78vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .mobile-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.67vw;
  }
}
section.form .mobile-row .input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  section.form .mobile-row .input-wrap {
    width: 100%;
  }
}
section.form .mobile-row .btn-sms {
  padding: 3px 5px;
  border: 1px solid #FF7A00;
  border-radius: 10px;
  background-color: rgba(255, 122, 0, 0.05);
  color: #FF7A00;
  font-family: "Microsoft JhengHei", "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  cursor: pointer;
  white-space: nowrap;
  width: 161px;
  min-width: 161px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .mobile-row .btn-sms {
    padding: 0.23vw 0.39vw;
    border-radius: 0.78vw;
    font-size: 1.56vw;
    line-height: 2.03vw;
    width: 12.58vw;
    min-width: 12.58vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .mobile-row .btn-sms {
    padding: 3.47vw 4.27vw;
    border-radius: 2.67vw;
    font-size: 5.33vw;
    line-height: 6.93vw;
    width: 100%;
    min-width: auto;
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
section.form .mobile-row .btn-sms:hover {
  background-color: rgba(255, 122, 0, 0.15);
}
section.form .mobile-row .btn-sms.disabled {
  background-color: #EAEAEA;
  border-color: #DCDCDC;
  color: #8A8A8A;
  cursor: default;
}
section.form .mobile-row .btn-sms.disabled:hover {
  background-color: #EAEAEA;
}
section.form .mobile-row .btn-sms.counting {
  background-color: #EAEAEA;
  border-color: #DCDCDC;
  color: #707070;
  cursor: default;
}
section.form .message {
  font-family: "Microsoft JhengHei", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  display: none;
  margin-top: 6px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .message {
    font-size: 1.09vw;
    line-height: 1.09vw;
    margin-top: 0.47vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .message {
    font-size: 3.73vw;
    line-height: 3.73vw;
    margin-top: 1.33vw;
  }
}
section.form .message.error {
  color: #FF3C11;
  font-size: 18px;
  line-height: 18px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .message.error {
    font-size: 1.41vw;
    line-height: 1.41vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .message.error {
    font-size: 3.73vw;
    line-height: 3.73vw;
  }
}
section.form .message.active {
  display: block;
}
section.form .form-check {
  margin: 60px 0 30px;
  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;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-check {
    margin: 4.69vw 0 2.34vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-check {
    margin: 5.33vw 0 5.33vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
section.form .form-check label.personalcheck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
section.form .form-check label.personalcheck input {
  display: none;
}
section.form .form-check label.personalcheck input:checked + .checkbox {
  background-color: #27327B;
  border-color: #27327B;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M6.5 12l-4-4 1.4-1.4 2.6 2.6 5.6-5.6L13.5 5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
@media screen and (max-width: 767px) {
  section.form .form-check label.personalcheck input:checked + .checkbox {
    background-size: 3.73vw;
  }
}
section.form .form-check label.personalcheck .checkbox {
  width: 24px;
  height: 24px;
  border: 1.5px solid #DCDCDC;
  border-radius: 4px;
  margin-right: 10px;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-check label.personalcheck .checkbox {
    width: 1.88vw;
    height: 1.88vw;
    border-radius: 0.31vw;
    margin-right: 0.78vw;
    border: 0.12vw solid #DCDCDC;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-check label.personalcheck .checkbox {
    width: 6.4vw;
    height: 6.4vw;
    border-radius: 1.07vw;
    margin-right: 2.67vw;
    border: 0.4vw solid #DCDCDC;
  }
}
section.form .form-check label.personalcheck .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.form .form-check label.personalcheck span {
  font-family: "Microsoft JhengHei", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: #333333;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-check label.personalcheck span {
    font-size: 1.88vw;
    line-height: 2.81vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-check label.personalcheck span {
    font-size: 5.33vw;
    line-height: 7.47vw;
  }
}
section.form .form-check label.personalcheck span.open-popup-privacy {
  color: #016EB3;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
}
section.form .form-check .message {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  section.form .form-check .message {
    margin-top: 2.13vw;
  }
}
section.form .form-submit {
  text-align: center;
}
section.form .form-submit .btn-submit {
  width: 204px;
  height: 63px;
  background: radial-gradient(circle at 50% 50%, #D20410 0%, #FB5C61 100%);
  color: #FFFFFF;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .form-submit .btn-submit {
    width: 15.94vw;
    height: 4.92vw;
    font-size: 2.03vw;
    line-height: 2.42vw;
    border-radius: 3.13vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .form-submit .btn-submit {
    width: auto;
    height: auto;
    padding: 4.27vw 13.33vw;
    font-size: 5.33vw;
    line-height: 6.4vw;
    border-radius: 10.67vw;
  }
}
section.form .form-submit .btn-submit:hover {
  opacity: 0.85;
}
section.form .has-error .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
section.form .has-error .message img.icon-alert {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  section.form .has-error .message img.icon-alert {
    width: 1.56vw;
    height: 1.56vw;
  }
}
@media screen and (max-width: 767px) {
  section.form .has-error .message img.icon-alert {
    width: 4.27vw;
    height: 4.27vw;
  }
}
section.form .has-error input, section.form .has-error select {
  border-color: #FF3C11;
  background-color: rgba(232, 90, 90, 0.05);
}
section.form .form-check.has-error label .checkbox {
  border-color: #FF3C11;
  background-color: rgba(232, 90, 90, 0.05);
}
section.form img.fig {
  position: absolute;
  bottom: -90px;
  left: calc(50% - 600px);
  width: 336px;
}
@media screen and (max-width: 1023px) {
  section.form img.fig {
    display: none;
  }
}

.popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.6);
  z-index: 20;
  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;
  padding: 0 20px;
  -webkit-transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 100ms cubic-bezier(0.68, 0, 0.265, 1);
}
.popup-wrap.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .popup-wrap {
    padding: 0 5.33vw;
  }
}
.popup-wrap .popup-content {
  background-color: #FFFFFF;
  border-radius: 50px;
  width: 400px;
  max-width: 100%;
  position: relative;
  padding: 40px 50px;
  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;
  gap: 10px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap .popup-content {
    border-radius: 3.91vw;
    width: 31.25vw;
    padding: 3.13vw 3.91vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap .popup-content {
    border-radius: 8vw;
    width: 100%;
    padding: 8vw 6.4vw;
    gap: 2.67vw;
  }
}
.popup-wrap .close-popup {
  width: 50px;
  position: absolute;
  top: -5px;
  right: -5px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap .close-popup {
    width: 3.91vw;
    top: -0.39vw;
    right: -0.39vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap .close-popup {
    width: 11.73vw;
    top: -1.33vw;
    right: -1.33vw;
  }
}
.popup-wrap .popup-icon {
  margin-bottom: 5px;
}
.popup-wrap .popup-icon img {
  width: 70px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap .popup-icon img {
    width: 5.47vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap .popup-icon img {
    width: 16vw;
  }
}
.popup-wrap .popup-text {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #000000;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap .popup-text {
    font-size: 1.88vw;
    line-height: 2.66vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap .popup-text {
    font-size: 4.8vw;
    line-height: 9.07vw;
  }
}
.popup-wrap .popup-subtext {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  color: #545454;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap .popup-subtext {
    font-size: 1.41vw;
    line-height: 2.27vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap .popup-subtext {
    font-size: 4vw;
    line-height: 7.73vw;
  }
}
.popup-wrap.popup-privacy .popup-content {
  width: 800px;
  border-radius: 20px;
  height: calc(100vh - 200px);
  max-height: 700px;
  padding: 48px 20px 48px 48px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap.popup-privacy .popup-content {
    width: 62.5vw;
    border-radius: 1.56vw;
    padding: 3.75vw 1.56vw 3.75vw 3.75vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .popup-content {
    width: 100%;
    border-radius: 5.33vw;
    height: calc(100vh - 26.67vw);
    max-height: none;
    padding: 8vw 2.67vw 8vw 5.33vw;
  }
}
.popup-wrap.popup-privacy .popup-title {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #27327B;
  text-align: center;
  margin: 0 0 30px;
  padding-right: 28px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap.popup-privacy .popup-title {
    font-size: 2.03vw;
    margin-bottom: 2.34vw;
    padding-right: 2.19vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .popup-title {
    font-size: 4.8vw;
    margin-bottom: 5.33vw;
    padding-right: 2.67vw;
    text-align: left;
  }
}
.popup-wrap.popup-privacy .scroll-content {
  overflow-y: auto;
  padding-right: 28px;
}
.popup-wrap.popup-privacy .scroll-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.popup-wrap.popup-privacy .scroll-content::-webkit-scrollbar-thumb {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #C4C4C4;
}
.popup-wrap.popup-privacy .scroll-content::-webkit-scrollbar-track {
  background-color: #F2F2F2;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .scroll-content {
    padding-right: 2.67vw;
  }
  .popup-wrap.popup-privacy .scroll-content::-webkit-scrollbar {
    width: 1.33vw;
    height: 1.33vw;
  }
  .popup-wrap.popup-privacy .scroll-content::-webkit-scrollbar-thumb {
    width: 1.33vw;
    height: 1.33vw;
    border-radius: 0.8vw;
    background-color: #C4C4C4;
  }
  .popup-wrap.popup-privacy .scroll-content::-webkit-scrollbar-track {
    background-color: #F2F2F2;
    border-radius: 0.8vw;
  }
}
.popup-wrap.popup-privacy .scroll-content p, .popup-wrap.popup-privacy .scroll-content li {
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin: 0 0 8px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap.popup-privacy .scroll-content p, .popup-wrap.popup-privacy .scroll-content li {
    font-size: 1.41vw;
    line-height: 2.5vw;
    margin-bottom: 0.63vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .scroll-content p, .popup-wrap.popup-privacy .scroll-content li {
    font-size: 3.73vw;
    line-height: 8.53vw;
    margin-bottom: 1.33vw;
  }
}
.popup-wrap.popup-privacy .scroll-content p:last-child, .popup-wrap.popup-privacy .scroll-content li:last-child {
  margin-bottom: 0;
}
.popup-wrap.popup-privacy .scroll-content p {
  margin-bottom: 16px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap.popup-privacy .scroll-content p {
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .scroll-content p {
    margin-bottom: 2.67vw;
  }
}
.popup-wrap.popup-privacy .scroll-content ul, .popup-wrap.popup-privacy .scroll-content ol {
  margin: 0 0 12px;
  padding-left: 24px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap.popup-privacy .scroll-content ul, .popup-wrap.popup-privacy .scroll-content ol {
    margin-bottom: 0.94vw;
    padding-left: 1.88vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .scroll-content ul, .popup-wrap.popup-privacy .scroll-content ol {
    margin-bottom: 2.13vw;
    padding-left: 5.33vw;
  }
}
.popup-wrap.popup-privacy .scroll-content ul:last-child, .popup-wrap.popup-privacy .scroll-content ol:last-child {
  margin-bottom: 0;
}
.popup-wrap.popup-privacy .scroll-content ul {
  list-style-type: disc;
}
.popup-wrap.popup-privacy .scroll-content > ul > li {
  margin-bottom: 12px;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .popup-wrap.popup-privacy .scroll-content > ul > li {
    margin-bottom: 0.94vw;
  }
}
@media screen and (max-width: 767px) {
  .popup-wrap.popup-privacy .scroll-content > ul > li {
    margin-bottom: 2.13vw;
  }
}
.popup-wrap span.red {
  color: #FB1926;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 50px;
  z-index: 9;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .floating-cta {
    right: 1.88vw;
    bottom: 3.91vw;
  }
}
.floating-cta.hide {
  opacity: 0;
  visibility: hidden;
}
.floating-cta .floating-btn {
  display: block;
}
.floating-cta .floating-btn img.default {
  width: 87px;
  display: block;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .floating-cta .floating-btn img.default {
    width: 6.8vw;
  }
}
.floating-cta .floating-btn img.hover {
  width: 87px;
  display: none;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .floating-cta .floating-btn img.hover {
    width: 6.8vw;
  }
}
.floating-cta .floating-btn:hover img.default {
  display: none;
}
.floating-cta .floating-btn:hover img.hover {
  display: block;
}

.floating-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
  transition: all 300ms cubic-bezier(0.68, 0, 0.265, 1);
}
.floating-mobile.hide {
  opacity: 0;
  visibility: hidden;
}
.floating-mobile .floating-mobile-btn {
  display: block;
  text-decoration: none;
  position: relative;
}
.floating-mobile .floating-mobile-btn img {
  width: 100%;
  display: block;
}
.floating-mobile .floating-mobile-btn .blink-wrap {
  position: absolute;
  width: 20vw;
  right: 20.27vw;
  bottom: -5vw;
}
.floating-mobile .floating-mobile-btn .blink-wrap .blink-placeholder {
  display: block;
  width: 100%;
}
.floating-mobile .floating-mobile-btn .blink-wrap .blink {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

section.success {
  position: relative;
  min-height: 748px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F8F8F8;
  overflow: hidden;
  padding: 80px 40px;
}
section.success .success-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/success/success-bg-d.png") center center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}
section.success .success-card {
  position: relative;
  width: 800px;
  height: 376px;
  background: url("../assets/success/success-card-bg-d.png") center center/100% 100% no-repeat;
  border-radius: 50px;
  -webkit-box-shadow: 0px 4px 40px 0px rgba(70, 70, 70, 0.2);
          box-shadow: 0px 4px 40px 0px rgba(70, 70, 70, 0.2);
  padding: 110px 280px 70px 40px;
  z-index: 1;
}
section.success .success-body {
  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;
  gap: 29px;
  z-index: 1;
}
section.success .success-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;
  gap: 20px;
  width: 100%;
}
section.success .success-title {
  margin: 0;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: #000000;
}
section.success .success-desc {
  margin: 0;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
  color: #545454;
}
section.success .btn-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 204px;
  height: 63px;
  background: radial-gradient(circle at 50% 50%, #D20410, #FB5A61);
  border-radius: 40px;
  font-family: "GenSenRounded TW", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
section.success .btn-back:hover {
  opacity: 0.85;
}

@media (max-width: 1280px) {
  section.success {
    min-height: 58.44vw;
    padding: 6.25vw 3.13vw;
  }
  section.success .success-card {
    width: 62.5vw;
    height: 29.38vw;
    border-radius: 3.91vw;
    padding: 8.47vw 21.88vw 5.47vw 3.13vw;
  }
  section.success .success-body {
    gap: 2.27vw;
  }
  section.success .success-text {
    gap: 1.56vw;
  }
  section.success .success-title {
    font-size: 3.13vw;
  }
  section.success .success-desc {
    font-size: 2.34vw;
  }
  section.success .btn-back {
    width: 15.94vw;
    height: 4.92vw;
    border-radius: 3.13vw;
    font-size: 2.03vw;
  }
}
@media (max-width: 767px) {
  section.success {
    min-height: 147.2vw;
    padding: 13.33vw 5.33vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  section.success .success-bg {
    background-image: url("../assets/success/success-bg-m.png");
  }
  section.success .success-card {
    width: 91.47vw;
    height: 69.07vw;
    border-radius: 5.33vw;
    padding: 18.67vw 0vw 10.67vw 9.33vw;
    background-image: url("../assets/success/success-card-bg-m.png");
  }
  section.success .success-body {
    gap: 2.67vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  section.success .success-text {
    gap: 2.67vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  section.success .success-title {
    font-size: 7.47vw;
    text-align: left;
  }
  section.success .success-desc {
    font-size: 4.8vw;
    text-align: left;
  }
  section.success .btn-back {
    width: 39.73vw;
    height: 14.93vw;
    padding: 0;
    border-radius: 10.67vw;
    font-size: 5.33vw;
  }
}
body[data-page-id=thanks] .footer-disclosure {
  display: none;
}