@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;
}

@-ms-viewport {
  width: device-width;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 80px 34px;
}
@media (max-width: 991px) {
  .header {
    padding: 12px 20px;
  }
}
.header.is-active {
  background: rgba(224, 224, 224, 0.95);
}
.header.is-menu-open .header__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 992px) {
  .header.is-menu-open .header__logo-img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.header.is-menu-open .header__hamburger-line {
  background: transparent;
}
.header.is-menu-open .header__hamburger-line::before, .header.is-menu-open .header__hamburger-line::after {
  background: #FFFFFF;
}
.header.is-menu-open .header__hamburger-line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.is-menu-open .header__hamburger-line::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__container {
  margin: 0 auto;
}
@media (max-width: 992px) {
  .header__container {
    padding: 12px 12px 12px 20px;
  }
}
.header__wrapper, .header__box {
  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;
}
.header__wrapper {
  position: relative;
  z-index: 2;
}
.header__box {
  width: 100%;
}
@media (max-width: 992px) {
  .header__box {
    height: 30px;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
}
@media (max-width: 992px) {
  .header__logo {
    height: 30px;
  }
}
.header__logo a:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
}
.header__logo a:first-child::after {
  width: 1px;
  height: 100%;
  margin: 0 20px;
  content: "";
  display: block;
  border-right: 1px solid #616161;
}
@media (max-width: 992px) {
  .header__logo a:first-child::after {
    margin: 0 16.67px;
  }
}
.header__logo-img {
  display: block;
  width: auto;
  height: 36px;
  -webkit-transition: -webkit-filter 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: -webkit-filter 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: filter 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: filter 450ms cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-filter 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
}
@media (max-width: 992px) {
  .header__logo-img {
    height: 30px;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border-radius: 30px 0 0 30px;
  z-index: 1;
  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;
  overflow-y: auto;
  background: #ed1c24;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 450ms cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0s linear 450ms, -webkit-transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: opacity 450ms cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0s linear 450ms, -webkit-transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1), opacity 450ms cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0s linear 450ms;
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1), opacity 450ms cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0s linear 450ms, -webkit-transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
}
.is-menu-open .header__nav {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media (max-width: 991px) {
  .header__nav {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  padding: 54.5px 24px 48px;
  list-style: none;
}
@media (max-width: 991px) {
  .header__nav-list {
    padding-top: 108px;
  }
}
.header__nav-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.header__nav-item:not(:last-child) {
  padding: 28px 20px;
  margin-top: 0;
}
@media (max-width: 1360px) {
  .header__nav-item:not(:last-child) {
    padding: 18px 20px;
  }
}
.header__nav-link {
  padding: 10px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.72px;
  -webkit-transition: color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
}
.header__nav-link:hover, .header__nav-link:focus-visible {
  background-color: #F1FCFC;
  color: #ED1C24;
}
@media (max-width: 991px) {
  .header__nav-link {
    min-width: 0;
    padding: 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.96px;
  }
}
.header__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
}
.header__cta-btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: #000000;
  color: #FFFFFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: 0.4px;
  -webkit-transition: color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
}
@media (max-width: 991px) {
  .header__cta-btn {
    min-width: 0;
    padding: 12px 24px;
  }
}
.header__cta:hover .header__cta-btn, .header__cta:focus-visible .header__cta-btn {
  background: #FFFFFF;
  color: #ed1c24;
}
.header__menu-toggle {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.header__hamburger {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
}
.header__hamburger-line, .header__hamburger-line::before, .header__hamburger-line::after {
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: #ed1c24;
  content: "";
  -webkit-transition: top 450ms cubic-bezier(0.22, 0.61, 0.35, 1), bottom 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: top 450ms cubic-bezier(0.22, 0.61, 0.35, 1), bottom 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1), top 450ms cubic-bezier(0.22, 0.61, 0.35, 1), bottom 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1), top 450ms cubic-bezier(0.22, 0.61, 0.35, 1), bottom 450ms cubic-bezier(0.22, 0.61, 0.35, 1), background-color 450ms cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
}
.header__hamburger-line {
  top: 8px;
}
.header__hamburger-line::before {
  top: -8px;
}
.header__hamburger-line::after {
  bottom: -8px;
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .header,
  .header * {
    scroll-behavior: auto !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  background: #E0E0E0;
}
body.scroll-fixed {
  overflow: hidden;
}

section {
  position: relative;
}

.wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrap__inner {
  width: 89.745%;
  max-width: 1096px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .wrap__inner {
    padding: 0;
  }
}
.wrap {
  /*新增1210*/
}
.wrap .splide__arrows {
  display: none;
}
@media (max-width: 1023px) {
  .wrap .splide__arrows {
    display: block;
  }
}

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: 992px) {
  main .wrap__inner {
    display: block;
  }
}
main .wrap__inner .wrap__head {
  max-width: 372px;
}
@media (max-width: 992px) {
  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: 992px) {
  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: 992px) {
  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--no-padding > *:first-child {
  padding-top: 0;
}

.desk-use {
  display: block;
}
@media (max-width: 820px) {
  .desk-use {
    display: none;
  }
}

.mobile-use {
  display: none;
}
@media (max-width: 820px) {
  .mobile-use {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.marquee {
  position: relative;
  left: 0;
  bottom: 0.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 124px;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFFFFF;
  margin-bottom: 72px;
}
@media (max-width: 1439px) {
  .marquee {
    margin-bottom: 5.0034746352vw;
    height: 8.617095205vw;
  }
}
@media (max-width: 992px) {
  .marquee {
    font-size: 6.0483870968vw;
    margin-bottom: 2.0161290323vw;
    font-weight: 900;
    line-height: 100%; /* 60px */
    letter-spacing: 0.6048387097vw;
    height: 12.5vw;
  }
}
.marquee span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 48px;
  -webkit-animation: loopAnimation linear infinite;
          animation: loopAnimation linear infinite;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  font-size: 128px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 128px */
  letter-spacing: 3.84px;
}
@media (max-width: 992px) {
  .marquee span {
    padding-right: 4.8387096774vw;
    font-size: 12.9032258065vw;
    letter-spacing: 0.3870967742vw;
  }
}

/* visible, hidden rwd */
.h1-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
@media (max-width: 1096px) {
  .hidden-middle {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .hidden-min {
    display: none !important;
  }
}
@media (min-width: 821px) {
  .hidden-max {
    display: none !important;
  }
}
hr {
  border: 0;
  height: 0;
  border-bottom: none;
  margin: 24px 0;
}

svg {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.underline {
  border-bottom: 1px solid currentColor;
  text-underline-offset: 0.15em;
}

.lineblock {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.svgbox {
  position: relative;
  pointer-events: none;
}
.svgbox img[src$=".svg"],
.svgbox svg {
  width: 100%;
  height: 100%;
}

.hide {
  display: none !important;
}

.block {
  display: block !important;
}

.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 4px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 12px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-7 {
  margin-bottom: 28px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mb-11 {
  margin-bottom: 44px;
}
.mb-12 {
  margin-bottom: 48px;
}

.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 4px;
}
.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-5 {
  margin-top: 20px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-7 {
  margin-top: 28px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-9 {
  margin-top: 36px;
}
.mt-10 {
  margin-top: 40px;
}
.mt-11 {
  margin-top: 44px;
}
.mt-12 {
  margin-top: 48px;
}

.ml-0 {
  margin-left: 0px;
}
.ml-1 {
  margin-left: 4px;
}
.ml-2 {
  margin-left: 8px;
}
.ml-3 {
  margin-left: 12px;
}
.ml-4 {
  margin-left: 16px;
}
.ml-5 {
  margin-left: 20px;
}
.ml-6 {
  margin-left: 24px;
}
.ml-7 {
  margin-left: 28px;
}
.ml-8 {
  margin-left: 32px;
}
.ml-9 {
  margin-left: 36px;
}
.ml-10 {
  margin-left: 40px;
}
.ml-11 {
  margin-left: 44px;
}
.ml-12 {
  margin-left: 48px;
}

.mr-0 {
  margin-right: 0px;
}
.mr-1 {
  margin-right: 4px;
}
.mr-2 {
  margin-right: 8px;
}
.mr-3 {
  margin-right: 12px;
}
.mr-4 {
  margin-right: 16px;
}
.mr-5 {
  margin-right: 20px;
}
.mr-6 {
  margin-right: 24px;
}
.mr-7 {
  margin-right: 28px;
}
.mr-8 {
  margin-right: 32px;
}
.mr-9 {
  margin-right: 36px;
}
.mr-10 {
  margin-right: 40px;
}
.mr-11 {
  margin-right: 44px;
}
.mr-12 {
  margin-right: 48px;
}

.flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.icon-md {
  font-size: 24px;
}

.icon-sm {
  font-size: 20px;
}

.icon-xxl {
  font-size: 50px;
}

.fc-red {
  color: #DE1B23 !important;
}

.fc-orange .c-cat-btn {
  background: #FE6F10;
}

.bold {
  font-weight: 700;
}

.align-center {
  text-align: center;
}

ol.disc {
  padding-left: 2em;
}
ol.disc > li {
  list-style: disc;
}
ol.decimal {
  padding-left: 2em;
}
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;
}
ol.decimal-arc > li:before {
  counter-increment: counter;
  content: "(" counter(counter) ")";
}

.use-desk {
  display: block;
}

.use-mobile {
  display: none !important;
}

@media (max-width: 992px) {
  .use-desk {
    display: none !important;
  }
  .use-mobile {
    display: block !important;
  }
}
.pc-use {
  display: block !important;
}

.mb-use,
.mb-f-use {
  display: none !important;
}

@media (max-width: 992px) {
  .pc-use {
    display: none !important;
  }
  .mb-use {
    display: block !important;
  }
  .mb-f-use {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.c-mt-12 {
  margin-top: 12px;
}

.c-mb-12 {
  margin-bottom: 12px;
}

.go-btn {
  cursor: pointer;
  position: absolute;
  top: -38px;
  right: 80px;
  width: 72px;
  height: 72px;
  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;
  border-radius: 100px;
  border: 2.4px solid #E5F1FF;
  background: #FFFFFF;
  -webkit-transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
}
@media (max-width: 598px) {
  .go-btn {
    width: 48px;
    height: 48px;
    top: 0;
    right: 40px;
    margin-top: -7%;
    border: 1.5px solid #E5F1FF;
  }
}
.go-btn svg {
  width: 32px;
}
@media (max-width: 598px) {
  .go-btn svg {
    width: 24px;
  }
}
@media (min-width: 991px) {
  .go-btn:hover svg path {
    stroke: #FFFFFF;
  }
}

#p1, #p2, #p3, #p4 {
  scroll-margin-top: 60px;
}

@-webkit-keyframes float {
  50% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}

@keyframes float {
  50% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}
@-webkit-keyframes float-b {
  50% {
    -webkit-transform: translate(0, -8px);
            transform: translate(0, -8px);
  }
}
@keyframes float-b {
  50% {
    -webkit-transform: translate(0, -8px);
            transform: translate(0, -8px);
  }
}
@-webkit-keyframes cloud-l {
  50% {
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
}
@keyframes cloud-l {
  50% {
    -webkit-transform: translate(80px, 0);
            transform: translate(80px, 0);
  }
}
@-webkit-keyframes cloud-r {
  50% {
    -webkit-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
  }
}
@keyframes cloud-r {
  50% {
    -webkit-transform: translate(-80px, 0);
            transform: translate(-80px, 0);
  }
}
@-webkit-keyframes cloud-kv-l {
  50% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
}
@keyframes cloud-kv-l {
  50% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
}
@-webkit-keyframes cloud-kv-r {
  50% {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}
@keyframes cloud-kv-r {
  50% {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}
@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes rotating-tip {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes rotating-tip {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@-webkit-keyframes moveDown-tip {
  0% {
    top: 40%;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 60%;
    opacity: 0;
  }
}
@keyframes moveDown-tip {
  0% {
    top: 40%;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 60%;
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0%, 75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0%, 75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: translateY(0) scale3d(0.8, 0.8, 0.8);
            transform: translateY(0) scale3d(0.8, 0.8, 0.8);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@keyframes pulse2 {
  0% {
    -webkit-transform: translateY(0) scale3d(0.8, 0.8, 0.8);
            transform: translateY(0) scale3d(0.8, 0.8, 0.8);
  }
  12.5% {
    -webkit-transform: translateY(0) scale3d(1.05, 1.05, 1.05);
            transform: translateY(0) scale3d(1.05, 1.05, 1.05);
  }
  25% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
  75%, 100% {
    -webkit-transform: translateY(0) scale3d(1, 1, 1);
            transform: translateY(0) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes loopAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}
@keyframes loopAnimation {
  0% {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}
@-webkit-keyframes infinite-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinite-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cBtnArrowLoop {
  0% {
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    opacity: 0;
  }
}
@keyframes cBtnArrowLoop {
  0% {
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    opacity: 0;
  }
}
@-webkit-keyframes lineLoop {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  30% {
    clip-path: inset(0 0 0 0);
  }
  80% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes lineLoop {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  30% {
    clip-path: inset(0 0 0 0);
  }
  80% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@-webkit-keyframes starTwinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes starTwinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@-webkit-keyframes fumeEmit {
  0% {
    -webkit-transform: translate(5px, 0) scale(1);
            transform: translate(5px, 0) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-5px, -1pxx) scale(0.5);
            transform: translate(-5px, -1pxx) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-11px, 2px) scale(0);
            transform: translate(-11px, 2px) scale(0);
    opacity: 0;
  }
}
@keyframes fumeEmit {
  0% {
    -webkit-transform: translate(5px, 0) scale(1);
            transform: translate(5px, 0) scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-5px, -1pxx) scale(0.5);
            transform: translate(-5px, -1pxx) scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-11px, 2px) scale(0);
            transform: translate(-11px, 2px) scale(0);
    opacity: 0;
  }
}
@-webkit-keyframes subtleWave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes subtleWave {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/* 旋轉：把 border-angle 從 0turn 轉到 1turn */
@-webkit-keyframes card-border-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes card-border-spin {
  to {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.c-icon {
  position: absolute;
}

.c-icon.an-line {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1s ease-in;
  transition: clip-path 1s ease-in;
}
@media (max-width: 992px) {
  .c-icon.an-line {
    display: none;
  }
}
.c-icon.an-line.is-inview {
  clip-path: inset(0 0% 0 0) !important;
}

.an__start {
  position: absolute;
  width: min(19px, 4%);
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}

.img-block--mobile {
  display: none;
}
@media (max-width: 820px) {
  .img-block--mobile {
    display: block;
  }
}
.img-block--pc {
  display: block;
}
@media (max-width: 820px) {
  .img-block--pc {
    display: none;
  }
}

.lightbox {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  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;
}
.lightbox--active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox__content {
  color: #FFF;
  margin-top: 10vh;
}
@media (max-width: 820px) {
  .lightbox__iframe {
    max-height: 65vh;
    overflow: auto;
    scrollbar-face-color: #E0E0E0;
    scrollbar-3dlight-color: #FAFAFA;
    scrollbar-highlight-color: #FAFAFA;
    scrollbar-track-color: #FAFAFA;
    scrollbar-arrow-color: #E0E0E0;
    scrollbar-dark-shadow-color: #FAFAFA;
    scrollbar-width: thin;
  }
  .lightbox__iframe::-webkit-scrollbar {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 4px;
  }
  .lightbox__iframe::-webkit-scrollbar-thumb {
    background-color: #E0E0E0;
    border-radius: 4px;
  }
  .lightbox__iframe::-webkit-scrollbar-track {
    background-color: #FAFAFA;
  }
  .lightbox__iframe {
    -webkit-overflow-scrolling: touch;
  }
}
.lightbox__iframe-result {
  max-height: 40vh;
  overflow: auto;
  scrollbar-face-color: #E0E0E0;
  scrollbar-3dlight-color: #FAFAFA;
  scrollbar-highlight-color: #FAFAFA;
  scrollbar-track-color: #FAFAFA;
  scrollbar-arrow-color: #E0E0E0;
  scrollbar-dark-shadow-color: #FAFAFA;
  scrollbar-width: thin;
}
.lightbox__iframe-result::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 4px;
}
.lightbox__iframe-result::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
  border-radius: 4px;
}
.lightbox__iframe-result::-webkit-scrollbar-track {
  background-color: #FAFAFA;
}
.lightbox__iframe-result {
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 820px) {
  .lightbox__iframe-result {
    overflow-x: scroll;
  }
}
.lightbox__iframe-apply {
  max-height: 65vh;
  overflow: auto;
  scrollbar-face-color: #E0E0E0;
  scrollbar-3dlight-color: #FAFAFA;
  scrollbar-highlight-color: #FAFAFA;
  scrollbar-track-color: #FAFAFA;
  scrollbar-arrow-color: #E0E0E0;
  scrollbar-dark-shadow-color: #FAFAFA;
  scrollbar-width: thin;
}
.lightbox__iframe-apply::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 4px;
}
.lightbox__iframe-apply::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
  border-radius: 4px;
}
.lightbox__iframe-apply::-webkit-scrollbar-track {
  background-color: #FAFAFA;
}
.lightbox__iframe-apply {
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 820px) {
  .lightbox__iframe-apply {
    overflow-x: scroll;
  }
}
.lightbox__box {
  position: relative;
  max-width: 846px;
  -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;
  padding: 2.5em 3.5em 3em 3em;
  border-radius: 24px;
  max-height: 736px;
  height: auto;
  background: linear-gradient(305deg, rgba(255, 255, 255, 0.03) 17.68%, rgba(255, 255, 255, 0.15) 36.67%, rgba(255, 255, 255, 0.03) 60%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  backdrop-filter: blur(30px);
}
.lightbox__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 992px) {
  .lightbox__box {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 820px) {
  .lightbox__box {
    max-height: 80vh;
    height: auto;
  }
}
@media (max-width: 598px) {
  .lightbox__box {
    padding: 12% 5.7% 6% 5.7%;
    border-radius: 16px;
    line-height: 160%;
    /* 22.4px */
    letter-spacing: 0.28px;
  }
}
.lightbox--sm .lightbox__box {
  max-width: 400px;
}
.lightbox--m .lightbox__box {
  max-width: 460px;
}
.lightbox--active .lightbox__box {
  -webkit-animation: fadeInDown 0.35s;
          animation: fadeInDown 0.35s;
}
.lightbox__box .lightbox__scroll-box {
  overflow: hidden;
  overflow-y: auto;
  height: 71vh;
  padding-right: 12px;
}
.lightbox__box .lightbox__scroll-box::-webkit-scrollbar {
  width: 3px;
}
.lightbox__box .lightbox__scroll-box::-webkit-scrollbar-track {
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.lightbox__box .lightbox__scroll-box::-webkit-scrollbar-thumb {
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.lightbox__box .lightbox__scroll-box::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.lightbox__box .lightbox__scroll-box {
  scrollbar-width: 2px;
  scrollbar-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 598px) {
  .lightbox__box .lightbox__scroll-box {
    padding-right: 8px;
    max-height: 65vh;
  }
}
.lightbox__tabsNav {
  position: relative;
  height: 100%;
  padding: 0 24px;
  overflow: hidden;
  padding-bottom: 20px;
}
@media (max-width: 820px) {
  .lightbox__tabsNav {
    padding: 0;
  }
}
.lightbox__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 820px) {
  .lightbox__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
  }
}
.lightbox__tabsRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lightbox__tabsRow:last-child .lightbox__tab:last-child {
  border-right: 1px solid transparent;
}
@media (max-width: 820px) {
  .lightbox__tabsRow:first-child .lightbox__tab:last-child {
    border-right: 1px solid transparent;
  }
}
.lightbox__tab {
  padding: 0.75em;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  position: relative;
}
@media (max-width: 820px) {
  .lightbox__tab {
    margin-bottom: 0.6em;
    width: inherit;
  }
}
@media (max-width: 598px) {
  .lightbox__tab {
    font-size: 0.75em;
  }
}
.lightbox__tab.tab-active {
  color: #FFFFFF;
  border-right: 1px solid transparent;
}
.lightbox__tabContent {
  padding: 0 24px;
}
.lightbox__tabPane {
  display: none;
}
.lightbox__tabPane.tabPane-active {
  display: block;
  -webkit-animation: fadeIn 550ms cubic-bezier(0.77, 0.2, 0.05, 1);
          animation: fadeIn 550ms cubic-bezier(0.77, 0.2, 0.05, 1);
}
.lightbox__btn-close {
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  padding: 5px;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 598px) {
  .lightbox__btn-close {
    top: 12px;
    right: 12px;
  }
}
.lightbox__btn-close:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 820px) {
  .lightbox__btn-close:before {
    width: 24px;
    height: 24px;
  }
}
.lightbox__head {
  font-size: 1.375em;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  padding-right: 28px;
}
@media (max-width: 820px) {
  .lightbox__head {
    font-size: 1em;
  }
}
@media (max-width: 598px) {
  .lightbox__head {
    padding-right: 50px;
  }
}
.lightbox__head2 {
  font-size: 1.25em;
  line-height: 1.5;
  padding-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 820px) {
  .lightbox__head2 {
    font-size: 1em;
  }
}
.lightbox .in-title {
  font-size: 2em;
  margin-bottom: 16px;
}
@media (max-width: 820px) {
  .lightbox .in-title {
    font-size: 5vw;
    letter-spacing: normal;
  }
}
@media (max-width: 598px) {
  .lightbox .in-title {
    font-size: 6.5vw;
  }
}
.lightbox__title {
  text-align: center;
  margin-bottom: 24px;
}
.lightbox__title h2 {
  font-size: 2em;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.56px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .lightbox__title h2 {
    font-size: 20px;
  }
}
.lightbox__title b {
  font-weight: bold;
}
.lightbox__list {
  padding-left: 20px;
  line-height: 160%;
  letter-spacing: 0.32px;
  margin-bottom: 32px;
}
.lightbox__list li {
  list-style: disc;
}
.lightbox__list b {
  font-weight: bold;
}
.lightbox__list + p {
  padding-left: 20px;
}
.lightbox__body {
  color: #2C2C2C;
  text-align: center;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.32px;
}
@media (max-width: 598px) {
  .lightbox__body {
    font-size: 3.6vw;
    text-align: justify;
  }
}
.lightbox__btnbox {
  text-align: center;
  margin: 24px -8px 0;
}
@media (max-width: 1023px) {
  .lightbox__btnbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.lightbox__btn {
  width: 160px;
  margin: 0 8px;
}
@media (max-width: 1023px) {
  .lightbox__btn {
    width: 50%;
  }
}
.lightbox__imgbox {
  margin: 0 auto;
  margin-top: 20px;
  width: 700px;
}
@media (max-width: 820px) {
  .lightbox__imgbox {
    width: 100%;
  }
}
.lightbox__imgbox-wd {
  width: 100%;
}
.lightbox__imgbox--sm {
  margin: 20px 0 0 0;
  padding: 0 0px;
  width: 320px;
}
.lightbox__imgbox--lg {
  margin: 20px 0 0 0;
  padding: 0 0;
  width: 584px;
}
.lightbox__imgRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 820px) {
  .lightbox__imgRow {
    -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;
  }
}
.lightbox__imgWrap {
  width: 25%;
  margin-left: 12px;
}
.lightbox__imgWrap:first-child {
  margin-left: -16px;
}
@media (max-width: 820px) {
  .lightbox__imgWrap {
    width: 75%;
    margin-left: 0;
    margin-top: 20px;
  }
  .lightbox__imgWrap:first-child {
    margin-left: 0;
    margin-top: 0;
  }
}
.lightbox__item {
  width: 100%;
  max-width: 20em;
}
.lightbox__text {
  font-weight: 700;
  margin-top: 12px;
  margin-left: 24px;
  font-size: 15px;
  line-height: 1.5;
}
.lightbox .result-table {
  width: 100%;
  overflow: hidden;
  background-color: #FFFFFF;
  text-align: center;
  border-spacing: 0;
}
.lightbox .result-table th {
  color: #ffffff;
  font-weight: 700;
  padding: 18px 8px;
  white-space: nowrap;
}
.lightbox .result-table tbody {
  text-align: center;
}
.lightbox .result-table tbody tr:nth-child(even) {
  background-color: #FFFFFF;
}
.lightbox .result-table tbody tr:nth-child(odd) {
  background-color: #FAFAFA;
}
.lightbox .result-table td {
  vertical-align: middle;
  padding: 12px 8px;
}
@media (max-width: 598px) {
  .lightbox .wrap__inner {
    padding: 0;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.88px;
}
@media (max-width: 820px) {
  .section-title {
    font-size: 7.8048780488vw;
    line-height: 120%;
    letter-spacing: 1.92px;
  }
}
.section-title {
  font-weight: 800;
  overflow: visible;
  margin-bottom: 60px;
  color: #000000;
}
.section-title__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.section-title__char {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(117%);
          transform: translateY(117%);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.section-title__underline {
  position: absolute;
  bottom: -6px;
  left: -17%;
  width: 100%;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease-in-out;
  transition: clip-path 0.8s ease-in-out;
}
@media (max-width: 992px) {
  .section-title__underline {
    bottom: -9px;
    left: 13%;
    width: 38%;
  }
}
.section-title.is-active .section-title__char {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section-title.is-active .section-title__underline {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.section-title__sub {
  text-align: center;
  display: block;
}
@media (max-width: 820px) {
  .section-title__sub {
    margin-bottom: 4.8029902439vw;
  }
}
.section-title__sub .section-title__group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn__circle {
  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;
  border-radius: 100px;
  border: 2px solid #FFFFFF;
  width: 48px;
  height: 48px;
  overflow: hidden;
  padding: 8px;
  margin: auto;
}
.c-btn__arrow {
  position: relative;
  width: 20px;
  height: 28px;
  overflow: hidden;
}
.c-btn__arrow img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  will-change: transform, opacity;
  opacity: 0;
  -webkit-animation: cBtnArrowLoop 2.2s ease-in-out infinite;
          animation: cBtnArrowLoop 2.2s ease-in-out infinite;
}
.c-btn__arrow img:nth-child(2) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.c-btn__text {
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.32px;
  white-space: nowrap;
}
.c-btn__scroll .c-btn__circle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn__scroll .c-btn__text {
  margin-bottom: 8px;
}
.c-btn__go-top {
  -webkit-transition: 0.45s;
  transition: 0.45s;
  position: absolute;
  right: 1%;
  bottom: 19.5%;
  z-index: 3;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1023px) {
  .c-btn__go-top {
    bottom: 4.5%;
  }
}
@media (max-width: 820px) {
  .c-btn__go-top {
    bottom: -0.5%;
    right: 2%;
  }
}
@media (max-width: 480px) {
  .c-btn__go-top {
    bottom: -1%;
  }
}
.c-btn__go-top .c-btn__circle {
  border: 2px solid #000000;
  background: #FFFFFF;
}
.c-btn__go-top .c-btn__arrow img {
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}
.c-btn__go-top .c-btn__text {
  margin-top: 8px;
  color: #000000;
}

.c-cta {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 17px 33px;
  border-radius: 100px;
  border: 3px solid #ED1C24;
  background: #171717;
  color: #FFFFFF;
  text-decoration: none;
  margin-top: 48px;
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.56px;
}
@media (max-width: 1439px) {
  .c-cta {
    gap: 0.8339124392vw;
    padding: 1.1813759555vw 2.2932592078vw;
    border-radius: 6.9492703266vw;
    margin-top: 3.3356497568vw;
    font-size: 1.9457956915vw;
    letter-spacing: 0.0389159138vw;
  }
}
@media (max-width: 820px) {
  .c-cta {
    gap: 2.9268292683vw;
  }
}
.c-cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media (max-width: 992px) {
  .c-cta__box {
    gap: 1.4112903226vw;
  }
}
@media (max-width: 820px) {
  .c-cta__box {
    gap: 2.4390243902vw;
  }
}
.c-cta {
  /* icon */
}
.c-cta__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  transition: -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33), -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
}
.c-cta__icon img {
  display: block;
}
.c-cta__icon.-default {
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 1;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
@media (max-width: 820px) {
  .c-cta__icon.-default {
    width: 5.6585365854vw;
    height: 5.6585365854vw;
  }
}
.c-cta__icon.-hover {
  top: 50%;
  left: 32px;
  z-index: 2;
  border-radius: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
}
.c-cta__label {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  transition: -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33), -webkit-transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
  z-index: 3;
  display: inline-block;
  position: relative;
}
@media (min-width: 991px) {
  .c-cta:hover .-hover {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
  .c-cta:hover .c-cta__label {
    -webkit-transform: translate3d(52px, 0, 0);
            transform: translate3d(52px, 0, 0);
  }
  .c-cta:hover .-default {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.fixedIcon__area {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 160px;
  height: 160px;
  -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);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.fixedIcon__area--active {
  opacity: 1;
  pointer-events: auto;
}
.fixedIcon__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  height: 160px;
  -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);
}
.fixedIcon__btn:hover, .fixedIcon__btn:focus-visible {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.fixedIcon__earth {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.fixedIcon__orbit, .fixedIcon__earth-base, .fixedIcon__earth-shape, .fixedIcon__earth-pin, .fixedIcon__plane {
  position: absolute;
  display: block;
}
.fixedIcon__orbit {
  top: 10px;
  left: 10px;
  width: 141px;
  height: 141px;
}
.fixedIcon__earth-base, .fixedIcon__earth-shape {
  top: 20px;
  left: 20px;
  width: 120px;
  height: 120px;
}
.fixedIcon__earth-pin {
  top: 0;
  left: 100px;
  width: 35px;
  height: 61px;
  z-index: 1;
}
.fixedIcon__earth-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.96px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
.fixedIcon__plane-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  offset-path: circle(70.5px at 80.5px 74.5px);
  offset-distance: 0%;
  offset-anchor: 0% 50%;
  offset-rotate: auto 180deg;
  -webkit-animation: fixedCtaPlaneOrbit 6s linear infinite;
          animation: fixedCtaPlaneOrbit 6s linear infinite;
}
.fixedIcon__plane {
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}
.fixedIcon__label {
  display: none;
}
@media (min-width: 994px) {
  .fixedIcon__area {
    right: 9px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .fixedIcon__area {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
  }
  .fixedIcon__btn {
    width: 100%;
    height: 64px;
    border-radius: 24px 24px 0 0;
    border-top: 3px solid #f8d88b;
    background: #000000;
  }
  .fixedIcon__btn:hover, .fixedIcon__btn:focus-visible {
    -webkit-transform: none;
            transform: none;
  }
  .fixedIcon__earth {
    display: none;
  }
  .fixedIcon__label {
    display: block;
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fixedIcon__plane-track {
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes fixedCtaPlaneOrbit {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes fixedCtaPlaneOrbit {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}
.c-cards {
  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: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto;
}

.c-card__box {
  width: min(522px, 50%);
  padding: 40px;
  position: relative;
  border-radius: 20px;
  border: 5px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#E0E0E0), to(#ED1C24)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #E0E0E0 0%, #ED1C24 100%) border-box;
  -webkit-box-shadow: 0 210px 59px 0 rgba(0, 0, 0, 0), 0 134px 54px 0 rgba(0, 0, 0, 0.01), 0 76px 45px 0 rgba(0, 0, 0, 0.03), 0 34px 34px 0 rgba(0, 0, 0, 0.04), 0 8px 18px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 210px 59px 0 rgba(0, 0, 0, 0), 0 134px 54px 0 rgba(0, 0, 0, 0.01), 0 76px 45px 0 rgba(0, 0, 0, 0.03), 0 34px 34px 0 rgba(0, 0, 0, 0.04), 0 8px 18px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 1439px) {
  .c-card__box {
    width: 48%;
  }
}
@media (max-width: 820px) {
  .c-card__box {
    border: 3.352px solid transparent;
    padding: 6.4414634146vw 6.4414634146vw 1.5634146341vw 6.4414634146vw;
  }
}
.c-card__box .an__start-1, .c-card__box .an__start-2, .c-card__box .an__start-3 {
  position: absolute;
}
@media (min-width: 991px) {
  .c-card__box:hover {
    border-color: transparent;
    --border-angle: 0turn;
    --main-bg: linear-gradient(#fff, #fff);
    --gradient-border: conic-gradient(from var(--border-angle),
    transparent 25%,
    #E0E0E0,
    #ED1C24 99%,
    transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    -webkit-animation: card-border-spin 3s linear infinite;
            animation: card-border-spin 3s linear infinite;
  }
}
.c-card__badge {
  background-image: url(../images/card_tag_g.png);
  position: absolute;
  top: -18px;
  left: 17px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 992px) {
  .c-card__badge {
    width: 4.8387096774vw;
    height: 4.8387096774vw;
    top: -1.814516129vw;
    left: 1.7137096774vw;
  }
}
@media (max-width: 820px) {
  .c-card__badge {
    width: 10.243902439vw;
    height: 10.243902439vw;
    top: -4.0243902439vw;
    left: 2.0731707317vw;
  }
}
.c-card__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 2.56px;
}
@media (max-width: 820px) {
  .c-card__title {
    font-size: 5.1548780488vw;
    line-height: 125%;
    letter-spacing: 1.716px;
  }
}
@media (max-width: 820px) {
  .c-card__title {
    width: 100%;
    left: 0;
    position: relative;
  }
}
.c-card__steps, .c-card__description {
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.96px;
}
@media (max-width: 1439px) {
  .c-card__steps, .c-card__description {
    font-size: 19px;
  }
}
@media (max-width: 820px) {
  .c-card__steps, .c-card__description {
    font-size: 3.8423902439vw;
  }
}
.c-card__description {
  text-align: justify;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .c-card__description {
    margin-top: 16px;
  }
}
@media (max-width: 820px) {
  .c-card__description {
    margin-top: 3.2207317073vw;
    letter-spacing: 0.36px;
  }
}
.c-card__list {
  margin: 24px 0;
  padding-left: 1.5em;
}
@media (max-width: 1439px) {
  .c-card__list {
    margin: 1.6678248784vw 0;
  }
}
.c-card__list li {
  list-style: decimal;
}
.c-card__list .fc-red {
  font-weight: 700;
}
.c-card__image {
  position: relative;
  width: min(315px, 90%);
  margin: auto;
}
@media (max-width: 992px) {
  .c-card__image {
    width: min(211px, 100%);
    margin-bottom: 3.2207317073vw;
  }
}

.section-hero {
  position: relative;
  z-index: 2;
  height: 100svh;
  min-height: 720px;
  background: #E0E0E0;
}
@media (max-width: 820px) {
  .section-hero {
    height: auto;
    min-height: 0;
  }
}
.section-hero__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: auto;
}
@media (max-width: 820px) {
  .section-hero__stage {
    max-height: initial;
    min-height: initial;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 390/844;
    container-type: inline-size;
    margin-top: -11%;
  }
}
@media (max-width: 820px) and (max-width: 598px) {
  .section-hero__stage {
    margin-top: 0;
  }
}
.section-hero__bg-word {
  position: absolute;
  z-index: 0;
  color: #FFFFFF;
  font-size: clamp(220px, 24vw, 250px);
  font-weight: 900;
  line-height: 1.17;
  white-space: nowrap;
}
.section-hero__bg-word--world {
  top: 8.5%;
  left: 31.9%;
  font-size: clamp(120px, 24vw, 250px);
}
@media (max-width: 820px) {
  .section-hero__bg-word--world {
    top: 9.5%;
    right: -4%;
    left: auto;
    font-size: 30.769cqw;
  }
}
.section-hero__bg-word--limitless {
  bottom: 0;
  left: 3.2%;
  font-size: clamp(120px, 24vw, 233px);
}
@media (max-width: 820px) {
  .section-hero__bg-word--limitless {
    bottom: 10.5%;
    left: 2%;
    font-size: 31cqw;
  }
}
.section-hero__line-wrap {
  position: absolute;
  z-index: 1;
  top: 5%;
  left: -21%;
  width: 138%;
  aspect-ratio: 2233/670;
  will-change: transform;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .section-hero__line-wrap {
    top: 14.5%;
    left: -29%;
    width: 158%;
  }
}
@media (max-width: 820px) {
  .section-hero__line-wrap {
    top: 38.584%;
    left: -123%;
    width: 280%;
  }
}
.section-hero__line-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.section-hero__line--base {
  opacity: 0;
}
.section-hero__line--runner {
  opacity: 1;
}
.section-hero__slogan {
  position: absolute;
  z-index: 4;
  top: 13.9%;
  left: 4.9%;
  width: 42%;
  max-width: 600px;
  z-index: 20;
}
@media (max-width: 992px) {
  .section-hero__slogan {
    width: 61%;
  }
}
@media (max-width: 820px) {
  .section-hero__slogan {
    top: 14.5%;
    left: 5.13%;
    width: 87.309%;
    max-width: none;
  }
  .section-hero__slogan img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.section-hero__description {
  margin-top: 16px;
  color: #000000;
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.92px;
}
@media (max-width: 820px) {
  .section-hero__description {
    margin-top: 2.393cqw;
    font-size: 3.59cqw;
    line-height: 1.4;
    letter-spacing: 0.287cqw;
  }
}
.section-hero__people {
  position: absolute;
  z-index: 5 !important;
  top: 17.8%;
  left: 37.6%;
  width: 55%;
  aspect-ratio: 1272/1103;
  opacity: 0;
}
@media (max-width: 992px) {
  .section-hero__people {
    top: 39.8%;
    left: 34.6%;
    width: 62%;
  }
}
@media (max-width: 820px) {
  .section-hero__people {
    top: 41.588%;
    left: 1%;
    width: 97.385%;
  }
}
.section-hero__people picture,
.section-hero__people img {
  display: block;
  width: 100%;
  height: 100%;
}
.section-hero__people img {
  -o-object-fit: contain;
     object-fit: contain;
}
.section-hero__photos {
  position: absolute;
  z-index: 5;
  inset: 0;
}
.section-hero__photo {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
@media (max-width: 820px) {
  .section-hero__photo {
    max-width: none;
  }
}
.section-hero__photo--1 {
  top: 16.3%;
  left: 46%;
  width: 11.88%;
  max-width: 171px;
  z-index: -1;
}
@media (max-width: 820px) {
  .section-hero__photo--1 {
    top: 13.5%;
    right: 14%;
    bottom: auto;
    left: auto;
    max-width: 31.7073170732vw;
    width: 100%;
  }
}
.section-hero__photo--2 {
  top: 13.4%;
  left: 58.5%;
  width: 8.4%;
}
@media (max-width: 820px) {
  .section-hero__photo--2 {
    top: 12.5%;
    right: -11%;
    bottom: auto;
    left: auto;
    max-width: 22.1951219512vw;
    width: 100%;
  }
}
.section-hero__photo--3 {
  top: 70.5%;
  left: 3.6%;
  width: 12.68%;
  max-width: 171px;
}
@media (max-width: 820px) {
  .section-hero__photo--3 {
    top: auto;
    right: auto;
    bottom: 21%;
    left: 3%;
    width: 21%;
  }
}
.section-hero__photo--4 {
  top: 64.3%;
  right: -3.6%;
  width: 11.04%;
  max-width: 171px;
}
@media (max-width: 820px) {
  .section-hero__photo--4 {
    top: auto;
    right: 3%;
    bottom: 24%;
    left: auto;
    width: 15%;
  }
}
.section-hero__photo--5 {
  top: 61.9%;
  left: 27.9%;
  width: 5.7%;
}
@media (max-width: 820px) {
  .section-hero__photo--5 {
    top: 43%;
    right: auto;
    bottom: auto;
    left: 5%;
    width: 13%;
  }
}
.section-hero__destination {
  position: absolute;
  z-index: 5;
  top: 55.8%;
  right: 3.3%;
  min-width: 31.7%;
  padding: 5px 10px;
  color: #000000;
  background: rgba(255, 255, 255, 0.82);
  font-size: clamp(32px, 3.33vw, 48px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 820px) {
  .section-hero__destination {
    display: none;
  }
}
.section-hero__destination strong {
  font-weight: 900;
}
@media (prefers-reduced-motion: reduce) {
  .section-hero__people, .section-hero__photo, .section-hero__destination {
    opacity: 1;
    visibility: visible;
  }
  .section-hero__line--base {
    opacity: 0.9;
  }
  .section-hero__line--runner {
    display: none;
  }
}

.section-application {
  position: relative;
  padding: 180px 0 120px 0;
}
@media (max-width: 1439px) {
  .section-application {
    padding: 12.5086865879vw 0 8.3391243919vw 0;
  }
}
@media (max-width: 992px) {
  .section-application {
    padding: 0 0 9.5766129032vw;
  }
}
.section-application .section-title__group--brand {
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -1.2px;
  margin: 0 13px;
}
@media (max-width: 992px) {
  .section-application .section-title__group--brand {
    font-size: 8.3333333333vw;
  }
}
.section-application .section-title__group-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .section-application .section-title__group-box {
    margin-top: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-application .section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section-application .section-title {
    display: block;
    width: 100%;
  }
  .section-application .section-title__group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-application__header {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .section-application__header {
    margin-bottom: 3.9024390244vw;
  }
}
.section-application__header .section-subtitle {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 1.92px;
  font-weight: 500;
  color: #1C397B;
  margin-top: 16px;
}
.section-application__header .section-subtitle .fc-red {
  font-weight: 700;
  margin: 0 5px;
  letter-spacing: 1.28px;
}
@media (max-width: 992px) {
  .section-application__header .section-subtitle {
    font-size: 5.787804878vw;
    margin-top: 2.4390243902vw;
  }
}
.section-application__container {
  position: relative;
  width: min(1440px, 100%);
  margin: auto;
}
.section-application__content {
  position: relative;
  width: min(1064px, 90%);
  margin: auto;
}
@media (max-width: 992px) {
  .section-application__content {
    width: auto;
    margin: 0 2.0161290323vw;
  }
}
.section-application .c-card__box {
  max-width: 1064px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 63px 48px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1439px) {
  .section-application .c-card__box {
    max-width: 73.9402362752vw;
    padding: 4.3780403058vw 3.3356497568vw;
  }
}
@media (max-width: 992px) {
  .section-application .c-card__box {
    max-width: 107.2580645161vw;
    padding: 5.6451612903vw 4.2338709677vw;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    padding: 9.756097561vw 5.8536585366vw 3.9024390244vw;
  }
}
.section-application .c-card__content {
  max-width: 580px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: 0.96px;
}
@media (max-width: 820px) {
  .section-application .c-card__content {
    font-size: 4.3902439024vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.36px;
  }
}
.section-application .c-card__content {
  color: #000000;
}
@media (max-width: 1439px) {
  .section-application .c-card__content {
    max-width: 40.3057678944vw;
  }
}
@media (max-width: 992px) {
  .section-application .c-card__content {
    max-width: 48.3870967742vw;
    line-height: 1.5;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__content {
    max-width: 100%;
  }
}
.section-application .c-card__image {
  max-width: 395px;
  width: 100%;
  position: absolute;
  right: 24px;
  bottom: -10px;
}
@media (max-width: 1439px) {
  .section-application .c-card__image {
    max-width: 27.4496177901vw;
    right: 1.6678248784vw;
    bottom: -0.6949270327vw;
  }
}
@media (max-width: 992px) {
  .section-application .c-card__image {
    max-width: 39.8185483871vw;
    right: 0.8064516129vw;
    bottom: -4.0322580645vw;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__image {
    position: relative;
    max-width: 73.6585365854vw;
  }
}
.section-application .c-card__image .an__start-1 {
  width: min(19px, 7%);
  left: 11.5%;
  bottom: 29%;
}
@media (max-width: 992px) {
  .section-application .c-card__image .an__start-1 {
    left: 11.5%;
    bottom: 55.5%;
  }
}
.section-application .c-card__image .an__start-2 {
  width: min(19px, 7%);
  left: 41.5%;
  bottom: 24%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@media (max-width: 992px) {
  .section-application .c-card__image .an__start-2 {
    display: none;
  }
}
.section-application .c-card__image .an__start-3 {
  right: 1%;
  bottom: 49%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-application .c-card__title {
  text-align: left;
}
@media (max-width: 1439px) {
  .section-application .c-card__title {
    font-size: 2.2237665045vw;
    letter-spacing: 0.1779013204vw;
  }
}
@media (max-width: 992px) {
  .section-application .c-card__title {
    font-size: 3.2258064516vw;
    letter-spacing: 0.2580645161vw;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__title {
    font-size: 5.8536585366vw;
    letter-spacing: 0.312195122vw;
  }
}
@media (max-width: 1439px) {
  .section-application .c-card__list {
    font-size: 1.6678248784vw;
  }
}
@media (max-width: 992px) {
  .section-application .c-card__list {
    font-size: 2.4193548387vw;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__list {
    font-size: 4.3902439024vw;
  }
}
.section-application .c-card__hint {
  color: #616161;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media (max-width: 1439px) {
  .section-application .c-card__hint {
    font-size: 1.2508686588vw;
    letter-spacing: 0.0555941626vw;
  }
}
@media (max-width: 992px) {
  .section-application .c-card__hint {
    font-size: 1.814516129vw;
    letter-spacing: 0.0806451613vw;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__hint {
    font-size: 3.9024390244vw;
  }
}
.section-application__prompt {
  margin-top: 48px;
  width: 100%;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: 0.8px;
}
@media (max-width: 820px) {
  .section-application__prompt {
    font-size: 4.8032926829vw;
  }
}
@media (max-width: 1439px) {
  .section-application__prompt {
    margin-top: 3.3356497568vw;
  }
}
@media (max-width: 992px) {
  .section-application__prompt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.3170731707vw;
  }
}
.section-application__prompt a {
  text-decoration: underline;
  color: #2C87E8;
}
.section-application .an-line {
  width: 100%;
  top: 18.7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 992px) {
  .section-application .c-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 4.6370967742vw auto 0;
    font-size: 3.2258064516vw;
    padding: 1.6129032258vw 1.9153225806vw;
  }
}

.section-discount {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 1439px) {
  .section-discount {
    padding-top: 8.3391243919vw;
  }
}
@media (max-width: 992px) {
  .section-discount {
    padding-top: 14.1129032258vw;
  }
}
@media (max-width: 820px) {
  .section-discount {
    padding-top: 0;
  }
}
.section-discount .c-icon.an-line {
  clip-path: inset(0 0 100% 0);
}
.section-discount__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  top: -3%;
  overflow: hidden;
  pointer-events: none;
}
.section-discount__bg-diagonal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2748px;
  height: 976px;
  background: #bdbdbd;
  -webkit-transform: translate(-50%, -50%) rotate(-12.47deg);
          transform: translate(-50%, -50%) rotate(-12.47deg);
}
.section-discount .an-line {
  right: -31.5%;
  top: -4%;
  z-index: 1;
}
@media (max-width: 1500px) {
  .section-discount .an-line {
    right: -25.5%;
  }
}
.section-discount .section-title__group {
  color: #000000;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.88px;
}
.section-discount .section-title__group span:nth-child(3), .section-discount .section-title__group span:nth-child(4), .section-discount .section-title__group span:nth-child(5), .section-discount .section-title__group span:nth-child(6), .section-discount .section-title__group span:nth-child(7) {
  color: #ceb071;
}
@media (max-width: 820px) {
  .section-discount .section-title__group {
    font-size: 5.7682926829vw;
    line-height: 125%;
    letter-spacing: 0.96px;
  }
}
.section-discount__container {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  width: min(89.745%, 1400px);
  margin: auto;
}
@media (max-width: 1439px) {
  .section-discount__container {
    padding-bottom: 8.3391243919vw;
  }
}
@media (max-width: 820px) {
  .section-discount__container {
    width: auto;
    margin: 0 2.4390243902vw;
  }
}
.section-discount__content {
  position: relative;
  max-width: 1064px;
  margin: auto;
}
.section-discount .c-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.section-discount .c-card__box {
  border-radius: 24px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__box {
    border-radius: 1.6678248784vw;
    padding: 2.7797081306vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__box {
    border-radius: 2.4193548387vw;
    padding: 4.0322580645vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__box {
    width: 100%;
    padding: 6.3414634146vw 16.8292682927vw 1.7073170732vw;
  }
  .section-discount .c-card__box:not(:last-child) {
    margin-bottom: 5.8536585366vw;
  }
}
.section-discount .c-card__box:nth-child(-n+2):not(:hover) {
  border-color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#e0e0e0)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ed1c24 0%, #e0e0e0 100%) border-box;
}
.section-discount .c-card__box .an__start {
  width: min(19px, 7%);
}
.section-discount .c-card__box:nth-child(1) {
  margin-right: 20px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__box:nth-child(1) {
    margin-right: 2.084781098vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__box:nth-child(1) {
    margin-right: 3.2258064516vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__box:nth-child(1) {
    margin-right: 0;
  }
}
.section-discount .c-card__box:nth-child(1) .an__start-1 {
  left: 8.5%;
  top: 18%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-discount .c-card__box:nth-child(1) .an__start-2 {
  right: 14%;
  bottom: 7%;
}
.section-discount .c-card__box:nth-child(2) .an__start-1 {
  left: 8.5%;
  top: 19%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-discount .c-card__box:nth-child(2) .an__start-2 {
  right: 13%;
  bottom: 12%;
}
.section-discount .c-card__box:nth-child(4):not(:hover) {
  border-color: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#e0e0e0), to(#ed1c24)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #e0e0e0 0%, #ed1c24 100%) border-box;
}
@media (max-width: 820px) {
  .section-discount .c-card__box:nth-child(4):not(:hover) {
    border-color: transparent;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#e0e0e0)) border-box;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ed1c24 0%, #e0e0e0 100%) border-box;
  }
}
.section-discount .c-card__box:nth-child(4) {
  width: 100%;
  margin-top: 32px;
  padding: 40px 60px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__box:nth-child(4) {
    margin-top: 2.2237665045vw;
    padding: 2.7797081306vw 4.169562196vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__box:nth-child(4) {
    margin-top: 0;
    padding: 24px;
  }
}
.section-discount .c-card__box:nth-child(4) .c-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 820px) {
  .section-discount .c-card__box:nth-child(4) .c-card__content {
    display: block;
  }
}
.section-discount .c-card__box:nth-child(4) .c-card__description {
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media (max-width: 820px) {
  .section-discount .c-card__box:nth-child(4) .c-card__description {
    font-size: 3.8423902439vw;
  }
}
.section-discount .c-card__box:nth-child(4) .an__start-1 {
  left: 8%;
  top: 14%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-discount .c-card__box:nth-child(4) .an__start-2 {
  right: 7%;
  bottom: 43%;
}
.section-discount .c-card__title {
  margin-top: 20px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__title {
    margin-top: 1.3898540653vw;
    font-size: 2.2237665045vw;
    letter-spacing: 0.1779013204vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__title {
    margin-top: 2.0161290323vw;
    font-size: 3.2258064516vw;
    letter-spacing: 0.2580645161vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__title {
    margin-top: 1.9512195122vw;
    font-size: 5.1219512195vw;
    letter-spacing: 0.312195122vw;
  }
}
.section-discount .c-card__text {
  margin-left: 40px;
  width: 100%;
  text-wrap: nowrap;
}
@media (max-width: 1439px) {
  .section-discount .c-card__text {
    margin-left: 2.7797081306vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__text {
    margin-left: 4.0322580645vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__text {
    margin-left: 0;
  }
}
.section-discount .c-card__text .c-card__title {
  text-align: left;
}
@media (max-width: 820px) {
  .section-discount .c-card__text .c-card__title {
    text-align: center;
  }
  .section-discount .c-card__text .c-card__title i {
    display: none;
  }
}
.section-discount .c-card__description {
  letter-spacing: 2.4px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__description {
    letter-spacing: 0.1667824878vw;
    font-size: 1.6678248784vw !important;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__description {
    letter-spacing: 0.2419354839vw;
    font-size: 2.0161290323vw !important;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__description {
    text-align: center;
    font-size: 3.9024390244vw !important;
    text-wrap: wrap;
    padding: 0 9.3902439024vw;
  }
}
.section-discount .c-card__description:is(ul) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  gap: 8px;
  counter-reset: card-num;
}
@media (max-width: 1439px) {
  .section-discount .c-card__description:is(ul) {
    gap: 0.5559416261vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__description:is(ul) {
    gap: 0.8064516129vw;
    text-wrap: nowrap;
  }
}
.section-discount .c-card__description:is(ul) li {
  counter-increment: card-num;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2.4px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__description:is(ul) li {
    gap: 0.5559416261vw;
    font-size: 1.6678248784vw;
    letter-spacing: 0.1667824878vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__description:is(ul) li {
    gap: 0.8064516129vw;
    font-size: 2.4193548387vw;
    letter-spacing: 0.2419354839vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__description:is(ul) li {
    gap: 1.4634146341vw;
    font-size: 3.7804878049vw;
    letter-spacing: 0.3658536585vw;
  }
  .section-discount .c-card__description:is(ul) li::before {
    width: 5.7317073171vw;
    height: 5.7317073171vw;
    font-size: 3.7804878049vw;
    letter-spacing: 0.3658536585vw;
  }
}
.section-discount .c-card__description:is(ul) li::before {
  content: counter(card-num);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 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;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  background: #ed1c24;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__description:is(ul) li::before {
    width: 2.362751911vw;
    height: 2.362751911vw;
    border-radius: 6.9492703266vw;
    font-size: 1.6678248784vw;
    letter-spacing: 0.1667824878vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__description:is(ul) li::before {
    width: 3.4274193548vw;
    height: 3.4274193548vw;
    border-radius: 10.0806451613vw;
    font-size: 2.4193548387vw;
    letter-spacing: 0.2419354839vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__description:is(ul) li::before {
    width: 5.3658536585vw;
    height: 5.3658536585vw;
    border-radius: 12.1951219512vw;
    font-size: 2.9268292683vw;
    letter-spacing: 0.2926829268vw;
  }
}
.section-discount .c-card__description p:not(:first-child) {
  margin-top: 8px;
}
@media (max-width: 1439px) {
  .section-discount .c-card__description p:not(:first-child) {
    margin-top: 0.5559416261vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__description p:not(:first-child) {
    margin-top: 0.8064516129vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__description p:not(:first-child) {
    margin-top: 0.9756097561vw;
  }
}
.section-discount .c-card__title-sub {
  font-weight: 400;
}
@media (max-width: 820px) {
  .section-discount .c-card__title-sub {
    display: block;
    font-weight: 700;
  }
}
.section-discount .c-card__box:not(:nth-child(3)) .c-card__content {
  text-align: center;
}
.section-discount .c-card__image {
  max-width: 315px;
  width: 100%;
}
@media (max-width: 1439px) {
  .section-discount .c-card__image {
    max-width: 21.8902015288vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-card__image {
    max-width: 31.7540322581vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__image {
    max-width: 51.4634146341vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-card__content {
    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-discount .c-cta {
  margin-top: 32px;
  font-size: 24px;
  letter-spacing: 0.48px;
  padding: 20px 32px;
}
@media (max-width: 1439px) {
  .section-discount .c-cta {
    margin-top: 2.2237665045vw;
    font-size: 1.6678248784vw;
    letter-spacing: 0.0333564976vw;
    padding: 1.3898540653vw 2.2237665045vw;
  }
}
@media (max-width: 992px) {
  .section-discount .c-cta {
    margin-top: 3.2258064516vw;
    font-size: 2.4193548387vw;
    letter-spacing: 0.0483870968vw;
    padding: 2.0161290323vw 3.2258064516vw;
  }
}
@media (max-width: 820px) {
  .section-discount .c-cta {
    border-radius: 67.05px;
    margin-top: 3.2207317073vw;
    font-size: 3.8423902439vw;
    letter-spacing: 0.1146341463vw;
    padding: 1.7142682927vw 5.9109756098vw;
  }
}

.section-event {
  position: relative;
  padding: 0;
  background-image: url(../images/event/icon_earth.png);
  background-position: center -48%;
  background-repeat: no-repeat;
  height: 100%;
}
@media (max-width: 992px) {
  .section-event {
    background-position: center 114.5%;
    background-size: 94%;
  }
}
.section-event__container {
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
  width: min(89.745%, 1400px);
  margin: auto;
}
@media (max-width: 1439px) {
  .section-event__container {
    padding-bottom: 9.0340514246vw;
  }
}
@media (max-width: 992px) {
  .section-event__container {
    padding-bottom: 13.1048387097vw;
    width: auto;
    margin: 0 2.0161290323vw;
  }
}
@media (max-width: 820px) {
  .section-event__container {
    padding-bottom: 33.6585365854vw;
    margin: 0 2.4390243902vw;
  }
}
.section-event__content {
  position: relative;
  max-width: 1064px;
  margin: auto;
}
.section-event .c-cta {
  border-radius: 16px;
  border: 3px solid #ceb071;
  background: #000000;
  padding: 17px 29px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.48px;
  text-transform: capitalize;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .section-event .c-cta {
    border-radius: 1.1118832523vw;
    padding: 1.1813759555vw 2.0152883947vw;
    font-size: 1.6678248784vw;
    letter-spacing: 0.0333564976vw;
  }
}
@media (max-width: 992px) {
  .section-event .c-cta {
    border-radius: 1.6129032258vw;
    padding: 1.7137096774vw 2.9233870968vw;
    font-size: 2.4193548387vw;
    letter-spacing: 0.0483870968vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-cta {
    padding: 4.0829268293vw 7.087804878vw;
    font-size: 5.763597561vw;
  }
}
.section-event .c-cta__icon.-default {
  width: 40px;
  height: 40px;
}
@media (max-width: 1439px) {
  .section-event .c-cta__icon.-default {
    width: 2.7797081306vw;
    height: 2.7797081306vw;
  }
}
@media (max-width: 992px) {
  .section-event .c-cta__icon.-default {
    width: 4.0322580645vw;
    height: 4.0322580645vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-cta__icon.-default {
    width: 9.606vw;
    height: 9.606vw;
  }
}
.section-event .c-cta__label {
  text-wrap: nowrap;
}
.section-event .c-cards {
  gap: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1439px) {
  .section-event .c-cards {
    gap: 1.3898540653vw;
  }
}
@media (max-width: 992px) {
  .section-event .c-cards {
    gap: 2.0161290323vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.8780487805vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-cards .c-card__title {
    font-size: 7.6829268293vw;
  }
}
.section-event .c-card__box {
  text-align: center;
  width: min(341px, 33%);
  padding: 40px 37px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#e0e0e0)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #ed1c24 0%, #e0e0e0 100%) border-box;
  margin-bottom: 0 !important;
}
@media (max-width: 1439px) {
  .section-event .c-card__box {
    padding: vwml(40px) vwml(37px);
  }
}
@media (max-width: 992px) {
  .section-event .c-card__box {
    padding: 3.0241935484vw 2.0161290323vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-card__box {
    padding: 4.8780487805vw 8.2926829268vw;
    width: 100%;
  }
}
@media (min-width: 991px) {
  .section-event .c-card__box:hover {
    border-color: transparent;
    --border-angle: 0turn;
    --main-bg: linear-gradient(#fff, #fff);
    --gradient-border: conic-gradient(
      from var(--border-angle),
      transparent 25%,
      #e0e0e0,
      #ed1c24 99%,
      transparent
    );
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    -webkit-animation: card-border-spin 3s linear infinite;
            animation: card-border-spin 3s linear infinite;
  }
}
.section-event .c-card__image {
  max-width: 160px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1439px) {
  .section-event .c-card__image {
    max-width: 11.1188325226vw;
    margin-bottom: 1.3898540653vw;
  }
}
@media (max-width: 992px) {
  .section-event .c-card__image {
    max-width: 16.1290322581vw;
    margin-bottom: 2.0161290323vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-card__image {
    max-width: 39.0243902439vw;
    margin-bottom: 4.8780487805vw;
  }
}
.section-event .c-card__title {
  margin-bottom: 20px;
  text-wrap: nowrap;
}
@media (max-width: 1439px) {
  .section-event .c-card__title {
    margin-bottom: 1.3898540653vw;
    font-size: 2.2237665045vw;
    letter-spacing: 0.1779013204vw;
  }
}
@media (max-width: 992px) {
  .section-event .c-card__title {
    margin-bottom: 2.0161290323vw;
    font-size: 3.2258064516vw;
    letter-spacing: 0.2580645161vw;
  }
}
@media (max-width: 820px) {
  .section-event .c-card__title {
    margin-bottom: 6.5853658537vw;
    font-size: 7.8048780488vw;
  }
}
.section-event .an-line {
  bottom: 35%;
}

.section-notice {
  position: relative;
  padding: 80px 24px;
  border-radius: 80px 80px 0 0;
  border-top: 4px solid #F8D88B;
  background: #000000;
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .section-notice {
    padding: 48px 20px;
    border-radius: 32px 32px 0 0;
  }
}
.section-notice__container {
  position: relative;
  max-width: 1064px;
  margin: 0 auto;
}
.section-notice__content {
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.section-notice__title {
  text-align: center;
  font-size: 32px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 2.56px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.section-notice__btn {
  cursor: pointer;
  margin: 24px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: none;
  color: #FEE094;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
}
.section-notice__btn::before {
  content: "閱讀更多";
  display: block;
  margin-right: 8px;
}
.section-notice__btn::after {
  width: 16px;
  height: 10px;
  content: "";
  content: "";
  display: block;
  background-image: url(../images/notice/icon-arrw.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-notice__btn.is-expanded::before {
  content: "收起";
}
.section-notice__btn.is-expanded::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.notice-group {
  margin-top: 24px;
}
.notice-group:first-child {
  margin-top: 0;
}
.notice-group__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 2.56px;
  text-transform: capitalize;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1439px) {
  .notice-group__title {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 1.92px;
  }
}

.notice-list {
  font-family: "Noto Sans TC", serif;
}
.notice-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32px;
}
@media (max-width: 992px) {
  .notice-list li {
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.32px;
  }
}
.notice-list li {
  margin-bottom: 12px;
}
.notice-list li:last-child {
  margin-bottom: 0;
}
.notice-list li a {
  color: #FEE094;
  text-decoration: underline;
}
.notice-list b {
  color: #FDD368;
}
.notice-list__decimal {
  padding-left: 24px;
}
@media (max-width: 1023px) {
  .notice-list__decimal {
    padding-left: 19px;
  }
}
.notice-list__decimal li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  text-transform: capitalize;
  list-style: decimal;
}
.notice-list__prefix li {
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.notice-list__prefix li span {
  width: calc(100% - 12.5px);
}
.notice-list__prefix li::before {
  content: "※";
  margin-right: 4px;
}