@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block; }

body {
  line-height: 1; }

ol,
ul,
li,
a {
  list-style: none; }

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent; }

* {
  -webkit-tap-highlight-color: transparent; }

button {
  -webkit-appearance: none;
  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none;
  /* FireFox */
  appearance: none; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  /* for Chrome Firefox Edge */ }

select::-ms-expand {
  display: none;
  /* for IE11 */ }

textarea {
  -webkit-appearance: none; }

input,
button {
  border-radius: 0; }

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus,
summary:focus {
  outline: 0; }

@font-face {
  font-family: "GenSenRounded-B";
  src: url("../font/GenSenRoundedTW-B.ttf") format("truetype"); }

.rounded-B {
  font-family: "GenSenRounded-B"; }

/*
.container {
  @include container;
}

.row {
  @include grid-row;
}

.col-4 {
  @include grid-column(4, 12);
}

.col-6 {
  @include grid-column(6, 12);
}

.col-12 {
  @include grid-column(12, 12);
}
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  line-height: 1.5;
  overflow-x: hidden;
  color: #fff;
  background-color: #000; }

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px; }

a {
  color: #CEB071;
  text-decoration: none;
  cursor: pointer; }
  a:hover {
    text-decoration: none; }

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom; }

.fc_white {
  color: white !important; }

.hidden {
  display: none !important; }

.txt-title {
  position: absolute;
  text-indent: -9999px;
  top: 0;
  left: 0;
  overflow: hidden; }

.task-web {
  display: block; }
  @media (max-width: 768px) {
    .task-web {
      display: none; } }

.fwb {
  font-weight: bold; }

.mark {
  color: #CEB071; }

ol.disc {
  padding-left: 2em; }
  ol.disc > li {
    list-style: disc; }

ol.decimal {
  padding-left: 3.3em; }
  ol.decimal > li {
    list-style: decimal; }

ol.square {
  margin-left: 1em; }
  ol.square > li {
    list-style: square; }

ol.decimal1em {
  margin-left: 1em; }
  ol.decimal1em > li {
    list-style: decimal; }

ol.decimal-arc {
  /*更新*/
  counter-reset: counter;
  position: relative;
  padding-left: 1.6em; }
  ol.decimal-arc > li:before {
    counter-increment: counter;
    content: "(" counter(counter) ")";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    text-indent: -2em;
    text-align: right;
    margin-left: -0.2em; }
  ol.decimal-arc > span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-indent: -1em;
    padding-left: 1em; }

ol.lower-alpha {
  /*更新*/
  padding-left: 1.2em; }
  ol.lower-alpha > li {
    list-style: lower-alpha; }

ol.cjk-ideographic {
  margin-left: 2em; }
  ol.cjk-ideographic > li {
    list-style: cjk-ideographic; }

ol .cjk-ideographic-arc {
  counter-reset: cjk;
  list-style: none;
  padding-left: 0; }
  ol .cjk-ideographic-arc > li {
    counter-increment: cjk;
    position: relative;
    padding-left: 2em; }
    ol .cjk-ideographic-arc > li::before {
      content: "(" counter(cjk, cjk-ideographic) ")";
      position: absolute;
      left: 0; }

@-webkit-keyframes float {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px); } }

@keyframes float {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px); } }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px); }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes floatShadow {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); } }

@keyframes floatShadow {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); } }

@-webkit-keyframes mouseScroll {
  0% {
    opacity: 0; }
  50% {
    opacity: 1;
    -webkit-transform: translateY(130%);
    transform: translateY(130%); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(130%);
    transform: translateY(130%); } }

@keyframes mouseScroll {
  0% {
    opacity: 0; }
  50% {
    opacity: 1;
    -webkit-transform: translateY(130%);
    transform: translateY(130%); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(130%);
    transform: translateY(130%); } }

@-webkit-keyframes progressLine {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@keyframes progressLine {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@-webkit-keyframes zoomPop {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  60% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes zoomPop {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0; }
  60% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes flyOut {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  80% {
    -webkit-transform: translate(19px, -19px);
    transform: translate(19px, -19px);
    opacity: 0.65; }
  100% {
    -webkit-transform: translate(24px, -24px);
    transform: translate(24px, -24px);
    opacity: 0; } }

@keyframes flyOut {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  80% {
    -webkit-transform: translate(19px, -19px);
    transform: translate(19px, -19px);
    opacity: 0.65; }
  100% {
    -webkit-transform: translate(24px, -24px);
    transform: translate(24px, -24px);
    opacity: 0; } }

@-webkit-keyframes flyIn {
  0% {
    -webkit-transform: translate(-24px, 24px);
    transform: translate(-24px, 24px);
    opacity: 0; }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes flyIn {
  0% {
    -webkit-transform: translate(-24px, 24px);
    transform: translate(-24px, 24px);
    opacity: 0; }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }

@-webkit-keyframes flyRight {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  80% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
    opacity: 0.3; }
  100% {
    -webkit-transform: translate(40px, 0);
    transform: translate(40px, 0);
    opacity: 0; } }

@keyframes flyRight {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  80% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
    opacity: 0.3; }
  100% {
    -webkit-transform: translate(40px, 0);
    transform: translate(40px, 0);
    opacity: 0; } }

@-webkit-keyframes flyFromLeft {
  0% {
    -webkit-transform: translate(-40px, 0);
    transform: translate(-40px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes flyFromLeft {
  0% {
    -webkit-transform: translate(-40px, 0);
    transform: translate(-40px, 0);
    opacity: 0; }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }

@-webkit-keyframes shine-move-text {
  0% {
    background-position: 150% 0; }
  100% {
    background-position: -150% 0; } }

@keyframes shine-move-text {
  0% {
    background-position: 150% 0; }
  100% {
    background-position: -150% 0; } }

@-webkit-keyframes spark-shine {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5; }
  40% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 1; }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 1; }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5; } }

@keyframes spark-shine {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5; }
  40% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 1; }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 1; }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5; } }

@-webkit-keyframes copyHintFade {
  0% {
    opacity: 1; }
  70% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes copyHintFade {
  0% {
    opacity: 1; }
  70% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes glowPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8; }
  50% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8; } }

@keyframes glowPulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8; }
  50% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8; } }

.js-animate {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .js-animate--fadein {
    opacity: 0; }
  .js-animate--fadein-up {
    opacity: 0;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px); }
  .js-animate--fadein-down {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px); }
    @media (min-width: 769px) {
      .js-animate--fadein-down-max {
        opacity: 0;
        -webkit-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        transform: translate(0, 50px); } }
    @media (max-width: 768px) {
      .js-animate--fadein-down-min {
        opacity: 0;
        -webkit-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        transform: translate(0, 50px); } }
  .js-animate--fadein-left {
    opacity: 0;
    -webkit-transform: translate(-50px, 0);
    -ms-transform: translate(-50px, 0);
    transform: translate(-50px, 0); }
  .js-animate--fadein-right {
    opacity: 0;
    -webkit-transform: translate(50px, 0);
    -ms-transform: translate(50px, 0);
    transform: translate(50px, 0); }
  .js-animate--maskin-left {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); }
  .js-animate--maskin-right {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  .js-animate--maskin-up {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
  .js-animate--maskin-down {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
  .js-animate--darkin {
    -webkit-filter: brightness(65%);
    filter: brightness(65%); }
  .js-animate--smallin {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  .js-animate--active {
    opacity: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    -webkit-transition: all 1000ms;
    -o-transition: all 1000ms;
    transition: all 1000ms; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .js-animate--active {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none; } }
    @supports not ((-webkit-transform: unset) or (transform: unset)) {
      .js-animate--active {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none; } }
    .js-animate--active[class*="--maskin"] {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .js-animate--active[class*="--darkin"] {
      -webkit-filter: brightness(1);
      filter: brightness(1); }
    .js-animate--active.js-animate--path {
      stroke-dashoffset: 0px !important; }
  .js-animate--delay100 {
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms; }
  .js-animate--delay200 {
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms; }
  .js-animate--delay300 {
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms; }
  .js-animate--delay400 {
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms; }
  .js-animate--delay500 {
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms; }
  .js-animate--delay600 {
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms; }
  .js-animate--delay700 {
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms; }
  .js-animate--delay800 {
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms; }
  .js-animate--delay900 {
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms; }
  .js-animate--delay1000 {
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms; }

.lightbox {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  text-align: center;
  padding: 20px; }
  @media (max-width: 768px) {
    .lightbox {
      padding: 16px; } }
  .lightbox--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeIn 0.4s;
    animation: fadeIn 0.4s;
    overflow: hidden;
    z-index: 1000; }
  .lightbox__container {
    background: #fff;
    border-radius: 30px;
    height: 100%;
    max-height: 720px;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 24px;
    position: relative; }
    @media (max-width: 768px) {
      .lightbox__container {
        max-height: none;
        padding: 8px; } }
  .lightbox__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%; }
    .lightbox__content-heading {
      color: #000;
      font-size: 32px;
      font-weight: 900;
      text-align: left;
      margin-top: 26px;
      margin-left: 30px; }
      @media (max-width: 768px) {
        .lightbox__content-heading {
          font-size: 6.66667vw;
          text-align: center;
          margin-left: 0;
          margin-top: 12.30769vw; } }
    .lightbox__content-inner {
      overflow-y: auto;
      padding-top: 40px;
      padding-bottom: 40px; }
      @media (max-width: 768px) {
        .lightbox__content-inner {
          padding-top: 6.15385vw;
          padding-bottom: 0; } }
  .lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    width: 32px;
    aspect-ratio: 1 / 1;
    z-index: 1001; }
    @media (max-width: 768px) {
      .lightbox__close {
        width: 7.17949vw; } }
    .lightbox__close img {
      width: 100%;
      height: 100%; }

.lightbox#eventsEnd,
.lightbox#externalLink {
  color: #000; }
  .lightbox#eventsEnd .lightbox__container,
  .lightbox#externalLink .lightbox__container {
    border-radius: 15px;
    height: auto;
    width: 95%;
    max-width: 440px;
    max-height: none;
    padding: 32px 28px; }
  .lightbox#eventsEnd .lightbox__content-title,
  .lightbox#externalLink .lightbox__content-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center; }
  .lightbox#eventsEnd .lightbox__content-box,
  .lightbox#externalLink .lightbox__content-box {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    padding: 1rem 0 1.5rem; }
  .lightbox#eventsEnd .lightbox__act-btn,
  .lightbox#externalLink .lightbox__act-btn {
    background: #fff;
    border: 1px solid #cd9b1d;
    border-radius: 42.5px;
    color: #cd9b1d;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    min-width: 120px;
    padding: 10px 32px;
    text-align: center; }
    .lightbox#eventsEnd .lightbox__act-btn:hover,
    .lightbox#externalLink .lightbox__act-btn:hover {
      background: #8d6500;
      color: #fff;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .lightbox#eventsEnd .lightbox__act-btn.primary,
    .lightbox#externalLink .lightbox__act-btn.primary {
      background: #cd9b1d;
      color: #fff;
      border: none; }
      .lightbox#eventsEnd .lightbox__act-btn.primary:hover,
      .lightbox#externalLink .lightbox__act-btn.primary:hover {
        background: #8d6500;
        color: #fff;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
  .lightbox#eventsEnd .lightbox__close,
  .lightbox#externalLink .lightbox__close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 99999; }
    .lightbox#eventsEnd .lightbox__close::before, .lightbox#eventsEnd .lightbox__close::after,
    .lightbox#externalLink .lightbox__close::before,
    .lightbox#externalLink .lightbox__close::after {
      content: "";
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      width: 50%;
      height: 3px;
      background: #cd9b1d;
      border-radius: 10px;
      -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg); }
    .lightbox#eventsEnd .lightbox__close::after,
    .lightbox#externalLink .lightbox__close::after {
      -webkit-transform: translateX(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) rotate(-45deg);
      transform: translateX(-50%) rotate(-45deg); }
    .lightbox#eventsEnd .lightbox__close a,
    .lightbox#externalLink .lightbox__close a {
      display: block;
      width: 100%;
      height: 100%; }
  .lightbox#eventsEnd .lightbox__footer,
  .lightbox#externalLink .lightbox__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px; }

.fMgmList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }
  @media (max-width: 1279px) {
    .fMgmList {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .fMgmList::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 60px;
    right: 40px;
    height: 3px;
    background-color: #38C9EF;
    z-index: 0; }
    @media (max-width: 1279px) {
      .fMgmList::after {
        display: none; } }
  .fMgmList .fMgmList-item {
    padding: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    z-index: 1; }
    @media (max-width: 768px) {
      .fMgmList .fMgmList-item {
        max-width: none; } }
    .fMgmList .fMgmList-item__title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 20px;
      position: relative; }
      .fMgmList .fMgmList-item__title-num {
        background: #38C9EF;
        border-radius: 999px;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        line-height: 1;
        width: 56px;
        height: 56px;
        display: -ms-grid;
        display: grid;
        place-items: center;
        position: absolute; }
        @media (max-width: 768px) {
          .fMgmList .fMgmList-item__title-num {
            width: 18.46154vw;
            height: 18.46154vw;
            font-size: 10.76923vw; } }
      .fMgmList .fMgmList-item__title-text {
        color: #000;
        background: #fff;
        border: 3px solid #38C9EF;
        font-size: 18px;
        font-weight: bold;
        margin-left: 26px;
        padding: 8px;
        width: 100%; }
        @media (max-width: 768px) {
          .fMgmList .fMgmList-item__title-text {
            border: 4px solid #38C9EF;
            font-size: 6.15385vw;
            margin-left: 6.66667vw;
            padding: 3.07692vw; } }
    .fMgmList .fMgmList-item:first-child .fMgmList-item__title-text {
      padding-left: 26px; }
      @media (max-width: 768px) {
        .fMgmList .fMgmList-item:first-child .fMgmList-item__title-text {
          padding-left: 6.66667vw; } }
    .fMgmList .fMgmList-item img {
      width: 90%;
      height: auto;
      margin: 0 auto; }

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  background: #ffffff;
  inset: 0;
  will-change: opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

.loader {
  position: fixed;
  z-index: 1003;
  top: 50%;
  margin-top: -115px;
  left: 50%;
  margin-left: -86.5px;
  will-change: opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

.dawho-logo {
  width: 173px;
  height: 177px; }
  .dawho-logo img {
    width: 173px;
    height: 177px; }

.loading {
  position: relative;
  margin-top: -60px; }
  .loading img {
    width: 173px;
    height: 173px; }

.sinopac-logo {
  width: 173px;
  margin-bottom: 20px; }
  .sinopac-logo img {
    width: 100%; }

.loading {
  position: relative;
  margin-top: -60px; }
  .loading img {
    width: 173px;
    height: 173px; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  -o-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  background-color: #181818;
  border-bottom: 1px solid #CEB071; }
  @media (max-width: 768px) {
    .header {
      padding: 0; } }
  .header::after {
    content: '';
    position: fixed;
    top: calc(60px + 1px);
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
    -o-transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
    z-index: -1;
    pointer-events: none; }
    @media (max-width: 768px) {
      .header::after {
        display: block; } }
  @media (max-width: 768px) {
    .header.is-menu-open::after {
      opacity: 1;
      visibility: visible;
      pointer-events: auto; } }
  @media (max-width: 768px) {
    .header.is-menu-open .header__nav {
      max-height: 500px;
      opacity: 1;
      visibility: visible; } }
  @media (max-width: 768px) {
    .header.is-menu-open .header__nav-item,
    .header.is-menu-open .header__cta {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1; } }
  .header.is-menu-open .header__hamburger-line {
    background: transparent; }
    .header.is-menu-open .header__hamburger-line::before {
      width: 24px;
      top: 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .header.is-menu-open .header__hamburger-line::after {
      width: 24px;
      bottom: 0;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  .header__wrapper {
    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: 10px 36px;
    position: relative;
    z-index: 1;
    max-width: 1420px;
    margin: auto; }
    @media (max-width: 1279px) {
      .header__wrapper {
        padding: 0.78186vw 2.8147vw; } }
    @media (max-width: 768px) {
      .header__wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 12px;
        height: 60px; } }
  .header__logo {
    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;
    max-width: 182px;
    width: 100%;
    position: relative;
    z-index: 2; }
    @media (max-width: 1279px) {
      .header__logo {
        max-width: 14.22987vw; } }
    @media (max-width: 1279px) {
      .header__logo {
        max-width: 137px; } }
    .header__logo-img {
      display: block; }
      @media (max-width: 768px) {
        .header__logo-img {
          height: 36px; } }
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto; }
    @media (max-width: 768px) {
      .header__nav {
        position: fixed;
        top: calc(60px + 1px);
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        -webkit-transition: 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        -o-transition: 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        transition: 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        z-index: 1; }
        .header__nav.toggled {
          content: '';
          position: absolute;
          width: 100%;
          height: 100vh;
          top: 0;
          left: 0;
          background-color: rgba(0, 0, 0, 0.6); } }
    .header__nav-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none; }
      @media (max-width: 768px) {
        .header__nav-list {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          gap: 28px;
          width: 100%;
          padding: 32px 20px 40px;
          background: #181818;
          height: auto; } }
    @media (max-width: 768px) {
      .header__nav-item {
        width: 100%;
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0;
        -webkit-transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        -o-transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin: auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative; }
        .header__nav-item:nth-child(1) {
          -webkit-transition-delay: 0.1s;
          -o-transition-delay: 0.1s;
          transition-delay: 0.1s; }
        .header__nav-item:nth-child(2) {
          -webkit-transition-delay: 0.15s;
          -o-transition-delay: 0.15s;
          transition-delay: 0.15s; }
        .header__nav-item:nth-child(3) {
          -webkit-transition-delay: 0.2s;
          -o-transition-delay: 0.2s;
          transition-delay: 0.2s; }
        .header__nav-item:nth-child(4) {
          -webkit-transition-delay: 0.25s;
          -o-transition-delay: 0.25s;
          transition-delay: 0.25s; }
        .header__nav-item:nth-child(5) {
          -webkit-transition-delay: 0.3s;
          -o-transition-delay: 0.3s;
          transition-delay: 0.3s; } }
    .header__nav-link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 14px 28px;
      color: #CEB071;
      font-size: 21.33px;
      -webkit-transition: all 450ms;
      -o-transition: all 450ms;
      transition: all 450ms;
      -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
      -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
      transition-timing-function: cubic-bezier(0.22, 0.61, 0.35, 1);
      text-decoration: none;
      white-space: nowrap;
      position: relative; }
      @media (max-width: 1279px) {
        .header__nav-link {
          padding: 1.09461vw 2.50195vw;
          font-size: 1.87647vw; } }
      .header__nav-link::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        margin: auto;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        color: #fff;
        width: 0px;
        height: 4px;
        background-color: #CEB071; }
      .header__nav-link:hover::after {
        width: 100%; }
        @media (max-width: 1279px) {
          .header__nav-link:hover::after {
            width: 0; } }
      @media (max-width: 1279px) {
        .header__nav-link {
          padding: 14px 2.11102vw; } }
      @media (max-width: 768px) {
        .header__nav-link {
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          padding: 0;
          width: 100%;
          font-family: "Noto Sans TC", Helvetica, Arial, sans-serif;
          font-size: 20px;
          font-weight: 400;
          line-height: 1.4;
          letter-spacing: 0.8px; } }
      @media (max-width: 768px) {
        .header__nav-link:hover, .header__nav-link.is-active {
          background: transparent; } }
      .header__nav-link.is-disabled {
        color: #a3a3a3;
        pointer-events: none;
        cursor: not-allowed; }
  .header__cta {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .header__cta-btn {
      position: relative;
      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;
      max-width: 213px;
      padding: 10px 36px;
      border-radius: 100px;
      border: 1px solid #CEB071;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      -webkit-transition: all 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
      -o-transition: all 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
      transition: all 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
      z-index: 1;
      overflow: hidden;
      font-weight: 500;
      font-size: 21px;
      line-height: 1.4;
      letter-spacing: 0.02em;
      color: #CEB071; }
      @media (max-width: 1279px) {
        .header__cta-btn {
          padding: 0.93823vw 1.87647vw;
          font-size: 1.64191vw;
          border-radius: 7.81861vw; } }
      @media (max-width: 768px) {
        .header__cta-btn {
          margin: 0 auto;
          padding: 12px 32px;
          font-family: "Noto Sans TC", Helvetica, Arial, sans-serif;
          font-size: 20px;
          font-weight: 500;
          line-height: 1.4;
          letter-spacing: 0.8px; } }
  @media (max-width: 768px) and (max-width: 1279px) {
    .header__cta-btn {
      padding: vw390(12px) vw390(32px); } }
      .header__cta-btn span {
        letter-spacing: 0;
        line-height: 1.6; }
      .header__cta-btn::before {
        position: absolute;
        top: -40%;
        right: 110%;
        -webkit-transform: rotate(17deg);
        -ms-transform: rotate(17deg);
        transform: rotate(17deg);
        background: -webkit-gradient(linear, left top, right top, from(rgba(253, 249, 199, 0)), color-stop(50%, rgba(253, 249, 199, 0.5)), color-stop(55%, rgba(253, 249, 199, 0.5)), to(rgba(253, 249, 199, 0)));
        background: -webkit-linear-gradient(left, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
        background: -o-linear-gradient(left, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
        background: linear-gradient(to right, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
        width: 60%;
        height: 200%;
        content: "";
        -webkit-animation: shine-move 2s infinite linear;
        animation: shine-move 2s infinite linear; }
      .header__cta-btn .arrow {
        margin-left: 3px;
        max-width: 32px;
        width: 100%; }
        @media (max-width: 1279px) {
          .header__cta-btn .arrow {
            max-width: 2.50195vw; } }
        @media (max-width: 768px) {
          .header__cta-btn .arrow {
            display: none; } }
      .header__cta-btn:hover, .header__cta-btn:active {
        -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
        transform: translateY(3px); }
        @media (max-width: 768px) {
          .header__cta-btn:hover, .header__cta-btn:active {
            -webkit-transform: translateY(6px);
            -ms-transform: translateY(6px);
            transform: translateY(6px); } }
  .header__menu-toggle {
    position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    left: 8px;
    top: 50%;
    padding: 8px;
    border: none;
    cursor: pointer;
    z-index: 1001;
    -webkit-transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
    -o-transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent; }
    @media (max-width: 768px) {
      .header__menu-toggle {
        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; } }
  .header__hamburger {
    position: relative;
    width: 30px;
    height: 100%;
    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; }
    .header__hamburger-line {
      position: absolute;
      width: 24px;
      height: 2px;
      background: #CEB071;
      -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
      .header__hamburger-line::before, .header__hamburger-line::after {
        content: '';
        position: absolute;
        background: #CEB071;
        height: 2px;
        -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
      .header__hamburger-line::before {
        width: 24px;
        top: -7px;
        left: 0; }
      .header__hamburger-line::after {
        width: 24px;
        bottom: -7px;
        left: 0; }

.cta-btn {
  margin-left: 22px;
  margin-right: 22px; }
  @media (max-width: 768px) {
    .cta-btn {
      margin-top: 12px; } }

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden; } }

@-webkit-keyframes shine-move {
  0% {
    right: 110%; }
  40%,
  100% {
    right: -65%; } }

@keyframes shine-move {
  0% {
    right: 110%; }
  40%,
  100% {
    right: -65%; } }

.fc_white {
  color: white !important; }

#footer {
  font-family: "Noto Sans TC";
  font-weight: 400;
  padding: 64px 0;
  background-color: #111111;
  line-height: 1; }
  @media (max-width: 1279px) {
    #footer {
      padding: 50px 0 80px; } }
  @media (max-width: 768px) {
    #footer {
      padding-bottom: 100px;
      overflow: hidden; } }
  #footer.hasfooterNotice {
    padding: 32px 0 64px 0; }
    @media (max-width: 1279px) {
      #footer.hasfooterNotice {
        padding: 20px 0 80px; } }
    @media (max-width: 768px) {
      #footer.hasfooterNotice {
        padding-bottom: 100px;
        overflow: hidden; } }
  #footer .footerNotice {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    padding: 0 2em 3em 3em;
    text-align: justify; }
  #footer .top-wrap {
    margin: 0 auto 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    @media (max-width: 1279px) {
      #footer .top-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 680px; } }
    @media (max-width: 768px) {
      #footer .top-wrap {
        width: 320px; } }
    @media (max-width: 320px) {
      #footer .top-wrap {
        max-width: 320px;
        margin: 0 20px; } }
    #footer .top-wrap .logo {
      width: 137px;
      margin-right: 60px; }
      @media (max-width: 1279px) {
        #footer .top-wrap .logo {
          margin-right: 0;
          margin-bottom: 65px; } }
    #footer .top-wrap .list-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #fff; }
      @media (max-width: 768px) {
        #footer .top-wrap .list-wrap {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
      #footer .top-wrap .list-wrap ul {
        margin-right: 80px; }
        @media (max-width: 1279px) {
          #footer .top-wrap .list-wrap ul {
            margin-right: 60px; } }
        @media (max-width: 768px) {
          #footer .top-wrap .list-wrap ul {
            margin-right: 0;
            width: 50%; } }
        @media (max-width: 768px) {
          #footer .top-wrap .list-wrap ul:first-of-type {
            margin-bottom: 50px; } }
        #footer .top-wrap .list-wrap ul:last-of-type {
          margin-right: 0; }
        #footer .top-wrap .list-wrap ul li.title {
          font-size: 16px;
          font-weight: bold;
          margin-bottom: 20px;
          font-family: "Noto Sans TC";
          font-weight: 700; }
        #footer .top-wrap .list-wrap ul li.link {
          margin-bottom: 20px;
          letter-spacing: 0; }
          #footer .top-wrap .list-wrap ul li.link a {
            font-size: 14px;
            color: #fff; }
            #footer .top-wrap .list-wrap ul li.link a.contact-web {
              display: inline-block; }
              @media (max-width: 768px) {
                #footer .top-wrap .list-wrap ul li.link a.contact-web {
                  display: none; } }
            #footer .top-wrap .list-wrap ul li.link a.contact-mobile {
              display: none; }
              @media (max-width: 768px) {
                #footer .top-wrap .list-wrap ul li.link a.contact-mobile {
                  display: inline-block; } }
  #footer .bottom-wrap {
    width: 960px;
    margin: auto;
    border-top: 1px solid #4f4f4f;
    padding-top: 16px;
    color: #4f4f4f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media (max-width: 1279px) {
      #footer .bottom-wrap {
        width: 680px; } }
    @media (max-width: 768px) {
      #footer .bottom-wrap {
        width: 320px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    #footer .bottom-wrap a {
      color: #a3a3a3; }
    #footer .bottom-wrap .links-container {
      font-size: 14px; }
      @media (max-width: 768px) {
        #footer .bottom-wrap .links-container {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; } }
      #footer .bottom-wrap .links-container a {
        display: inline-block;
        margin-right: 30px;
        letter-spacing: 2px; }
        @media (max-width: 768px) {
          #footer .bottom-wrap .links-container a {
            margin-right: 0;
            margin-bottom: 12px; } }
        #footer .bottom-wrap .links-container a .link-img-bank {
          margin-right: 12px;
          position: relative;
          top: 2px;
          width: 16px; }
      @media (max-width: 768px) {
        #footer .bottom-wrap .links-container p span {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          text-align: center;
          margin: auto;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          margin-bottom: 12px; } }
    #footer .bottom-wrap .copyright-desc {
      font-size: 14px;
      letter-spacing: 1px; }
      @media (max-width: 768px) {
        #footer .bottom-wrap .copyright-desc {
          text-align: center;
          margin-top: 20px; } }
  #footer .footer--flex {
    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;
    margin: auto;
    margin-top: 40px;
    width: 100%;
    max-width: 960px;
    color: #fff; }
    @media (max-width: 1279px) {
      #footer .footer--flex {
        margin-top: 35px;
        max-width: 680px; } }
    @media (max-width: 768px) {
      #footer .footer--flex {
        display: block;
        max-width: 320px;
        margin-top: 30px; } }
    @media (max-width: 320px) {
      #footer .footer--flex {
        max-width: 280px;
        margin: 30px 20px 0 20px; } }
  #footer .footer__title {
    font-size: 30px;
    font-weight: bold;
    text-align: center; }
    @media (max-width: 1279px) {
      #footer .footer__title {
        font-size: 22px; } }
    @media (max-width: 768px) {
      #footer .footer__title {
        margin: auto;
        margin-bottom: 15px; } }
  #footer .footer__text {
    font-size: 14px;
    line-height: 1.7; }
    @media (max-width: 1279px) {
      #footer .footer__text {
        width: 470px; } }
    @media (max-width: 768px) {
      #footer .footer__text {
        width: auto; } }
    #footer .footer__text a {
      text-decoration: underline; }

#foot {
  position: relative;
  width: 100%;
  padding: 50px;
  background: #332727; }
  @media (max-width: 1279px) {
    #foot {
      padding: 30px 40px; } }
  @media (max-width: 768px) {
    #foot {
      padding: 30px; } }
  #foot .footer--flex {
    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;
    margin-bottom: 40px; }
    @media (max-width: 1279px) {
      #foot .footer--flex {
        margin-bottom: 35px; } }
    @media (max-width: 768px) {
      #foot .footer--flex {
        display: block;
        margin-bottom: 30px; } }
  #foot .footer__title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-right: 60px; }
    @media (max-width: 1279px) {
      #foot .footer__title {
        font-size: 22px;
        margin-right: 30px; } }
    @media (max-width: 768px) {
      #foot .footer__title {
        margin: auto;
        margin-bottom: 15px; } }
  #foot .footer__text {
    width: 725px;
    font-size: 14px;
    line-height: 1.71; }
    @media (max-width: 1279px) {
      #foot .footer__text {
        width: 470px;
        font-size: 12px; } }
    @media (max-width: 768px) {
      #foot .footer__text {
        width: auto; } }
  #foot .footer_smart {
    letter-spacing: 1px;
    text-align: center;
    line-height: 1; }
    #foot .footer_smart span {
      display: inline-block; }
      #foot .footer_smart span::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        margin-left: 7px;
        margin-right: 8px;
        background: url("../img/sinopac-logo.svg") no-repeat 0 0;
        position: relative;
        top: 5px; }
    #foot .footer_smart a {
      display: inline-block;
      letter-spacing: 0;
      margin: 10px 5px 0 5px;
      vertical-align: middle; }
    #foot .footer_smart #cdic {
      cursor: pointer;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      line-height: 1; }

.footer_ico {
  margin-right: 0.2em; }

@media (max-width: 1279px) {
  #download {
    display: block; } }

#footer_download {
  position: relative;
  width: 100%;
  height: 505px;
  padding: 90px 20px;
  background: url(../img/index/bg_curve.svg) center/cover no-repeat;
  color: white;
  overflow: hidden;
  line-height: 1; }
  @media (max-width: 768px) {
    #footer_download {
      height: auto;
      position: unset;
      padding: 47px 20px 0 20px; } }
  #footer_download .footer_download_title {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 8px;
    text-align: center;
    margin-left: 69px; }
    @media (max-width: 1279px) {
      #footer_download .footer_download_title {
        font-size: 20px;
        letter-spacing: 5px;
        margin-left: 115px; } }
    @media (max-width: 768px) {
      #footer_download .footer_download_title {
        font-size: 16px;
        letter-spacing: 3.2px;
        margin-left: 0; } }
  #footer_download .footer_download_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media (max-width: 1279px) {
      #footer_download .footer_download_con {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-width: 760px; } }
    @media (max-width: 768px) {
      #footer_download .footer_download_con {
        display: block;
        position: relative;
        bottom: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        min-width: auto; } }
    #footer_download .footer_download_con .footer_download_img {
      margin-right: 40px; }
      @media (max-width: 768px) {
        #footer_download .footer_download_con .footer_download_img {
          margin-right: 26px;
          margin: 9% auto -4% auto;
          text-align: center;
          width: 64%;
          max-width: 236px; }
          #footer_download .footer_download_con .footer_download_img img {
            width: 100%; } }
    #footer_download .footer_download_con .footer_download_text {
      margin-top: 24px; }
      @media (max-width: 1279px) {
        #footer_download .footer_download_con .footer_download_text {
          margin-top: 16px; } }
      #footer_download .footer_download_con .footer_download_text h6 {
        font-size: 24px; }
        @media (max-width: 1279px) {
          #footer_download .footer_download_con .footer_download_text h6 {
            font-size: 16px; } }
        @media (max-width: 768px) {
          #footer_download .footer_download_con .footer_download_text h6 {
            display: none; } }
      #footer_download .footer_download_con .footer_download_text > p {
        white-space: nowrap;
        font-size: 16px;
        letter-spacing: 0.8px;
        margin: 20px 0 45px 0; }
        @media (max-width: 1279px) {
          #footer_download .footer_download_con .footer_download_text > p {
            font-size: 12px;
            margin: 14px 0 30px 0; } }
        @media (max-width: 768px) {
          #footer_download .footer_download_con .footer_download_text > p {
            display: none; } }
        #footer_download .footer_download_con .footer_download_text > p span {
          color: #825f14; }
      #footer_download .footer_download_con .footer_download_text .footer_download_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media (max-width: 768px) {
          #footer_download .footer_download_con .footer_download_text .footer_download_box {
            display: block; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
          margin-right: 24px; }
          @media (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
              margin-right: 10px; }
              #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img img {
                width: 100%; } }
          @media (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
              display: none; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p {
          font-size: 14px; }
          @media (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p {
              font-size: 13px; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
          font-size: 36px;
          margin-bottom: 19px; }
          @media (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
              font-size: 24px;
              margin-bottom: 14px;
              margin-top: 4px; } }
          @media (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
              margin-bottom: 11px;
              margin-top: 24px;
              text-align: center; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(2) {
          line-height: 1.1em; }
          @media (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(2) {
              text-align: center; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(3) {
          line-height: 1.1em;
          margin-top: 0.5em;
          white-space: nowrap; }
          @media (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(3) {
              text-align: center;
              margin-bottom: 22px;
              white-space: normal; } }
        #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
          margin-top: 20px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          @media (max-width: 1279px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
              margin-top: 12px; } }
          @media (max-width: 768px) {
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
              text-align: center;
              margin: 0 auto;
              max-width: 300px; } }
          #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a {
            margin-right: 5px;
            border-radius: 5px; }
            #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a img {
              width: 100%;
              display: block; }
          #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a:last-child {
            margin-right: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px; }

body {
  overflow-x: hidden;
  font-family: 'Roboto', 'Noto Sans TC', Helvetica, Arial, sans-serif; }
  body.scroll-fixed {
    overflow: hidden; }

.section {
  position: relative; }

.wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .wrap__inner {
    width: 89.745%;
    max-width: 1096px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .wrap__inner {
        padding: 0; } }

main .wrap__inner {
  position: relative;
  max-width: 1320px;
  width: 96%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (max-width: 1179px) {
    main .wrap__inner {
      width: 100%;
      padding: 0 20px; } }
  @media (max-width: 991px) {
    main .wrap__inner {
      display: block; } }
  main .wrap__inner .wrap__head {
    max-width: 372px;
    margin-bottom: 15px; }
    @media (max-width: 991px) {
      main .wrap__inner .wrap__head {
        max-width: none; } }
    main .wrap__inner .wrap__head .tip {
      width: 148px; }
      @media (max-width: 991px) {
        main .wrap__inner .wrap__head .tip {
          width: 100px;
          height: 40px; } }
    main .wrap__inner .wrap__head .in-title {
      text-align: left;
      margin: 6px 0 12px 0; }
      @media (max-width: 991px) {
        main .wrap__inner .wrap__head .in-title {
          margin: 0; } }
    main .wrap__inner .wrap__head p {
      color: #2C2C2C;
      font-size: 1.25em;
      font-weight: 500;
      line-height: 140%;
      letter-spacing: 2.4px; }
      @media (max-width: 992px) {
        main .wrap__inner .wrap__head p {
          font-size: 1em;
          letter-spacing: 0.32px;
          padding-right: 11%; }
          main .wrap__inner .wrap__head p br {
            display: none !important; } }
      @media (max-width: 991px) {
        main .wrap__inner .wrap__head p {
          padding-right: 0; } }

img {
  width: 100%; }

.content {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .content {
      min-height: calc(100vh - 64px); } }
  .content--main:before {
    content: "";
    display: block;
    padding-top: 80px; }
    @media (max-width: 1279px) {
      .content--main:before {
        padding-top: 60px; } }
  .content--no-padding > *:first-child {
    padding-top: 0; }

.mb-use, .mb-f-use {
  display: none !important; }

@media (max-width: 991px) {
  .pc-use {
    display: none !important; }
  .mb-use {
    display: block !important; }
  .mb-f-use {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

.icon-geometry {
  position: absolute; }

.no-application .section-application, .no-application .header__menu li.header__item:nth-child(3) {
  display: none; }

.no-application .section-faq {
  background: none; }
  .no-application .section-faq .text-content {
    background: none;
    -webkit-text-fill-color: #1242A9;
    text-transform: none; }

.fixedIcon__area {
  -webkit-transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
  -o-transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 50%;
  right: 0;
  z-index: 11;
  padding: 16px;
  border-radius: 12px 0px 0px 12px; }
  @media (max-width: 598px) {
    .fixedIcon__area {
      bottom: 0;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-radius: 20px 20px 0px 0px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      background: -webkit-linear-gradient(359deg, #2157CB -12.05%, #6F61E2 101.51%);
      background: -o-linear-gradient(359deg, #2157CB -12.05%, #6F61E2 101.51%);
      background: linear-gradient(91deg, #2157CB -12.05%, #6F61E2 101.51%); }
      .fixedIcon__area.no-fix {
        position: absolute; } }
  .fixedIcon__area--active {
    opacity: 1;
    pointer-events: auto; }

.fixedIcon__tiger {
  width: 172px; }
  @media (max-width: 598px) {
    .fixedIcon__tiger {
      display: none; } }

.fixedIcon__btn {
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  color: #fff;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.28px;
  text-decoration: none !important; }
  @media (max-width: 598px) {
    .fixedIcon__btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-size: 18px;
      font-weight: 700;
      line-height: 160%;
      letter-spacing: 0.72px; } }
  @media (min-width: 991px) {
    .fixedIcon__btn:hover .btn-more {
      background-position: right center; } }
  .fixedIcon__btn .btn-more {
    position: relative;
    margin-top: 0;
    text-decoration: none !important;
    width: 162px;
    height: 52px;
    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: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.8px;
    border-radius: 10px;
    background: -webkit-linear-gradient(295deg, #49A7FF 0%, #8270FF 54%, #49A7FF 100%);
    background: -o-linear-gradient(295deg, #49A7FF 0%, #8270FF 54%, #49A7FF 100%);
    background: linear-gradient(155deg, #49A7FF 0%, #8270FF 54%, #49A7FF 100%);
    background-size: 200% auto;
    background-position: left center;
    -webkit-transition: background-position 0.5s;
    -o-transition: background-position 0.5s;
    transition: background-position 0.5s;
    margin: -55px auto 0 auto; }
    @media (max-width: 598px) {
      .fixedIcon__btn .btn-more {
        width: 100%;
        height: auto;
        background: none;
        border: none;
        margin: 0;
        font-size: 18px;
        line-height: 160%;
        letter-spacing: 0.72px; } }
    .fixedIcon__btn .btn-more::before {
      opacity: .3;
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 10px;
      padding: 1px;
      background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
      background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
      -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
      -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none; }
      @media (max-width: 598px) {
        .fixedIcon__btn .btn-more::before {
          display: none; } }

.section-kv {
  position: relative;
  width: 100%;
  padding-bottom: 210px; }
  @media (max-width: 1279px) {
    .section-kv {
      padding-bottom: 16.41908vw; } }
  .section-kv__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 20px;
    max-width: 1440px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto; }
    @media (max-width: 1279px) {
      .section-kv__wrapper {
        max-width: 112.58796vw;
        padding: 1.56372vw; } }
    @media (max-width: 768px) {
      .section-kv__wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: none;
        padding: 0 12px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start; } }
  .section-kv .bg-circle__right {
    right: -694px;
    bottom: -595px; }
    @media (max-width: 1279px) {
      .section-kv .bg-circle__right {
        right: -54.26114vw;
        bottom: -46.52072vw; } }
    @media (max-width: 768px) {
      .section-kv .bg-circle__right {
        right: -52.05128vw;
        top: -101.28205vw; } }
  .section-kv .bg-circle__left {
    left: -223px;
    top: -732px; }
    @media (max-width: 1279px) {
      .section-kv .bg-circle__left {
        left: -17.4355vw;
        top: -57.23221vw; } }
    @media (max-width: 768px) {
      .section-kv .bg-circle__left {
        left: -35.89744vw;
        top: 64.61538vw; } }
  .section-kv .deco-money-1m {
    top: 25px;
    left: calc(50% - 987px); }
    @media (max-width: 768px) {
      .section-kv .deco-money-1m {
        display: none; } }
  .section-kv .deco-money-3 {
    top: 219px;
    left: calc(50% - 704.5px); }
    @media (max-width: 768px) {
      .section-kv .deco-money-3 {
        left: -2.05128vw;
        top: 43%; } }
  .section-kv .deco-money-2 {
    top: -22px;
    right: calc(50% - 842.5px); }
    @media (max-width: 768px) {
      .section-kv .deco-money-2 {
        top: -4.35897vw;
        right: 13.84615vw; } }
  .section-kv .deco-money-1 {
    top: 349px;
    right: calc(50% - 788.5px); }
    @media (max-width: 768px) {
      .section-kv .deco-money-1 {
        top: auto;
        bottom: 20%;
        right: 0px; } }

.kv {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1033px;
  width: 100%;
  margin-top: 50px;
  margin-left: 100px; }
  @media (max-width: 1279px) {
    .kv {
      max-width: 80.76622vw;
      margin-top: 3.9093vw;
      margin-left: 7.81861vw; } }
  @media (max-width: 768px) {
    .kv {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      max-width: 134.50521vw;
      margin-top: 16.92708vw;
      margin-left: 0; } }
  .kv__tiger {
    position: relative;
    max-width: 304px;
    width: 100%;
    aspect-ratio: 309 / 383;
    -webkit-animation: tiger-bob 1s ease-in-out infinite;
    animation: tiger-bob 1s ease-in-out infinite; }
    @media (max-width: 768px) {
      .kv__tiger {
        margin-top: 12.30769vw;
        margin-bottom: 9.74359vw;
        width: 56.66667vw; } }
    .kv__tiger img {
      position: absolute;
      width: 100%; }
      .kv__tiger img:nth-child(1) {
        -webkit-animation: tiger-walk-1 1s steps(1) infinite;
        animation: tiger-walk-1 1s steps(1) infinite; }
      .kv__tiger img:nth-child(2) {
        -webkit-animation: tiger-walk-2 1s steps(1) infinite;
        animation: tiger-walk-2 1s steps(1) infinite; }

@-webkit-keyframes tiger-walk-1 {
  0%, 49.9% {
    opacity: 1; }
  50%, 100% {
    opacity: 0; } }

@keyframes tiger-walk-1 {
  0%, 49.9% {
    opacity: 1; }
  50%, 100% {
    opacity: 0; } }

@-webkit-keyframes tiger-walk-2 {
  0%, 49.9% {
    opacity: 0; }
  50%, 100% {
    opacity: 1; } }

@keyframes tiger-walk-2 {
  0%, 49.9% {
    opacity: 0; }
  50%, 100% {
    opacity: 1; } }

@-webkit-keyframes tiger-bob {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px); } }

@keyframes tiger-bob {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px); } }

@-webkit-keyframes kv-title-shine {
  0% {
    left: -100%; }
  60% {
    left: 120%; }
  100% {
    left: 120%; } }

@keyframes kv-title-shine {
  0% {
    left: -100%; }
  60% {
    left: 120%; }
  100% {
    left: 120%; } }
  .kv__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 2px;
    padding-left: 45px;
    position: relative;
    max-width: 684px;
    width: 100%; }
    @media (max-width: 1279px) {
      .kv__content {
        max-width: 53.71384vw; } }
    @media (max-width: 768px) {
      .kv__content {
        padding-left: 0;
        max-width: 100%; } }
    .kv__content .kv__date-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 14px;
      line-height: 1.2;
      margin-bottom: 16px;
      width: 100%; }
      @media (max-width: 1279px) {
        .kv__content .kv__date-row {
          gap: 1.09461vw;
          margin-bottom: 1.25098vw; } }
      .kv__content .kv__date-row p {
        font-family: Inter, Noto Sans TC, sans-serif;
        font-size: 30px;
        font-weight: bold; }
        @media (max-width: 1279px) {
          .kv__content .kv__date-row p {
            font-size: 2.34558vw; } }
        @media (max-width: 768px) {
          .kv__content .kv__date-row p {
            font-size: 5.12821vw; } }
      .kv__content .kv__date-row .connect-line {
        background: #fff;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%;
        height: 1px; }
      .kv__content .kv__date-row img {
        width: 57px;
        height: 57px; }
        @media (max-width: 1279px) {
          .kv__content .kv__date-row img {
            width: 4.45661vw;
            height: 4.45661vw; } }
        @media (max-width: 768px) {
          .kv__content .kv__date-row img {
            width: 7.69231vw;
            height: 7.69231vw; } }
    .kv__content .kv__h1-visual {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      font-family: Inter, Noto Sans TC, sans-serif; }
      .kv__content .kv__h1-visual span {
        background: -webkit-linear-gradient(357.72deg, #FFEABF 0%, #DAB056 100%);
        background: -o-linear-gradient(357.72deg, #FFEABF 0%, #DAB056 100%);
        background: linear-gradient(92.28deg, #FFEABF 0%, #DAB056 100%);
        -webkit-box-shadow: inset 0px 1px 5px rgba(0, 0, 0, 0.5);
        box-shadow: inset 0px 1px 5px rgba(0, 0, 0, 0.5);
        color: #000;
        display: block;
        font-size: 60px;
        font-weight: 900;
        float: left;
        line-height: 1.2;
        text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
        padding: 12px 24px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        position: relative;
        overflow: hidden; }
        @media (max-width: 1279px) {
          .kv__content .kv__h1-visual span {
            font-size: 4.69116vw;
            padding: 0.93823vw 1.87647vw; } }
        .kv__content .kv__h1-visual span::after {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 60%;
          height: 100%;
          background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
          background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
          background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
          background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
          -webkit-animation: kv-title-shine 3s ease-in-out infinite;
          animation: kv-title-shine 3s ease-in-out infinite; }
        .kv__content .kv__h1-visual span + span {
          margin-top: 9px;
          text-wrap: nowrap; }
          .kv__content .kv__h1-visual span + span::after {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
          @media (max-width: 1279px) {
            .kv__content .kv__h1-visual span + span {
              margin-top: 0.70367vw; } }
          @media (max-width: 768px) {
            .kv__content .kv__h1-visual span + span {
              margin-top: 1.28205vw;
              width: 100%; } }
        @media (max-width: 1279px) {
          .kv__content .kv__h1-visual span {
            font-size: 4.69116vw; } }
        @media (max-width: 768px) {
          .kv__content .kv__h1-visual span {
            font-size: 8.97436vw;
            padding: 2.05128vw 3.58974vw; } }
    .kv__content .kv__subtitle {
      font-size: 33px;
      font-weight: bold;
      line-height: 1.6;
      text-wrap: nowrap; }
      @media (max-width: 1279px) {
        .kv__content .kv__subtitle {
          font-size: 2.58014vw; } }
      @media (max-width: 768px) {
        .kv__content .kv__subtitle {
          font-size: 4.87179vw; } }
      .kv__content .kv__subtitle span {
        font-family: Inter, sans-serif;
        font-size: 66px;
        font-weight: 600;
        letter-spacing: .03em;
        background: -webkit-linear-gradient(332.83deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
        background: -o-linear-gradient(332.83deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
        background: linear-gradient(117.17deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent; }
        @media (max-width: 1279px) {
          .kv__content .kv__subtitle span {
            font-size: 5.16028vw; } }
        @media (max-width: 768px) {
          .kv__content .kv__subtitle span {
            font-size: 9.23077vw; } }
        .kv__content .kv__subtitle span.bling-title__effect {
          background: -webkit-gradient(linear, left top, right top, from(#CEB071), color-stop(35%, #CEB071), color-stop(50%, #fff), color-stop(65%, #CEB071), to(#CEB071));
          background: -webkit-linear-gradient(left, #CEB071 0%, #CEB071 35%, #fff 50%, #CEB071 65%, #CEB071 100%);
          background: -o-linear-gradient(left, #CEB071 0%, #CEB071 35%, #fff 50%, #CEB071 65%, #CEB071 100%);
          background: linear-gradient(90deg, #CEB071 0%, #CEB071 35%, #fff 50%, #CEB071 65%, #CEB071 100%);
          background-size: 200% 100%;
          background-position: 0% center;
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-animation: shine-move-text 3s linear infinite;
          animation: shine-move-text 3s linear infinite; }

.section-info {
  width: 100%;
  height: auto;
  padding: 45px 0 80px;
  position: relative; }
  @media (max-width: 768px) {
    .section-info {
      padding-top: 6.66667vw;
      padding-bottom: 6.66667vw; } }
  .section-info__wrapper {
    padding: 0px 20px; }
    @media (max-width: 768px) {
      .section-info__wrapper .glass__panel:first-child {
        padding-bottom: 0; } }
    .section-info__wrapper .glass__panel:last-child {
      margin-bottom: 0; }
  .section-info__subtitle {
    background: -webkit-linear-gradient(332.83deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
    background: -o-linear-gradient(332.83deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
    background: linear-gradient(117.17deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
    color: #000;
    display: block;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 auto;
    margin-bottom: 28px;
    padding: 10px 24px;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    @media (max-width: 1279px) {
      .section-info__subtitle {
        font-size: 3.12744vw;
        margin-bottom: 2.18921vw;
        padding: 0.78186vw 1.87647vw; } }
    @media (max-width: 768px) {
      .section-info__subtitle {
        font-size: 10.25641vw;
        margin-bottom: 6.15385vw;
        padding: 2.5641vw 6.15385vw; } }
  .section-info .bg-circle__left {
    left: -470px;
    top: 186px; }
    @media (max-width: 768px) {
      .section-info .bg-circle__left {
        top: 115.38462vw;
        left: -85.89744vw; } }
  .section-info .deco-money-2 {
    top: 95px;
    left: calc(50% - 484px);
    -webkit-animation: floatUpDown 2.5s ease-in-out infinite;
    animation: floatUpDown 2.5s ease-in-out infinite; }
    @media (max-width: 768px) {
      .section-info .deco-money-2 {
        display: none; } }
  .section-info .deco-money-3 {
    top: 756px;
    right: calc(50% - 745px);
    -webkit-animation: floatUpDown 3s ease-in-out infinite;
    animation: floatUpDown 3s ease-in-out infinite; }
    @media (max-width: 768px) {
      .section-info .deco-money-3 {
        display: none; } }
  .section-info .deco-money-1m {
    bottom: 88px;
    right: -16px;
    -webkit-animation: floatUpDown 2.5s ease-in-out infinite;
    animation: floatUpDown 2.5s ease-in-out infinite; }
    @media (max-width: 768px) {
      .section-info .deco-money-1m {
        display: none; } }

.info-carousel {
  width: 100%;
  height: auto;
  margin: 0 auto;
  color: #fff; }
  @media (max-width: 1279px) {
    .info-carousel {
      border-radius: 2.34558vw; } }
  @media (max-width: 768px) {
    .info-carousel {
      background: none;
      padding: 0; } }
  @media (max-width: 768px) {
    .info-carousel-slide__step {
      font-weight: bold;
      text-align: center;
      margin-top: 5.12821vw; } }
  .info-carousel-slide__step-title {
    display: none; }
    @media (max-width: 768px) {
      .info-carousel-slide__step-title {
        display: block !important;
        font-size: 9.23077vw;
        line-height: 1.4;
        letter-spacing: 0.02em;
        text-wrap: nowrap; } }
  .info-carousel-slide__step-text {
    display: none; }
    @media (max-width: 768px) {
      .info-carousel-slide__step-text {
        display: block !important;
        font-size: 4.35897vw;
        text-wrap: nowrap;
        line-height: 1.4;
        margin-top: 2.5641vw; } }
  .info-carousel-slide__img {
    cursor: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden; }
    @media (max-width: 768px) {
      .info-carousel-slide__img {
        border-radius: 5.12821vw;
        background-color: #EBEBEB;
        width: 75.89744vw; } }
  .info-carousel__carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -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;
    margin: auto;
    overflow: hidden;
    height: auto; }
    @media (max-width: 768px) {
      .info-carousel__carousel {
        -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;
        height: auto; } }
  .info-carousel__steps {
    max-width: 560px;
    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;
    margin-right: 60px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    @media (max-width: 1279px) {
      .info-carousel__steps {
        max-width: 43.78421vw;
        margin-right: 3.12744vw; } }
    @media (max-width: 768px) {
      .info-carousel__steps {
        display: none; } }
  .info-carousel__step {
    color: #FFEABF;
    position: relative;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid #FFEABF;
    padding-bottom: 24px; }
    @media (max-width: 768px) {
      .info-carousel__step {
        padding-bottom: 6.15385vw; } }
    .info-carousel__step:not(:last-child) {
      margin-bottom: 20px; }
      @media (max-width: 768px) {
        .info-carousel__step:not(:last-child) {
          margin-bottom: 5.12821vw; } }
    @media (max-width: 768px) {
      .info-carousel__step {
        background: none; } }
    .info-carousel__step-label {
      display: block;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      font-family: "Manrope", sans-serif;
      font-weight: bold;
      margin-bottom: 12px;
      font-size: 16px;
      line-height: 1.4;
      letter-spacing: 0.04em; }
      @media (max-width: 768px) {
        .info-carousel__step-label {
          font-size: 6.15385vw;
          margin-bottom: 5.12821vw; } }
    .info-carousel__step-title {
      color: #fff;
      font-size: 36px;
      font-weight: bold;
      line-height: 1.4;
      letter-spacing: 0.02em;
      text-transform: capitalize; }
      @media (max-width: 1279px) {
        .info-carousel__step-title {
          font-size: 2.8147vw; } }
      @media (max-width: 768px) {
        .info-carousel__step-title {
          font-size: 9.23077vw;
          line-height: 1.3; } }
    .info-carousel__step-text {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.25;
      letter-spacing: 0.1em;
      margin-top: 10px;
      background: -webkit-linear-gradient(332.83deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
      background: -o-linear-gradient(332.83deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
      background: linear-gradient(117.17deg, #FDF9C7 -0.28%, #F5ECB8 15.51%, #E1CB90 29.54%, #E1B97A 43.58%, #E8C388 73.4%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent; }
      @media (max-width: 1279px) {
        .info-carousel__step-text {
          font-size: 1.87647vw;
          margin-top: 0.78186vw; } }
      @media (max-width: 768px) {
        .info-carousel__step-text {
          font-size: 6.15385vw; } }
    .info-carousel__step-hint {
      display: none; }
      @media (max-width: 1279px) {
        .info-carousel__step-hint {
          font-size: 1.17279vw;
          margin-top: 1.56372vw; } }
      @media (max-width: 768px) {
        .info-carousel__step-hint {
          display: block;
          font-size: 3.84615vw;
          margin-top: 5.12821vw; } }
    .info-carousel__step__progress {
      -webkit-transform-origin: left;
      -ms-transform-origin: left;
      transform-origin: left;
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0; }
    .info-carousel__step.is-active .info-carousel__step__progress {
      background-color: #fff;
      background: -webkit-gradient(linear, left top, right top, from(#FFEABF), color-stop(50%, #DAB056), to(#FFEABF));
      background: -webkit-linear-gradient(left, #FFEABF 0%, #DAB056 50%, #FFEABF 100%);
      background: -o-linear-gradient(left, #FFEABF 0%, #DAB056 50%, #FFEABF 100%);
      background: linear-gradient(to right, #FFEABF 0%, #DAB056 50%, #FFEABF 100%);
      -webkit-animation: 5s linear progressLine;
      animation: 5s linear progressLine; }
    .info-carousel__step:hover .info-carousel__step__progress {
      -webkit-animation-play-state: paused;
      animation-play-state: paused; }
  .info-carousel__wrap {
    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%; }
  .info-carousel__image {
    margin: 0 auto;
    width: 240px;
    height: auto;
    padding-top: 48px;
    -o-object-position: center top;
    object-position: center top; }
    @media (max-width: 1279px) {
      .info-carousel__image {
        width: 23.45582vw;
        padding-top: 3.75293vw;
        padding-bottom: 1.87647vw; } }
    @media (max-width: 768px) {
      .info-carousel__image {
        width: 64.5%;
        height: auto;
        padding-top: 3.84615vw;
        padding-bottom: 3.84615vw; } }
    .info-carousel__image img {
      width: 100%;
      height: auto; }
  .info-carousel__swiper {
    max-width: 500px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 64px; }
    @media (max-width: 1279px) {
      .info-carousel__swiper {
        max-width: 39.09304vw;
        padding-bottom: 5.00391vw; } }
    @media (max-width: 768px) {
      .info-carousel__swiper {
        max-width: 100%;
        padding-bottom: 0; } }
    .info-carousel__swiper .swiper-slide {
      border-radius: 30px;
      cursor: auto;
      max-width: 500px;
      min-height: 550px;
      background-color: #EBEBEB;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow: hidden; }
      @media (max-width: 1279px) {
        .info-carousel__swiper .swiper-slide {
          border-radius: 2.34558vw;
          max-width: 39.09304vw;
          min-height: 43.00235vw; } }
      @media (max-width: 768px) {
        .info-carousel__swiper .swiper-slide {
          background-color: transparent;
          border-radius: 5.20833vw;
          height: auto;
          padding: 0 6.51042vw 11.71875vw 6.51042vw;
          max-width: 100%; } }
  .info-carousel__pagination {
    margin-top: 40px;
    text-align: center; }
    @media (max-width: 1279px) {
      .info-carousel__pagination {
        margin-top: 2.8147vw; } }
    @media (max-width: 768px) {
      .info-carousel__pagination {
        display: none; } }
    .info-carousel__pagination.is-mobile {
      display: none; }
      @media (max-width: 768px) {
        .info-carousel__pagination.is-mobile {
          display: block;
          bottom: 3.90625vw !important; } }
  .info-carousel .swiper-pagination-bullet {
    background: none;
    background: -webkit-linear-gradient(#333, #333) padding-box, -webkit-linear-gradient(285deg, #FDF9C7 0%, #F5ECB8 18%, #E1CB90 34%, #E1B97A 50%, #E8C388 84%) border-box;
    background: -o-linear-gradient(#333, #333) padding-box, -o-linear-gradient(285deg, #FDF9C7 0%, #F5ECB8 18%, #E1CB90 34%, #E1B97A 50%, #E8C388 84%) border-box;
    background: linear-gradient(#333, #333) padding-box, linear-gradient(165deg, #FDF9C7 0%, #F5ECB8 18%, #E1CB90 34%, #E1B97A 50%, #E8C388 84%) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    width: 8px;
    height: 8px;
    margin: 0 8px !important;
    opacity: 1; }
    @media (max-width: 768px) {
      .info-carousel .swiper-pagination-bullet {
        width: 2.05128vw;
        height: 2.05128vw;
        margin: 0 2.08333vw !important;
        opacity: 1; } }
    .info-carousel .swiper-pagination-bullet-active {
      background: #FFEABF; }
  .info-carousel .swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: auto; }
  .info-carousel__btn {
    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;
    margin-top: 30px; }
    .info-carousel__btn :last-child {
      margin-bottom: 0; }
    @media (max-width: 768px) {
      .info-carousel__btn {
        margin-top: 5.46875vw; } }

.info-qrcode {
  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;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: 60px; }
  @media (max-width: 1279px) {
    .info-qrcode {
      margin-left: 4.69116vw; } }
  @media (max-width: 768px) {
    .info-qrcode {
      display: none; } }
  .info-qrcode__img {
    max-width: 240px;
    width: 100%; }
    @media (max-width: 1279px) {
      .info-qrcode__img {
        max-width: 18.76466vw; }
        .info-qrcode__img img {
          width: 100%;
          height: auto; } }
  .info-qrcode__text {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: .1em;
    margin-top: 16px;
    padding: 0 16px;
    text-align: center;
    line-height: 1.5; }
    @media (max-width: 1279px) {
      .info-qrcode__text {
        font-size: 1.87647vw;
        margin-top: 1.25098vw;
        padding: 0 1.25098vw; } }
  .info-qrcode__hint {
    font-size: 12px;
    text-wrap: nowrap;
    font-weight: normal;
    letter-spacing: 0;
    margin-top: 0.5em; }
    @media (max-width: 768px) {
      .info-qrcode__hint {
        display: none; } }

.section-task {
  background: -webkit-gradient(linear, left top, left bottom, from(#433725), color-stop(75%, #000));
  background: -webkit-linear-gradient(top, #433725, #000 75%);
  background: -o-linear-gradient(top, #433725, #000 75%);
  background: linear-gradient(to bottom, #433725, #000 75%);
  padding: 48px 0 177px 0;
  position: relative; }
  @media (max-width: 768px) {
    .section-task {
      background: none;
      padding: 0 5.12821vw 28.20513vw; } }
  .section-task .glass__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .section-task .section__title {
    margin-bottom: 38px; }
    @media (max-width: 1279px) {
      .section-task .section__title {
        margin-bottom: 2.97107vw; } }
    @media (max-width: 768px) {
      .section-task .section__title {
        margin-bottom: 5.12821vw; } }
  .section-task__wrapper {
    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 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px; }
    .section-task__wrapper.glass__panel {
      margin-bottom: 0; }
    @media (max-width: 1279px) {
      .section-task__wrapper {
        margin-bottom: 2.34558vw; } }
    @media (max-width: 768px) {
      .section-task__wrapper {
        padding: 0;
        -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;
        margin: 0; } }
  .section-task .bg-circle__right {
    right: -412px;
    top: -595px; }
    @media (max-width: 768px) {
      .section-task .bg-circle__right {
        right: -85.89744vw;
        top: -40%; } }
  .section-task .bg-circle__left {
    left: -747px;
    bottom: -875px; }
    @media (max-width: 768px) {
      .section-task .bg-circle__left {
        display: none; } }
  .section-task .dawho-marquee {
    bottom: 34px; }
    @media (max-width: 768px) {
      .section-task .dawho-marquee {
        bottom: 5.12821vw; } }

@media (max-width: 768px) {
  .task-content,
  .task-form,
  #form {
    max-width: none; } }

.task-content {
  margin-right: 60px; }
  @media (max-width: 1279px) {
    .task-content {
      margin-right: 3.12744vw; } }
  @media (max-width: 768px) {
    .task-content {
      display: none; } }
  .task-content .tiger-pic {
    width: 480px; }
    @media (max-width: 1279px) {
      .task-content .tiger-pic {
        width: 37.52932vw; } }
    .task-content .tiger-pic img {
      width: 100%;
      height: 100%; }

.task-form {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 597px; }
  @media (max-width: 768px) {
    .task-form {
      max-width: none; } }

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 24px; }
  .form__group.bottom-line {
    border-bottom: 1px solid #FFEABF;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .form__group.bottom-line {
        margin-bottom: 6.15385vw;
        padding-bottom: 6.15385vw; } }
  @media (max-width: 768px) {
    .form__group {
      padding-bottom: 9.23077vw; } }

.form__label {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4; }
  @media (max-width: 1279px) {
    .form__label {
      font-size: 1.87647vw;
      margin-bottom: 0.93823vw; } }
  .form__label span {
    color: #FF4F3F; }
    @media (max-width: 768px) {
      .form__label span {
        font-size: 6.15385vw;
        margin-left: 0; } }
  @media (max-width: 768px) {
    .form__label {
      font-size: 6.15385vw;
      margin-bottom: 2.5641vw; } }

.form__input {
  padding: 14.5px 30px;
  border-radius: 80px;
  background-color: #fff;
  font-size: 24px;
  border: 1px solid #fff;
  width: 100%;
  line-height: 1.3;
  letter-spacing: 0.08em; }
  .form__input.errorMessage {
    border-color: #FF4F3F;
    border-width: 2px; }
  @media (max-width: 1279px) {
    .form__input {
      padding: 1.01642vw 1.87647vw;
      font-size: 1.87647vw; } }
  @media (max-width: 768px) {
    .form__input {
      max-width: none;
      padding: 3.33333vw 4.10256vw;
      font-size: 5.12821vw; } }
  .form__input::-webkit-input-placeholder {
    color: #999; }
  .form__input:-ms-input-placeholder {
    color: #999; }
  .form__input::-ms-input-placeholder {
    color: #999; }
  .form__input::placeholder {
    color: #999; }
  .form__input:hover {
    border-color: #fff; }
    .form__input:hover::-webkit-input-placeholder {
      color: #686868; }
    .form__input:hover:-ms-input-placeholder {
      color: #686868; }
    .form__input:hover::-ms-input-placeholder {
      color: #686868; }
    .form__input:hover::placeholder {
      color: #686868; }
  .form__input:focus {
    border-color: #fff; }
    .form__input:focus::-webkit-input-placeholder {
      color: transparent; }
    .form__input:focus:-ms-input-placeholder {
      color: transparent; }
    .form__input:focus::-ms-input-placeholder {
      color: transparent; }
    .form__input:focus::placeholder {
      color: transparent; }

.form__errorMessage {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  color: #FF4F3F; }
  @media (max-width: 1279px) {
    .form__errorMessage {
      margin-top: 0.78186vw;
      font-size: max(12px, 1.25098vw); } }
  @media (max-width: 768px) {
    .form__errorMessage {
      margin-top: 2.5641vw;
      font-size: 4.10256vw; } }
  .form__errorMessage.hidden {
    display: none; }

.form__captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .form__captcha .captNum {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 12px; }
    @media (max-width: 768px) {
      .form__captcha .captNum {
        width: 22.5641vw;
        margin-right: 2.05128vw; } }
  .form__captcha--img {
    width: 120px;
    height: 40px; }
    @media (max-width: 768px) {
      .form__captcha--img {
        height: 7.17949vw;
        width: auto; } }
  .form__captcha--reload {
    background-color: transparent;
    border: none; }
    .form__captcha--reload img {
      width: 24px;
      height: 24px; }
      @media (max-width: 768px) {
        .form__captcha--reload img {
          width: 6.15385vw;
          height: 6.15385vw; } }

.form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .form__check {
      margin-bottom: 9.23077vw; } }
  .form__check input[type="checkbox"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #FFEABF;
    background-color: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    outline: none; }
    .form__check input[type="checkbox"]:checked {
      background-color: #FFEABF;
      border-color: #fff; }
    .form__check input[type="checkbox"]:checked::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 16px;
      height: 16px;
      background-image: url("../images/task/check.svg");
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    @media (max-width: 1279px) {
      .form__check input[type="checkbox"]:checked::after {
        background-size: contain;
        background-position: center; } }
    @media (max-width: 768px) {
      .form__check input[type="checkbox"] {
        width: 5.64103vw;
        height: 5.64103vw;
        margin: 0; }
        .form__check input[type="checkbox"]:checked::after {
          width: 4.61538vw;
          height: 4.61538vw; } }
  .form__check--text {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 8px;
    padding-top: 2px;
    text-align: justify; }
    @media (max-width: 1279px) {
      .form__check--text {
        margin-left: 0.62549vw;
        padding-top: 0.15637vw;
        font-size: 1em; } }
    @media (max-width: 768px) {
      .form__check--text {
        font-size: 4.61538vw;
        margin-left: 2.05128vw;
        line-height: 1.3;
        font-weight: 400; } }
    .form__check--text-link {
      color: #FFEABF; }
      .form__check--text-link .underline {
        font-weight: 500;
        text-decoration: underline; }

.form__confirm-btn {
  display: block;
  text-align: center; }
  .form__confirm-btn .btn--rounded {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0; }
    @media (max-width: 1279px) {
      .form__confirm-btn .btn--rounded {
        max-width: 21.8921vw; } }
    @media (max-width: 768px) {
      .form__confirm-btn .btn--rounded {
        max-width: none; } }

.deco-banknote-1 {
  background: url("../images/task/deco_banknote-1.png") no-repeat;
  background-size: cover;
  width: 129.5px;
  height: 132.5px;
  left: calc(50% - 736px);
  top: 288px;
  -webkit-animation: floatUpDown 3s ease-in-out infinite;
  animation: floatUpDown 3s ease-in-out infinite; }
  @media (max-width: 768px) {
    .deco-banknote-1 {
      display: none; } }

.deco-banknote-2 {
  background: url("../images/task/deco_banknote-2.png") no-repeat;
  background-size: cover;
  width: 130px;
  height: 132.5px;
  right: calc(50% - 560px);
  bottom: 175px;
  -webkit-animation: floatUpDown 2.5s ease-in-out infinite;
  animation: floatUpDown 2.5s ease-in-out infinite; }
  @media (max-width: 768px) {
    .deco-banknote-2 {
      display: none; } }

.section-notice__wrapper {
  background-color: #2C2C2C;
  border-radius: 60px 60px 0px 0px;
  border-top: 1px solid #838383;
  width: 100%;
  padding: 80px 20px 80px 20px;
  position: relative; }
  @media (max-width: 1279px) {
    .section-notice__wrapper {
      border-radius: 4.69116vw 4.69116vw 0px 0px;
      padding: 6.25489vw 1.56372vw; } }
  @media (max-width: 768px) {
    .section-notice__wrapper {
      padding: 11.71875vw 4.6875vw;
      border-radius: 5.20833vw 5.20833vw 0 0; } }
  .section-notice__wrapper .container {
    background: transparent;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }

.section-notice__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 24px; }
  @media (max-width: 1279px) {
    .section-notice__title {
      font-size: 3.12744vw;
      margin-bottom: 1.87647vw; } }
  @media (max-width: 768px) {
    .section-notice__title {
      font-size: 5.85938vw;
      margin-bottom: 2.60417vw; } }

.section-notice__content {
  display: block; }

.section-notice__box {
  margin: 0 auto;
  max-width: 1280px; }
  @media (max-width: 1279px) {
    .section-notice__box {
      max-width: 100.07819vw; } }

.section-notice__view {
  width: 100%;
  position: relative;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media (max-width: 768px) {
    .section-notice__view {
      width: 100%;
      position: relative;
      background: transparent;
      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; } }
  .section-notice__view--mt {
    margin-top: 40px; }
    @media (max-width: 1279px) {
      .section-notice__view--mt {
        margin-top: 3.12744vw; } }
    @media (max-width: 768px) {
      .section-notice__view--mt {
        margin-top: 2.60417vw; } }

.section-notice__view-content {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .03em;
  text-align: justify; }
  @media (max-width: 768px) {
    .section-notice__view-content {
      font-size: 4.16667vw; } }
  @media (max-width: 768px) {
    .section-notice__view-content li {
      margin-bottom: 1.04167vw; } }
  .section-notice__view-content a {
    color: #FFEABF;
    text-decoration: underline; }

.section-notice__container {
  display: none; }

.notice__toggle {
  cursor: pointer;
  margin: 0 auto;
  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;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  color: #FFEABF;
  margin-top: 32px; }
  @media (max-width: 1279px) {
    .notice__toggle {
      padding-top: 2.50195vw; } }
  @media (max-width: 768px) {
    .notice__toggle {
      padding-top: 0;
      font-size: 4.61538vw; } }
  .notice__toggle::before {
    content: "閱讀更多";
    margin-right: 8px; }
  .notice__toggle.active::before {
    content: "收起"; }

.notice__icon {
  width: 20px;
  height: 20px;
  background: url("../images/read-more-icon.svg") no-repeat center/contain;
  content: "";
  display: inline-block; }
  @media (max-width: 1279px) {
    .notice__icon {
      width: 1.87647vw;
      height: 1.87647vw; } }
  @media (max-width: 768px) {
    .notice__icon {
      width: 4.16667vw;
      height: 4.16667vw; } }
  .notice__icon.active {
    background-image: url("../images/read-close-icon.svg");
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s; }

ol.decimal,
ol.level-2 {
  padding-left: 3em;
  text-align: justify; }

ol.decimal li::marker {
  font-family: Roboto, sans-serif; }

.l-4em {
  padding-left: 4em; }

.l-2em {
  padding-left: 2em; }

@media (max-width: 768px) {
  .notice-more-sm {
    display: none; } }

@media (max-width: 768px) {
  .section-notice__wrapper.is-expanded .notice-more-sm {
    display: block; } }

.content {
  color: white;
  background-color: #000; }

.section__title {
  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;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 45px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEABF), to(#DAB056));
  background: -webkit-linear-gradient(top, #FFEABF 0%, #DAB056 100%);
  background: -o-linear-gradient(top, #FFEABF 0%, #DAB056 100%);
  background: linear-gradient(180deg, #FFEABF 0%, #DAB056 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 10px;
  padding-bottom: 10px; }
  @media (max-width: 1279px) {
    .section__title {
      font-size: 4.69116vw;
      margin-bottom: 3.51837vw;
      padding-top: 0.78186vw;
      padding-bottom: 0.78186vw; } }
  @media (max-width: 768px) {
    .section__title {
      font-size: 10vw;
      margin-bottom: 7.69231vw; } }
  .section__title::before, .section__title::after {
    content: "";
    display: inline-block;
    background: url("../images/section__title-deco.png") no-repeat center;
    background-size: contain;
    width: 100px;
    height: 50px;
    margin: 10px 6px; }
    @media (max-width: 1279px) {
      .section__title::before, .section__title::after {
        width: 80px;
        height: 40px; } }
    @media (max-width: 768px) {
      .section__title::before, .section__title::after {
        width: 16.41026vw;
        height: 7.69231vw;
        margin: 0.51282vw 0.76923vw; } }

.glass__panel {
  z-index: 1;
  position: relative;
  padding: 60px 80px;
  border-radius: 30px;
  background: -webkit-linear-gradient(145.09deg, rgba(255, 255, 255, 0.15) 10%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.15) 60%);
  background: -o-linear-gradient(145.09deg, rgba(255, 255, 255, 0.15) 10%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.15) 60%);
  background: linear-gradient(304.91deg, rgba(255, 255, 255, 0.15) 10%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.15) 60%);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 50px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: inset 0 0 8px #2318006a;
  box-shadow: inset 0 0 8px #2318006a; }
  @media (max-width: 1279px) {
    .glass__panel {
      padding: 4.69116vw 6.25489vw;
      border-radius: 2.34558vw;
      max-width: 100.07819vw;
      margin-bottom: 3.9093vw; } }
  @media (max-width: 768px) {
    .glass__panel {
      border-radius: 5.12821vw;
      margin-bottom: 6.15385vw;
      padding: 6.15385vw 5.12821vw; } }
  .glass__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: -webkit-linear-gradient(322deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.2) 100%);
    background: -o-linear-gradient(322deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.2) 100%);
    background: linear-gradient(128deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
    mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none; }
    @media (max-width: 1279px) {
      .glass__panel::before {
        border-radius: 2.34558vw; } }
    @media (max-width: 768px) {
      .glass__panel::before {
        border-radius: 5.12821vw;
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.2)), color-stop(30%, rgba(255, 255, 255, 0.05)), color-stop(70%, rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.2)));
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.2) 100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.2) 100%);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.2) 100%); } }

.btn--rounded {
  margin: 0 auto;
  cursor: pointer;
  padding: 23px 32px;
  border: none;
  border-radius: 100px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: #CEB071;
  color: #000;
  position: relative;
  z-index: 5; }
  @media (max-width: 1279px) {
    .btn--rounded {
      padding: 1.79828vw 2.50195vw;
      border-radius: 7.81861vw; } }
  @media (max-width: 768px) {
    .btn--rounded.mobile-only {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .btn--rounded:hover {
    background-position: left center;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
    .btn--rounded:hover .btn--icon::before {
      -webkit-animation: flyRight 0.5s forwards;
      animation: flyRight 0.5s forwards; }
    .btn--rounded:hover .btn--icon::after {
      -webkit-animation: flyFromLeft 0.8s forwards;
      animation: flyFromLeft 0.8s forwards;
      -webkit-animation-delay: 0.06s;
      animation-delay: 0.06s; }
  @media (max-width: 768px) {
    .btn--rounded {
      padding: 6.15385vw 4.10256vw;
      width: 100%;
      max-width: none;
      margin-bottom: 5.12821vw; } }

.btn--text {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans TC", Helvetica, Arial, sans-serif;
  z-index: 1; }
  @media (max-width: 1279px) {
    .btn--text {
      font-size: 1.87647vw; } }
  @media (max-width: 768px) {
    .btn--text {
      font-size: 6.15385vw; } }

.btn--icon {
  margin-left: 10px;
  width: 32px;
  height: 32px;
  position: relative; }
  @media (max-width: 1279px) {
    .btn--icon {
      margin-left: 0.78186vw;
      width: 2.50195vw;
      height: 2.50195vw; } }
  .btn--icon::before, .btn--icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/btn-arrow2.svg") no-repeat center;
    background-size: contain;
    opacity: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  .btn--icon::before {
    opacity: 1; }
  @media (max-width: 768px) {
    .btn--icon {
      margin-left: 2.5641vw;
      width: 8.20513vw;
      height: 8.20513vw; } }

.bling-button {
  color: black;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  font-weight: bold; }
  @media (max-width: 1279px) {
    .bling-button {
      border-radius: 7.81861vw; } }
  @media (max-width: 768px) {
    .bling-button {
      border-radius: 13.02083vw; } }
  .bling-button::before {
    position: absolute;
    top: -40%;
    right: 110%;
    -webkit-transform: rotate(17deg);
    -ms-transform: rotate(17deg);
    transform: rotate(17deg);
    background: -webkit-gradient(linear, left top, right top, from(rgba(253, 249, 199, 0)), color-stop(50%, rgba(253, 249, 199, 0.5)), color-stop(55%, rgba(253, 249, 199, 0.5)), to(rgba(253, 249, 199, 0)));
    background: -webkit-linear-gradient(left, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
    background: -o-linear-gradient(left, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
    background: linear-gradient(to right, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
    width: 60%;
    height: 200%;
    content: "";
    -webkit-animation: shine-move 2s infinite linear;
    animation: shine-move 2s infinite linear; }
  .bling-button:hover::before {
    right: -50%;
    -webkit-transition: 1.2s ease all;
    -o-transition: 1.2s ease all;
    transition: 1.2s ease all; }
  .bling-button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }

.bling-title__effect {
  background: -webkit-gradient(linear, left top, right top, from(#CEB071), color-stop(35%, #CEB071), color-stop(50%, #fff), color-stop(65%, #CEB071), to(#CEB071));
  background: -webkit-linear-gradient(left, #CEB071 0%, #CEB071 35%, #fff 50%, #CEB071 65%, #CEB071 100%);
  background: -o-linear-gradient(left, #CEB071 0%, #CEB071 35%, #fff 50%, #CEB071 65%, #CEB071 100%);
  background: linear-gradient(90deg, #CEB071 0%, #CEB071 35%, #fff 50%, #CEB071 65%, #CEB071 100%);
  background-size: 200% 100%;
  background-position: 0% center;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-animation: shine-move-text 3s linear infinite;
  animation: shine-move-text 3s linear infinite; }

@keyframes shine-move-text {
  0% {
    background-position: 0% center; }
  100% {
    background-position: -200% center; } }

.marquee-dawho {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite; }

.deco {
  position: absolute;
  pointer-events: none; }

.bg-circle {
  position: absolute;
  background: -webkit-radial-gradient(50% 50%, 50% 50%, #CEB071 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-radial-gradient(50% 50%, 50% 50%, #CEB071 0%, rgba(0, 0, 0, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #CEB071 0%, rgba(0, 0, 0, 0) 100%);
  width: 1464px;
  height: 1464px;
  border-radius: 999999px;
  opacity: .5; }
  @media (max-width: 768px) {
    .bg-circle {
      width: 204.10256vw;
      height: 204.10256vw; } }

.deco-money-1 {
  background: url("../images/deco_money-1.png") no-repeat center;
  background-size: cover;
  width: 132.5px;
  height: 98.5px; }
  @media (max-width: 768px) {
    .deco-money-1 {
      width: 16.15385vw;
      height: 12.05128vw; } }

.deco-money-1m {
  background: url("../images/deco_money-1m.png") no-repeat center;
  background-size: cover;
  width: 132.5px;
  height: 98.5px; }
  @media (max-width: 768px) {
    .deco-money-1m {
      width: 16.15385vw;
      height: 12.05128vw; } }

.deco-money-2 {
  background: url("../images/deco_money-2.png") no-repeat center;
  background-size: cover;
  width: 129.5px;
  height: 132.5px; }
  @media (max-width: 768px) {
    .deco-money-2 {
      width: 15.89744vw;
      height: 16.15385vw; } }

.deco-money-3 {
  background: url("../images/deco_money-3.png") no-repeat center;
  background-size: cover;
  width: 130px;
  height: 132.5px; }
  @media (max-width: 768px) {
    .deco-money-3 {
      width: 15.89744vw;
      height: 16.15385vw; } }

@media (max-width: 768px) {
  .desktop-only {
    display: none; } }

.mobile-only {
  display: none; }
  @media (max-width: 768px) {
    .mobile-only {
      display: block; } }

.roboto {
  font-family: "Roboto", sans-serif; }

.inter {
  font-family: "Inter", sans-serif; }

.dawho-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 10; }
  .dawho-marquee .marquee__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 16px;
    -webkit-animation: marquee 24s linear infinite;
    animation: marquee 24s linear infinite; }
    .dawho-marquee .marquee__content .marquee__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 8px;
      -ms-flex-negative: 0;
      flex-shrink: 0; }
      .dawho-marquee .marquee__content .marquee__item .marquee__text {
        color: #000;
        font-family: Inter, sans-serif;
        font-size: 150px;
        font-weight: 900;
        line-height: 1.15;
        white-space: nowrap;
        -webkit-text-stroke: 1.5px transparent;
        background: -webkit-gradient(linear, left top, right top, from(#999), to(#fff));
        background: -webkit-linear-gradient(left, #999, #fff);
        background: -o-linear-gradient(left, #999, #fff);
        background: linear-gradient(to right, #999, #fff);
        -webkit-background-clip: text;
        background-clip: text; }
        @media (max-width: 1279px) {
          .dawho-marquee .marquee__content .marquee__item .marquee__text {
            font-size: 11.72791vw; } }
        @media (max-width: 768px) {
          .dawho-marquee .marquee__content .marquee__item .marquee__text {
            font-size: 21.13333vw;
            -webkit-text-stroke: 1px transparent; } }
      .dawho-marquee .marquee__content .marquee__item .marquee__icon {
        width: 58px;
        height: 58px;
        -ms-flex-negative: 0;
        flex-shrink: 0; }
        @media (max-width: 1279px) {
          .dawho-marquee .marquee__content .marquee__item .marquee__icon {
            width: 4.53479vw;
            height: 4.53479vw; } }
        @media (max-width: 768px) {
          .dawho-marquee .marquee__content .marquee__item .marquee__icon {
            width: 7.69231vw;
            height: 7.69231vw; } }

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0; }
