@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;
}

/*
.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);
}
*/
.element {
  width: 5%;
}

.element {
  width: 100px;
  height: 50px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  color: black;
  background-color: #5A4E4C;
}

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

a {
  color: #00a0e6;
  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;
}

[data-drag-scroll] {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
[data-drag-scroll]::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
[data-drag-scroll]::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
}

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;
}
ol .circle-counter {
  counter-reset: step;
}
ol .circle-counter > li {
  counter-increment: step;
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}
ol .circle-counter > li::before {
  content: counter(step);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0.1em;
}

ol.comment {
  counter-reset: my-awesome-counter;
}
ol.comment > li {
  counter-increment: my-awesome-counter;
  list-style: none !important;
  position: relative;
  list-style: none;
  margin-left: 2em !important;
  text-align: justify;
  text-justify: inter-ideograph;
}
ol.comment > li::before {
  content: "註" counter(my-awesome-counter) "：";
  position: absolute;
  left: -2.5em;
}

@-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(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  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;
  }
}
@-webkit-keyframes sandMove {
  0%, 100% {
    opacity: 0;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  30% {
    opacity: 1;
    -webkit-transform: translate(2px, -2px) scale(1.01, 1);
            transform: translate(2px, -2px) scale(1.01, 1);
  }
  70% {
    opacity: 0;
    -webkit-transform: translate(6px, -2px) scale(1.06, 1);
            transform: translate(6px, -2px) scale(1.06, 1);
  }
}
@keyframes sandMove {
  0%, 100% {
    opacity: 0;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  30% {
    opacity: 1;
    -webkit-transform: translate(2px, -2px) scale(1.01, 1);
            transform: translate(2px, -2px) scale(1.01, 1);
  }
  70% {
    opacity: 0;
    -webkit-transform: translate(6px, -2px) scale(1.06, 1);
            transform: translate(6px, -2px) scale(1.06, 1);
  }
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.93);
            transform: scale(0.93);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.94);
            transform: scale(0.94);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.93);
            transform: scale(0.93);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.94);
            transform: scale(0.94);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@-webkit-keyframes shinyAnim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes shinyAnim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes shineDiagonal {
  0% {
    -webkit-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%);
  }
  100% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }
}
@keyframes shineDiagonal {
  0% {
    -webkit-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%);
  }
  100% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }
}
@-webkit-keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes cardSwing {
  0%, 100% {
    -webkit-transform: rotate(-11deg);
            transform: rotate(-11deg);
  }
  50% {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
  }
}
@keyframes cardSwing {
  0%, 100% {
    -webkit-transform: rotate(-11deg);
            transform: rotate(-11deg);
  }
  50% {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
  }
}
@-webkit-keyframes dawho-tiger-shine {
  0% {
    background-position: 90% 90%;
  }
  72% {
    background-position: 10% 10%;
  }
  100% {
    background-position: 10% 10%;
  }
}
@keyframes dawho-tiger-shine {
  0% {
    background-position: 90% 90%;
  }
  72% {
    background-position: 10% 10%;
  }
  100% {
    background-position: 10% 10%;
  }
}
.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);
          transform: translate(0, -50px);
}
.js-animate--fadein-down {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media (min-width: 769px) {
  .js-animate--fadein-down-max {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}
@media (max-width: 768px) {
  .js-animate--fadein-down-min {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}
.js-animate--fadein-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}
.js-animate--fadein-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
}
.js-animate--maskin-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.js-animate--maskin-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.js-animate--maskin-up {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.js-animate--maskin-down {
  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);
          transform: scale(0.9);
}
.js-animate--active {
  opacity: unset;
  -webkit-transform: unset;
          transform: unset;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .js-animate--active {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@supports not (transform: unset) {
  .js-animate--active {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.js-animate--active {
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}
.js-animate--active[class*="--maskin"] {
  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;
          transition-delay: 100ms;
}
.js-animate--delay200 {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.js-animate--delay300 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.js-animate--delay400 {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.js-animate--delay500 {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.js-animate--delay600 {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.js-animate--delay700 {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.js-animate--delay800 {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.js-animate--delay900 {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.js-animate--delay1000 {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

#qrcode-popup {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 98;
}
@media (max-width: 768px) {
  #qrcode-popup {
    display: none;
  }
}
#qrcode-popup .main {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(170, 170, 170, 0.219))), url(../images/benefits/bg-benefits_mobile.png) no-repeat center;
  background: linear-gradient(rgba(170, 170, 170, 0.219)), url(../images/benefits/bg-benefits_mobile.png) no-repeat center;
  background-size: 100% 100%;
  border: 4px solid #ceb071;
  border-radius: 32px;
  z-index: 99;
  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;
  max-width: 390px;
  width: 100%;
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  #qrcode-popup .main {
    min-width: 320px;
  }
}
#qrcode-popup .main #btn-close-qrcode-popup {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 16px;
  right: 16px;
  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;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 20px;
}
#qrcode-popup .main .title {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
  color: #ceb071;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #qrcode-popup .main .title {
    font-size: 16px;
    margin-bottom: 2.0833333333vw;
  }
}
#qrcode-popup .main .qrcode-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 190px;
  position: relative;
}
#qrcode-popup .main .qrcode-img:before {
  content: "";
  background: url(../images/sinopac-logo-xs.svg) no-repeat;
  max-width: 40px;
  width: 9vw;
  height: 9vw;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#qrcode-popup .main .qrcode-img canvas {
  max-width: 190px;
  width: 100%;
  border: 4px solid #ceb071;
  padding: 8px;
  background-color: #fff;
}

.lightbox {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
  background-color: #332727;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: opacity 0.25s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 15;
  visibility: hidden;
  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;
}
.lightbox--active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox__content {
  margin-top: clamp(40px, 12.5vh, 80px);
}
.lightbox__content ol li ol li {
  list-style: none;
}
.lightbox__content ol > li {
  list-style: decimal;
}
.lightbox__box {
  position: relative;
  max-width: 991px;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  margin: 10px auto;
  background: #fff;
  padding: 1.875em 3.75em;
  border-radius: 2em;
  max-height: 120vh;
}
.lightbox__box-more {
  max-height: 875px;
}
@media (max-width: 768px) {
  .lightbox__box-more {
    max-height: 97.65625vw;
  }
}
@media (max-width: 768px) {
  .lightbox__box {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .lightbox__box {
    max-height: 80vh;
    padding: 2.6041666667vw 5.2083333333vw;
  }
}
.lightbox__btn-close {
  background: url("../images/icon-close.svg") no-repeat;
  display: block;
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  padding: 5px;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 768px) {
  .lightbox__btn-close {
    right: 24px;
    width: 28px;
    height: 28px;
  }
}
.lightbox__btn-close-white {
  background: url("../images/icon-close-white.svg") no-repeat;
  display: block;
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  padding: 5px;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 768px) {
  .lightbox__btn-close-white {
    right: 24px;
    width: 28px;
    height: 28px;
  }
}
.lightbox__head {
  font-size: clamp(24px, 5vw, 50px);
  font-family: "Roboto", "Noto Sans TC";
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  padding-right: 28px;
}
.lightbox__body {
  color: #bdbdbd;
  line-height: 1.75;
}
.lightbox__body .fc-reminder {
  color: #e7231d;
}

.lightbox .container {
  height: 100%;
}
.lightbox .container .lightbox__content {
  height: 100%;
}
.lightbox .lightbox__box {
  border-radius: 1.5em;
  display: block;
}
@media (max-width: 768px) {
  .lightbox .lightbox__box {
    position: absolute;
    top: 10vh;
    right: clamp(16px, 5vw, 80px);
    left: clamp(16px, 5vw, 80px);
    bottom: 10vh;
  }
}
@media (max-width: 768px) {
  .lightbox .lightbox__box .lightbox__body {
    position: absolute;
    top: 100px;
    left: clamp(16px, 5vw, 80px);
    right: clamp(16px, 5vw, 80px);
    bottom: clamp(16px, 5vw, 60px);
    overflow-y: auto;
  }
}
@media (max-width: 598px) {
  .lightbox .lightbox__box .lightbox__body {
    font-size: 14px;
  }
}
.lightbox .seminar-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-top: 60px;
  padding: 15px;
  background-color: #efeeee;
}
@media (max-width: 768px) {
  .lightbox .seminar-title {
    margin-top: 2.6041666667vw;
  }
}
.lightbox.active {
  display: block;
}
.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightbox__outer {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  background: #fff;
  overflow: auto;
  padding: 6.5% 0px;
}
@media (max-width: 1024px) {
  .lightbox__outer {
    overflow: auto;
    padding-top: 40px;
  }
}
.lightbox__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.lightbox__inner h4 {
  background: #efeeee;
  padding: 2px 0;
}
.lightbox__inner p {
  color: #efeeee;
}
.lightbox__table {
  color: #e0e0e0;
  display: table;
  width: 100%;
  table-layout: fixed; /* 使用 fixed 属性 */
  border-collapse: collapse;
  text-align: center;
}
.lightbox__table__thead, .lightbox__table__tr {
  display: table-row;
}
.lightbox__table__tr:nth-child(even) {
  background: #feefe9;
}
.lightbox__table__td {
  display: table-cell;
  padding: 15px 0px;
}
@media (max-width: 768px) {
  .lightbox__table__td {
    font-size: clamp(12px, 3vw, 16px);
  }
}
.lightbox__close {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .lightbox__close {
    top: 0;
  }
}
.lightbox__close:before, .lightbox__close::after {
  content: "";
  background: #efeeee;
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
}
@media (max-width: 1024px) {
  .lightbox__close:before, .lightbox__close::after {
    width: 25px;
    left: 50%;
  }
}
.lightbox__close:before {
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
@media (max-width: 1024px) {
  .lightbox__close:before {
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
            transform: rotate(45deg) translate(-50%, -50%);
  }
}
.lightbox__close::after {
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
@media (max-width: 1024px) {
  .lightbox__close::after {
    top: 15%;
    -webkit-transform: rotate(-45deg) translateX(-50%);
            transform: rotate(-45deg) translateX(-50%);
  }
}
.lightbox__recruit {
  display: none;
}
.lightbox__recruit.active {
  display: block;
}
.lightbox__recruit__outer {
  max-height: 815px;
  overflow-y: scroll;
  padding-right: 2px;
}
.lightbox__recruit__outer::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}
.lightbox__recruit__outer::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(218, 87, 42, 0.6);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .lightbox__recruit__outer {
    max-height: 95%;
  }
}
.lightbox__recruit__outer > p {
  text-align: left;
  margin-top: 15px;
}
.lightbox__share {
  display: none;
}
.lightbox__share.active {
  display: block;
}
.lightbox__share__inner {
  display: none;
}
.lightbox__share__inner.active {
  display: block;
}
.lightbox__share__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lightbox__share__file img {
  width: 250px;
}
@media (max-width: 1024px) {
  .lightbox__share__file img {
    width: 40%;
  }
}
.lightbox__share__name {
  margin-left: 14%;
}
.lightbox__share__name h5 {
  letter-spacing: 0.2rem;
}
.lightbox__share__text {
  margin-top: 6%;
}
.lightbox__share__text p {
  text-align: justify;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .lightbox__share__text p {
    line-height: 1.4;
  }
}

#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;
}

.section-title {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: white;
  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;
  margin-bottom: 60px;
  z-index: 1;
}
@media (max-width: 1279px) {
  .section-title {
    font-size: 2.8146989836vw;
    margin-bottom: 4.6911649726vw;
  }
}
.section-title .text_gold-gradient {
  font-weight: 900;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 6.4vw;
    margin-bottom: 7.4666666667vw;
    white-space: nowrap;
  }
}
.section-title::before, .section-title::after {
  content: "";
  background: url(../images/title-star.svg) center;
  background-size: contain;
  width: 40px;
  height: 40px;
}
@media (max-width: 1279px) {
  .section-title::before, .section-title::after {
    width: 3.1274433151vw;
    height: 3.1274433151vw;
  }
}
@media (max-width: 768px) {
  .section-title::before, .section-title::after {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.section-title::before {
  margin-right: 12px;
}
@media (max-width: 1279px) {
  .section-title::before {
    margin-right: 0.9382329945vw;
  }
}
@media (max-width: 768px) {
  .section-title::before {
    margin-right: 2.1333333333vw;
  }
}
.section-title::after {
  margin-left: 12px;
}
@media (max-width: 1279px) {
  .section-title::after {
    margin-left: 0.9382329945vw;
  }
}
@media (max-width: 768px) {
  .section-title::after {
    margin-left: 2.1333333333vw;
  }
}

.section-button {
  cursor: pointer;
  display: inline-block;
  min-width: 240px;
  line-height: 1.2;
  padding: 12px 36px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #000;
  border-radius: 40px;
  border: 2.67px solid transparent;
}
@media (max-width: 1279px) {
  .section-button {
    min-width: 18.7646598905vw;
    font-size: 2.5019546521vw;
    padding: 0.9382329945vw 2.8146989836vw;
  }
}
.section-button {
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73)) padding-box, -webkit-gradient(linear, left top, right bottom, from(#FFF3D4), color-stop(31%, #CFB788), color-stop(59%, #F3D9AF), color-stop(94%, #FFF0E2)) border-box;
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%) padding-box, linear-gradient(to right bottom, #FFF3D4 0%, #CFB788 31%, #F3D9AF 59%, #FFF0E2 94%) border-box;
}
.section-button:hover {
  color: white;
  background: -webkit-gradient(linear, left top, right bottom, from(#A48B59), to(#121212)) padding-box, -webkit-gradient(linear, left top, right bottom, from(#FFF3D4), color-stop(31%, #CFB788), color-stop(59%, #F3D9AF), color-stop(94%, #FFF0E2)) border-box;
  background: linear-gradient(to right bottom, #A48B59 0%, #121212 100%) padding-box, linear-gradient(to right bottom, #FFF3D4 0%, #CFB788 31%, #F3D9AF 59%, #FFF0E2 94%) border-box;
}
@media (max-width: 768px) {
  .section-button {
    width: 64vw;
    height: 11.2vw;
    font-size: 5.3333333333vw;
    line-height: 9.9466666667vw;
    padding: 0px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 95;
  padding: 0 8px;
  -webkit-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: transparent;
}
@media (max-width: 1024px) {
  .header {
    padding: 0 20px;
  }
}
.header::after {
  content: "";
  position: fixed;
  top: 0;
  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);
  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: 1024px) {
  .header::after {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header.is-menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 1024px) {
  .header.is-menu-open .header__nav {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1024px) {
  .header.is-menu-open .header__nav-item,
  .header.is-menu-open .header__cta {
    -webkit-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: 23px;
  top: 0;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.header.is-menu-open .header__hamburger-line::after {
  width: 23px;
  bottom: 0;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.header__container {
  border: 2px solid #CEB071;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 40px;
  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;
  max-width: 1128px;
  margin: 24px auto 0;
  padding: 0px 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .header__container {
    padding: 0;
    margin: 12px auto 0;
  }
}
.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;
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__wrapper {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 40px;
    padding: 12px 20px;
    height: 52px;
    z-index: 2;
  }
}
.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;
  height: auto;
  max-width: 140px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .header__logo {
    margin-left: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.header__logo-img {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 1024px) {
  .header__logo-img {
    height: 28px;
  }
}
.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: 1024px) {
  .header__nav {
    position: fixed;
    top: 52px;
    left: 20px;
    right: 20px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-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 {
    border-radius: 0 0 40px 40px;
    border: 2px solid #CEB071;
    border-top: none;
  }
}
.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: 1024px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 24px 20px;
    background: #181818;
    height: auto;
  }
}
.header__nav-item {
  position: relative;
}
.header__nav-item:not(:first-child)::after {
  content: "";
  position: absolute;
  height: 15.5px;
  width: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #c4c4c4;
}
@media (max-width: 1024px) {
  .header__nav-item:not(:first-child)::after {
    background: #8c8c8c;
    height: 0.75px;
    width: 100%;
    top: 0;
  }
}
@media (max-width: 1024px) {
  .header__nav-item {
    padding: 24px;
    width: 100%;
    -webkit-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);
    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);
  }
  .header__nav-item:nth-child(1) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .header__nav-item:nth-child(2) {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .header__nav-item:nth-child(3) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .header__nav-item:nth-child(4) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .header__nav-item:nth-child(5) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .header__nav-item {
    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-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 28px;
  font-family: "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.8px;
  letter-spacing: 0.02em;
  color: white;
  -webkit-transition: all 450ms;
  transition: all 450ms;
  -webkit-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;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  margin: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  width: 0px;
  height: 4px;
  background-color: #DEB770;
}
.header__nav-link:hover {
  background: radial-gradient(50% 50% at 50% 50%, #CEB071 0%, rgba(0, 0, 0, 0) 65%);
}
.header__nav-link.is-active::after {
  width: 100%;
}
@media (max-width: 1279px) {
  .header__nav-link.is-active::after {
    width: 0;
  }
}
@media (max-width: 1024px) {
  .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: 1024px) {
  .header__nav-link:hover, .header__nav-link.is-active {
    background: transparent;
  }
}
.header__nav-link.is-disabled {
  color: #e0e0e0;
  pointer-events: none;
  cursor: not-allowed;
}
.header__menu-toggle {
  position: absolute;
  display: none;
  right: 24px;
  top: 50%;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 1000;
  -webkit-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%);
          transform: translateY(-50%);
  background-color: transparent;
}
@media (max-width: 1024px) {
  .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: 24px;
  height: 24px;
  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: 23px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  -webkit-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: #fff;
  border-radius: 2px;
  height: 2px;
  -webkit-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: 23px;
  top: -7px;
  left: 0;
}
.header__hamburger-line::after {
  width: 23px;
  bottom: -7px;
  left: 0;
}

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

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

@keyframes shine-move {
  0% {
    right: 110%;
  }
  40%, 100% {
    right: -50%;
  }
}
.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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #footer .top-wrap .list-wrap ul {
    margin-right: 0;
    width: 50%;
  }
}
@media (max-width: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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%);
          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: 769px) {
  #footer_download .footer_download_con {
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    min-width: auto;
  }
}
#footer_download .footer_download_con .footer_download_img {
  margin-right: 40px;
}
@media (max-width: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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: 769px) {
  #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";
}
body.scroll-fixed {
  overflow: hidden;
}

.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;
}
@media (max-width: 991px) {
  main .wrap__inner .wrap__head {
    max-width: none;
  }
}
main .wrap__inner .wrap__head {
  margin-bottom: 15px;
}
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;
}
@media (max-width: 1279px) {
  .content--main:before {
    padding-top: 80px;
  }
}
.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;
}

.section-kv {
  background: url(../images/kv/kv-bg.png);
  background-position: top;
  background-size: 2048px 1037px;
  background-repeat: no-repeat;
  position: relative;
  padding: 200px 20px 60px !important;
}
@media (max-width: 1279px) {
  .section-kv {
    padding: 15.6372165754vw 1.5637216575vw 6.2548866302vw !important;
    background-size: 160.1250977326vw 81.0789679437vw;
  }
}
@media (max-width: 1179px) {
  .section-kv {
    padding-top: 14.4644253323vw !important;
  }
}
@media (max-width: 991px) {
  .section-kv {
    padding-top: 12.5097732604vw !important;
  }
}
@media (max-width: 768px) {
  .section-kv {
    padding: 24.7395833333vw 5.3385416667vw 13.5416666667vw 5.3385416667vw !important;
    background: url(../images/kv/kv-bg-mb.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
.section-kv::before {
  content: "";
  position: absolute;
  width: 2700px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(178deg, rgba(18, 18, 18, 0) 27%, rgba(188, 142, 45, 0.4) 100%, rgba(162, 112, 8, 0.8) 100%);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 768px) {
  .section-kv::before {
    width: 185.8666666667vw;
    height: 62.4vw;
    bottom: -20px;
    display: none;
  }
}
@media (max-width: 598px) {
  .section-kv::before {
    bottom: 50px;
  }
}
@media (max-width: 390px) {
  .section-kv::before {
    bottom: 90px;
  }
}
.section-kv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 269px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0)), to(#111111));
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, #111111 100%);
  left: 0;
  bottom: 134px;
  z-index: -1;
}
.section-kv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-kv__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .section-kv__button {
    margin-bottom: 3.90625vw;
  }
}
@media (max-width: 768px) {
  .section-kv__button {
    margin-bottom: 7.4666666667vw;
  }
}
.section-kv__button .section-button {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.33;
  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;
}
@media (max-width: 1279px) {
  .section-kv__button .section-button {
    font-size: 2.1892103206vw;
  }
}
@media (max-width: 768px) {
  .section-kv__button .section-button {
    font-size: 5.3333333333vw;
  }
}

.kv {
  max-width: 1049px;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 145px;
}
@media (max-width: 1279px) {
  .kv {
    margin-bottom: 9.3823299453vw;
  }
}
@media (max-width: 768px) {
  .kv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    margin-top: 1.8229166667vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8vw;
    padding: 0 5.2083333333vw;
  }
}
.kv__content {
  position: relative;
  max-width: 492px;
  width: 100%;
  margin-top: 123px;
}
@media (max-width: 1024px) {
  .kv__content {
    max-width: 41.9921875vw;
  }
}
@media (max-width: 768px) {
  .kv__content {
    margin-top: 0;
    margin-bottom: 64px;
    max-width: none;
  }
}
.kv__duration {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 29px;
}
@media (max-width: 1279px) {
  .kv__duration {
    font-size: 1.8764659891vw;
    margin-bottom: 2.2673964034vw;
  }
}
@media (max-width: 768px) {
  .kv__duration {
    font-size: 4.8vw;
    margin-bottom: 3.7333333333vw;
  }
}
.kv__info {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 13px;
  text-align: center;
}
@media (max-width: 1279px) {
  .kv__info {
    font-size: 2.9710711493vw;
    margin-bottom: 1.0164190774vw;
  }
}
@media (max-width: 768px) {
  .kv__info {
    font-size: 8.6933333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.kv__info span {
  font-weight: 900;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.kv__separation {
  width: 100%;
  height: 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;
  position: relative;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .kv__separation {
    margin-bottom: 2.1333333333vw;
  }
}
.kv__separation .task--label {
  margin: 0;
  font-size: 24px;
  width: 143px;
  height: 41px;
  padding: 6px 24px;
}
@media (max-width: 1279px) {
  .kv__separation .task--label {
    font-size: 1.8764659891vw;
    width: 11.1806098514vw;
    height: 3.205629398vw;
    padding: 0.4691164973vw 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .kv__separation .task--label {
    font-size: 4.2666666667vw;
    width: 25.8666666667vw;
    height: 7.2vw;
    padding: 0;
    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;
  }
}
.kv__separation::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #DCC388;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.kv__title {
  max-width: 492px;
  width: 100%;
  margin: 12px auto 0 auto;
}
@media (max-width: 1279px) {
  .kv__title {
    max-width: 33.776387803vw;
  }
}
@media (max-width: 768px) {
  .kv__title {
    max-width: 100%;
  }
}
.kv__tiger {
  position: relative;
  width: 432px;
  height: 432px;
  top: 1%;
  left: -6%;
}
@media (max-width: 1024px) {
  .kv__tiger {
    width: 42.1875vw;
    height: 42.1875vw;
  }
}
@media (max-width: 768px) {
  .kv__tiger {
    top: 0;
    width: 53.6vw;
    height: 53.6vw;
    margin-left: auto;
    margin-right: 10px;
  }
}
.kv__tiger img {
  width: 100%;
  height: 100%;
  max-width: none;
}
.kv__tiger .shine-effect {
  position: absolute;
  top: 30%;
  left: 21%;
  width: 58%;
  height: 55%;
  background: transparent;
  z-index: 2;
  overflow: hidden;
}
.kv__tiger .dawho-tiger {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.kv__tiger .dawho-tiger-wrap {
  position: relative;
  display: inline-block;
  left: -8%;
}
@media (max-width: 768px) {
  .kv__tiger .dawho-tiger-wrap {
    left: -22%;
    width: 124.5%;
    top: -24%;
  }
}
.kv__tiger .dawho-tiger-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 43%, rgba(255, 255, 255, 0.08) 47%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.08) 53%, transparent 57%, transparent 100%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  -webkit-animation: dawho-tiger-shine 3.3s linear infinite;
          animation: dawho-tiger-shine 3.3s linear infinite;
  -webkit-mask-image: url("../images/kv/dawho-tiger.png");
          mask-image: url("../images/kv/dawho-tiger.png");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  z-index: 1;
}
.kv__tiger .stage {
  position: absolute;
  width: 228.19%;
  height: 30.43%;
  bottom: -11.52%;
  right: -58.24%;
  z-index: 0;
  pointer-events: none;
}
.kv__tiger .shine {
  position: absolute;
  width: 295.84%;
  height: 100.2%;
  bottom: -1.73%;
  left: -104.5%;
  mix-blend-mode: screen;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: shinyAnim 5s ease-in-out infinite;
          animation: shinyAnim 5s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 768px) {
  .kv__tiger .shine {
    width: 535px;
    height: 222px;
    left: -161px;
    mix-blend-mode: screen;
  }
}
.kv__tiger .giftbox {
  position: absolute;
  width: 55.05%;
  height: 32.17%;
  bottom: -15.43%;
  right: -31.91%;
}
@media (max-width: 768px) {
  .kv__tiger .giftbox {
    display: none;
  }
}
.kv-sand-01 {
  left: calc(50% + 327px);
  top: 104px;
  background-position: -100% 0;
  -webkit-animation: sandMove 7s ease-in infinite;
          animation: sandMove 7s ease-in infinite;
}
.kv-sand-02 {
  right: calc(50% + 138px);
  top: 485px;
  -webkit-animation: sandMove 8s ease-in infinite;
          animation: sandMove 8s ease-in infinite;
}
.kv-goldenBall-01 {
  width: 80px;
  height: 80px;
  -webkit-transform: rotate(-37.668deg);
          transform: rotate(-37.668deg);
  top: 32%;
  left: 8%;
}
@media (max-width: 1024px) {
  .kv-goldenBall-01 {
    top: 22%;
    left: -3%;
  }
}
@media (max-width: 768px) {
  .kv-goldenBall-01 {
    top: 42%;
    width: 13.8666666667vw;
    height: 14.1333333333vw;
  }
}
.kv-goldenBall-02 {
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(32.804deg);
          transform: rotate(32.804deg);
  bottom: 29%;
  left: 9%;
}
@media (max-width: 768px) {
  .kv-goldenBall-02 {
    display: none;
  }
}
.kv-star-01 {
  width: 19px;
  height: 19px;
  top: 24.2%;
  left: 15%;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
@media (max-width: 768px) {
  .kv-star-01 {
    display: none;
  }
}
.kv-star-02 {
  width: 19px;
  height: 19px;
  top: 50.2%;
  left: 5%;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
@media (max-width: 768px) {
  .kv-star-02 {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
    top: 69%;
    left: 9%;
  }
}
.kv-star-03 {
  width: 19px;
  height: 19px;
  top: 34.2%;
  left: -14%;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
@media (max-width: 768px) {
  .kv-star-03 {
    display: none;
  }
}
.kv-star-04 {
  width: 19px;
  height: 19px;
  top: 10.2%;
  left: -14.9%;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
@media (max-width: 768px) {
  .kv-star-04 {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
    top: -12%;
    left: 24%;
  }
}
.kv-star-05 {
  width: 19px;
  height: 19px;
  top: 59.04%;
  right: -53%;
  -webkit-animation-duration: 1.9s;
          animation-duration: 1.9s;
}
@media (max-width: 768px) {
  .kv-star-05 {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
    top: 25%;
    right: -16%;
  }
}
.kv-coins-01 {
  width: 70px;
  height: 71px;
  -webkit-transform: rotate(32.435deg);
          transform: rotate(32.435deg);
  top: 16.48%;
  right: -12%;
}
@media (max-width: 768px) {
  .kv-coins-01 {
    width: 6.4vw;
    height: 6.4vw;
    right: -21%;
    top: -9%;
  }
}
.kv-coins-02 {
  width: 29.504px;
  height: 30px;
  -webkit-transform: rotate(-39.102deg);
          transform: rotate(-39.102deg);
  bottom: -23%;
  right: -25%;
}
@media (max-width: 768px) {
  .kv-coins-02 {
    display: none;
  }
}

#kv-scroll {
  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;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 768px) {
  #kv-scroll {
    bottom: 2.5641025641vw;
  }
}
#kv-scroll #scroll-circle {
  position: relative;
  width: 24px;
  height: 32px;
  border: 2px solid white;
  border-radius: 40px;
  margin-bottom: 8px;
}
#kv-scroll #scroll-circle .dot {
  position: absolute;
  background-color: white;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 15%;
  -webkit-animation: mouseScroll 3s infinite;
  animation: mouseScroll 3s infinite;
}
@media (max-width: 768px) {
  #kv-scroll #scroll-circle {
    display: none;
  }
}
#kv-scroll span {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-align: center;
  color: white;
}
@media (max-width: 768px) {
  #kv-scroll span {
    font-size: 3.7333333333vw;
    line-height: 1.7;
  }
}

.section-guide.section {
  padding: 72px 20px 80px;
}
@media (max-width: 1279px) {
  .section-guide.section {
    padding: 5.6293979672vw 1.5637216575vw 6.2548866302vw;
  }
}
@media (max-width: 991px) {
  .section-guide.section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .section-guide.section {
    padding-top: 13.0208333333vw;
    padding-bottom: 2.6041666667vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.section-guide__info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-guide__info {
    margin-bottom: 11.7333333333vw;
  }
}
.section-guide__info .event-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-guide__info .event-info:first-child {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section-guide__info .event-info:first-child {
    margin-bottom: 3.2vw;
  }
}
.section-guide__info .event-info__label {
  color: black;
  margin-right: 12px;
  padding: 4px 8px;
  background: linear-gradient(163deg, #fcf7c2 0%, #f3e8b1 18%, #dcc388 34%, #dcaf73 66%);
  background-size: 100% 200%;
  background-position: top;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-guide__info .event-info__label {
    margin-left: -20px;
    font-size: 4.2666666667vw;
    margin-right: 3.2vw;
  }
}
.section-guide__info .event-info__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-guide__info .event-info__text {
    font-size: 4.2666666667vw;
  }
}
.section-guide__title {
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .section-guide__title {
    margin-bottom: 7.4666666667vw;
  }
}
.section-guide__description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  max-width: 710px;
  width: 100%;
  margin: 0 auto 40px auto;
  text-align: center;
}
@media (max-width: 1279px) {
  .section-guide__description {
    margin-bottom: 0.625488663vw;
  }
}
@media (max-width: 768px) {
  .section-guide__description {
    font-size: 4.2666666667vw;
    margin-bottom: 7.4666666667vw;
    text-align: left;
  }
}
.section-guide__description span {
  font-weight: bold;
  color: #deb770;
}
.section-guide__note {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
  border-radius: 99px;
  background-color: #deb770;
  color: #fff;
  font-weight: 700;
  padding: 8px 16px;
  text-wrap: nowrap;
}
@media (max-width: 1279px) {
  .section-guide__note {
    margin: 0 auto 4.6911649726vw;
    border-radius: 7.7404222048vw;
    padding: 0.625488663vw 1.250977326vw;
  }
}
@media (max-width: 768px) {
  .section-guide__note {
    max-width: none;
    font-size: 3.6458333333vw;
    margin-bottom: 10.4166666667vw;
    padding: 1.0416666667vw 2.0833333333vw;
  }
}
.section-guide__how {
  margin-bottom: 63px;
}
@media (max-width: 768px) {
  .section-guide__how {
    margin-bottom: 13.8666666667vw;
  }
}
.section-guide__subTitle {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-guide__subTitle {
    font-size: 5.3333333333vw;
    margin-bottom: 6.4vw;
  }
}
.section-guide__task {
  max-width: 934px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section-guide__task .ribbon {
  position: absolute;
  width: 152px;
  height: 112px;
  background: url(../images/guide/guide-ribbon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: -2px;
  left: -5px;
  z-index: 1;
}
.section-guide__guide {
  max-width: 934px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 160px;
}
@media (max-width: 1279px) {
  .section-guide__guide {
    margin-bottom: 9.3823299453vw;
  }
}
@media (max-width: 768px) {
  .section-guide__guide {
    margin-bottom: 16vw;
  }
}
.section-guide__finance {
  margin-bottom: 80px;
}
@media (max-width: 1279px) {
  .section-guide__finance {
    margin-bottom: 6.2548866302vw;
  }
}
.section-guide__finance--title {
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .section-guide__finance--title {
    margin-bottom: 7.4666666667vw;
  }
}
.section-guide__finance--title-wrap {
  display: inline;
  text-align: center;
}
.section-guide__finance--title .is-mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-guide__finance--title .is-mobile {
    display: block;
  }
}
.section-guide__finance--title::before, .section-guide__finance--title::after {
  margin: 0;
}
.section-guide__finance--info {
  max-width: 909px;
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .section-guide__finance--info {
    font-size: 4.8vw;
    margin-bottom: 16vw;
    text-align: left;
  }
}
.section-guide__finance--info .highlight {
  color: #deb770;
}
.section-guide__finance--info .is-mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-guide__finance--info .is-mobile {
    display: block;
  }
}
.section-guide__restricted .restricted-card__wrapper {
  max-width: 934px;
  width: 100%;
  overflow: visible;
  position: relative;
}
@media (max-width: 1279px) {
  .section-guide__restricted .restricted-card__wrapper {
    max-width: 100%;
  }
}
.section-guide__restricted .restricted-card__wrapper .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1179px) {
  .section-guide__restricted .restricted-card__wrapper .swiper-wrapper {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__wrapper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
.section-guide__restricted .restricted-card__wrapper .swiper-slide {
  height: auto;
}
.section-guide__restricted .restricted-card__pagination {
  display: none;
  margin-top: 5px;
  text-align: center;
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__pagination {
    display: block;
    position: static;
  }
}
.section-guide__restricted .restricted-card__pagination .swiper-pagination-bullet {
  background: #fff;
  width: 6px;
  height: 6px;
  opacity: 1;
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__pagination .swiper-pagination-bullet {
    width: 1.614530777vw;
    height: 1.614530777vw;
  }
}
.section-guide__restricted .restricted-card__pagination .swiper-pagination-bullet-active {
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  opacity: 1;
}
.section-guide__restricted .restricted-card {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 24px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41.57%, rgba(17, 17, 17, 0.65)), color-stop(102.56%, rgba(103, 84, 59, 0.65)));
  background: linear-gradient(360deg, rgba(17, 17, 17, 0.65) 41.57%, rgba(103, 84, 59, 0.65) 102.56%);
  backdrop-filter: blur(4.95px);
  border-radius: 20px;
  margin: 0 auto;
  max-width: 295.3px;
  height: 100%;
  position: relative;
}
.section-guide__restricted .restricted-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.section-guide__restricted .restricted-card > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 1279px) {
  .section-guide__restricted .restricted-card {
    padding: 2.3455824863vw 1.5637216575vw;
    max-width: 25.0195465207vw;
  }
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card {
    max-width: 70.3329969728vw;
    padding: 5.297679112vw 6.0544904137vw;
  }
}
@media (max-width: 1024px) {
  .section-guide__restricted .restricted-card {
    height: auto;
  }
}
@media (max-width: 320px) {
  .section-guide__restricted .restricted-card {
    padding: 5.297679112vw 3.05449vw;
  }
}
.section-guide__restricted .restricted-card.card--01 .star--large {
  top: calc(50% + 9px);
  left: calc(50% - 89px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--01 .star--large {
    bottom: calc(50% - 20.0807265388vw);
    right: calc(50% - 21.3925327952vw);
  }
}
.section-guide__restricted .restricted-card.card--01 .star--small.star-01 {
  top: calc(50% - 42px);
  right: calc(50% - 86px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--01 .star--small.star-01 {
    top: calc(50% - 11.2008072654vw);
    right: calc(50% - 22.9061553986vw);
  }
}
.section-guide__restricted .restricted-card.card--01 .star--small.star-02 {
  bottom: calc(50% - 64px);
  right: calc(50% - 43px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--01 .star--small.star-02 {
    bottom: calc(50% - 11.2008072654vw);
    right: calc(50% - 22.9061553986vw);
  }
}
.section-guide__restricted .restricted-card.card--02 .star--large {
  top: calc(50% - 50px);
  right: calc(50% - 110px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--02 .star--large {
    top: calc(50% - 13.3198789102vw);
    right: calc(50% - 29.263370333vw);
  }
}
.section-guide__restricted .restricted-card.card--02 .star--small {
  bottom: calc(50% - 30px);
  left: calc(50% - 100px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--02 .star--small {
    bottom: calc(50% - 7.9717457114vw);
    left: calc(50% - 26.5388496468vw);
  }
}
.section-guide__restricted .restricted-card.card--03 .guide-labo-ribbon {
  position: absolute;
  top: 0;
  right: 27px;
  max-width: 64px;
  width: 18%;
  z-index: 2;
}
.section-guide__restricted .restricted-card.card--03 .star--large {
  bottom: calc(50% - 42px);
  left: calc(50% - 105px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--03 .star--large {
    bottom: calc(50% - 11.2008072654vw);
    left: calc(50% - 27.8506559031vw);
  }
}
.section-guide__restricted .restricted-card.card--03 .star--small {
  bottom: calc(50% - 74px);
  right: calc(50% - 98px);
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card.card--03 .star--small {
    bottom: calc(50% - 19.6770938446vw);
    right: calc(50% - 25.9334006054vw);
  }
}
.section-guide__restricted .restricted-card__img {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__img {
    margin-bottom: 3.6326942482vw;
  }
}
.section-guide__restricted .restricted-card__img img {
  height: 128px;
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__img img {
    height: 34.1333333333vw;
  }
}
.section-guide__restricted .restricted-card__img .deco {
  position: absolute;
  display: block;
}
.section-guide__restricted .restricted-card__img .star {
  background: url("../images/guide/star.png") no-repeat center;
  background-size: contain;
  -webkit-animation: spark-shine 3s ease-in-out infinite;
          animation: spark-shine 3s ease-in-out infinite;
}
.section-guide__restricted .restricted-card__img .star--large {
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__img .star--large {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }
}
.section-guide__restricted .restricted-card__img .star--small {
  width: 11px;
  height: 11px;
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__img .star--small {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }
}
.section-guide__restricted .restricted-card__title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 32px;
  background: url(../images/guide/guide_line.svg) bottom center no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__title {
    font-size: 6.3572149344vw;
    margin-bottom: 6.5085771948vw;
  }
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__title {
    padding-bottom: 8.5333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.section-guide__restricted .restricted-card__content {
  line-height: 160%;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__content {
    font-size: 4.2666666667vw;
  }
}
.section-guide__restricted .restricted-card__content b {
  color: #deb770;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__content b {
    font-size: 5.3333333333vw;
  }
}
.section-guide__restricted .restricted-card__badge {
  border-radius: 4px;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  display: inline-block;
  color: #000;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin: 8px 0 20px 0;
  padding: 4px 8px;
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__badge {
    font-size: 2.4217961655vw;
    margin-top: 2.1190716448vw;
    padding: 1.0595358224vw 2.1190716448vw;
  }
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__badge {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.section-guide__restricted .restricted-card__badge--placeholder {
  visibility: hidden;
}
.section-guide__restricted .restricted-card__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 320px) {
  .section-guide__restricted .restricted-card__notice {
    gap: 7px;
  }
}
.section-guide__restricted .restricted-card__notice-summary {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  border-radius: 9.5px;
  padding: 0px 8px;
  background: #deb770;
  height: 19px;
  line-height: 19px;
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__notice-summary {
    font-size: 3.7333333333vw;
    height: 5.0666666667vw;
    line-height: 5.0666666667vw;
  }
}
@media (max-width: 320px) {
  .section-guide__restricted .restricted-card__notice-summary {
    font-size: 14px;
    height: 19px;
    line-height: 19px;
  }
}
.section-guide__restricted .restricted-card__notice-description {
  font-size: 12px;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
}
@media (max-width: 768px) {
  .section-guide__restricted .restricted-card__notice-description {
    font-size: 3.2vw;
  }
}
@media (max-width: 320px) {
  .section-guide__restricted .restricted-card__notice-description {
    font-size: 12px;
  }
}
.section-guide__restricted .restricted-card__button {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 991px) {
  .section-guide__restricted .restricted-card__button {
    display: block;
    width: 8.072653885vw;
    height: 8.072653885vw;
  }
}
.section-guide__restricted .restricted-card__button::after {
  display: none;
}
.section-guide__restricted .restricted-card__button.restricted-card__button--prev {
  background: url("../images/guide/btn_swiper-prev.svg") no-repeat center;
  background-size: cover;
  left: 0;
}
.section-guide__restricted .restricted-card__button.restricted-card__button--next {
  background: url("../images/guide/btn_swiper-next.svg") no-repeat center;
  background-size: cover;
  right: 0;
}
.section-guide__restricted .section-button {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}
.section-guide__grade {
  margin-bottom: 80px;
  padding-top: 160px;
}
@media (max-width: 991px) {
  .section-guide__grade {
    padding-top: 7.8125vw;
  }
}
@media (max-width: 768px) {
  .section-guide__grade {
    margin-bottom: 16vw;
    padding-top: 16vw;
  }
}
.section-guide__grade .section-guide__subTitle {
  margin-bottom: 8px;
}
.section-guide__grade .section-guide__description {
  margin-bottom: 24px;
}
.section-guide__grade--wrap {
  max-width: 934px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section-guide__grade--wrap .ribbon {
  position: absolute;
  width: 152px;
  height: 112px;
  background: url(../images/guide/guide-ribbon1.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: -2px;
  left: -1px;
  z-index: 1;
}
.section-guide__grade--content {
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(38.8%, #171717), color-stop(69.06%, #3b3226), color-stop(93.54%, #594832));
  background: linear-gradient(0deg, #171717 38.8%, #3b3226 69.06%, #594832 93.54%);
  padding: 24px 0 0 0;
  position: relative;
}
.section-guide__grade--content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.section-guide__grade--content > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-guide__grade--content {
    padding-top: 9.6vw;
  }
}
.section-guide__grade .task--wrap {
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .section-guide__grade .task--wrap {
    padding-bottom: 8.4453333333vw;
  }
}
.section-guide__grade .task--dec {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  padding: 10px 24px;
  background: var(--golden, linear-gradient(177deg, #fcf7c2 -6.82%, #f3e8b1 19.04%, #dcc388 42.03%, #dcaf73 88.01%));
}
@media (max-width: 768px) {
  .section-guide__grade .task--dec {
    font-size: 4.8vw;
    padding: 2.6666666667vw 6.4vw;
  }
}
.section-guide__grade .task--item {
  width: 33.3333%;
  max-width: 219px;
  margin: 0 24px;
}
@media (max-width: 768px) {
  .section-guide__grade .task--item {
    width: 100%;
    max-width: 100%;
    padding: 0 6.4vw 5.3333333333vw 6.4vw;
  }
}
.section-guide__grade .task--item:first-child {
  margin-left: 40px;
}
@media (max-width: 768px) {
  .section-guide__grade .task--item:first-child {
    margin: 0;
  }
}
.section-guide__grade .task--item:first-child .task--item--text {
  text-align: left;
}
.section-guide__grade .task--item:last-child {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .section-guide__grade .task--item:last-child {
    margin: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .section-guide__grade .task--item--text br {
    display: none;
  }
}
.section-guide__grade .highlight {
  color: #deb770;
  font-size: 20px;
}
@media (max-width: 768px) {
  .section-guide__grade .highlight {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 768px) {
  .section-guide__grade .section-guide__description {
    text-align: center;
  }
}
.section-guide__grade .is-mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-guide__grade .is-mobile {
    display: block;
  }
}

.task {
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}
.task::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.task > * {
  position: relative;
  z-index: 1;
}
.task--01 {
  height: 175px;
  background: -webkit-gradient(linear, left top, left bottom, from(#594832), to(#3b3226));
  background: linear-gradient(to bottom, #594832 0%, #3b3226 100%);
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .task--01 {
    height: 61.3333333333vw;
    padding: 9.0666666667vw 6.4vw 0 6.4vw;
  }
}
.task--01::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 8px;
  background: #3b3226;
  z-index: 2;
}
.task--02 {
  height: 365px;
  background: -webkit-gradient(linear, left top, left bottom, from(#3b3226), to(#171717));
  background: linear-gradient(to bottom, #3b3226 0%, #171717 100%);
  padding: 45px 40px 21px 40px;
  position: relative;
}
@media (max-width: 768px) {
  .task--02 {
    height: auto;
    padding: 8.5333333333vw 6.4vw 7.2vw 6.4vw;
  }
}
.task--02::after {
  content: "";
  position: absolute;
  width: 92.6%;
  height: 0.5px;
  background-color: white;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .task--02::after {
    width: 72vw;
  }
}
.task--label {
  border-radius: 121.41px 0 121.41px 0;
  position: relative;
}
.task--label::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 121.41px 0 121.41px 0;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.task--label > * {
  position: relative;
  z-index: 1;
}
.task--label {
  padding: 6px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, right top, left top, from(#fcf7c2), color-stop(33%, #f3e8b1), to(#dcc388));
  background: linear-gradient(to left, #fcf7c2 0%, #f3e8b1 33%, #dcc388 100%);
  color: black;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 127px;
  text-align: center;
}
@media (max-width: 768px) {
  .task--label {
    font-size: 5.3333333333vw;
    padding: 1.6vw 4.2666666667vw;
    width: 33.8666666667vw;
  }
}
.task--info {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: white;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .task--info {
    font-size: 4.2666666667vw;
    text-align: left;
  }
}
.task--info span {
  color: #deb770;
}
.task--info .highlight {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .task--info .highlight {
    font-size: 4.8vw;
  }
}
.task--info .additional {
  font-size: 16px;
}
@media (max-width: 768px) {
  .task--info .additional {
    font-size: 3.2vw;
  }
}
.task--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .task--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.task--item {
  width: auto;
}
@media (max-width: 768px) {
  .task--item:first-child {
    margin-bottom: 5.3333333333vw;
  }
}
.task--item--icon {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .task--item--icon {
    width: 20vw;
    height: 20vw;
    margin-bottom: 4.2666666667vw;
  }
}
.task--item--icon::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  top: 0;
  right: -25.3%;
  background: url(../images/guide/guide-check.svg);
  background-position: center;
  background-size: 100%;
  -webkit-animation: fadeInOut 2s ease-in-out infinite;
          animation: fadeInOut 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .task--item--icon::before {
    width: 10.1333333333vw;
    height: 10.1333333333vw;
  }
}
.task--item--title {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .task--item--title {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.task--item--text {
  max-width: 362px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .task--item--text {
    font-size: 4.2666666667vw;
    max-width: 400px;
    text-align: justify;
  }
}
.task--item--text a {
  color: white;
  text-decoration: underline;
}
.task--item--text a:hover {
  text-decoration: none;
}
.task--separate {
  width: 51px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .task--separate {
    margin-bottom: 5.3333333333vw;
    width: calc(100% - 14.4vw);
  }
}
.task--separate img {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .task--separate img {
    width: 8.8vw;
    height: 8.8vw;
  }
}
.task--separate::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: transparent;
  border-left: 1px dashed #f3e8b1;
}
@media (max-width: 768px) {
  .task--separate::before {
    width: 100%;
    height: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: auto;
    border: none;
    border-bottom: 1px dashed #f3e8b1;
  }
}

.guide {
  width: 100%;
  height: 357px;
  margin: 0 auto;
  background: #212121;
  border-radius: 20px;
  -webkit-box-shadow: inset 4px 4px 8px #37342e, inset -4px -4px 8px #000;
          box-shadow: inset 4px 4px 8px #37342e, inset -4px -4px 8px #000;
  padding: 28px 80px;
}
@media (max-width: 768px) {
  .guide {
    padding: 5.3333333333vw 6.4vw;
    height: auto;
  }
}
.guide--tabGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guide--tabGroup {
    gap: 4.2666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.guide--tab {
  cursor: pointer;
  width: 136px;
  height: 46px;
  text-align: center;
  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;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, from(#2b2b2b), to(#202020));
  background: linear-gradient(to bottom, #2b2b2b 0%, #202020 100%);
  color: #deb770;
  -webkit-box-shadow: -5px -5px 20px #303030, 5px 5px 20px #000000, inset 2px 2px 6px #464646;
          box-shadow: -5px -5px 20px #303030, 5px 5px 20px #000000, inset 2px 2px 6px #464646;
}
@media (max-width: 768px) {
  .guide--tab {
    width: 36.2666666667vw;
    height: 12.2666666667vw;
    font-size: 5.3333333333vw;
  }
}
.guide--tab.is-active {
  background: linear-gradient(-11deg, #fcf7c2 0%, #f3e8b1 18%, #dcc388 34%, #dcaf73 66%);
  color: #000;
  -webkit-box-shadow: inset -2px -2px 10px #ded4bb, -5px -5px 20px #202020, 5px 5px 20px #0b0b0b, inset 2px 2px 10px #64533e;
          box-shadow: inset -2px -2px 10px #ded4bb, -5px -5px 20px #202020, 5px 5px 20px #0b0b0b, inset 2px 2px 10px #64533e;
}
.guide--scrollWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guide--scrollWrap {
    padding-bottom: 5.3333333333vw;
    margin-bottom: 6.9333333333vw;
  }
}
.guide--guideList {
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .guide--guideList {
    width: 633px;
    gap: 12px;
    justify-items: flex-start;
  }
}
.guide--guideList.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.guide--item {
  max-width: 165px;
  width: 100%;
  text-align: center;
}
.guide--icon {
  position: relative;
  border-radius: 50%;
  width: 120px;
  aspect-ratio: 1/1;
  background: linear-gradient(-4deg, #fcf7c2 0%, #f3e8b1 18%, #dcc388 34%, #dcaf73 100%);
  -webkit-box-shadow: inset -3px -3px 7.6px #674b03, 7px 7px 30px #0b0b0b, inset 3px 3px 15px #efc186;
          box-shadow: inset -3px -3px 7.6px #674b03, 7px 7px 30px #0b0b0b, inset 3px 3px 15px #efc186;
  margin: 0 auto;
  margin-bottom: 12px;
  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;
  overflow: hidden;
}
.guide--icon::after {
  position: absolute;
  content: "";
  top: -100%;
  left: -100%;
  width: 150%;
  height: 150%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.3) 71%, rgba(255, 255, 255, 0.5) 73%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shineDiagonal 2s ease-in-out infinite;
          animation: shineDiagonal 2s ease-in-out infinite;
  pointer-events: none;
}
.guide--icon img {
  width: 72px;
  height: 72px;
}
.guide--iconEnd {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  margin-bottom: 12px;
}
.guide--iconEnd img {
  width: 100%;
  height: 100%;
}
.guide--text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
}
.guide--text.highlight {
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.guide--mark {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.guide--notice {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .guide--notice {
    font-size: 3.2vw;
  }
}

.finance-box {
  max-width: 934px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  text-align: justify;
  position: relative;
}
.finance-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.finance-box > * {
  position: relative;
  z-index: 1;
}
.finance-box {
  background: -webkit-gradient(linear, left bottom, left top, from(#171717), color-stop(55%, #3b3226), to(#594832));
  background: linear-gradient(to top, #171717 0%, #3b3226 55%, #594832 100%);
  margin: 0 auto;
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .finance-box {
    padding: 5.8666666667vw;
  }
}
.finance-box .achieve-wrap {
  position: absolute;
  width: 108px;
  height: 108px;
  bottom: -7px;
  right: 24px;
  z-index: 2;
}
.finance-box .achieve {
  width: 100%;
  height: 100%;
  background: url(../images/guide/guide-achieve.png?v=20260128);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(17.82deg);
          transform: rotate(17.82deg);
}
.finance-box--description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .finance-box--description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 6.4vw;
  }
}
.finance-box--info {
  max-width: 576px;
  width: 100%;
  margin-right: 25px;
}
@media (max-width: 768px) {
  .finance-box--info {
    margin-right: 0;
    margin-bottom: 10.6666666667vw;
  }
}
.finance-box--label {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .finance-box--label {
    margin-bottom: 8.5333333333vw;
  }
}
.finance-box--text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .finance-box--text {
    font-size: 4.8vw;
  }
}
.finance-box--tiger {
  display: block;
}
.finance-box--scrollTable {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 991px) {
  .finance-box--scrollTable {
    padding-bottom: 17px;
  }
}
.finance-box--table {
  width: 854px;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: center;
}
.finance-box--table th,
.finance-box--table td {
  padding: 10px;
  border: 1px solid #fff;
}
.finance-box--table th {
  background: linear-gradient(358.96deg, rgba(211, 187, 136, 0) 60.97%, #c19e55 145.04%), #111111;
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.finance-box--table td {
  background: transparent;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  padding: 9.5px 10px;
}
.finance-box--table td span {
  color: #deb770;
  font-size: 20px;
  font-weight: bold;
}
.finance-box--table td.footer {
  background: linear-gradient(179.37deg, #fcf7c2 -6.82%, #f3e8b1 19.04%, #dcc388 42.03%, #dcaf73 88.01%);
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  font-weight: bold;
  color: #111111;
  font-size: 18px;
}

.guide-wave {
  position: absolute;
}
.guide-wave-01.wave {
  width: 461px;
  height: 121px;
}
.guide-wave-01 {
  top: 870px;
  left: calc(50% + 460px);
}
.guide-wave-02.wave {
  width: 553px;
  height: 145px;
}
.guide-wave-02 {
  bottom: 180px;
  right: calc(50% + 480px);
}

.guide-sand {
  position: absolute;
}
.guide-sand.sand {
  width: 908px;
  height: 275px;
}
.guide-sand-01 {
  top: 810px;
  left: calc(50% + 360px);
  -webkit-animation: sandMove 7s ease-in infinite;
          animation: sandMove 7s ease-in infinite;
}
.guide-sand-02 {
  top: 1450px;
  right: calc(50% + 230px);
  -webkit-animation: sandMove 5s ease-in infinite;
          animation: sandMove 5s ease-in infinite;
}

.guide-star {
  position: absolute;
}
.guide-star.star {
  width: 19px;
  height: 19px;
}
.guide-star-01 {
  top: 575px;
  right: calc(50% + 704px);
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
}
.guide-star-02 {
  top: 490px;
  left: calc(50% + 634px);
  -webkit-animation-duration: 1.9s;
          animation-duration: 1.9s;
}
.guide-star-03 {
  top: 777px;
  left: calc(50% + 686px);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.guide-star-04 {
  top: 1274px;
  right: calc(50% + 554px);
  -webkit-animation-name: 2.1s;
          animation-name: 2.1s;
}
.guide-star-05 {
  top: 1411px;
  right: calc(50% + 630px);
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
}
.guide-star-06 {
  top: 1351px;
  left: calc(50% + 600px);
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}
.guide-star-07 {
  top: 2000px;
  right: calc(50% + 530px);
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
}
.guide-star-08 {
  top: 2144px;
  left: calc(50% + 737px);
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.guide-coins {
  position: absolute;
}
.guide-coins-01 {
  width: 31.47px;
  height: 32px;
  top: 420px;
  left: calc(50% + 684px);
  -webkit-transform: rotate(33.74deg);
          transform: rotate(33.74deg);
}
.guide-coins-02 {
  width: 37px;
  height: 42px;
  top: 720px;
  right: calc(50% + 590px);
  -webkit-transform: rotate(37.16deg);
          transform: rotate(37.16deg);
}
.guide-coins-03 {
  width: 50px;
  height: 56px;
  top: 2340px;
  right: calc(50% + 598px);
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}
.guide-coins-04 {
  width: 34px;
  height: 38px;
  top: 2050px;
  left: calc(50% + 614px);
  -webkit-transform: rotate(33.49deg);
          transform: rotate(33.49deg);
}
.guide-coins-05 {
  width: 52px;
  height: 52px;
  top: 3340px;
  right: calc(50% + 618px);
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}
.guide-coins-06 {
  width: 52px;
  height: 52px;
  top: 3350px;
  left: calc(50% + 584px);
  -webkit-transform: rotate(33.49deg);
          transform: rotate(33.49deg);
}

.section-loginCTA {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(27%, rgba(18, 18, 18, 0)), color-stop(100%, rgba(188, 142, 45, 0.4)), to(rgba(162, 112, 8, 0.8)));
  background: linear-gradient(to top, rgba(18, 18, 18, 0) 27%, rgba(188, 142, 45, 0.4) 100%, rgba(162, 112, 8, 0.8) 100%);
}
.section-loginCTA.section {
  padding: 120px 20px 80px 20px;
}
@media (max-width: 1279px) {
  .section-loginCTA.section {
    padding: 9.3823299453vw 1.5637216575vw 6.2548866302vw 1.5637216575vw;
  }
}
@media (max-width: 768px) {
  .section-loginCTA.section {
    padding: 14.9333333333vw 5.3333333333vw 16vw 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .section-loginCTA {
    background: #121212;
  }
  .section-loginCTA::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 106px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(27%, rgba(18, 18, 18, 0)), color-stop(100%, rgba(188, 142, 45, 0.4)), to(rgba(162, 112, 8, 0.8)));
    background: linear-gradient(to top, rgba(18, 18, 18, 0) 27%, rgba(188, 142, 45, 0.4) 100%, rgba(162, 112, 8, 0.8) 100%);
    z-index: 0;
  }
}
.section-loginCTA__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-loginCTA__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.section-loginCTA__tiger {
  max-width: 322px;
  width: 100%;
  margin-right: 6.3%;
  position: relative;
}
@media (max-width: 1279px) {
  .section-loginCTA__tiger {
    max-width: 32.0562939797vw;
    margin-right: 1.250977326vw;
    margin-top: 8.4440969507vw;
  }
}
@media (max-width: 768px) {
  .section-loginCTA__tiger {
    display: none;
  }
}
.section-loginCTA__tiger .tiger {
  max-width: 410px;
  width: 100%;
}
@media (max-width: 1279px) {
  .section-loginCTA__tiger .tiger {
    max-width: 32.0562939797vw;
  }
}
.section-loginCTA__tiger .tiger-finger {
  position: absolute;
  width: 15px;
  left: 233px;
  top: 74px;
}
@media (max-width: 1279px) {
  .section-loginCTA__tiger .tiger-finger {
    width: 1.1727912432vw;
    left: 18.2173573104vw;
    top: 5.7857701329vw;
  }
}
.section-loginCTA__tiger .black-card,
.section-loginCTA__tiger .white-card {
  opacity: 1;
  position: absolute;
  width: 140px;
  right: 32px;
  top: 30px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (max-width: 1279px) {
  .section-loginCTA__tiger .black-card,
  .section-loginCTA__tiger .white-card {
    width: 10.9460516028vw;
    right: 2.5019546521vw;
    top: 2.3455824863vw;
  }
}
.section-loginCTA__tiger .white-card {
  -webkit-animation: cardSwing 2.4s ease-in-out infinite;
          animation: cardSwing 2.4s ease-in-out infinite;
}
.section-loginCTA__tiger .black-card {
  -webkit-animation: cardSwing 3s ease-in-out infinite;
          animation: cardSwing 3s ease-in-out infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.section-loginCTA__tiger .dawho-tiger-wrap {
  position: relative;
  display: inline-block;
}
.section-loginCTA__tiger .dawho-tiger-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 43%, rgba(255, 255, 255, 0.08) 47%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.08) 53%, transparent 57%, transparent 100%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  -webkit-animation: dawho-tiger-shine 3.3s linear infinite;
          animation: dawho-tiger-shine 3.3s linear infinite;
  -webkit-mask-image: url("../images/kv/dawho-tiger.png");
          mask-image: url("../images/kv/dawho-tiger.png");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  z-index: 1;
}
.section-loginCTA__form {
  max-width: 672px;
  width: 100%;
  padding: 28px 40px;
  border-radius: 20px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  position: relative;
}
.section-loginCTA__form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.section-loginCTA__form > * {
  position: relative;
  z-index: 1;
}
.section-loginCTA__form {
  background: -webkit-gradient(linear, left bottom, left top, from(#171717), to(#594832));
  background: linear-gradient(to top, #171717 0%, #594832 100%);
}
@media (max-width: 1279px) {
  .section-loginCTA__form {
    padding: 2.1892103206vw 3.1274433151vw;
    border-radius: 2.1892103206vw;
  }
}
@media (max-width: 768px) {
  .section-loginCTA__form {
    padding: 5.2083333333vw;
    border-radius: 5.2083333333vw;
  }
}
.section-loginCTA__form--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-loginCTA__form--btn .section-button {
  font-weight: 500;
}
.section-loginCTA #form {
  width: 100%;
}
.section-loginCTA .main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__group {
  margin-bottom: 24px;
}
@media (max-width: 1279px) {
  .form__group {
    margin-bottom: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .form__group {
    margin-bottom: 3.125vw;
  }
}
.form__label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 1279px) {
  .form__label {
    font-size: 1.8764659891vw;
    margin-bottom: 0.625488663vw;
  }
}
@media (max-width: 768px) {
  .form__label {
    font-size: 4.8vw;
    margin-bottom: 2.1333333333vw;
  }
}
.form__input {
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 16px;
  width: 100%;
  line-height: 1.5;
  background: #111111;
  color: white;
  border: none;
}
.form__input.errorMessage {
  border: 2px solid #B2050C;
}
@media (max-width: 1279px) {
  .form__input {
    padding: 0.9382329945vw 2.5019546521vw;
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .form__input {
    padding: 4.2666666667vw 6.4vw;
    font-size: 4.2666666667vw;
  }
}
.form__input::-webkit-input-placeholder {
  color: #BFBFBF;
}
.form__input::-moz-placeholder {
  color: #BFBFBF;
}
.form__input:-ms-input-placeholder {
  color: #BFBFBF;
}
.form__input::-ms-input-placeholder {
  color: #BFBFBF;
}
.form__input::placeholder {
  color: #BFBFBF;
}
.form__input:hover {
  border-color: #fff;
}
.form__input:hover::-webkit-input-placeholder {
  color: #686868;
}
.form__input:hover::-moz-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;
}
input :focus .form__input:focus {
  border-color: #fff;
}
input :focus .form__input:focus::-webkit-input-placeholder {
  color: transparent;
}
input :focus .form__input:focus::-moz-placeholder {
  color: transparent;
}
input :focus .form__input:focus:-ms-input-placeholder {
  color: transparent;
}
input :focus .form__input:focus::-ms-input-placeholder {
  color: transparent;
}
input :focus .form__input:focus::placeholder {
  color: transparent;
}
.form__errorMessage {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .form__errorMessage {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.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 {
  margin-right: 16px;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 1279px) {
  .form__captcha .captNum {
    max-width: 26.5832681783vw;
    margin-right: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .form__captcha .captNum {
    max-width: 41.6666666667vw;
    margin-right: 2.0833333333vw;
  }
}
.form__captcha--img {
  max-width: 120px;
  width: 100%;
  margin-right: 8px;
}
@media (max-width: 1279px) {
  .form__captcha--img {
    max-width: 14.0734949179vw;
    margin-right: 0.9382329945vw;
  }
}
@media (max-width: 768px) {
  .form__captcha--img {
    max-width: 27.34375vw;
    height: 10.4166666667vw;
    margin-right: 1.0416666667vw;
  }
}
.form__captcha--reload {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.form__captcha--reload img {
  width: 32px;
  height: 32px;
  max-width: none;
}
@media (max-width: 768px) {
  .form__captcha--reload img {
    min-width: 5.7291666667vw;
    min-height: 5.7291666667vw;
  }
}
.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: 20px;
  text-align: justify;
}
@media (max-width: 768px) {
  .form__check {
    margin-bottom: 9.0666666667vw;
  }
}
.form__check input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #CEB071;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  -webkit-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: #BC111A;
  border-color: #fff;
}
.form__check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-image: url("../images/loginCTA/check.svg");
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .form__check input[type=checkbox] {
    width: 6.4vw;
    height: 6.4vw;
    margin: 0;
  }
  .form__check input[type=checkbox]:checked::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    background-position: center 1px;
  }
}
.form__check--text {
  font-size: 16px;
  line-height: 1.5;
  margin-left: 8px;
}
@media (max-width: 1279px) {
  .form__check--text {
    font-size: 1.8764659891vw;
    margin-left: 0.625488663vw;
  }
}
@media (max-width: 768px) {
  .form__check--text {
    font-size: 4.2666666667vw;
    margin-left: 2.1333333333vw;
  }
}
.form__check--text-link {
  color: #DEB770;
  text-decoration: underline;
}
.form__check--text-link:hover {
  text-decoration: underline;
}

.login-sand {
  position: absolute;
  mix-blend-mode: screen;
}
.login-sand-01.sand {
  width: 609px;
  height: 185px;
}
.login-sand-01 {
  top: 86px;
  left: calc(50% + 370px);
  -webkit-animation: sandMove 5s ease-in infinite;
          animation: sandMove 5s ease-in infinite;
}
.login-sand-02.sand {
  width: 499px;
  height: 151px;
}
.login-sand-02 {
  top: 454px;
  right: calc(50% + 180px);
  -webkit-animation: sandMove 6s ease-in infinite;
          animation: sandMove 6s ease-in infinite;
}

.login-star {
  width: 19px;
  height: 19px;
}
.login-star-01 {
  top: 51px;
  right: calc(50% + 320px);
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
}
.login-star-02 {
  top: 291px;
  right: calc(50% + 540px);
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
}
.login-star-03 {
  bottom: 62px;
  right: calc(50% + 442px);
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}
.login-star-04 {
  top: 291px;
  left: calc(50% + 802px);
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.login-coins-01 {
  width: 52px;
  height: 52.874px;
  -webkit-transform: rotate(-17.039deg);
          transform: rotate(-17.039deg);
  top: 70px;
  right: calc(50% + 590px);
}

.login-coins-02 {
  width: 52px;
  height: 52.874px;
  -webkit-transform: rotate(21.195deg);
          transform: rotate(21.195deg);
  top: 229px;
  left: calc(50% + 600px);
}

.login-coins-03 {
  width: 31.471px;
  height: 32px;
  -webkit-transform: rotate(21.195deg);
          transform: rotate(21.195deg);
  top: 629px;
  right: calc(50% + 640px);
}

.login-coins-04 {
  width: 31.471px;
  height: 32px;
  -webkit-transform: rotate(21.195deg);
          transform: rotate(21.195deg);
  top: 369px;
  left: calc(50% + 670px);
}

@media (max-width: 768px) {
  .section.section-faq {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.section.section-faq__wrapper {
  max-width: 936px;
  width: 100%;
  margin: 0 auto;
}
.section.section-faq__title.section-title {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .section.section-faq__title.section-title {
    margin-bottom: 30px;
  }
}

.faq {
  width: 100%;
}
.faq:not(:last-child) {
  margin-bottom: 24px;
}
.faq__toggle {
  cursor: pointer;
  border-radius: 999px;
  position: relative;
}
.faq__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.faq__toggle > * {
  position: relative;
  z-index: 1;
}
.faq__toggle {
  background: linear-gradient(0.78deg, rgba(211, 187, 136, 0) 41.09%, #C19E55 146.13%), #111111;
  padding: 16px 32px;
  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;
}
@media (max-width: 768px) {
  .faq__toggle {
    padding: 16px 24px;
  }
}
.faq__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: white;
  margin-right: 8px;
}
.faq__icon {
  width: 24px;
  height: 24px;
  background-image: url(../images/faq/open-icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-image 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-image 0.3s ease;
  transition: transform 0.3s ease, background-image 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq__content {
  max-height: 0;
  height: auto;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  -webkit-transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.6)), to(rgba(125, 99, 43, 0.6)));
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.6) 0%, rgba(125, 99, 43, 0.6) 100%);
}
.faq__content-wrap {
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .faq__content-wrap {
    padding: 24px;
  }
}
.faq.is-active .faq__content {
  max-height: 1410px; /* 設定一個足夠大的值 */
}
.faq.is-active .faq__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url(../images/faq/close-icon.svg);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
}

.faq-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.faq-table strong {
  font-weight: bold;
}
.faq-table th,
.faq-table td {
  padding: 9.5px;
  border: 1px solid #fff;
}
.faq-table th {
  background: linear-gradient(358.96deg, rgba(211, 187, 136, 0) 60.97%, #C19E55 145.04%), #111111;
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 768px) {
  .faq-table th {
    width: 50%;
    text-align: left;
    vertical-align: middle;
  }
  .faq-table th:first-child {
    text-align: center;
  }
}
.faq-table td {
  background: transparent;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .faq-table td {
    text-align: left;
  }
  .faq-table td br {
    display: none;
  }
}
.faq-table td span {
  color: #DEB770;
  font-size: 20px;
  font-weight: bold;
}
.faq-table-ques01 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .faq-table-ques01 {
    width: auto;
  }
}
.faq-table-ques02 {
  width: 856px;
}
@media (max-width: 768px) {
  .faq-table-ques02 {
    width: 344px;
  }
  .faq-table-ques02 td {
    vertical-align: initial;
  }
  .faq-table-ques02 tr:nth-child(2) td:not(:first-child) {
    text-align: center;
    vertical-align: middle;
  }
}
.faq-table .is-web {
  display: block;
}
@media (max-width: 598px) {
  .faq-table .is-web {
    display: none;
  }
}

.faq-list {
  list-style-type: decimal;
  padding-left: 1.5em;
  font-size: 16px;
  line-height: 1.6;
}
.faq-list li {
  margin: 0 !important;
}
@media (max-width: 768px) {
  .faq-list li {
    margin-bottom: 6px !important;
  }
}

.faq-disc-list {
  padding-left: 1.5em !important;
}
@media (max-width: 768px) {
  .faq-disc-list {
    margin-top: 10px;
  }
}

.mb-16 {
  margin-bottom: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .mb-16 {
    margin-bottom: 18px;
  }
}

.faq-sand-01 {
  top: 650px;
  left: calc(50% + 440px);
  -webkit-animation: sandMove 7s ease-in infinite;
          animation: sandMove 7s ease-in infinite;
}
.faq-sand-02 {
  right: calc(50% + 400px);
  top: 810px;
  -webkit-animation: sandMove 5s ease-in infinite;
          animation: sandMove 5s ease-in infinite;
}

.faq-coins {
  left: calc(50% + 648px);
  position: absolute;
}
.faq-coins-01 {
  width: 52px;
  height: 52.874px;
  -webkit-transform: rotate(-17.039deg);
          transform: rotate(-17.039deg);
  top: 28%;
  left: calc(50% + 648px);
}

.section-benefits {
  background: url("../images/benefits/bg-benefits.png") no-repeat;
  background-position: center bottom;
}
@media (max-width: 991px) {
  .section-benefits {
    background: url("../images/benefits/bg-benefits_mobile.png") no-repeat;
    background-position: center bottom 100px;
    background-size: contain;
  }
}
.section-benefits.section {
  padding: 90px 20px 140px;
}
@media (max-width: 1279px) {
  .section-benefits.section {
    padding: 7.036747459vw 1.5637216575vw 10.9460516028vw;
  }
}
@media (max-width: 768px) {
  .section-benefits.section {
    padding: 11.71875vw 6.7708333333vw 16.015625vw;
  }
}
.section-benefits .text_gold-gradient {
  margin-right: 15px;
}
.section-benefits .text_gold-gradient:last-child {
  margin-left: 15px;
}
@media (max-width: 768px) {
  .section-benefits .text_gold-gradient {
    margin: 0 !important;
  }
}
.section-benefits .benefits-sand-01.sand {
  width: 713.5px;
  height: 216px;
}
.section-benefits .benefits-sand-01 {
  left: -103px;
  bottom: 227px;
  pointer-events: none;
  -webkit-animation: sandMove 8s ease-in infinite;
          animation: sandMove 8s ease-in infinite;
}
@media (max-width: 768px) {
  .section-benefits .benefits-sand-01 {
    display: none;
  }
}
.section-benefits .benefits-sand-02.sand {
  width: 713.5px;
  height: 216px;
}
.section-benefits .benefits-sand-02 {
  right: -217.5px;
  bottom: 379px;
  pointer-events: none;
  -webkit-animation: sandMove 7s ease-in infinite;
          animation: sandMove 7s ease-in infinite;
}
@media (max-width: 768px) {
  .section-benefits .benefits-sand-02 {
    display: none;
  }
}
.section-benefits__wrapper {
  margin: 0 auto;
  max-width: 1168px;
  width: 100%;
  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-benefits__wrapper .section-title {
  margin-bottom: 57px;
}
@media (max-width: 768px) {
  .section-benefits__wrapper .section-title {
    margin-bottom: 7.4666666667vw;
  }
}
.section-benefits .benefits-card__wrapper {
  max-width: 934px;
  width: 100%;
  padding-bottom: 24px;
  overflow: visible;
  position: relative;
}
@media (max-width: 1279px) {
  .section-benefits .benefits-card__wrapper {
    max-width: 100%;
    padding-bottom: 1.8764659891vw;
  }
}
@media (max-width: 991px) {
  .section-benefits .benefits-card__wrapper {
    padding-bottom: 0;
  }
}
.section-benefits .benefits-table__scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 991px) {
  .section-benefits .benefits-table__scroll-wrapper {
    padding-bottom: 16px;
  }
}
.section-benefits .benefits-table {
  position: relative;
  width: 934px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 230px 0 1fr;
  grid-template-columns: 230px 1fr;
  -ms-grid-rows: (auto)[4];
  grid-template-rows: repeat(4, auto);
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  margin: 0 auto;
}
.section-benefits .benefits-table > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.section-benefits .benefits-table > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.section-benefits .benefits-table > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.section-benefits .benefits-table > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.section-benefits .benefits-table > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.section-benefits .benefits-table > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.section-benefits .benefits-table > *:nth-child(7) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.section-benefits .benefits-table > *:nth-child(8) {
  -ms-grid-row: 4;
  -ms-grid-column: 3;
}
.section-benefits .benefits-table::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 228px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 63px);
  background: #fff;
  z-index: 3;
}
.section-benefits .benefits-table__left, .section-benefits .benefits-table__right {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41.57%, rgba(17, 17, 17, 0.65)), color-stop(102.56%, rgba(103, 84, 59, 0.65)));
  background: linear-gradient(360deg, rgba(17, 17, 17, 0.65) 41.57%, rgba(103, 84, 59, 0.65) 102.56%);
  backdrop-filter: blur(4.95px);
  border-radius: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  position: relative;
}
.section-benefits .benefits-table__left::before, .section-benefits .benefits-table__right::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.section-benefits .benefits-table__left > *, .section-benefits .benefits-table__right > * {
  position: relative;
  z-index: 1;
}
.section-benefits .benefits-table__left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1/5;
  z-index: 2;
}
.section-benefits .benefits-table__left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 40px);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(41.57%, rgb(17, 17, 17)), color-stop(102.56%, rgb(73, 61, 44)));
  background: linear-gradient(360deg, rgb(17, 17, 17) 41.57%, rgb(73, 61, 44) 102.56%);
  z-index: 2;
}
.section-benefits .benefits-table__left .benefits-table__cell:not(:first-child) {
  border-top: 1px solid #fff;
}
.section-benefits .benefits-table__left .benefits-table__cell:first-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section-benefits .benefits-table__left .benefits-table__cell:last-child {
  margin-bottom: 32px;
  padding-bottom: 0;
}
.section-benefits .benefits-table__left .benefits-table__cell:nth-child(1) .benefits-table__label img {
  width: 114px;
}
.section-benefits .benefits-table__left .benefits-table__cell:nth-child(2) .benefits-table__label img, .section-benefits .benefits-table__left .benefits-table__cell:nth-child(3) .benefits-table__label img {
  width: 55.8px;
}
.section-benefits .benefits-table__left .benefits-table__cell:nth-child(4) .benefits-table__label img {
  width: 44.014px;
}
.section-benefits .benefits-table__right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1/5;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
  left: -2px;
}
.section-benefits .benefits-table__right .benefits-table__cell:nth-child(1), .section-benefits .benefits-table__right .benefits-table__cell:nth-child(2) {
  margin-top: 32px;
}
.section-benefits .benefits-table__right .benefits-table__cell:nth-child(-n+2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
  gap: 20px;
}
.section-benefits .benefits-table__right .benefits-table__cell:nth-child(n+3) {
  border-top: 1px solid #fff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section-benefits .benefits-table__right .benefits-table__cell.col--dawho {
  border-right: 1px solid #fff;
}
.section-benefits .benefits-table__right .benefits-table__cell:nth-last-child(-n+2) {
  margin-bottom: 32px;
  padding-bottom: 0;
}
.section-benefits .benefits-table__cell {
  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: 18px 16px 12px;
}
.section-benefits .benefits-table__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: relative;
}
.section-benefits .benefits-table__header-inner .star--01 {
  bottom: calc(50% - 4px);
  right: calc(50% + 110px);
}
.section-benefits .benefits-table__header-inner .star--02 {
  top: calc(50% - 62px);
  left: calc(50% + 130px);
}
.section-benefits .benefits-table__header-inner .star--03 {
  bottom: calc(50% - 24px);
  left: calc(50% + 70px);
}
.section-benefits .benefits-table__header-inner img {
  width: 120px;
  display: block;
}
.section-benefits .benefits-table__header-inner > span {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.section-benefits .benefits-table__header-inner .deco {
  position: absolute;
  display: block;
}
.section-benefits .benefits-table__header-inner .star {
  background: url("../images/star.png") no-repeat center;
  background-size: contain;
  -webkit-animation: spark-shine 3s ease-in-out infinite;
          animation: spark-shine 3s ease-in-out infinite;
  width: 11px;
  height: 11px;
}
.section-benefits .benefits-table__header-inner .star--01 {
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-benefits .benefits-table__header-inner .star--03 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.section-benefits .benefits-table__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.section-benefits .benefits-table__label img {
  display: block;
}
.section-benefits .benefits-table__label span {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}
.section-benefits .benefits-card__content {
  width: 100%;
}
.section-benefits .benefits-card__list li {
  list-style: none;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 160%;
}
.section-benefits .benefits-card__list li:not(:last-child) {
  margin-bottom: 13px;
}
.section-benefits .benefits-card__list li .highlight {
  color: #DEB770;
  font-weight: bold;
  font-size: 24px;
}
.section-benefits .benefits_extlink {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-6.82%, #fcf7c2), color-stop(19.04%, #f3e8b1), color-stop(42.03%, #dcc388), color-stop(88.01%, #dcaf73));
  background: linear-gradient(to bottom, #fcf7c2 -6.82%, #f3e8b1 19.04%, #dcc388 42.03%, #dcaf73 88.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) {
  .section-benefits .benefits_extlink {
    font-size: 4.7426841574vw;
    margin-top: 3.4308779011vw;
    margin-bottom: 10.6962663976vw;
  }
}
.section-benefits .benefits_extlink span {
  border-bottom: 1px solid #DEB770;
}
.section-benefits .benefits_extlink:hover span {
  border-bottom: none;
}
.section-benefits .section-button {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
          animation: heartbeat 1.5s ease-in-out infinite both;
}
.section-benefits .benefits-coins-01 {
  top: 680px;
  right: calc(50% + 590px);
  width: 52px;
  height: 52.874px;
  -webkit-transform: rotate(-17.039deg);
          transform: rotate(-17.039deg);
}
.section-benefits .benefits-coins-02 {
  top: 209px;
  left: calc(50% + 590px);
  width: 52px;
  height: 52.874px;
  -webkit-transform: rotate(-17.039deg);
          transform: rotate(-17.039deg);
}
.section-benefits .benefits-star {
  -webkit-animation: spark-shine 3s ease-in-out infinite;
          animation: spark-shine 3s ease-in-out infinite;
}
.section-benefits .benefits-star-01 {
  width: 19px;
  height: 20px;
  top: 279px;
  right: calc(50% + 670px);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-benefits .benefits-star-02 {
  width: 19px;
  height: 20px;
  top: 279px;
  left: calc(50% + 700px);
}

.section-notice {
  position: relative;
}
.section-notice::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 264px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(188, 142, 45, 0.4)), to(#121212));
  background: linear-gradient(to bottom, rgba(188, 142, 45, 0.4) 0%, #121212 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .section-notice::before {
    height: 83px;
  }
}
.section-notice__wrapper {
  margin: 0 auto;
  max-width: 1168px;
  width: 100%;
  padding: 84px 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-notice__wrapper {
    padding: 18px 24px;
  }
}
.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__header {
  border-bottom: 1px solid #DEB770;
  cursor: pointer;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding: 24px 0;
  position: relative;
}
.section-notice__header::before {
  content: "";
  display: block;
  float: left;
  background-image: url("../images/title-star.svg");
  background-size: cover;
  width: 1.25em;
  height: 1.25em;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .section-notice__header::before {
    margin-top: 0;
    margin-right: 8px;
  }
}
.section-notice__header::after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: block;
  background: url("../images/icon_expand-gold.svg") center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .section-notice__header::after {
    width: 24px;
    height: 24px;
  }
}
.section-notice__header:hover {
  color: #DEB770;
}
.section-notice__header.active::after {
  background-image: url("../images/icon_collapse-gold.svg");
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 768px) {
  .section-notice__header {
    font-size: 24px;
    line-height: 1.2;
  }
}
.section-notice__content {
  display: block;
  font-size: 14px;
  text-align: justify;
}
.section-notice__content b {
  color: #DEB770;
  font-weight: 700;
}
.section-notice__content .notice-box {
  margin-bottom: 28px;
}
.section-notice__content .notice-box__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
}
.section-notice__content .notice-box ol.decimal li {
  line-height: 1.8;
  margin-bottom: 0;
}
.section-notice__content .notice-box ol.decimal li strong {
  font-weight: 700;
}

ol.decimal {
  padding-left: 1.3em;
}
ol.decimal li::marker {
  font-family: Roboto, sans-serif;
}
ol.decimal.decimal-bold li::marker {
  font-weight: 700;
}

.content {
  background-repeat: repeat-y;
  color: white;
  background-color: #111111;
}

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

.section {
  position: relative;
  padding: 80px 20px;
}
@media (max-width: 1279px) {
  .section {
    padding: 6.2548866302vw 1.5637216575vw;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 6.5104166667vw 2.6041666667vw;
  }
}

.main-wrap {
  max-width: 1129px;
  width: 100%;
  margin: 0 auto;
}

.nav-wrap {
  position: fixed;
  bottom: 8%;
  right: 16px;
  z-index: 95;
}
@media (max-width: 768px) {
  .nav-wrap {
    bottom: 0;
    top: auto;
    left: 20px;
    right: 20px;
    -webkit-transform: none;
            transform: none;
    display: none;
  }
  .nav-wrap.active {
    display: block;
  }
}
.nav-wrap .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .nav-wrap .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.1484375vw;
  }
}
.nav-wrap .nav__item, .nav-wrap .nav__gotop {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.nav-wrap .nav__item:hover, .nav-wrap .nav__gotop:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .nav-wrap .nav__item:hover, .nav-wrap .nav__gotop:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.nav-wrap .nav__item {
  background: #1E1E1E;
  border-radius: 999px;
  position: relative;
}
.nav-wrap .nav__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FCF7C2), color-stop(18%, #F3E8B1), color-stop(34%, #DCC388), color-stop(66%, #DCAF73));
  background: linear-gradient(to bottom, #FCF7C2 0%, #F3E8B1 18%, #DCC388 34%, #DCAF73 66%);
  -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: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 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: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.nav-wrap .nav__item > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .nav-wrap .nav__item {
    border-radius: 16px 16px 0 0;
    background: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .nav-wrap .nav__item::before {
    display: none;
  }
}
.nav-wrap .nav__item:first-child::after {
  content: "";
  background: url("../images/sbtn-tiger.png?v=20260128") no-repeat center;
  background-size: cover;
  display: block;
  width: 118px;
  height: 84px;
  position: absolute;
  top: -55px;
  left: -11px;
  z-index: 1;
}
@media (max-width: 768px) {
  .nav-wrap .nav__item:first-child::after {
    content: "";
    background: url("../images/sbtn-tiger_mobile.png?v=20260128") no-repeat center;
    background-size: contain;
    display: block;
    width: 17.578125vw;
    height: 13.0208333333vw;
    position: absolute;
    top: -9.6354166667vw;
    left: 3.1966145833vw;
    z-index: 1;
  }
}
.nav-wrap .nav__item .nav__link {
  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;
  color: #1E1E1E;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding: 20px;
  position: relative;
  width: 100px;
  height: 100px;
}
@media (max-width: 768px) {
  .nav-wrap .nav__item .nav__link {
    font-size: 3.7109375vw;
    padding: 3.1901041667vw 8px;
    width: auto;
    height: auto;
  }
}
.nav-wrap .nav__item .nav__link::before {
  content: "";
  background: linear-gradient(177.37deg, #FCF7C2 -6.82%, #F3E8B1 19.04%, #DCC388 42.03%, #DCAF73 88.01%);
  border-radius: 999px;
  display: block;
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  z-index: -1;
}
@media (max-width: 768px) {
  .nav-wrap .nav__item .nav__link::before {
    border-radius: 16px 16px 0 0;
    width: 100%;
    inset: 0;
  }
}
@media (max-width: 768px) {
  .nav-wrap .nav__gotop {
    display: none;
  }
}
.nav-wrap .nav__gotop a {
  background: url("../images/icon_gotop.svg") no-repeat center;
  background-size: cover;
  width: 70px;
  height: 70px;
  display: block;
}

.sand {
  background: url(../images/sand.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 994px;
  height: 301px;
  position: absolute;
  pointer-events: none;
}

.golden_ball {
  background: url(../images/golden_ball.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
}

.coins {
  background: url(../images/coins.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
}

.star {
  background: url(../images/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  -webkit-animation-name: spark-shine;
          animation-name: spark-shine;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.wave {
  background: url(../images/wave.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 968px;
  height: 252px;
}

.shine-effect-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}
.shine-effect-overlay::after {
  position: absolute;
  content: "";
  top: -100%;
  left: -100%;
  width: 150%;
  height: 150%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%), linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.3) 71%, rgba(255, 255, 255, 0.5) 73%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shineDiagonal 2s ease-in-out infinite;
          animation: shineDiagonal 2s ease-in-out infinite;
  pointer-events: none;
}
/*# sourceMappingURL=all.css.map */