@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;
  -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
}
.header.is-active {
  border-bottom: 2px solid var(--Cyan-Cyan-100, #E5FBFF);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.header__container {
  margin: 0 auto;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px 80px 20px 80px;
  position: relative;
  z-index: 1;
  height: 108px;
}
@media (max-width: 992px) {
  .header__wrapper {
    padding: 1.5625vw 1.953125vw 1.171875vw;
    height: auto;
  }
}
@media (max-width: 768px) {
  .header__wrapper {
    padding: 2.0833333333vw 2.6041666667vw 1.5625vw;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .header__logo {
    height: auto;
    width: 122px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 98px;
  }
}
.header__logo-img {
  display: block;
  width: 100%;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}
@media (max-width: 992px) {
  .header__nav-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .header__nav-list {
    gap: 6px;
  }
}
.header__nav-link.c-cta {
  width: 155px;
  height: 56px;
  font-size: 20px;
  gap: 8px;
  padding: 0;
}
@media (max-width: 768px) {
  .header__nav-link.c-cta {
    width: 81px;
    height: 38px;
    font-size: 14px;
    border-radius: 12px;
    border: 3px solid #000000;
  }
}
@media (min-width: 991px) {
  .header__nav-link.c-cta:hover .-hover {
    left: 15px;
  }
  .header__nav-link.c-cta:hover .c-cta__label {
    -webkit-transform: translate3d(41px, 0, 0);
            transform: translate3d(41px, 0, 0);
  }
}
.header__nav-link .c-cta__icon.-default {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .header__nav-link .c-cta__icon.-default {
    display: none;
  }
}
.header__nav-link--bg-yellow {
  background-color: #ffd900;
}
.header__nav-link.is-disabled {
  color: #E0E0E0;
  pointer-events: none;
  cursor: not-allowed;
}
.header__nav-buttom {
  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;
  background-color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-left: 8px;
}
.header__nav-buttom img {
  width: 20px;
  height: 20px;
}
.header__menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  z-index: 1001;
  -webkit-transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: background 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
}
.header__menu-toggle:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.header__hamburger {
  position: relative;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__hamburger-line {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__hamburger-line::before, .header__hamburger-line::after {
  content: "";
  position: absolute;
  background: #FFFFFF;
  height: 2px;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__hamburger-line::before {
  width: 14px;
  top: -5px;
  left: 0;
}
.header__hamburger-line::after {
  width: 14px;
  bottom: -5px;
  left: 0;
}

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

footer {
  background-color: #254A91;
  padding: 32px 0;
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 768px) {
  footer {
    padding: 24px 36px;
  }
}
footer .footer-wrap {
  max-width: 884px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  font-size: 14px;
}
footer .footer-wrap .top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px;
}
@media (max-width: 768px) {
  footer .footer-wrap .top-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
footer .footer-wrap .top-wrap h4 {
  margin-right: 50px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-wrap: nowrap;
}
@media (max-width: 1024px) {
  footer .footer-wrap .top-wrap h4 {
    font-size: 24px;
    margin-right: 30px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  footer .footer-wrap .top-wrap h4 {
    text-align: center;
    margin-bottom: 16px;
    margin-right: 0;
  }
}
footer .footer-wrap .top-wrap p {
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
footer .footer-wrap .bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  footer .footer-wrap .bottom-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  footer .footer-wrap .bottom-wrap__box {
    margin-bottom: 14px;
  }
  footer .footer-wrap .bottom-wrap__box:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 390px) {
  footer .footer-wrap .bottom-wrap__box {
    text-align: center;
    line-height: 160%;
  }
  footer .footer-wrap .bottom-wrap__box .br {
    display: block;
  }
}
footer .footer-wrap .bottom-wrap__link {
  text-decoration: underline;
}

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

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

section {
  position: relative;
}

.title-indent {
  position: absolute;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  text-indent: -9999px;
  overflow: hidden;
}

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

main {
  background: #E5FFFF;
}
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: 768px) {
  .desk-use {
    display: none;
  }
}

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

/* 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: 768px) {
  .hidden-min {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .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: #FA7E70 !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.2);
            transform: scale(1.2);
  }
}
@keyframes starTwinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-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;
  }
}
@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;
  }
}
@-webkit-keyframes card-shine {
  0% {
    left: -120%;
  }
  50%, 100% {
    left: 160%;
  }
}
@keyframes card-shine {
  0% {
    left: -120%;
  }
  50%, 100% {
    left: 160%;
  }
}
/* 旋轉：把 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;
}
@-webkit-keyframes marquee-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes marquee-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes hand-shake {
  0% {
    rotate: 2deg;
  }
  8% {
    rotate: 8deg;
  }
  16% {
    rotate: -2deg;
  }
  24% {
    rotate: 6deg;
  }
  32% {
    rotate: 2deg;
  }
  100% {
    rotate: 2deg;
  }
}
@keyframes hand-shake {
  0% {
    rotate: 2deg;
  }
  8% {
    rotate: 8deg;
  }
  16% {
    rotate: -2deg;
  }
  24% {
    rotate: 6deg;
  }
  32% {
    rotate: 2deg;
  }
  100% {
    rotate: 2deg;
  }
}
.c-icon {
  position: absolute;
}

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

.section-hero .c-icon__cloud--1 {
  width: min(105px, 11.3%);
  top: 80px;
  left: 60px;
  -webkit-animation: cloud-r 30s 0.5s ease-out infinite;
          animation: cloud-r 30s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--1 {
    display: none;
  }
}
.section-hero .c-icon__cloud--2 {
  width: min(90px, 11.3%);
  top: 19%;
  left: 17%;
  -webkit-animation: cloud-l 30s 0.5s ease-out infinite;
          animation: cloud-l 30s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--2 {
    top: 49%;
    left: 4%;
  }
}
@media (max-width: 768px) {
  .section-hero .c-icon__cloud--2 {
    top: 43%;
  }
}
.section-hero .c-icon__cloud--3 {
  width: min(105px, 11.3%);
  top: 25%;
  right: 13%;
  -webkit-animation: cloud-l 30s 0.5s ease-out infinite;
          animation: cloud-l 30s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--3 {
    display: none;
  }
}
.section-hero .c-icon__cloud--4 {
  width: min(90px, 11.3%);
  top: 10%;
  right: 2%;
  -webkit-animation: cloud-r 30s 0.5s ease-out infinite;
          animation: cloud-r 30s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--4 {
    top: 49%;
    right: 4%;
  }
}
@media (max-width: 768px) {
  .section-hero .c-icon__cloud--4 {
    top: 40%;
  }
}
.section-hero .c-icon__slogan {
  height: auto;
}
.section-hero .c-icon__start--1 {
  width: min(17px, 4%);
  top: -25%;
  right: -21%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-hero .c-icon__start--2 {
  width: min(14px, 3%);
  top: 38%;
  right: -21%;
  -webkit-animation: starTwinkle 1.2s 0.5s ease-in-out infinite;
          animation: starTwinkle 1.2s 0.5s ease-in-out infinite;
}
.section-hero .c-icon__start--3 {
  width: min(14px, 3%);
  top: -4%;
  right: 16%;
  -webkit-animation: starTwinkle 1.2s 1s ease-in-out infinite;
          animation: starTwinkle 1.2s 1s ease-in-out infinite;
}
.section-hero .c-icon__start--4 {
  width: min(17px, 4%);
  bottom: 39%;
  left: 5%;
  -webkit-animation: starTwinkle 1.2s 0.5s ease-in-out infinite;
          animation: starTwinkle 1.2s 0.5s ease-in-out infinite;
}
.section-hero .c-icon.c-icon__start-l-1 {
  width: min(11px, 4%);
  top: 32%;
  left: 36%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-hero .c-icon.c-icon__start-l-2 {
  width: min(14px, 3%);
  top: 23%;
  left: 61%;
  -webkit-animation: starTwinkle 1.2s 0.5s ease-in-out infinite;
          animation: starTwinkle 1.2s 0.5s ease-in-out infinite;
}
.section-hero .c-icon.c-icon__start-r-1 {
  width: min(11px, 4%);
  top: 39.7%;
  left: 27.2%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-hero .c-icon.c-icon__start-r-2 {
  width: min(14px, 3%);
  top: 32%;
  left: 42%;
  -webkit-animation: starTwinkle 1.2s 1s ease-in-out infinite;
          animation: starTwinkle 1.2s 1s ease-in-out infinite;
}
.section-hero .c-icon__start-m-1, .section-hero .c-icon__start-m-2, .section-hero .c-icon__start-m-3, .section-hero .c-icon__start-m-4 {
  position: absolute !important;
}
.section-hero .c-icon__start-m-1 {
  width: min(15px, 8%);
  left: 19.5%;
  top: 40%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .section-hero .c-icon__start-m-1 {
    width: min(15px, 2%);
  }
}
.section-hero .c-icon__start-m-2 {
  width: min(19px, 11%);
  left: 30.2%;
  top: 31%;
  -webkit-animation: starTwinkle 1.2s 1s ease-in-out infinite;
          animation: starTwinkle 1.2s 1s ease-in-out infinite;
}
@media (max-width: 768px) {
  .section-hero .c-icon__start-m-2 {
    width: min(19px, 1.5%);
  }
}
.section-hero .c-icon__start-m-3 {
  width: min(14px, 11%);
  right: 35%;
  top: 39%;
  z-index: 2;
  -webkit-animation: starTwinkle 1.2s 0.4s ease-in-out infinite;
          animation: starTwinkle 1.2s 0.4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .section-hero .c-icon__start-m-3 {
    width: min(19px, 1.5%);
    top: 36%;
  }
}
.section-hero .c-icon__start-m-4 {
  width: min(19px, 11%);
  right: 21.2%;
  top: 14%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .section-hero .c-icon__start-m-4 {
    width: min(19px, 2%);
    top: 13%;
  }
}
.section-hero .c-icon__card--1 {
  width: 44%;
  max-width: 166px;
  left: 34%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__card--1 {
    width: 14%;
    max-width: 118px;
    left: 31%;
    bottom: 1%;
  }
}
.section-hero .c-icon__card--2 {
  width: 19%;
  max-width: 111px;
  left: 43%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__card--2 {
    width: 22%;
    max-width: 185px;
    left: 61%;
    bottom: 1%;
  }
}

.section-student .c-icon__cloud--l {
  width: min(158px, 11.3%);
  bottom: 4%;
  left: -4%;
  -webkit-animation: cloud-r 30s 0.5s ease-out infinite;
          animation: cloud-r 30s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-student .c-icon__cloud--l {
    width: 18%;
    bottom: 2%;
    left: -6%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__cloud--l {
    width: min(95px, 28.2%);
    bottom: 7%;
  }
}
.section-student .c-icon__cloud--r {
  width: min(135px, 11.3%);
  top: -4%;
  right: 4%;
  -webkit-animation: cloud-l 30s 0.5s ease-out infinite;
          animation: cloud-l 30s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-student .c-icon__cloud--r {
    width: 16.6%;
    top: -3%;
    right: 0%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__cloud--r {
    width: min(81px, 24.2%);
    top: 0;
    right: 0%;
  }
}
.section-student .c-icon__calculator {
  left: -1%;
  top: 2%;
  width: min(112px, 9%);
  z-index: 1;
  -webkit-animation: float-b 3s ease-out infinite;
          animation: float-b 3s ease-out infinite;
}
@media (max-width: 992px) {
  .section-student .c-icon__calculator {
    left: 5%;
    top: -3%;
    width: 13%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__calculator {
    left: 0%;
    top: -4%;
    width: min(64px, 19.2%);
  }
}
.section-student .c-icon__pattern--1 {
  width: min(160px, 12%);
  z-index: 0;
  top: 7%;
  left: -7%;
  -webkit-transform: rotate(21deg);
          transform: rotate(21deg);
}
@media (max-width: 992px) {
  .section-student .c-icon__pattern--1 {
    top: -2%;
    left: -7%;
    width: 24%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__pattern--1 {
    width: min(102px, 25%);
    top: -2%;
  }
}
.section-student .c-icon__pattern--2 {
  width: min(172px, 13%);
  z-index: 0;
  top: 47%;
  right: -7.4%;
  -webkit-transform: rotate(21deg);
          transform: rotate(21deg);
}
@media (max-width: 992px) {
  .section-student .c-icon__pattern--2 {
    width: 23%;
    top: 54.5%;
    right: -10.4%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__pattern--2 {
    width: min(102px, 24%);
    top: 51.5%;
  }
}
.section-student .c-icon__pattern--3 {
  width: min(160px, 12%);
  z-index: 0;
  bottom: -14%;
  left: -7%;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media (max-width: 992px) {
  .section-student .c-icon__pattern--3 {
    width: 14%;
    bottom: -3%;
    left: -10%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__pattern--3 {
    width: min(160px, 23.65%);
    bottom: -3%;
    left: -13%;
  }
}
.section-student .c-icon__coin {
  width: min(117px, 8.45%);
  right: -5%;
  top: 7%;
  -webkit-animation: float 3s ease-out infinite;
          animation: float 3s ease-out infinite;
}
@media (max-width: 992px) {
  .section-student .c-icon__coin {
    display: none;
  }
}
.section-student .c-icon__card-t {
  width: min(122px, 8.8%);
  left: -6%;
  top: 51%;
  -webkit-animation: float 3s ease-out infinite;
          animation: float 3s ease-out infinite;
}
@media (max-width: 992px) {
  .section-student .c-icon__card-t {
    display: none;
  }
}
.section-student .c-icon__bill {
  width: min(139px, 12%);
  right: -6%;
  bottom: 7%;
  -webkit-animation: float-b 3s ease-out infinite;
          animation: float-b 3s ease-out infinite;
}
@media (max-width: 992px) {
  .section-student .c-icon__bill {
    width: 19%;
    right: -11%;
    bottom: 0%;
  }
}
@media (max-width: 598px) {
  .section-student .c-icon__bill {
    width: min(84px, 25%);
    right: -11%;
    bottom: 2%;
  }
}
.section-student .c-icon__city {
  width: min(942px, 100%);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.section-student .c-icon__city img {
  width: 100%;
  display: block;
}
.section-student .c-icon__city-box {
  position: relative;
}
@media (max-width: 768px) {
  .section-student .c-icon__city {
    width: 120%;
  }
}
.section-student .c-icon__start--1, .section-student .c-icon__start--2, .section-student .c-icon__start--3 {
  width: min(17px, 4%);
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(1) .c-icon__start--1 {
  top: 24%;
  left: 4%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(1) .c-icon__start--2 {
  top: 42%;
  right: 3%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(2) .c-icon__start--1 {
  top: 16%;
  left: 20%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(2) .c-icon__start--2 {
  top: 55%;
  right: 8%;
  -webkit-animation: starTwinkle 1.2s 1s ease-in-out infinite;
          animation: starTwinkle 1.2s 1s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(3) .c-icon__start--1 {
  top: 15%;
  left: 21%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(3) .c-icon__start--2 {
  top: 9%;
  right: 6%;
  -webkit-animation: starTwinkle 1.2s 1s ease-in-out infinite;
          animation: starTwinkle 1.2s 1s ease-in-out infinite;
}
.section-student .c-card__box:nth-child(3) .c-icon__start--3 {
  top: 47%;
  right: 1%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-icon__city-box .c-icon.c-icon__start--1 {
  width: min(15px, 3%);
  top: 25%;
  left: 25.2%;
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}
.section-student .c-icon__city-box .c-icon.c-icon__start--2 {
  width: min(15px, 3%);
  top: 8%;
  left: 70.54%;
  -webkit-animation: starTwinkle 1.2s 1s ease-in-out infinite;
          animation: starTwinkle 1.2s 1s ease-in-out infinite;
}

.twinkle-star {
  -webkit-animation: starTwinkle 1.2s ease-in-out infinite;
          animation: starTwinkle 1.2s ease-in-out infinite;
}

.c-icon__card {
  border: 4px solid;
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
}
.c-icon__card img {
  display: block;
  width: 100%;
}
@media (max-width: 992px) {
  .c-icon__card {
    border: 3px solid;
    border-radius: 7px;
  }
}
@media (max-width: 598px) {
  .c-icon__card {
    border: 2px solid;
  }
}
.c-icon__card--1 {
  left: 25.6%;
  bottom: 0;
  width: 11.2%;
  max-width: 106px;
}
.c-icon__card--1 .c-icon__card-mark::after {
  -webkit-animation: card-shine 3s ease-in-out infinite;
          animation: card-shine 3s ease-in-out infinite;
}
.c-icon__card--2 {
  right: 26.9%;
  bottom: 0;
  width: 16.7%;
  max-width: 157px;
}
.c-icon__card--2 .c-icon__card-mark::after {
  -webkit-animation: card-shine 3s 0.5s ease-in-out infinite;
          animation: card-shine 3s 0.5s ease-in-out infinite;
}
.c-icon__card-mark {
  position: relative;
  overflow: hidden;
}
.c-icon__card-mark::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -120%;
  width: 60%;
  height: 120%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  z-index: 1;
}

/* lb */
.lboxed {
  display: none;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  max-width: 600px;
}

.lbox-block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
  padding: 3em 1em;
}
@media (max-width: 1279px) {
  .lbox-block {
    width: 340px;
    border-radius: 24px;
  }
}
@media (max-width: 769px) {
  .lbox-block {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}
.lbox-block .close_x {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 3px;
  top: 3px;
  cursor: pointer;
}
@media (max-width: 1279px) {
  .lbox-block .close_x {
    right: 5px;
    top: 5px;
  }
}
.lbox-block .close_x:after, .lbox-block .close_x:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 3px;
  background: #0B8DA3;
  border-radius: 10px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.lbox-block .close_x:after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.lbox-block__outer {
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin: 0 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.lbox-block .announce {
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
}
.lbox-block .announce__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  color: #000;
}
.lbox-block .announce__content {
  text-align: left;
}

.announce__content {
  font-size: 18px;
  line-height: 1.4;
  text-align: center !important;
  font-weight: bold;
  color: #000;
}
.announce .red {
  color: #d00f24;
}
.announce__sub {
  color: #000;
  font-size: 20px;
}

@-webkit-keyframes lightboxFadeIn {
  0% {
    opacity: 0;
    z-index: 10;
  }
  to {
    opacity: 1;
    z-index: 10;
  }
}
@keyframes lightboxFadeIn {
  0% {
    opacity: 0;
    z-index: 10;
  }
  to {
    opacity: 1;
    z-index: 10;
  }
}
@-webkit-keyframes overlayFadeIn {
  0% {
    opacity: 0;
    z-index: 9;
  }
  to {
    opacity: 1;
    z-index: 9;
  }
}
@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    z-index: 9;
  }
  to {
    opacity: 1;
    z-index: 9;
  }
}
.btn-block {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 1279px) {
  .btn-block {
    margin-top: 20px;
  }
}
.btn-block .btn {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  padding: 0.9em 0.9em;
  margin: 1.5em auto;
  border-radius: 1.5em;
  background-color: white;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  border: #ffffff 3px solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .btn-block .btn {
    width: 100%;
  }
}
.btn-block .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 2em;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-block .btn:hover {
  background-color: transparent;
  color: white;
}
.btn-block .btn:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-block .btn.gold3 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 25px 50px;
  margin: 0 auto;
  border-radius: 42.5px;
  background-color: #22A3B9;
  color: white;
  position: relative;
  border: 0px;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  border: solid 1px #7ED7E7;
}
.btn-block .btn.gold3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 42.5px;
  background: #FFD900;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-block .btn.gold3:hover {
  background-color: transparent;
  color: white;
}
.btn-block .btn.gold3:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-block .btn.white {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 25px 50px;
  margin: 0 auto;
  border-radius: 42.5px;
  position: relative;
  color: #0B8DA3;
  border: 0px;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  border: 1px solid #7ED7E7;
  background-color: white;
}
.btn-block .btn.white:hover {
  background-color: transparent;
  color: white;
}
.btn-block .btn.white:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 42.5px;
  background: #FFD900;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-block .btn.white:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-block .btn.btn_pad_thin {
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn-block .btn.btn_mg {
  margin-right: 20px;
  margin-left: 20px;
}
@media (max-width: 1279px) {
  .btn-block .btn.btn_mg {
    margin: 8px 0;
  }
}

.in-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 5.76px;
  line-height: 125%;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .in-title {
    font-size: 32px;
    letter-spacing: 3.84px;
    margin: 6px 0 !important;
  }
}

.sub-title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.4px;
  color: #5499E8;
  text-align: center;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sub-title {
    font-size: 4.10256vw;
    margin-bottom: 8.20514vw;
  }
}

.main-title {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 2em;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.28px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 598px) {
  .main-title {
    font-size: 7.1795vw;
  }
}

.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-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 2.88px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 8.3333333333vw;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: 1.28px;
  }
}
.section-title {
  font-weight: 800;
  overflow: visible;
  margin-bottom: 32px;
  color: #006170;
}
.section-title__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}
.section-title__group--brand {
  color: #FE8839;
  padding-bottom: 11px;
  overflow: hidden;
}
.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: 0;
  left: 0;
  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;
}
.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: 768px) {
  .section-title__sub {
    margin-bottom: 8.2682291667vw;
  }
}
.section-title__sub .section-title__group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes textSlideUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes textSlideUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes lineDrawRight {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes lineDrawRight {
  to {
    clip-path: inset(0 0 0 0);
  }
}
.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: -0.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: 768px) {
  .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 #B7F0FA;
  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: #52B9CB;
}

.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: 16px;
  border: 3px solid #FDA9A0;
  background: #FA7E70;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.56px;
}
@media (max-width: 992px) {
  .c-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 24px;
    width: 190px;
    height: 70px;
    letter-spacing: 0.96px;
  }
}
.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: 598px) {
  .c-cta__icon.-default {
    width: 6.25vw;
    height: 6.25vw;
  }
}
.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);
  max-width: 32px;
}
.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);
  }
}
.c-cta__pink, .c-cta__yellow {
  border: 4px solid #000000;
  color: #000000;
}
.c-cta__pink {
  background: #FFBDE7;
}
.c-cta__pink:hover {
  background: #FE9FDB;
}
.c-cta__yellow {
  background: #FFD900;
}
.c-cta__yellow:hover {
  background: #FFC300;
}

.fixedIcon__area {
  position: fixed;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -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: 3;
}
.fixedIcon__area--active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 992px) {
  .fixedIcon__area {
    right: initial;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
}
.fixedIcon__btn {
  display: block;
  width: 140px;
  height: 175px;
  background-image: url(../images/icon_area_d.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -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 span {
  display: none;
}
@media (max-width: 992px) {
  .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: 100%;
    height: 64px;
    border-radius: 24px 24px 0 0;
    border-top: 3px solid #FA7E70;
    background: #FB9488;
  }
  .fixedIcon__btn span {
    color: #FFFFFF;
    text-align: center;
    display: block;
    /* Paragraph/Body2-B */
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: #000000;
    paint-order: stroke fill;
    font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%; /* 38.4px */
    letter-spacing: 0.96px;
  }
}
.fixedIcon__btn:hover {
  background-image: url(../images/icon_area_h.png);
}
@media (max-width: 992px) {
  .fixedIcon__btn:hover {
    background: #FB9488;
  }
}

.c-link__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-top: 151px;
}
@media (max-width: 992px) {
  .c-link__box {
    display: block;
    margin-top: 0px;
  }
  .c-link__box .c-cta:nth-child(1) {
    margin-bottom: 24px;
  }
}

.c-cursor__pointer {
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.c-cursor__pointer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFD900;
  border-radius: 50%;
  -webkit-transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.is-magnetic-hover .c-cursor__pointer::before {
  opacity: 0.35;
  -webkit-transform: scale(4);
          transform: scale(4);
}

@media (max-width: 992px) {
  .c-cursor__pointer {
    display: none;
  }
}
.js-consult span {
  display: inline-block;
  pointer-events: none;
}

.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;
}
@media (max-width: 1023px) {
  .c-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-card__box {
  width: min(522px, 50%);
  padding: 54px 40px 40px 40px;
  position: relative;
  border-radius: 20px;
  border: 4px solid #7ED7E7;
  background: #fff;
  min-height: 494px;
}
@media (max-width: 1439px) {
  .c-card__box {
    width: 48%;
    min-height: 34.3293954135vw;
    padding: 3.7526059764vw 2.7797081306vw 2.7797081306vw;
  }
}
@media (max-width: 992px) {
  .c-card__box {
    min-height: initial;
    width: 100%;
    margin-right: 0 !important;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .c-card__box {
    border: 3px solid #7ED7E7;
    padding: 13.5416666667vw 5.2083333333vw 7.2916666667vw;
  }
}
.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%,
    #82EDE8,
    #4DD1CA 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__box:nth-child(3) {
  border: 4px solid #FEAEE1;
  min-height: auto;
}
@media (min-width: 991px) {
  .c-card__box:nth-child(3):hover {
    border-color: transparent;
    --border-angle: 0turn;
    --main-bg: linear-gradient(#fff, #fff);
    --gradient-border: conic-gradient(from var(--border-angle),
    transparent 25%,
    #FEAEE1,
    #FFBDE7 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__box .c-cta__box {
  text-align: center;
}
.c-card__box .c-cta__box .c-cta {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 0.96px;
  margin: auto;
  max-width: 341px;
  width: 100%;
  padding: 13px 20px;
  border: 3px solid #7ED7E7;
  background: #22A3B9;
  text-wrap: nowrap;
}
@media (max-width: 1439px) {
  .c-card__box .c-cta__box .c-cta {
    font-size: 1.6678248784vw;
    max-width: 23.6970118138vw;
  }
}
@media (max-width: 992px) {
  .c-card__box .c-cta__box .c-cta {
    max-width: 400px;
    font-size: 24px;
    padding: 1.26953125vw 1.953125vw;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .c-card__box .c-cta__box .c-cta {
    max-width: 58.59375vw;
    font-size: 3.90625vw;
    padding: 1.6927083333vw 2.6041666667vw;
    height: 50px;
  }
}
.c-card__badge {
  background: #22A3B9;
  position: absolute;
  top: 16px;
  left: 17px;
  border-radius: 12px;
  padding: 4px 12px;
  color: var(--bw-white, #FFF);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.36px;
}
@media (max-width: 598px) {
  .c-card__badge {
    font-size: 4.6875vw;
  }
}
.c-card__title {
  text-align: center;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.28px;
}
@media (max-width: 768px) {
  .c-card__title {
    font-size: 6.1549479167vw;
    line-height: 125%; /* 30px */
    letter-spacing: 0.96px;
  }
}
.c-card__title {
  margin-top: 12px;
}
@media (max-width: 1439px) {
  .c-card__title {
    font-size: 2.2237665045vw;
  }
}
@media (max-width: 992px) {
  .c-card__title {
    font-size: 28px;
    margin-top: 16px;
  }
  .c-card__title br {
    display: none;
  }
}
@media (max-width: 768px) {
  .c-card__title {
    margin-top: 4.1666666667vw;
    width: 102%;
    left: -1%;
    position: relative;
    font-size: 5.9895833333vw;
  }
}
@media (max-width: 992px) {
  .c-card__title span {
    display: block;
  }
}
.c-card__steps, .c-card__description {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
  letter-spacing: 0.96px;
}
@media (max-width: 768px) {
  .c-card__steps, .c-card__description {
    font-size: 4.6875vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.36px;
  }
}
@media (max-width: 1439px) {
  .c-card__steps, .c-card__description {
    font-size: 1.6678248784vw;
  }
}
@media (max-width: 992px) {
  .c-card__steps, .c-card__description {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .c-card__steps, .c-card__description {
    font-size: 5.9895833333vw;
  }
}
.c-card__description {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 16px;
}
.c-card__description b {
  color: #22A3B9;
}
@media (max-width: 992px) {
  .c-card__description {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .c-card__description {
    margin-top: 4.1666666667vw;
    letter-spacing: 0.36px;
  }
}
.c-card__narrative {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-card__narrative {
    font-size: 4.1666666667vw;
  }
}
@media (max-width: 598px) {
  .c-card__narrative {
    font-size: 3.6458333333vw;
  }
}
.c-card__list {
  margin: 24px 0;
  padding-left: 1.5em;
}
.c-card__list li {
  list-style: decimal;
}
.c-card__list .fc-red {
  font-weight: 700;
}
@media (max-width: 480px) {
  .c-card__list {
    font-size: 4.615376vw;
  }
}
.c-card__image {
  position: relative;
  width: min(345px, 90%);
  margin: auto;
}
@media (max-width: 992px) {
  .c-card__image {
    width: min(518px, 100%);
  }
}

.section-hero {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 110px;
}
.section-hero::before {
  background-color: #7ed7e7;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .section-hero::before {
    height: 85%;
  }
}
@media (max-width: 1439px) {
  .section-hero {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .section-hero {
    padding: 117px 0 48px 0;
  }
}
.section-hero__box {
  position: relative;
}
.section-hero__box img {
  width: 100%;
  display: block;
}
.section-hero__lefthouse {
  position: absolute;
  max-width: 482px;
  width: 37%;
  left: -45px;
  bottom: 106px;
}
@media (max-width: 992px) {
  .section-hero__lefthouse {
    display: none;
  }
}
.section-hero__righthouse {
  position: absolute;
  max-width: 583px;
  width: 41%;
  right: -100px;
  bottom: 106px;
}
@media (max-width: 992px) {
  .section-hero__righthouse {
    display: none;
  }
}
.section-hero__mbhouse {
  position: relative;
  display: none;
}
@media (max-width: 992px) {
  .section-hero__mbhouse {
    display: block;
  }
  .section-hero__mbhouse .c-icon {
    position: relative;
  }
}
@media (max-width: 768px) {
  .section-hero__mbhouse {
    width: 126%;
    position: relative;
    left: -12%;
  }
}
.section-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.section-hero__content {
  position: relative;
  margin: 0 8px;
}
.section-hero__logo {
  max-width: 443px;
}
@media (max-width: 992px) {
  .section-hero__logo {
    max-width: 48.828125vw;
  }
}
@media (max-width: 768px) {
  .section-hero__logo {
    max-width: calc(59.765625x * 1vw / 1px);
    margin-bottom: 1.3020833333vw;
  }
}
.section-hero__slogan {
  max-width: 484px;
  height: auto;
  margin: -29px auto 0;
  position: relative;
}
@media (max-width: 992px) {
  .section-hero__slogan {
    margin: -2.83203125vw auto 0;
    max-width: 47.265625vw;
  }
}
@media (max-width: 768px) {
  .section-hero__slogan {
    margin: -3.7760416667vw auto 0;
    max-width: 67.7083333333vw;
  }
}
.section-hero__slogan::after {
  content: "";
  position: absolute;
  background: url(../images/kv/kv_circle_2.svg) center no-repeat;
  background-size: contain;
  width: 699px;
  height: 355px;
  z-index: -2;
  left: -88px;
  top: -42px;
}
@media (max-width: 992px) {
  .section-hero__slogan::after {
    width: 68.26171875vw;
    height: 39.0625vw;
    left: -8.59375vw;
    top: -5.859375vw;
  }
}
@media (max-width: 768px) {
  .section-hero__slogan::after {
    width: 94.4010416667vw;
    height: 44.921875vw;
    left: -11.4583333333vw;
    top: -3.6458333333vw;
  }
}
.section-hero__slogan::before {
  content: "";
  position: absolute;
  background: url(../images/kv/kv_hand.png?v=20260408) center no-repeat;
  background-size: contain;
  width: 258px;
  height: 267px;
  z-index: -1;
  right: -123px;
  top: -68px;
  rotate: 3deg;
  -webkit-animation: hand-shake 2.5s ease-in-out infinite;
          animation: hand-shake 2.5s ease-in-out infinite;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media (max-width: 992px) {
  .section-hero__slogan::before {
    width: 25.1953125vw;
    height: 26.07421875vw;
    right: -12.01171875vw;
    top: -6.640625vw;
  }
}
@media (max-width: 768px) {
  .section-hero__slogan::before {
    width: 33.8541666667vw;
    height: 26.26953125vw;
    right: -12.6953125vw;
    top: -2.9296875vw;
  }
}
.section-hero__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .section-hero__card {
    width: 82%;
    margin: 1.8229166667vw auto;
  }
}
.section-hero__card-1 {
  max-width: 310px;
  position: relative;
  top: -18px;
}
@media (max-width: 992px) {
  .section-hero__card-1 {
    max-width: 30.2734375vw;
    top: -1.7578125vw;
  }
}
@media (max-width: 768px) {
  .section-hero__card-1 {
    max-width: 41.796875vw;
    top: -2.34375vw;
  }
}
.section-hero__card-2 {
  max-width: 187px;
  width: 100%;
  position: relative;
  margin-top: -36px;
  margin-left: 21px;
}
@media (max-width: 992px) {
  .section-hero__card-2 {
    max-width: 18.26171875vw;
    margin-top: -3.515625vw;
    margin-left: 2.05078125vw;
  }
}
@media (max-width: 768px) {
  .section-hero__card-2 {
    max-width: 26.0416666667vw;
    margin-top: -4.6875vw;
    margin-left: 2.734375vw;
  }
}
.section-hero__card-2 img {
  margin-top: -4px;
}
.section-hero__card-2::after {
  content: "";
  position: absolute;
  background: url(../images/kv/kv_circle.svg) center no-repeat;
  background-size: contain;
  width: 190px;
  height: 190px;
  z-index: -1;
  left: -7px;
  top: -40px;
  -webkit-animation: marquee-rotate 10s linear infinite;
          animation: marquee-rotate 10s linear infinite;
}
@media (max-width: 992px) {
  .section-hero__card-2::after {
    width: 18.5546875vw;
    height: 18.5546875vw;
    left: -0.68359375vw;
    top: -3.90625vw;
  }
}
@media (max-width: 768px) {
  .section-hero__card-2::after {
    width: 25.390625vw;
    height: 25.390625vw;
    left: -0.9114583333vw;
    top: -5.46875vw;
  }
}
.section-hero__desc {
  width: 100%;
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .section-hero__desc {
    margin-top: 36px;
  }
}
.section-hero__button {
  padding: 12px 20px;
  font-size: 24px;
}
@media (max-width: 992px) {
  .section-hero__button {
    padding: 0;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .section-hero__button {
    width: 155px;
    height: 56px;
    font-size: 20px;
  }
}
.section-hero__button-icon {
  width: 32px;
  height: 32px;
  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;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 8px;
}
@media (max-width: 992px) {
  .section-hero__button-icon {
    width: 28px;
    height: 28px;
  }
}
.section-hero__button-icon img {
  width: 24px;
  height: 24px;
}
.section-hero__txt {
  line-height: 1.5;
  margin: 24px 0 60px;
}
@media (max-width: 992px) {
  .section-hero__txt span {
    display: block;
  }
}
.section-hero::after {
  display: none;
}
.section-hero__svg-wrap {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .section-hero__svg-wrap {
    bottom: -23%;
  }
}
@media (max-width: 1298px) {
  .section-hero__svg-wrap {
    bottom: -17%;
  }
}
@media (max-width: 992px) {
  .section-hero__svg-wrap {
    bottom: -4%;
  }
}
@media (max-width: 598px) {
  .section-hero__svg-wrap {
    bottom: 0;
  }
}
@media (max-width: 390px) {
  .section-hero__svg-wrap {
    bottom: 0;
  }
}
.section-hero__svg {
  display: block;
  width: 100%;
  height: auto;
}
.section-student {
  position: relative;
  padding: 120px 0 410px 0;
}
@media (max-width: 992px) {
  .section-student {
    padding: 120px 0 490px 0;
  }
}
@media (max-width: 598px) {
  .section-student {
    padding: 27.0833333333vw 0 64.458333vw 0;
  }
}
.section-student .section-title__group {
  font-size: 32px;
  color: #019AB2;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 1.28px;
}
@media (max-width: 768px) {
  .section-student .section-title__group {
    font-size: 6.1588541667vw;
    line-height: 125%;
    letter-spacing: 0.96px;
  }
}
.section-student .section-title__group--brand {
  color: #0B8DA3;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 2.88px;
}
@media (max-width: 768px) {
  .section-student .section-title__group--brand {
    font-size: 8.3333333333vw;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: 1.28px;
  }
}
.section-student__container {
  position: relative;
  width: min(89.745%, 1400px);
  margin: auto;
}
.section-student__content {
  position: relative;
  max-width: 1064px;
  margin: auto;
  z-index: 2;
}
.section-student .c-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.section-student .c-cards__box {
  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-student .c-cards__notice {
  text-align: center;
  font-weight: 500;
  margin-top: 36px;
  font-size: 20px;
}
@media (max-width: 992px) {
  .section-student .c-cards__notice {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .section-student .c-cards__notice {
    margin-bottom: 7.8125vw;
    font-size: 4.1666666667vw;
  }
}
.section-student .c-cards__notice a {
  color: #006170;
}
.section-student .c-card__box {
  border-radius: 24px 60px;
}
@media (max-width: 992px) {
  .section-student .c-card__box {
    border-radius: 16px 40px;
  }
}
@media (max-width: 992px) {
  .section-student .c-card__box:not(:last-child) {
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .section-student .c-card__box:not(:last-child) {
    margin-bottom: 8.3333333333vw;
  }
}
.section-student .c-card__box:nth-child(1) {
  margin-right: 20px;
}
.section-student .c-card__box:nth-child(3) {
  width: 100%;
  margin-top: 60px;
  padding: 69px 48px 44px 48px;
}
.section-student .c-card__box:nth-child(3) .c-card__badge {
  background: #F27BC6;
}
.section-student .c-card__box:nth-child(3) .c-card__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 992px) {
  .section-student .c-card__box:nth-child(3) {
    margin-top: 0;
    padding: 24px;
  }
}
@media (max-width: 598px) {
  .section-student .c-card__box:nth-child(3) {
    padding: 13.5416666667vw 6.25vw 7.2916666667vw 6.25vw;
  }
}
.section-student .c-card__box:nth-child(3) .c-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .section-student .c-card__box:nth-child(3) .c-card__content {
    display: block;
  }
}
.section-student .c-card__text {
  width: calc(100% - min(381px, 90%));
}
@media (max-width: 992px) {
  .section-student .c-card__text {
    margin-left: 0;
    width: 100%;
  }
}
.section-student .c-card__text .c-card__title {
  text-align: left;
}
@media (max-width: 992px) {
  .section-student .c-card__text .c-card__title {
    text-align: center;
  }
}
.section-student .c-card__text .c-card__description {
  text-align: left;
}
.section-student .c-card__text .c-card__description li {
  list-style: decimal;
  margin-left: 27px;
}
.section-student .c-card__text .c-card__description b {
  color: #E26AB6;
}

.marquee {
  position: absolute;
  bottom: -38%;
  width: 1366px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.marquee img {
  width: 100%;
  -webkit-animation: marquee-rotate 40s linear infinite;
          animation: marquee-rotate 40s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media (max-width: 992px) {
  .marquee {
    bottom: -920px;
  }
}
@media (max-width: 768px) {
  .marquee {
    bottom: -119.7916666667vw;
    width: 180%;
  }
}

.section-notice {
  position: relative;
  padding: 60px 24px 48px 24px;
  border-radius: 48px 48px 0 0;
  border-top: 4px solid #52B9CB;
  background: #0B8DA3;
  color: #FFFFFF;
  z-index: 5;
}
@media (max-width: 992px) {
  .section-notice {
    padding: 48px 20px 40px 20px;
    border-radius: 0;
  }
}
.section-notice__container {
  position: relative;
  max-width: 1065px;
  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: #FFED8A;
  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/icon_arrow.svg?v=20260327);
  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:last-child {
  margin-top: 48px;
}
.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 li {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.32px;
  font-size: 14px;
  letter-spacing: 0.28px;
  margin-bottom: 8px;
  padding-left: 4px;
  text-align: justify;
}
.notice-list li:last-child {
  margin-bottom: 0;
}
.notice-list li a {
  color: #FFED8A;
  text-decoration: underline;
}
.notice-list__decimal {
  padding-left: 24px;
}
@media (max-width: 1023px) {
  .notice-list__decimal {
    padding-left: 19px;
  }
}
.notice-list__decimal li {
  line-height: 160%;
  text-transform: capitalize;
  list-style: decimal;
}
.notice-list__disc {
  padding-left: 9px;
}
.notice-list__disc li {
  line-height: 160%;
  text-transform: capitalize;
  list-style: disc;
}
.notice-list__paren {
  padding-left: 0;
  margin-left: -2px;
  list-style: none;
  counter-reset: paren-counter;
}
.notice-list__paren li {
  line-height: 160%;
  counter-increment: paren-counter;
  padding-left: 28px;
  position: relative;
  list-style: none;
}
.notice-list__paren li::before {
  content: "(" counter(paren-counter) ")";
  position: absolute;
  left: 0;
}
.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;
}

.notice-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  scrollbar-color: #52B9CB transparent;
  scrollbar-width: thin;
  margin-left: -18px;
  margin-bottom: 12px;
}
@media (max-width: 1023px) {
  .notice-table-wrap {
    padding-bottom: 8px;
  }
}
.notice-table-wrap::-webkit-scrollbar {
  height: 4px;
}
.notice-table-wrap::-webkit-scrollbar-thumb {
  background-color: #52B9CB;
  border-radius: 4px;
}
.notice-table-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}

.notice-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border: 1px solid #52B9CB;
}
.notice-table th, .notice-table td {
  width: 220px;
  border: 1px solid #52B9CB;
  padding: 8px 16px;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  vertical-align: middle;
  color: #FFFFFF;
}
.notice-table th {
  background-color: #0B8DA3;
  background: rgba(0, 0, 0, 0.25);
  text-wrap: nowrap;
}
.notice-table th.notice-table__label {
  width: 230px;
  text-align: left;
}
.notice-table td {
  text-wrap: nowrap;
  font-weight: 400;
  border: 1px solid var(--Cyan-Cyan-700, #52B9CB);
  background: rgba(0, 0, 0, 0.1);
}
.notice-table__w200 {
  width: 200px;
}