@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: 20px 40px 16px;
  -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);
}
@media (max-width: 992px) {
  .header {
    padding: 0;
    top: 0;
  }
}
.header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.35, 1), visibility 0.3s cubic-bezier(0.22, 0.61, 0.35, 1);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .header::after {
    display: block;
  }
}
@media (max-width: 992px) {
  .header.is-menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 992px) {
  .header.is-menu-open .header__nav {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .header.is-menu-open .header__nav-item,
  .header.is-menu-open .header__cta {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .header.is-menu-open .header__nav-link {
    top: 0;
  }
}
.header.is-menu-open .header__hamburger-line {
  background: transparent;
}
.header.is-menu-open .header__hamburger-line::before {
  width: 14px;
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.is-menu-open .header__hamburger-line::after {
  width: 14px;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .header__container {
    padding: 12px 20px 8px;
  }
}
.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: 16px 16px 16px 40px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #4DD1CA;
  position: relative;
  z-index: 1;
  height: 88px;
}
@media (max-width: 992px) {
  .header__wrapper {
    height: 64px;
    border: none;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .header__box {
    width: 100%;
    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;
    border: 2px solid #4DD1CA;
    border-radius: 16px;
    padding: 10px 12px 10px 20px;
    z-index: 2;
    background: #FFFFFF;
  }
}
.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: 36px;
  }
}
.header__logo-img {
  display: block;
  height: 36px;
  width: auto;
}
@media (max-width: 992px) {
  .header__logo-img {
    height: 36px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transition: 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    z-index: 1;
  }
}
.header__nav-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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    width: 100%;
    background: #F1FCFC;
    padding: 108px 20px 40px;
    border-radius: 0 0 32px 32px;
    height: auto;
  }
}
@media (max-width: 992px) {
  .header__nav-item {
    width: 100%;
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), opacity 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
  }
  .header__nav-item:nth-child(1) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .header__nav-item:nth-child(2) {
    -webkit-transition-delay: 0.175s;
            transition-delay: 0.175s;
  }
  .header__nav-item:nth-child(3) {
    -webkit-transition-delay: 0.225s;
            transition-delay: 0.225s;
  }
  .header__nav-item:nth-child(4) {
    -webkit-transition-delay: 0.275s;
            transition-delay: 0.275s;
  }
  .header__nav-item:nth-child(5) {
    -webkit-transition-delay: 0.325s;
            transition-delay: 0.325s;
  }
  .header__nav-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .header__nav-item:nth-child(4) {
    padding-bottom: 3px;
  }
}
.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.8px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .header__nav-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    width: 100%;
    font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.96px;
    -webkit-transition: top 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: top 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), top 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), top 0.45s cubic-bezier(0.22, 0.61, 0.35, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.35, 1);
    position: relative;
    top: 50px;
  }
  .header__nav-link:nth-child(1) {
    -webkit-transition-delay: 0.125s;
            transition-delay: 0.125s;
  }
  .header__nav-link:nth-child(2) {
    -webkit-transition-delay: 0.175s;
            transition-delay: 0.175s;
  }
  .header__nav-link:nth-child(3) {
    -webkit-transition-delay: 0.225s;
            transition-delay: 0.225s;
  }
  .header__nav-link:nth-child(4) {
    -webkit-transition-delay: 0.275s;
            transition-delay: 0.275s;
  }
  .header__nav-link:nth-child(5) {
    -webkit-transition-delay: 0.325s;
            transition-delay: 0.325s;
  }
}
.header__nav-link:hover, .header__nav-link.is-active {
  background: #F1FCFC;
  color: #17A19A;
}
@media (max-width: 992px) {
  .header__nav-link:hover, .header__nav-link.is-active {
    background: transparent;
  }
}
.header__nav-link.is-disabled {
  color: #E0E0E0;
  pointer-events: none;
  cursor: not-allowed;
}
.header__cta {
  position: relative;
}
.header__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 0 0 16px 16px;
  -webkit-transition: opacity 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: opacity 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  z-index: -1;
}
@media (max-width: 992px) {
  .header__cta::after {
    bottom: -4px;
    height: 40px;
    border-radius: 0 0 20px 20px;
  }
}
.header__cta-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px 12px;
  background: #17A19A;
  border: none;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  transition: all 450ms cubic-bezier(0.22, 0.61, 0.35, 1);
  z-index: 1;
}
@media (max-width: 992px) {
  .header__cta-btn {
    width: 204px;
    max-width: 204px;
    margin: 0 auto;
    padding: 20.61px 40px 20.6px;
    border-radius: 12px;
    font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.96px;
  }
}
.header__cta-btn:hover, .header__cta-btn:active {
  background: #2DBEB7;
}
.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);
}
@media (max-width: 992px) {
  .header__menu-toggle {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #17A19A;
    border-radius: 8px;
  }
}
.header__menu-toggle:active {
  -webkit-transform: scale(0.95);
      -ms-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;
  }
}

.fc_white {
  color: white !important;
}

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

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

.footer_ico {
  margin-right: 0.2em;
}

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

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

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

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

section {
  position: relative;
}

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

main {
  background: #F1FCFC;
}
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;
  }
}

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

.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__star--1 {
  width: min(24px, 9%);
  left: 2.5%;
  top: 1%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__star--1 {
    width: 3.135%;
    left: -1%;
    top: 4%;
  }
}
.section-hero .c-icon__star--2 {
  width: min(20px, 5%);
  left: 10%;
  top: -1.5%;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media (max-width: 992px) {
  .section-hero .c-icon__star--2 {
    top: 1%;
    width: 4.276%;
    left: 9%;
    -webkit-transform: rotate(16deg);
        -ms-transform: rotate(16deg);
            transform: rotate(16deg);
  }
}
@media (max-width: 820px) {
  .section-hero .c-icon__star--2 {
    top: -1%;
  }
}
.section-hero .c-icon__star--3 {
  width: min(24px, 9%);
  left: 3%;
  top: 15.3%;
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
}
@media (max-width: 992px) {
  .section-hero .c-icon__star--3 {
    display: none;
  }
}
.section-hero .c-icon__star--4 {
  width: min(27px, 10%);
  right: 2.5%;
  top: -2%;
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
}
@media (max-width: 992px) {
  .section-hero .c-icon__star--4 {
    top: 1%;
    width: 4.276%;
    right: 7.5%;
  }
}
@media (max-width: 820px) {
  .section-hero .c-icon__star--4 {
    top: -2%;
  }
}
.section-hero .c-icon__star--5 {
  width: min(22px, 10%);
  right: 8.8%;
  top: 4%;
  -webkit-transform: rotate(13deg);
      -ms-transform: rotate(13deg);
          transform: rotate(13deg);
}
@media (max-width: 992px) {
  .section-hero .c-icon__star--5 {
    width: 3.135%;
    right: -1.2%;
    top: 2%;
  }
}
.section-hero .c-icon__star--6 {
  width: min(24px, 10%);
  right: 2.2%;
  top: 15.8%;
  -webkit-transform: rotate(33deg);
      -ms-transform: rotate(33deg);
          transform: rotate(33deg);
}
@media (max-width: 992px) {
  .section-hero .c-icon__star--6 {
    display: none;
  }
}
.section-hero .an__start-1 {
  left: 25.8%;
  top: 22%;
}
@media (max-width: 992px) {
  .section-hero .an__start-1 {
    left: 5%;
    top: 9%;
  }
}
.section-hero .an__start-2 {
  width: min(13px, 3%);
  right: 26.8%;
  top: 19%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 992px) {
  .section-hero .an__start-2 {
    width: 4%;
    top: 9%;
    right: 3.8%;
  }
}
.section-hero .an__start-3 {
  width: min(13px, 3%);
  left: 26%;
  top: 44%;
}
@media (max-width: 992px) {
  .section-hero .an__start-3 {
    width: 5%;
    left: 17%;
    top: 36%;
  }
}
.section-hero .an__start-4 {
  right: 26.7%;
  top: 36%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 992px) {
  .section-hero .an__start-4 {
    right: 20.7%;
  }
}
.section-hero .an__start-5 {
  left: 30.5%;
  top: 60%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 992px) {
  .section-hero .an__start-5 {
    left: 20.5%;
    top: 86%;
  }
}
.section-hero .an__start-6 {
  width: min(13px, 3%);
  right: 30.7%;
  top: 60.5%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 992px) {
  .section-hero .an__start-6 {
    width: 5%;
    right: 20.7%;
    top: 86.5%;
  }
}
.section-hero .c-icon__people {
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__people {
    top: 50%;
  }
}
.section-hero .c-icon__girl--l {
  width: min(156px, 15%);
  top: 6%;
  left: 10.5%;
  -webkit-animation: float 3s 0.5s ease-out infinite;
          animation: float 3s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__girl--l {
    width: 23.935%;
    top: -10%;
    left: -3.5%;
  }
}
.section-hero .c-icon__boy--r {
  width: min(163px, 16%);
  top: -1%;
  right: 12.4%;
  -webkit-animation: float-b 3s 1s ease-out infinite;
          animation: float-b 3s 1s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__boy--r {
    width: 25.36%;
    top: -11%;
    right: -3.4%;
  }
}
.section-hero .c-icon__girl--r {
  width: min(148px, 13%);
  top: 41.5%;
  right: 10.4%;
  -webkit-animation: float 3s ease-out infinite;
          animation: float 3s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__girl--r {
    width: 22.794%;
    top: 18.5%;
    right: -3.4%;
  }
}
.section-hero .c-icon__airplane {
  position: absolute;
  top: 50%;
  left: 8%;
  width: min(341px, 18.5%);
  -webkit-animation: float 3s 0.3s ease-out infinite;
          animation: float 3s 0.3s ease-out infinite;
  z-index: 2;
}
@media (max-width: 992px) {
  .section-hero .c-icon__airplane {
    width: 41.3123%;
    top: initial;
    left: -3%;
    bottom: -3%;
  }
}
.section-hero .an__plane-b1, .section-hero .an__plane-b2 {
  opacity: 0;
  -webkit-animation: fumeEmit 1.6s ease-out infinite;
          animation: fumeEmit 1.6s ease-out infinite;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
@media (max-width: 598px) {
  .section-hero .an__plane-b1, .section-hero .an__plane-b2 {
    display: none;
  }
}
.section-hero .an__plane-b1 {
  width: min(31px, 14%);
  position: absolute;
  left: -15%;
  top: 93%;
}
.section-hero .an__plane-b2 {
  width: min(27px, 12%);
  position: absolute;
  left: -28%;
  top: 109%;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.section-hero .c-icon__cap {
  width: min(117px, 10%);
  left: 3%;
  top: 33%;
  -webkit-animation: float-b 3s 0.5s ease-out infinite;
          animation: float-b 3s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cap {
    width: 19.945%;
    left: 0%;
    top: 79%;
  }
}
.section-hero .c-icon__passport {
  width: min(80px, 6%);
  right: 4%;
  top: 25%;
  -webkit-animation: float 3s ease-out infinite;
          animation: float 3s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__passport {
    width: 13.678%;
    right: -1%;
    top: initial;
    bottom: -9%;
    -webkit-animation: float-b 3s ease-out infinite;
            animation: float-b 3s ease-out infinite;
  }
}
.section-hero .c-icon__cloud--1 {
  width: min(157px, 11%);
  left: -1%;
  bottom: 12%;
  -webkit-animation: cloud-l 45s ease-out infinite;
          animation: cloud-l 45s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--1 {
    width: 28.494%;
    left: -28%;
    bottom: -18%;
  }
}
.section-hero .c-icon__cloud--2 {
  width: min(168px, 12%);
  right: -1%;
  bottom: 12%;
  -webkit-animation: cloud-r 50s 0.5s ease-out infinite;
          animation: cloud-r 50s 0.5s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--2 {
    width: 28.494%;
    right: -28%;
    bottom: -18%;
  }
}
.section-hero .c-icon__cloud--3 {
  width: min(258px, 18%);
  left: 5.5%;
  bottom: -9%;
  -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--3 {
    width: 38%;
    left: -13.5%;
    bottom: -46%;
  }
}
.section-hero .c-icon__cloud--4 {
  width: min(261px, 18%);
  right: 5.5%;
  bottom: -8%;
  -webkit-animation: cloud-l 45s ease-out infinite;
          animation: cloud-l 45s ease-out infinite;
}
@media (max-width: 992px) {
  .section-hero .c-icon__cloud--4 {
    width: 38%;
    right: -13.5%;
    bottom: -46%;
  }
}
.section-hero .c-icon__doc--1, .section-hero .c-icon__doc--2, .section-hero .c-icon__doc--3, .section-hero .c-icon__doc--4 {
  width: min(16px, 2%);
}
@media (max-width: 992px) {
  .section-hero .c-icon__doc--1, .section-hero .c-icon__doc--2, .section-hero .c-icon__doc--3, .section-hero .c-icon__doc--4 {
    width: 2.85%;
  }
}
.section-hero .c-icon__doc--1 {
  left: 22.5%;
  top: 4%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__doc--1 {
    left: 0%;
    top: 66%;
  }
}
.section-hero .c-icon__doc--2 {
  left: 5.5%;
  top: 53%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__doc--2 {
    display: none;
  }
}
.section-hero .c-icon__doc--3 {
  right: 13%;
  top: 32.3%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__doc--3 {
    right: 2%;
    top: 64%;
  }
}
.section-hero .c-icon__doc--4 {
  right: 2.9%;
  top: 49.8%;
}
@media (max-width: 992px) {
  .section-hero .c-icon__doc--4 {
    right: 23%;
    top: 96%;
  }
}

.section-application .c-icon__pattern--1, .section-application .c-icon__pattern--2, .section-application .c-icon__pattern--3 {
  width: min(208px, 15%);
}
@media (max-width: 820px) {
  .section-application .c-icon__pattern--1, .section-application .c-icon__pattern--2, .section-application .c-icon__pattern--3 {
    width: 44%;
  }
}
.section-application .c-icon__star--one-1, .section-application .c-icon__star--one-2 {
  width: min(24px, 3%);
}
.section-application .c-icon__pattern--3 {
  left: -2.5%;
  top: 1%;
}
@media (max-width: 820px) {
  .section-application .c-icon__pattern--3 {
    width: 44%;
    left: -12.5%;
    top: -8%;
  }
}
.section-application .c-icon__pattern--2 {
  left: -1.5%;
  bottom: 6%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: min(208px, 15%);
}
@media (max-width: 820px) {
  .section-application .c-icon__pattern--2 {
    left: -7%;
    bottom: 11%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    width: 31%;
  }
}
.section-application .c-icon__pattern--1 {
  bottom: -23%;
  right: 7%;
}
@media (max-width: 992px) {
  .section-application .c-icon__pattern--1 {
    bottom: -14%;
  }
}
@media (max-width: 820px) {
  .section-application .c-icon__pattern--1 {
    bottom: -27%;
    right: 14%;
  }
}
.section-application .c-icon__boy--l {
  width: min(187px, 18%);
  bottom: 13.5%;
  left: -11%;
  z-index: 1;
}
@media (max-width: 1298px) {
  .section-application .c-icon__boy--l {
    left: -8.5%;
  }
}
@media (max-width: 820px) {
  .section-application .c-icon__boy--l {
    left: -12%;
    bottom: -18%;
    width: 43.305%;
  }
}
.section-application .c-icon__boy--r {
  width: min(205px, 20%);
  bottom: 13.5%;
  right: -11%;
  z-index: 1;
}
@media (max-width: 1298px) {
  .section-application .c-icon__boy--r {
    right: -8%;
  }
}
@media (max-width: 820px) {
  .section-application .c-icon__boy--r {
    right: -17%;
    width: 47.579%;
    bottom: -18%;
  }
}
.section-application .c-icon__start--mb {
  display: none;
}
@media (max-width: 820px) {
  .section-application .c-icon__start--mb {
    width: 31%;
    display: block;
    right: 5%;
    top: -7%;
  }
}
.section-application .c-icon__star {
  width: min(170px, 11%);
  right: 7%;
  top: -3%;
}
@media (max-width: 820px) {
  .section-application .c-icon__star {
    display: none;
  }
}
.section-application .c-icon__star--one-1 {
  left: 6%;
  top: 31%;
}
.section-application .c-icon__star--one-2 {
  left: 13%;
  bottom: -2%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 820px) {
  .section-application .c-icon__star--one-2 {
    display: none;
  }
}
.section-application .c-icon__doc--1 {
  width: min(14px, 2%);
  top: 51%;
  left: 2.5%;
}
@media (max-width: 820px) {
  .section-application .c-icon__doc--1 {
    display: none;
  }
}
.section-application .c-icon__doc--2 {
  width: min(18px, 2%);
  top: 56%;
  left: 7%;
}
@media (max-width: 820px) {
  .section-application .c-icon__doc--2 {
    top: initial;
    bottom: -13%;
    left: 38%;
    width: 2.565%;
  }
}
.section-application .c-icon__doc--3 {
  width: min(16px, 3%);
  bottom: -8%;
  right: 28%;
}
@media (max-width: 820px) {
  .section-application .c-icon__doc--3 {
    width: min(16px, 2.158%);
    bottom: -9%;
    right: 66%;
  }
}

.section-features .c-icon__boy {
  width: min(238px, 20%);
  bottom: -165px;
  left: -10%;
  z-index: 2;
}
@media (max-width: 992px) {
  .section-features .c-icon__boy {
    width: 39.53%;
    bottom: -71%;
  }
}
@media (max-width: 820px) {
  .section-features .c-icon__boy {
    width: 55.53%;
    bottom: -24%;
    left: -16%;
  }
}
.section-features .c-icon__girl {
  width: min(125px, 20%);
  bottom: -165px;
  right: -10%;
  z-index: 2;
}
@media (max-width: 992px) {
  .section-features .c-icon__girl {
    width: 23.197%;
    bottom: -71%;
  }
}
@media (max-width: 820px) {
  .section-features .c-icon__girl {
    width: 29.197%;
    bottom: -24%;
    right: -6%;
  }
}

.section-student .c-icon__cloud--l {
  width: min(157px, 13%);
  left: -7%;
  bottom: 4%;
}
@media (max-width: 992px) {
  .section-student .c-icon__cloud--l {
    display: none;
  }
}
.section-student .c-icon__cloud--r {
  width: min(168px, 13%);
  right: -7%;
  bottom: 27%;
}
@media (max-width: 992px) {
  .section-student .c-icon__cloud--r {
    display: none;
  }
}
.section-student .c-icon__pattern--1 {
  left: -9%;
  top: -4%;
  width: min(188px, 15%);
}
@media (max-width: 992px) {
  .section-student .c-icon__pattern--1 {
    left: -16%;
    top: -5%;
    width: 43%;
  }
}
.section-student .c-icon__pattern--2 {
  right: -8.5%;
  top: 4%;
  width: min(188px, 17.7%);
}
@media (max-width: 992px) {
  .section-student .c-icon__pattern--2 {
    right: -13%;
    top: 1%;
    width: 42%;
  }
}
.section-student .c-icon__pattern--3 {
  right: -8%;
  bottom: 0%;
  width: min(188px, 15%);
}
@media (max-width: 992px) {
  .section-student .c-icon__pattern--3 {
    right: -16%;
    bottom: 1%;
    width: 45%;
  }
}
.section-student .c-icon__doc--r {
  width: min(19px, 3%);
  right: 16%;
  top: 10%;
}
@media (max-width: 992px) {
  .section-student .c-icon__doc--r {
    right: 7%;
    top: -1%;
  }
}
.section-student .c-icon__doc--b {
  width: min(19px, 3%);
  right: 4%;
  bottom: 2%;
}
@media (max-width: 992px) {
  .section-student .c-icon__doc--b {
    display: none;
  }
}
.section-student .c-icon__cap {
  width: min(124px, 10%);
  left: -6%;
  top: 32%;
}
@media (max-width: 992px) {
  .section-student .c-icon__cap {
    display: none;
  }
}
.section-student .c-icon__star {
  width: min(174px, 16.4%);
  left: 3%;
  top: -3%;
}
@media (max-width: 992px) {
  .section-student .c-icon__star {
    display: none;
  }
}

.section-notice .c-icon__boy {
  width: min(157px, 20%);
  top: -204px;
  left: -10%;
}
@media (max-width: 1298px) {
  .section-notice .c-icon__boy {
    left: 0;
  }
}
@media (max-width: 1023px) {
  .section-notice .c-icon__boy {
    width: 125px;
    top: -148px;
  }
}
@media (max-width: 598px) {
  .section-notice .c-icon__boy {
    width: 137px;
    top: -157px;
    left: -4%;
  }
}

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

.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: 820px) {
  .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: 820px) {
  .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: 820px) {
  .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: 60px;
  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%);
      -ms-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);
      -ms-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: 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);
      -ms-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%);
      -ms-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 #9CF6F2;
  background: #FFFFFF;
}
.c-btn__go-top .c-btn__arrow img {
  -webkit-transform: translateY(110%);
      -ms-transform: translateY(110%);
          transform: translateY(110%);
}
.c-btn__go-top .c-btn__text {
  margin-top: 8px;
  color: #2DBEB7;
}

.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;
  margin-top: 48px;
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.56px;
}
@media (max-width: 820px) {
  .c-cta {
    margin: 0;
    padding: 0;
    font-size: 6.1588541667vw;
    width: 69.2317708333vw;
    height: 17.9505208333vw;
    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: 820px) {
  .c-cta__icon.-default {
    width: 8.2682291667vw;
    height: 8.2682291667vw;
  }
}
.c-cta__icon.-hover {
  top: 50%;
  left: 32px;
  z-index: 2;
  border-radius: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%) scale(0);
      -ms-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);
        -ms-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);
        -ms-transform: scale(0);
            transform: scale(0);
  }
}

.fixedIcon__area {
  position: fixed;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-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;
        -ms-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: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.8px;
  }
}
.fixedIcon__btn:hover {
  background-image: url(../images/icon_area_h.png);
}
@media (max-width: 992px) {
  .fixedIcon__btn:hover {
    background: #FB9488;
  }
}

.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: 40px;
  position: relative;
  border-radius: 20px;
  border: 4px solid #4DD1CA;
  background: #fff;
}
@media (max-width: 1439px) {
  .c-card__box {
    width: 48%;
  }
}
@media (max-width: 820px) {
  .c-card__box {
    border: 2px solid #4DD1CA;
  }
}
.c-card__box .an__start-1, .c-card__box .an__start-2, .c-card__box .an__start-3 {
  position: absolute;
}
@media (max-width: 992px) {
  .c-card__box {
    width: 100%;
    margin-right: 0 !important;
    padding: 24px;
  }
}
@media (max-width: 820px) {
  .c-card__box {
    padding: 6.25vw 5.3385416667vw;
  }
}
@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__badge {
  background-image: url(../images/card_tag_g.svg);
  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: 48px;
    height: 48px;
  }
}
.c-card__content {
  margin: 16px 0;
}
.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.92px;
}
@media (max-width: 820px) {
  .c-card__title {
    font-size: 6.1549479167vw;
    line-height: 125%; /* 30px */
    letter-spacing: 0.96px;
  }
}
.c-card__title {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .c-card__title {
    margin-top: 16px;
  }
}
@media (max-width: 820px) {
  .c-card__title {
    margin-top: 4.1666666667vw;
    width: 102%;
    left: -1%;
    position: relative;
  }
}
.c-card__title span {
  color: #FFE8E5;
}
.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%;
  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: 4.6875vw;
  }
}
.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: 4.1666666667vw;
    letter-spacing: 0.36px;
  }
}
.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(315px, 90%);
  margin: auto;
}
@media (max-width: 992px) {
  .c-card__image {
    width: 100%;
  }
}

.section-hero {
  position: relative;
  z-index: 2;
  height: 796px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 144px 0 0 0;
  background-image: url("../images/kv/kv_bg_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 1439px) {
  .section-hero {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .section-hero {
    height: auto;
    display: block;
    background-image: url("../images/kv/kv_bg_mb.png");
    background-position: center bottom;
    background-size: 100%;
    padding: 97px 0 52% 0;
  }
}
.section-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1440px, 100%);
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .section-hero__container {
    width: 90%;
  }
}
.section-hero__content {
  position: relative;
}
.section-hero__logo {
  width: min(253px, 90%);
  margin: 0 auto 22px auto;
}
@media (max-width: 820px) {
  .section-hero__logo {
    width: min(208px, 90%);
    margin-bottom: 13px;
  }
}
.section-hero__slogan {
  width: min(631px, 45%);
  margin: 0 auto 0 auto;
}
@media (max-width: 992px) {
  .section-hero__slogan {
    width: 80%;
  }
}
@media (max-width: 820px) {
  .section-hero__slogan {
    width: 100%;
  }
}
.section-hero__slogan img {
  -webkit-animation: float 3s ease-out infinite;
          animation: float 3s ease-out infinite;
}
.section-hero__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .section-hero__card {
    display: block;
    margin: auto;
    margin-top: 4%;
  }
}
.section-hero__card img {
  -webkit-animation: float-b 3s ease-out infinite;
          animation: float-b 3s ease-out infinite;
}
.section-hero__card-1, .section-hero__card-2 {
  width: min(279px, 20%);
}
@media (max-width: 992px) {
  .section-hero__card-1, .section-hero__card-2 {
    width: 50%;
    margin: auto;
  }
}
@media (max-width: 820px) {
  .section-hero__card-1, .section-hero__card-2 {
    width: 58.71%;
  }
}
.section-hero__card-2 {
  position: relative;
  top: -0.5vw;
}
@media (max-width: 992px) {
  .section-hero__card-2 {
    top: -11vw;
  }
}
.section-hero__scroll {
  position: absolute;
  bottom: 19px;
  width: 110px;
  color: #FFFFFF;
  text-align: center;
  z-index: 2;
}
@media (max-width: 992px) {
  .section-hero__scroll {
    width: 95px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.section-application {
  position: relative;
  padding: 120px 0 120px 0;
}
@media (max-width: 820px) {
  .section-application {
    padding: 20.8333333333vw 0 52.0833333333vw 0;
  }
}
.section-application .section-title__group--brand {
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -1.2px;
  margin: 0 13px;
}
@media (max-width: 820px) {
  .section-application .section-title__group--brand {
    font-size: 8.3333333333vw;
  }
}
.section-application .section-title__group-box {
  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: 48px;
}
@media (max-width: 820px) {
  .section-application__header {
    margin-bottom: 6.25vw;
  }
}
.section-application__header .section-subtitle {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.92px;
  font-weight: 500;
  color: #019AB2;
  margin-top: 16px;
}
.section-application__header .section-subtitle .fc-red {
  font-weight: 700;
  margin: 0 5px;
  letter-spacing: 1.28px;
}
@media (max-width: 820px) {
  .section-application__header .section-subtitle {
    font-size: 5.8020833333vw;
    margin-top: 2.0833333333vw;
  }
}
.section-application__container {
  position: relative;
  width: min(1440px, 100%);
  margin: auto;
}
.section-application__content {
  position: relative;
  width: min(1064px, 90%);
  margin: auto;
}
.section-application .c-card__content {
  width: min(474px, 68.2%);
  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: 820px) {
  .section-application .c-card__content {
    font-size: 4.6875vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.36px;
  }
}
.section-application .c-card__content {
  color: #006170;
}
@media (max-width: 992px) {
  .section-application .c-card__content {
    width: 100%;
  }
}
.section-application .c-card__image {
  width: min(440px, 46%);
}
.section-application .c-card__image .an__start-1 {
  width: min(19px, 7%);
  left: 5.5%;
  top: 22%;
}
.section-application .c-card__image .an__start-2 {
  width: min(19px, 7%);
  right: 28.5%;
  top: 8%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.section-application .c-card__image .an__start-3 {
  right: 8%;
  bottom: 54%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-application .c-card__image .an__start-4 {
  left: 33.5%;
  bottom: 15%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 992px) {
  .section-application .c-card__image {
    width: 60%;
  }
}
@media (max-width: 820px) {
  .section-application .c-card__image {
    width: 100%;
  }
}
.section-application .c-card__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 48px;
}
@media (max-width: 992px) {
  .section-application .c-card__box {
    display: block;
    padding: 40px 24px 16px 24px;
  }
}
.section-application .c-card__title {
  text-align: left;
}
.section-application .c-card__hint {
  color: #019AB2;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.36px;
}
.section-application__prompt {
  margin-top: 48px;
  width: 100%;
  text-align: center;
  color: #006170;
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: 0.8px;
}
@media (max-width: 820px) {
  .section-application__prompt {
    font-size: 4.6875vw;
    line-height: 150%;
    letter-spacing: 0.36px;
  }
}
@media (max-width: 992px) {
  .section-application__prompt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6.1848958333vw;
  }
}
.section-application__prompt a {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.8px;
  text-decoration: underline;
  color: #FA7E70;
}
@media (max-width: 992px) {
  .section-application .c-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 6.1848958333vw auto 0 auto;
  }
}
@media (max-width: 820px) {
  .section-application .c-cta {
    width: 55.3880208333vw;
  }
}

.section-features {
  position: relative;
  border-radius: 200px 48px 48px 48px;
  padding: 160px 80px 192px 80px;
  background-color: #2DBEB7;
  background-image: url(../images/features/bg_line.svg);
  background-position: center -30%;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 992px) {
  .section-features {
    padding: 20.8333333333vw 5.2083333333vw 44.2708333333vw 5.2083333333vw !important;
    border-radius: 80px 32px 32px 32px;
    overflow: hidden;
  }
}
@media (max-width: 820px) {
  .section-features {
    background-position: 38% 165%;
    background-size: 320%;
  }
}
.section-features .section-title {
  display: block;
  color: #FFFFFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 40px */
  letter-spacing: 1.28px;
  margin-bottom: 32px;
}
@media (max-width: 1298px) {
  .section-features .section-title {
    font-size: 2.5017373176vw;
  }
}
@media (max-width: 820px) {
  .section-features .section-title {
    font-size: 6.1588541667vw;
    line-height: 125%;
    letter-spacing: 0.96px;
  }
  .section-features .section-title__group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 360px) {
  .section-features .section-title {
    margin-bottom: 3.125vw;
  }
}
.section-features .section-title__group--brand {
  color: #FFFFFF;
  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: 820px) {
  .section-features .section-title__group--brand {
    font-size: 8.3333333333vw;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: 1.28px;
  }
}
@media (max-width: 1298px) {
  .section-features .section-title__group--brand {
    font-size: 3.7526059764vw;
  }
}
@media (max-width: 820px) {
  .section-features .section-title__group--brand {
    font-size: 8.3333333333vw;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: 1.28px;
  }
}
.section-features .c-cta {
  border-radius: 16px;
  border: 3px solid #9CF6F2;
  background: #FFFFFF;
  color: #17A19A;
}
@media (max-width: 820px) {
  .section-features .c-cta {
    padding: 2.0833333333vw 4.1666666667vw;
    width: 48.7213541667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
  }
}
.section-features__left {
  position: relative;
  width: min(414px, 38.91%);
  margin-right: 20px;
}
@media (max-width: 820px) {
  .section-features__left {
    text-align: center;
    width: 100%;
    margin-right: 0;
  }
}
.section-features__right {
  position: relative;
  width: min(630px, 59.3%);
}
@media (max-width: 820px) {
  .section-features__right {
    width: 100%;
  }
}
.section-features__container {
  position: relative;
  width: min(1064px, 100%);
  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: 820px) {
  .section-features__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-features__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media (max-width: 820px) {
  .section-features__tag {
    margin: 6.25vw auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-features__tag span, .section-features__tag button {
  cursor: pointer;
  text-align: center;
  width: 60px;
  height: 47px;
  line-height: 44px;
  border-radius: 100px;
  border: 2px solid #FFFFFF;
  background: #2DBEB7;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  color: #FFFFFF;
}
@media (max-width: 820px) {
  .section-features__tag span, .section-features__tag button {
    width: 15.3880208333vw;
    height: 12.0546875vw;
    font-size: 4.6875vw;
    line-height: 11.71875vw;
  }
}
.section-features__tag span.section-features__tag--active, .section-features__tag button.section-features__tag--active {
  background: #FFFFFF;
  color: #17A19A;
  border: 2px solid #9CF6F2;
}
.section-features__item {
  position: relative;
  padding: 40px 48px;
  border-radius: 24px 60px;
  border: 3px solid #9CF6F2;
  background: #FFFFFF;
}
@media (max-width: 820px) {
  .section-features__item {
    border-radius: 16px 40px;
    border: 2px solid #9CF6F2;
    padding: 12.5vw 6.25vw 6.25vw 6.25vw;
  }
}
.section-features__item-num {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #17A19A;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
}
.section-features__item-img {
  position: relative;
  max-width: 380px;
  margin: 0 auto 20px auto;
}
@media (max-width: 360px) {
  .section-features__item-img {
    width: 85%;
    margin-bottom: 2.6041666667vw;
  }
}
.section-features__item-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: 820px) {
  .section-features__item-description {
    font-size: 4.6875vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.36px;
  }
}
.section-features__item-description {
  text-align: justify;
}
@media (max-width: 360px) {
  .section-features__item-description {
    font-size: 4.6223958333vw;
  }
}
.section-features__item-description b {
  color: #17A19A;
  font-weight: 700;
}
.section-features__item:nth-child(1) .an__start-1 {
  width: min(19px, 5%);
  top: 59%;
  left: 11%;
}
.section-features__item:nth-child(1) .an__start-2 {
  width: min(21px, 6%);
  top: 52%;
  right: 16%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-features__item:nth-child(2) .an__start-1 {
  width: min(19px, 5%);
  top: 32%;
  left: 1%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-features__item:nth-child(2) .an__start-2 {
  width: min(21px, 6%);
  top: 51%;
  right: 13%;
}
.section-features__item:nth-child(3) .an__start-1 {
  width: min(19px, 5%);
  top: 13%;
  left: 28%;
}
.section-features__item:nth-child(3) .an__start-2 {
  width: min(21px, 6%);
  top: 50%;
  right: 21%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-features .marquee {
  position: absolute;
  left: 0;
  bottom: 0.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 124px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Manrope;
  color: #AAE9D5;
  opacity: 0.4;
}
@media (max-width: 992px) {
  .section-features .marquee {
    z-index: 1;
    height: 19.4871794872vw;
  }
}
.section-features .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: 100px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 90%;
}
@media (max-width: 992px) {
  .section-features .marquee span {
    font-size: 15.625vw;
    padding-right: 5.2083333333vw;
  }
}

.section-student {
  position: relative;
  padding: 120px 0 140px 0;
  background-image: url(../images/student/icon_earth.png);
  background-position: center 297%;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .section-student {
    padding: 20.8333333333vw 0 36.4583333333vw 0;
    background-position: center 116.5%;
    background-size: 117%;
  }
}
.section-student .section-title__group {
  font-size: 32px;
  color: #019AB2;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 1.28px;
}
@media (max-width: 820px) {
  .section-student .section-title__group {
    font-size: 6.1588541667vw;
    line-height: 125%;
    letter-spacing: 0.96px;
  }
}
.section-student .section-title__group--brand {
  color: #006170;
  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: 820px) {
  .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;
}
.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: 820px) {
  .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: 820px) {
  .section-student .c-card__box:not(:last-child) {
    margin-bottom: 8.3333333333vw;
  }
}
.section-student .c-card__box .an__start {
  width: min(19px, 7%);
}
.section-student .c-card__box:nth-child(1) {
  margin-right: 20px;
}
.section-student .c-card__box:nth-child(1) .an__start-1 {
  left: 8.5%;
  top: 18%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-student .c-card__box:nth-child(1) .an__start-2 {
  right: 17%;
  bottom: 7%;
}
.section-student .c-card__box:nth-child(2) .an__start-1 {
  left: 53.5%;
  top: 11%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-student .c-card__box:nth-child(2) .an__start-2 {
  right: 2%;
  top: 20%;
}
.section-student .c-card__box:nth-child(3) {
  width: 100%;
  margin-top: 32px;
  padding: 32px 60px;
}
@media (max-width: 992px) {
  .section-student .c-card__box:nth-child(3) {
    margin-top: 0;
    padding: 24px;
  }
}
.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__box:nth-child(3) .an__start-1 {
  left: 22.5%;
  top: 37%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section-student .c-card__box:nth-child(3) .an__start-2 {
  right: 7%;
  bottom: 43%;
}
.section-student .c-card__text {
  margin-left: 40px;
  width: calc(100% - min(315px, 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-notice {
  position: relative;
  padding: 80px 24px;
  border-radius: 80px 80px 0 0;
  border-top: 4px solid #2DBEB7;
  background: #087772;
  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);
      -ms-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 li {
  font-family: "Manrope", "Noto Sans TC", Helvetica, Arial, sans-serif;
  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__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;
}