@charset "UTF-8";
html {
  /* 1. 防止抖動：永遠預留空間 */
  scrollbar-gutter: stable;
}

/* === 1. Firefox 專用 (標準屬性) === */
* {
  /* thin: 變細, auto: 預設 */
  scrollbar-width: thin;
  /* 兩個顏色分別是：[卷軸拉桿顏色] [軌道背景顏色] */
  scrollbar-color: rgba(176, 176, 176, 0.4156862745) transparent;
}

/* 2. 美化：讓那個預留空間看起來不要那麼明顯 (Windows) */
::-webkit-scrollbar {
  width: 6px; /* 變細 */
  background: transparent; /* 軌道透明 */
}

/* 設定卷軸的軌道 (背景) */
::-webkit-scrollbar-track {
  background: transparent; /* 設為透明，讓背景透出來，更有懸浮感 */
  border-radius: 4px;
}

/* 設定卷軸本體 (拉桿) */
::-webkit-scrollbar-thumb {
  background: #b0b0b0; /* 淺灰色，不要全黑 */
  border-radius: 4px; /* 圓角 */
}

/* 滑鼠移過去時，拉桿變深一點，增加互動感 */
::-webkit-scrollbar-thumb:hover {
  background: #888;
}

:root {
  --box-border-xs: 3px;
}

@media (max-width: 650px) {
  :root {
    --box-border-xs: 3px;
  }
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  --header-height: 100px;
  --header-padding-y: 8px;
  --logo-height: 55px;
}

.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  --header-height: 72px;
  --header-padding-y: 2px;
  --logo-height: 40px;
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--header-padding-y) 20px;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.logo {
  position: relative;
  z-index: 1102;
  display: inline-flex;
  align-items: center;
  width: clamp(120px, 10vw, 140px);
}

.logo img {
  display: block;
  transition: height 0.35s ease;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1102;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  --ham-bar: 30px;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: var(--ham-bar);
  height: 3px;
  background: #1d8b83;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  border-radius: 99rem;
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
  width: calc(var(--ham-bar) / 2);
}

.nav-toggle span:nth-child(3) {
  top: 32px;
  width: calc(var(--ham-bar) / 3);
}

.nav-toggle.active span:nth-child(1) {
  top: 21px;
  width: var(--ham-bar);
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 21px;
  width: var(--ham-bar);
  transform: rotate(-45deg);
}

.nav {
  position: relative;
}

.menu-panels {
  position: relative;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(36px, 4vw, 55px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-item.has-sub {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  /* Hover bridge to prevent flicker between trigger and dropdown */
  .menu-item.has-sub::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
}
.menu-item > a,
.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: #1d8b83;
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.menu-item > a:hover,
.menu-link:hover {
  color: rgb(20.1964285714, 96.8035714286, 91.2321428571);
}

.arrow {
  display: none;
}

.submenu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.submenu-inner {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
}

.submenu-inner a {
  display: block;
  padding: 16px 18px;
  color: #1d8b83;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
}

.submenu-inner a:hover {
  background: #f5f7fa;
}

.menu-item.open > .submenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.panel-sub {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1098;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile */
@media (max-width: 1024px) {
  .header-inner {
    min-height: calc(var(--header-height) - 20px);
  }
  .logo {
    z-index: 0;
    margin: 0;
    transform: translateX(15px);
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1101;
    width: min(82vw, 360px);
    height: 100dvh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow: hidden;
    display: block;
  }
  .nav.open {
    transform: translateX(0);
  }
  .menu-panels {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.35s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .panel-main {
    transform: translateX(0);
    padding-top: 80px;
  }
  .panel-main.is-shifted {
    transform: translateX(-100%);
  }
  .panel-sub {
    display: block;
    transform: translateX(100%);
    padding-top: 20px;
  }
  .panel-sub.active {
    transform: translateX(0);
  }
  /* 關鍵修正：手機版把 desktop flex 完整重設 */
  .menu.panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0 0;
    list-style: none;
    box-sizing: border-box;
    overflow: hidden;
  }
  .panel-main.menu.panel {
    padding-top: 20px;
  }
  .menu-item,
  .menu-back {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .menu-item {
    border-bottom: 1px solid #edf0f3;
  }
  .menu-item > a,
  .menu-link,
  .sub-panel-body a,
  .panel-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: #1d8b83;
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    writing-mode: horizontal-tb;
    overflow: hidden;
    min-width: 0;
    font-weight: 500;
    font-size: 18px;
  }
  .panel-back {
    overflow: visible;
  }
  .panel-back:before {
    content: "";
    border: 5px solid #1d8b83;
    border-width: 0 0 2px 2px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    margin-right: 10px;
  }
  .menu-link span:first-child {
    flex: 1 1 auto;
  }
  .arrow {
    flex: 0 0 auto;
    margin-left: 12px;
  }
  .submenu-dropdown {
    display: none;
  }
  .sub-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 20px;
    border-bottom: 1px solid #edf0f3;
    box-sizing: border-box;
  }
  .panel-back {
    width: auto;
    min-height: auto;
    padding: 0;
    justify-content: flex-start;
  }
  .sub-panel-title {
    font-weight: 600;
    color: #0b2239;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    writing-mode: horizontal-tb;
    font-size: 18px;
    color: #1d8b83;
  }
  .sub-panel-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }
  .sub-panel-body a {
    border-bottom: 1px solid #edf0f3;
  }
  .arrow {
    font-size: 24px;
    line-height: 1;
    display: block;
  }
  .qrcode {
    justify-content: start !important;
  }
}
.qrcode img {
  height: 24px;
  width: 24px;
}

/* Header Scroll 的時候SVG變換顏色 */
.site-header .phishing_white {
  filter: invert(41%) sepia(63%) saturate(771%) hue-rotate(127deg) brightness(92%) contrast(92%);
}

.site-header.scrolled.active .phishing_white {
  filter: invert(41%) sepia(63%) saturate(771%) hue-rotate(127deg) brightness(92%) contrast(92%);
}

.footerMenuArea {
  position: relative;
  background: #19a69e;
  padding: 60px 0 80px 0;
  color: #fff;
}
@media (max-width: 1280px) {
  .footerMenuArea {
    padding: 60px 0 70px 0;
  }
}
@media (max-width: 992px) {
  .footerMenuArea {
    padding: 40px 0 60px 0;
  }
}
@media (max-width: 576px) {
  .footerMenuArea {
    padding: 40px 0 25px 0;
  }
}
@media (max-width: 992px) {
  .footerMenuArea .container {
    width: 95%;
    padding: 0;
  }
}
.footerMenuArea h2 {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .footerMenuArea h2 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .footerMenuArea h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 380px) {
  .footerMenuArea h2 {
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .footerMenuArea h2 {
    font-size: 26px;
  }
}
.footerMenuArea h2 .footerMenu_b {
  position: absolute;
  top: -97px;
  left: 270px;
}
@media (max-width: 1440px) {
  .footerMenuArea h2 .footerMenu_b {
    left: 215px;
  }
}
@media (max-width: 1280px) {
  .footerMenuArea h2 .footerMenu_b {
    left: 145px;
  }
}
@media (max-width: 1200px) {
  .footerMenuArea h2 .footerMenu_b {
    left: 35px;
  }
}
@media (max-width: 992px) {
  .footerMenuArea h2 .footerMenu_b {
    width: 140px;
    left: 0;
    top: -67px;
  }
}
@media (max-width: 576px) {
  .footerMenuArea h2 .footerMenu_b {
    right: 0;
    margin: 0 auto;
    top: -134px;
  }
}
.footerMenuArea .footerMenu {
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .footerMenuArea .footerMenu {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .footerMenuArea .footerMenu li {
    width: 50%;
  }
}
.footerMenuArea .footerMenu li:not(:last-child) {
  border-right: 1px solid #91d4d1;
}
@media (max-width: 576px) {
  .footerMenuArea .footerMenu li:not(:last-child) {
    border: none;
  }
}
.footerMenuArea .footerMenu a {
  position: relative;
  color: #fff;
  font-weight: 600;
  display: block;
  padding: 0 20px;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .footerMenuArea .footerMenu a {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .footerMenuArea .footerMenu a {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .footerMenuArea .footerMenu a {
    padding: 16px;
  }
}
@media (max-width: 360px) {
  .footerMenuArea .footerMenu a {
    padding: 20px 15px;
  }
}
.footerMenuArea .footerMenu a h3 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  padding-right: 32px;
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  .footerMenuArea .footerMenu a h3 {
    font-size: 30px;
  }
}
@media (max-width: 1280px) {
  .footerMenuArea .footerMenu a h3 {
    font-size: 24px;
    padding-right: 26px;
  }
}
@media (max-width: 1200px) {
  .footerMenuArea .footerMenu a h3 {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .footerMenuArea .footerMenu a h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .footerMenuArea .footerMenu a h3 {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .footerMenuArea .footerMenu a h3 {
    font-size: 24px;
  }
}
.footerMenuArea .footerMenu a h3::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 13px;
  height: 21px;
  margin: auto;
  background: url(../../images/arrowWhite.svg) no-repeat;
  background-size: 100%;
}
@media (max-width: 1280px) {
  .footerMenuArea .footerMenu a h3::after {
    width: 10px;
    height: 16px;
  }
}
.footerMenuArea .footerMenu a p {
  font-size: 22px;
  color: #acece8;
}
@media (max-width: 1440px) {
  .footerMenuArea .footerMenu a p {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .footerMenuArea .footerMenu a p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .footerMenuArea .footerMenu a p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .footerMenuArea .footerMenu a p {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .footerMenuArea .footerMenu a p {
    font-size: 16px;
  }
}
.footerMenuArea .footerMenu a:hover {
  transition: all 0.3s ease;
}
.footerMenuArea .footerMenu a:hover h3 {
  color: #fff000;
}
.footerMenuArea .footerMenu a:hover h3::after {
  background: url(../../images/arrowYellow.svg) no-repeat;
  background-size: 100%;
}
.footerMenuArea .footerMenu_b_m {
  position: absolute;
  width: 116px;
  right: 50px;
  bottom: -10px;
  transform: scaleX(-1);
}
@media (max-width: 360px) {
  .footerMenuArea .footerMenu_b_m {
    right: 20px;
  }
}
@media (max-width: 320px) {
  .footerMenuArea .footerMenu_b_m {
    right: 15px;
  }
}

.taxNoteArea {
  position: relative;
  padding: 40px 0;
  background: #fff;
}
@media (max-width: 576px) {
  .taxNoteArea {
    padding: 20px 0;
  }
}
@media (max-width: 1440px) {
  .taxNoteArea .container {
    max-width: 1000px;
  }
}
@media (max-width: 1200px) {
  .taxNoteArea .container {
    max-width: 750px;
  }
}
@media (max-width: 992px) {
  .taxNoteArea .container {
    max-width: 100%;
  }
}
.taxNoteArea ul,
.taxNoteArea ul li {
  margin: auto;
  margin-bottom: 1rem;
  padding-inline-start: revert;
  list-style: none;
  font-size: 14px;
  line-height: 150%;
}
.taxNoteArea ol {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 23px;
  font-size: 14px;
}
.taxNoteArea ol li {
  list-style-type: decimal;
  padding-left: 1em;
  margin: 0.7em 0;
  line-height: 170%;
}
@media (max-width: 576px) {
  .taxNoteArea ol li {
    padding-left: 0;
  }
}
.taxNoteArea ol ul {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 23px;
}
.taxNoteArea ol ul li {
  list-style-type: disc;
  padding-left: 0em;
  margin: 0.7em 0;
  line-height: 150%;
}
@media (max-width: 576px) {
  .taxNoteArea ol ul li {
    padding-left: 0;
  }
}
.taxNoteArea .title {
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 576px) {
  .taxNoteArea .title {
    font-size: 18px;
  }
}
.taxNoteArea article {
  display: none;
}
.taxNoteArea h4 {
  font-size: 19px;
  margin-top: 40px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .taxNoteArea h4 {
    font-size: 16px;
  }
}
.taxNoteArea a {
  color: #008a8f;
  text-decoration: underline;
}
.taxNoteArea p {
  font-size: 14px;
  line-height: 150%;
}

footer {
  position: relative;
  padding: 32px 0;
  background: #0a7d77;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 576px) {
  footer {
    padding: 20px 0;
    font-size: 15px;
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin: 0 16px 32px 16px;
}
.footer-nav-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-nav h4 {
  padding-bottom: 10px;
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 0;
}
.footer-nav a,
.footer-nav a:active {
  color: #ffffff;
}
@media screen and (max-width: 576px) {
  .footer-nav {
    font-size: 16px;
    grid-template-columns: repeat(1, 1fr);
    text-align: left;
  }
  .footer-nav h4 {
    padding-bottom: 0;
  }
}

.footer-content {
  max-width: 1280px;
  padding: 20px 0 30px;
  position: relative;
  margin: 0 auto;
}

.footer-copyright {
  width: 100%;
  text-align: center;
}

.footer-word {
  font-size: 16px;
  color: white;
}

.menu-item > a,
.menu-link {
  color: #ffffff;
}
.menu-item > a:hover,
.menu-link:hover {
  color: #ffffff;
}

/* Header Scroll 的時候 SVG 變換顏色 */
.site-header .phishing_white {
  filter: brightness(0) invert(1);
}

.site-header.scrolled.active .phishing_white {
  filter: invert(41%) sepia(63%) saturate(771%) hue-rotate(127deg) brightness(92%) contrast(92%);
}

/* Header Scroll 的時候 Link 變換顏色 */
.site-header.scrolled.active .menu-item > a, .site-header.scrolled.active .menu-link {
  color: #1d8b83;
}

.mainBlock {
  overflow-x: hidden;
}

@media screen and (max-width: 576px) {
  .indexBody {
    padding-bottom: 40px;
  }
}
.container {
  --container-gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--container-gutter-x) * 0.5);
  padding-left: calc(var(--container-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.hero-section {
  position: relative;
  background: url(../img/kv-airplane.webp) no-repeat 17% 68%/min(20%, 160px), url(../img/kvbg.webp) no-repeat center top/cover;
}
@media (max-width: 1680px) {
  .hero-section {
    background: url(../img/kv-airplane.webp) no-repeat 13% 66%/min(20%, 160px), url(../img/kvbg.webp) no-repeat center top/cover;
  }
}
@media (max-width: 1280px) {
  .hero-section {
    background: url(../img/kv-airplane.webp) no-repeat 13% 69%/min(20%, 130px), url(../img/kvbg.webp) no-repeat center top/cover;
  }
}
@media (max-width: 992px) {
  .hero-section {
    background: url(../img/kv-airplane.webp) no-repeat 13% 74%/min(20%, 110px), url(../img/kvbg.webp) no-repeat center top/cover;
  }
}
@media (max-width: 576px) {
  .hero-section {
    background: url(../img/kvbg-sm.webp) no-repeat center top 80px/cover, #064250;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 1;
  background: linear-gradient(0deg, rgb(209, 245, 237) 0%, rgba(209, 245, 237, 0.5) 65%, rgba(209, 245, 237, 0) 100%);
}
@media (max-width: 576px) {
  .hero-section::before {
    height: 10%;
  }
}
.hero-section .container {
  max-width: 1770px;
}
@media (max-width: 1680px) {
  .hero-section .container {
    max-width: 95%;
  }
}
.hero-section h1 {
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas: "content app" "person  person";
  gap: 20px;
  padding-top: 7%;
}
@media (max-width: 1200px) {
  .hero-banner {
    padding-top: 100px;
  }
}
@media (max-width: 992px) {
  .hero-banner {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media (max-width: 576px) {
  .hero-banner {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "app" "person";
  }
}
.hero-banner__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
}
.hero-banner__title {
  grid-area: title;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hero-banner__title {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .hero-banner__title .kv_title {
    display: none;
  }
}
.hero-banner__title .kv_title_sm {
  display: none;
}
@media (max-width: 576px) {
  .hero-banner__title .kv_title_sm {
    display: block;
  }
}
.hero-banner__desc {
  grid-area: desc;
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-left: 20px;
  height: 100%;
  font-size: clamp(19px, 1.8vw, 34px);
}
@media (max-width: 992px) {
  .hero-banner__desc {
    margin-left: 10px;
  }
}
@media (max-width: 576px) {
  .hero-banner__desc {
    font-size: 22px;
  }
}
.hero-banner__desc .btnBlock {
  margin-top: 70px;
}
@media (max-width: 1200px) {
  .hero-banner__desc .btnBlock {
    margin-top: 30px;
  }
}
.hero-banner__cta {
  grid-area: cta;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .hero-banner__cta {
    justify-content: flex-start;
  }
}
.hero-banner__app {
  position: relative;
  grid-area: app;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .hero-banner__app {
    padding-right: 0;
  }
}
.hero-banner__app img {
  width: 100%;
  height: auto;
}
.hero-banner__app .kv_phone {
  position: relative;
  width: 100%;
  z-index: 2;
  max-width: 510px;
}
@media (min-width: 993px) and (max-height: 900px) {
  .hero-banner__app .kv_phone {
    max-width: 73%;
  }
}
@media (max-width: 1440px) {
  .hero-banner__app .kv_phone {
    max-width: 73%;
  }
}
@media (max-width: 1200px) {
  .hero-banner__app .kv_phone {
    max-width: 87%;
  }
}
@media (max-width: 576px) {
  .hero-banner__app .kv_phone {
    max-width: 60%;
    margin-top: -80px;
  }
}
@media (max-width: 576px) {
  .hero-banner__app .kv_phone > img {
    margin-left: 32px;
  }
}
.hero-banner__app .kv_star {
  position: absolute;
  top: -8%;
  left: 0%;
  height: auto;
  display: block;
  overflow: hidden;
  mix-blend-mode: screen;
  filter: brightness(1.15) saturate(1.1);
  opacity: 0.9;
  pointer-events: none;
}
@media (min-width: 993px) and (max-height: 900px) {
  .hero-banner__app .kv_star {
    top: -100px;
  }
}
@media (max-width: 1440px) {
  .hero-banner__app .kv_star {
    top: -100px;
  }
}
@media (max-width: 1280px) {
  .hero-banner__app .kv_star {
    top: -70px;
  }
}
@media (max-width: 576px) {
  .hero-banner__app .kv_star {
    display: none;
  }
}
.hero-banner__app .remindCardBlock {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: 240px;
  margin-left: -22%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 5px 16px 20px rgba(23, 141, 137, 0.5);
  text-align: center;
}
@media (min-width: 993px) and (max-height: 900px) {
  .hero-banner__app .remindCardBlock {
    top: 200px;
    margin-left: -27%;
  }
}
@media (max-width: 1440px) {
  .hero-banner__app .remindCardBlock {
    top: 200px;
    margin-left: -27%;
  }
}
@media (max-width: 1200px) {
  .hero-banner__app .remindCardBlock {
    padding: 15px 25px;
    top: 190px;
  }
}
@media (max-width: 1025px) {
  .hero-banner__app .remindCardBlock {
    top: 160px;
  }
}
@media (max-width: 992px) {
  .hero-banner__app .remindCardBlock {
    padding: 10px 15px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .hero-banner__app .remindCardBlock {
    padding: 10px;
    top: 100px;
    margin-left: -18%;
    width: auto;
  }
}
.hero-banner__app .remindCardBlock .remindCard {
  width: 100%;
  max-width: 45px;
  margin: 0 auto;
  transform-origin: top center;
  will-change: transform;
}
@media (max-width: 1200px) {
  .hero-banner__app .remindCardBlock .remindCard {
    max-width: 30px;
  }
}
@media (max-width: 992px) {
  .hero-banner__app .remindCardBlock .remindCard {
    max-width: 25px;
  }
}
.hero-banner__app .remindCardBlock .txt {
  font-size: clamp(18px, 2vw, 20px);
  margin-top: 15px;
  color: #1e8b84;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .hero-banner__app .remindCardBlock .txt {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .hero-banner__app .remindCardBlock .txt {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .hero-banner__app .remindCardBlock .txt {
    font-size: 13px;
  }
}
.hero-banner__app .remindCardBlock .txt span {
  display: inline-block;
  will-change: opacity, transform;
}
.hero-banner__person {
  grid-area: person;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 280px;
}
@media (min-width: 993px) and (max-height: 900px) {
  .hero-banner__person {
    padding-top: 190px;
  }
}
@media (max-width: 1440px) {
  .hero-banner__person {
    padding-top: 190px;
  }
}
@media (max-width: 1200px) {
  .hero-banner__person {
    padding-top: 130px;
  }
}
.hero-banner__person .kv_people {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 1000px;
}
@media (min-width: 993px) and (max-height: 900px) {
  .hero-banner__person .kv_people {
    max-width: 57%;
  }
}
@media (max-width: 1440px) {
  .hero-banner__person .kv_people {
    max-width: 57%;
  }
}
@media (max-width: 576px) {
  .hero-banner__person .kv_people {
    width: 110%;
    max-width: inherit;
    margin-left: -126px;
  }
}
.hero-banner__person img {
  width: 100%;
  height: auto;
}
.hero-banner .btn span {
  margin-right: 40px;
}
.hero-banner .btn span::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 25px;
  height: 12px;
  background: url(../img/arrow_white.png) no-repeat center/100%;
}

@media (max-width: 768px) {
  #brief_section {
    scroll-margin-top: 50px;
  }
}

.brief_section {
  position: relative;
  background: linear-gradient(0deg, rgb(220, 254, 249) 0%, rgb(209, 245, 237) 100%);
  padding: 5% 0 6%;
}
@media (max-width: 576px) {
  .brief_section {
    padding: 5% 0 13%;
  }
}
.brief_section .exchange-container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: 4%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .brief_section .exchange-container {
    max-width: 80%;
  }
}
@media (max-width: 1440px) {
  .brief_section .exchange-container {
    max-width: 80%;
  }
}
@media (max-width: 1200px) {
  .brief_section .exchange-container {
    max-width: 100%;
  }
}
.brief_section .exchange-container .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .brief_section .exchange-container .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .brief_section .exchange-container .hero-grid {
    gap: 0;
  }
}
.brief_section .exchange-container .hero-grid .illustration-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.brief_section .exchange-container .hero-grid .illustration-box .brief_people {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  bottom: -55%;
  margin-left: 2%;
}
@media (max-width: 767.9px) {
  .brief_section .exchange-container .hero-grid .illustration-box .brief_people {
    position: relative;
    bottom: 0;
    margin-bottom: -26%;
  }
}
.brief_section .exchange-container .hero-grid .illustration-box img {
  max-width: 100%;
  height: auto;
}
.brief_section .exchange-container .hero-grid .brief_demoBlock {
  position: relative;
  height: 100%;
  padding-bottom: 3%;
}
.brief_section .exchange-container .hero-grid .brief_demoBlock .btnBlock {
  display: none;
}
@media (max-width: 767.9px) {
  .brief_section .exchange-container .hero-grid .brief_demoBlock {
    padding-bottom: 0;
  }
  .brief_section .exchange-container .hero-grid .brief_demoBlock .btnBlock {
    display: block;
    margin: 0 0 24px 0;
  }
}
.brief_section .exchange-container .hero-grid .brief_demo_img {
  position: relative;
  width: 100%;
  max-width: 72%;
  margin: 0 auto;
  padding-bottom: 9%;
}
@media (max-width: 576px) {
  .brief_section .exchange-container .hero-grid .brief_demo_img {
    max-width: 100%;
  }
}
.brief_section .exchange-container .hero-grid .brief_demo_img img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
}
.brief_section .exchange-container .info-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  z-index: 2;
}
@media (min-width: 768px) {
  .brief_section .exchange-container .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.brief_section .exchange-container .info-grid .info-card {
  background: linear-gradient(0deg, rgba(211, 255, 253, 0.96) 0%, rgb(255, 255, 255) 100%);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  font-size: clamp(18px, 1.3vw, 26px);
}
@media (max-width: 1200px) {
  .brief_section .exchange-container .info-grid .info-card {
    padding: 20px;
  }
}
.brief_section .exchange-container .info-grid .info-card p {
  margin: 0;
  margin-top: 24px;
  line-height: 1.6;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .brief_section .exchange-container .info-grid .info-card p {
    margin-top: 10px;
  }
}
.brief_section .settingBlock {
  position: relative;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  margin-top: 5%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 860px) {
  .brief_section .settingBlock {
    grid-template-columns: 1fr 1.4fr;
  }
}
@media (max-width: 576px) {
  .brief_section .settingBlock {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 8%;
  }
}
.brief_section .settingBlock .heading {
  border-right: 2px solid #01A4A7;
}
@media (max-width: 576px) {
  .brief_section .settingBlock .heading {
    border: none;
    border-bottom: 2px solid #01A4A7;
    margin-bottom: 20px;
    padding-bottom: 7px;
  }
}
.brief_section .settingBlock h3 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 7%;
}
@media (max-width: 992px) {
  .brief_section .settingBlock h3 {
    font-size: clamp(18px, 2.2vw, 40px);
  }
}
@media (max-width: 576px) {
  .brief_section .settingBlock h3 {
    justify-content: center;
    padding-right: 0;
    font-size: clamp(26px, 2.2vw, 40px);
  }
}
.brief_section .settingBlock h3 abbr {
  margin-top: -12px;
  padding-right: 7px;
  font-size: clamp(60px, 4.5vw, 80px);
}
@media (max-width: 768px) {
  .brief_section .settingBlock h3 abbr {
    font-size: clamp(50px, 4.5vw, 80px);
  }
}
@media (max-width: 576px) {
  .brief_section .settingBlock h3 abbr {
    font-size: clamp(60px, 4.5vw, 80px);
  }
}
.brief_section .settingBlock .currency {
  font-size: clamp(15px, 1.3vw, 26px);
  color: #008689;
  font-weight: 500;
  padding-left: 5%;
  line-height: 1.8;
}
@media (max-width: 860px) {
  .brief_section .settingBlock .currency {
    padding-left: 4%;
  }
}
@media (max-width: 768px) {
  .brief_section .settingBlock .currency {
    font-size: clamp(14px, 1.3vw, 26px);
  }
}
@media (max-width: 576px) {
  .brief_section .settingBlock .currency {
    padding-left: 0;
    font-size: 19px;
  }
}
.brief_section .btnBlock {
  text-align: center;
  margin-top: 6%;
}

#custom_section {
  scroll-margin-top: 90px;
}
@media (max-width: 768px) {
  #custom_section {
    scroll-margin-top: 70px;
  }
}

.custom_section {
  position: relative;
  background: url(../img/custom_wave_top.webp) no-repeat center top/100%, linear-gradient(0deg, rgb(123, 235, 218) 0%, rgb(172, 243, 232) 100%);
  padding: 12% 0 8%;
}
@media (max-width: 767.9px) {
  .custom_section {
    background: url(../img/custom_wave_top_sm.webp) no-repeat center top/100%, linear-gradient(0deg, rgb(123, 235, 218) 0%, rgb(172, 243, 232) 100%);
  }
}
@media (max-width: 767.9px) {
  .custom_section {
    padding: 39% 0 23%;
  }
}
.custom_section .currencyTypes {
  position: relative;
  text-align: center;
  margin-top: 3%;
  color: #0d847f;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 993px) and (max-height: 900px) {
  .custom_section .currencyTypes {
    max-width: 80%;
  }
}
@media (max-width: 1440px) {
  .custom_section .currencyTypes {
    max-width: 80%;
  }
}
@media (max-width: 1200px) {
  .custom_section .currencyTypes {
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .custom_section .currencyTypes {
    max-width: 100%;
    margin-top: 9%;
  }
}
.custom_section .currencyTypes .heading {
  font-size: clamp(30px, 2.5vw, 52px);
  font-weight: 900;
  border-bottom: 4px solid #0D847F;
  padding-bottom: 1.5%;
  margin-bottom: 2%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .custom_section .currencyTypes .heading {
    border-bottom: 3px solid #0D847F;
  }
}
@media (max-width: 1440px) {
  .custom_section .currencyTypes .heading {
    border-bottom: 3px solid #0D847F;
  }
}
@media (max-width: 576px) {
  .custom_section .currencyTypes .heading {
    padding-bottom: 7%;
    margin-bottom: 7%;
  }
}
.custom_section .currencyTypes .heading abbr {
  font-size: clamp(40px, 3.5vw, 65px);
  color: #FF4848;
  padding: 0 5px;
}
.custom_section .currencyTypes p {
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 36px);
}
.custom_section .btnBlock {
  text-align: center;
  margin-top: 3%;
}
@media (max-width: 576px) {
  .custom_section .btnBlock {
    margin-top: 40px;
  }
}
.custom_section .custom_people_top {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 23%;
  top: -3%;
  margin-left: 24%;
  /* 關鍵：允許超出部分顯示 */
  overflow: visible;
}
@media (max-width: 1680px) {
  .custom_section .custom_people_top {
    max-width: 25%;
  }
}
@media (min-width: 993px) and (max-height: 900px) {
  .custom_section .custom_people_top {
    margin-left: 27%;
  }
}
@media (max-width: 1440px) {
  .custom_section .custom_people_top {
    margin-left: 27%;
  }
}
@media (max-width: 767.9px) {
  .custom_section .custom_people_top {
    max-width: 50%;
    top: 0%;
    margin-left: 24%;
  }
}
@media (max-width: 576px) {
  .custom_section .custom_people_top {
    max-width: 50%;
    top: 0%;
    margin-left: 24%;
  }
}
.custom_section .featureList {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  text-align: center;
  color: #393939;
  margin-top: 40px;
  width: 100%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .custom_section .featureList {
    max-width: 80%;
  }
}
@media (max-width: 1440px) {
  .custom_section .featureList {
    max-width: 80%;
  }
}
@media (max-width: 1280px) {
  .custom_section .featureList {
    max-width: 90%;
  }
}
@media (max-width: 1200px) {
  .custom_section .featureList {
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .custom_section .featureList {
    gap: 15px;
  }
}
@media (max-width: 767.9px) {
  .custom_section .featureList {
    grid-template-columns: 1fr;
    margin-top: 30px;
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  .custom_section .featureList {
    max-width: 90%;
  }
}
.custom_section .featureList li {
  background: linear-gradient(0deg, rgba(211, 255, 253, 0.96) 0%, rgb(255, 255, 255) 100%);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.custom_section .featureList li figure img {
  width: 90%;
  margin: 0 auto;
}
.custom_section .featureList li:nth-of-type(2) figure {
  margin-bottom: -5%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .custom_section .featureList li {
    padding: 30px 20px;
  }
}
@media (max-width: 1440px) {
  .custom_section .featureList li {
    padding: 30px 20px;
  }
}
@media (max-width: 1200px) {
  .custom_section .featureList li {
    padding: 30px 10px;
  }
}
@media (max-width: 767.9px) {
  .custom_section .featureList li {
    border-radius: 20px;
    padding: 30px 25px;
  }
}
.custom_section .featureList .heading {
  font-size: clamp(26px, 2vw, 44px);
  font-weight: 600;
  margin: 5% 0 3%;
}
@media (max-width: 860px) {
  .custom_section .featureList .heading {
    font-size: clamp(22px, 2vw, 44px);
  }
}
@media (max-width: 767.9px) {
  .custom_section .featureList .heading {
    font-size: 30px;
  }
}
.custom_section .featureList .heading small {
  font-weight: 900;
  font-size: 90%;
}
.custom_section .featureList p {
  font-size: clamp(20px, 1.5vw, 22px);
  margin-bottom: 30px;
}
.custom_section .featureList .small_p {
  font-size: clamp(15px, 1.5vw, 18px);
}
.custom_section .featureList .tag {
  background: #ffde71;
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 500;
  padding: 2px 0;
  margin-top: auto;
  /* 精髓：自動吸收上方剩餘空間，強行推至底部 */
}
@media (max-width: 767.9px) {
  .custom_section .featureList .tag {
    font-size: 22px;
  }
}

.step_section {
  position: relative;
  background: linear-gradient(0deg, rgb(210, 246, 238) 0%, rgb(219, 253, 248) 100%);
  padding: 6% 0 7%;
}
@media (max-width: 767.9px) {
  .step_section {
    padding: 28% 0 40%;
  }
}
.step_section::before {
  content: "";
  position: absolute;
  top: -11%;
  left: 0;
  width: 100%;
  height: 20%;
  background: url(../img/step_wave_top.webp) no-repeat center top/100%;
}
@media (max-width: 767.9px) {
  .step_section::before {
    top: -4%;
    height: 50px;
    background: url(../img/step_wave_top_sm.webp) no-repeat center top/100%;
  }
}
.step_section .sectionTitle.h4 {
  margin: 30px 0 10px;
}
.step_section .stepItem {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  width: 100%;
  max-width: 80%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .step_section .stepItem {
    max-width: 60%;
  }
}
@media (max-width: 1440px) {
  .step_section .stepItem {
    max-width: 65%;
  }
}
@media (max-width: 1280px) {
  .step_section .stepItem {
    max-width: 70%;
  }
}
@media (max-width: 992px) {
  .step_section .stepItem {
    max-width: 80%;
  }
}
@media (max-width: 767.9px) {
  .step_section .stepItem {
    max-width: 100%;
    gap: 20%;
    margin-top: 13%;
  }
}
.step_section .stepItem li {
  position: relative;
  display: grid;
  justify-content: center;
}
.step_section .stepItem li::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 69px;
  top: 36%;
  right: -48%;
  margin: 0 auto;
  background: url(../img/step_arrow_red.svg) no-repeat center/100%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .step_section .stepItem li::before {
    width: 76px;
    right: -47%;
  }
}
@media (max-width: 1440px) {
  .step_section .stepItem li::before {
    width: 76px;
    right: -47%;
  }
}
@media (max-width: 1366px) {
  .step_section .stepItem li::before {
    width: 55px;
    right: -37%;
  }
}
@media (max-width: 1280px) {
  .step_section .stepItem li::before {
    right: -40%;
  }
}
@media (max-width: 860px) {
  .step_section .stepItem li::before {
    right: -42%;
  }
}
@media (max-width: 768px) {
  .step_section .stepItem li::before {
    width: 40px;
    right: -35%;
  }
}
@media (max-width: 767.9px) {
  .step_section .stepItem li::before {
    right: -40%;
    width: 50px;
  }
}
.step_section .stepItem li:last-child::before {
  display: none;
}
.step_section .stepItem .step_phone {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
@media (min-width: 993px) and (max-height: 900px) {
  .step_section .stepItem .step_phone {
    max-width: 200px;
  }
}
@media (max-width: 1440px) {
  .step_section .stepItem .step_phone {
    max-width: 200px;
  }
}
@media (max-width: 1200px) {
  .step_section .stepItem .step_phone {
    max-width: 100%;
    width: 160px;
  }
}
@media (max-width: 860px) {
  .step_section .stepItem .step_phone {
    width: 140px;
  }
}
@media (max-width: 767.9px) {
  .step_section .stepItem .step_phone {
    width: 160px;
  }
}
.step_section .stepItem .multiple_img {
  display: flex;
  gap: 10px;
}
.step_section .stepItem .txt {
  text-align: center;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 27px);
}
@media (min-width: 993px) and (max-height: 900px) {
  .step_section .stepItem .txt {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .step_section .stepItem .txt {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .step_section .stepItem .txt {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .step_section .stepItem .txt {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .step_section .stepItem .txt {
    font-size: 14px;
  }
}
@media (max-width: 767.9px) {
  .step_section .stepItem .txt {
    font-size: 15px;
  }
}
.step_section .step_people {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.step_section .step_people {
  max-width: 15%;
  top: -13%;
  margin-left: -26%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .step_section .step_people {
    max-width: 17%;
  }
}
@media (max-width: 1440px) {
  .step_section .step_people {
    max-width: 17%;
  }
}
@media (max-width: 767.9px) {
  .step_section .step_people {
    max-width: 35%;
    top: -7%;
  }
}
.step_section {
  /* 原生區域：手機版隱藏預設滾動條 */
}
@media (max-width: 767.9px) {
  .step_section .stepItem {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20%;
    /* 完全隱藏原生系統滾動條 */
  }
  .step_section .stepItem::-webkit-scrollbar {
    display: none;
  }
  .step_section .stepItem {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .step_section {
    /* 假 Scrollbar 外框軌道 (預設常駐顯示) */
  }
  .step_section .custom-scrollbar-track {
    width: 100%;
    /* 軌道長度，可自訂 */
    height: 13px;
    /* 軌道高度 */
    background-color: #f1f1f1;
    /* 底軌顏色 */
    border-radius: 10px;
    margin: 15px auto 0 auto;
    /* 居中並與上方保持距離 */
    position: relative;
    overflow: hidden;
    margin-top: 30px;
  }
  .step_section {
    /* 假 Scrollbar 滑塊 */
  }
  .step_section .custom-scrollbar-thumb {
    height: 100%;
    background-color: #5DDFD9;
    /* 滑塊顏色 */
    border-radius: 10px;
    width: 30%;
    /* 初始寬度，JS會動態計算覆蓋 */
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.05s linear;
    /* 讓移動更順暢 */
  }
}
.step_section {
  /* 桌面版隱藏假 Scrollbar */
}
@media (min-width: 768px) {
  .step_section .custom-scrollbar-track {
    display: none;
  }
}
.step_section .btnBlock {
  text-align: center;
  margin-top: 4%;
}
@media (max-width: 767.9px) {
  .step_section .btnBlock {
    margin-top: 7%;
  }
}

.qa_section {
  position: relative;
  background: linear-gradient(0deg, rgb(123, 235, 218) 0%, rgb(172, 243, 232) 100%);
  padding: 8% 0 6%;
}
@media (max-width: 767.9px) {
  .qa_section {
    padding: 22% 0 11%;
  }
}
.qa_section::before {
  content: "";
  position: absolute;
  top: -7%;
  left: 0;
  width: 100%;
  height: 254px;
  background: url(../img/qa_wave_top.png) no-repeat center top/100%;
}
@media (max-width: 1680px) {
  .qa_section::before {
    top: -6%;
  }
}
@media (max-width: 1280px) {
  .qa_section::before {
    top: -5.5%;
  }
}
@media (max-width: 1200px) {
  .qa_section::before {
    top: -60px;
  }
}
@media (max-width: 992px) {
  .qa_section::before {
    top: -4%;
  }
}
@media (max-width: 768px) {
  .qa_section::before {
    top: -3.2%;
  }
}
@media (max-width: 767.9px) {
  .qa_section::before {
    height: 70px;
    background: url(../img/qa_wave_top_sm.webp) no-repeat center top/100%;
  }
}
.qa_section .sectionTitle.h4 {
  color: #008689;
  margin-top: 1%;
}
.qa_section .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  text-align: left;
}
.qa_section .accordion .accordion-item {
  background: linear-gradient(0deg, rgb(211, 255, 253) 0%, rgb(255, 255, 255) 100%);
  border-radius: 30px;
  overflow: hidden;
  transition: background-color 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
}
.qa_section .accordion .accordion-item a {
  color: #fff;
}
.qa_section .accordion .accordion-item .accordion-header {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.qa_section .accordion .accordion-item .accordion-header .question {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: bold;
  color: #1e1e1e;
  line-height: 1.4;
}
.qa_section .accordion .accordion-item .accordion-content {
  display: none;
  background-color: #1e1e1e;
  transition: background-color 0.3s ease;
}
.qa_section .accordion .accordion-item .accordion-content .content-inner {
  padding: 0 30px 25px 30px;
  line-height: 1.6;
  font-weight: 500;
}
.qa_section .accordion .accordion-item .accordion-content .content-inner p {
  margin: 0;
}
.qa_section .accordion .accordion-item.active {
  background-color: #1e1e1e;
}
.qa_section .accordion .accordion-item.active .accordion-header {
  background: linear-gradient(0deg, rgb(211, 255, 253) 0%, rgb(255, 255, 255) 100%);
}
.qa_section .accordion .accordion-item.active .accordion-header .icon-arrow {
  transform: rotate(-135deg);
}
.qa_section .accordion .accordion-item.active .accordion-content {
  display: block;
}
.qa_section .accordion {
  margin: 0 auto;
  margin-top: 60px;
}
@media (min-width: 993px) and (max-height: 900px) {
  .qa_section .accordion {
    width: 85%;
  }
}
@media (max-width: 1440px) {
  .qa_section .accordion {
    width: 100%;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .qa_section .accordion {
    margin-top: 40px;
    gap: 30px;
  }
}
.qa_section .accordion .accordion-item {
  border-radius: 30px;
  margin-bottom: 15px;
  overflow: hidden;
  font-size: clamp(16px, 1.528vw, 22px);
  text-align: left;
}
@media (min-width: 993px) and (max-height: 900px) {
  .qa_section .accordion .accordion-item {
    font-size: clamp(16px, 1.528vw, 20px);
  }
}
@media (max-width: 1440px) {
  .qa_section .accordion .accordion-item {
    font-size: clamp(16px, 1.528vw, 20px);
  }
}
@media (max-width: 576px) {
  .qa_section .accordion .accordion-item {
    margin-bottom: 0;
    border-radius: 20px;
  }
}
.qa_section .accordion .accordion-item .accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 35px 20px;
  cursor: pointer;
  transition: background 0.3s;
  padding-left: 75px;
}
@media (min-width: 993px) and (max-height: 900px) {
  .qa_section .accordion .accordion-item .accordion-header {
    padding: 25px 20px 25px 75px;
  }
}
@media (max-width: 1440px) {
  .qa_section .accordion .accordion-item .accordion-header {
    padding: 25px 20px 25px 55px;
  }
}
@media (max-width: 576px) {
  .qa_section .accordion .accordion-item .accordion-header {
    padding: 25px 45px 25px 55px;
  }
}
.qa_section .accordion .accordion-item .accordion-header:hover {
  background-color: rgba(255, 243, 173, 0.2);
}
.qa_section .accordion .accordion-item .accordion-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto 0;
  width: 22px;
  height: 13px;
  background: url(../img/arrow_qa.svg) no-repeat center/100%;
}
@media (max-width: 576px) {
  .qa_section .accordion .accordion-item .accordion-header::before {
    right: 20px;
    width: 15px;
  }
}
.qa_section .accordion .accordion-item .accordion-header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto 0;
  width: 30px;
  height: 66px;
  background: url(../img/Ｑ.svg) no-repeat center/100%;
}
@media (max-width: 1440px) {
  .qa_section .accordion .accordion-item .accordion-header::after {
    width: 24px;
  }
}
.qa_section .accordion .accordion-item .accordion-header .question {
  flex-grow: 1;
  color: #01a4a7;
  font-weight: bold;
  margin: 0;
}
.qa_section .accordion .accordion-item .accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  background-color: #fff;
  font-weight: normal;
}
.qa_section .accordion .accordion-item .accordion-content .content-inner {
  overflow: hidden;
  padding: 0 20px;
  transition: padding 0.3s;
  align-items: flex-start;
}
.qa_section .accordion .accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}
.qa_section .accordion .accordion-item.active .content-inner {
  padding: 20px;
  background: #fff;
}
.qa_section .accordion .accordion-item.active .accordion-header::before {
  transform: rotate(180deg);
}
.qa_section .missionList {
  margin-left: 30px;
}
.qa_section .qa_people {
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.qa_section .qa_people {
  top: -7%;
  max-width: 17%;
  margin-left: 31%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .qa_section .qa_people {
    max-width: 21%;
  }
}
@media (max-width: 1440px) {
  .qa_section .qa_people {
    max-width: 21%;
  }
}
@media (max-width: 860px) {
  .qa_section .qa_people {
    top: -5%;
  }
}
@media (max-width: 767.9px) {
  .qa_section .qa_people {
    max-width: 45%;
    margin-left: 15%;
    top: -17%;
  }
}
@media (max-width: 576px) {
  .qa_section .qa_people {
    top: -11%;
  }
}
@media (max-width: 400px) {
  .qa_section .qa_people {
    top: -9%;
  }
}

.note_section {
  position: relative;
  background: url(../img/note_wave_top.webp) no-repeat center top/100%, #00a79e;
  padding: 12% 0 6%;
  color: #fff;
  line-height: 2;
}
@media (max-width: 576px) {
  .note_section {
    padding: 18% 0 6%;
    margin-top: -8px;
  }
}
@media (max-width: 400px) {
  .note_section {
    margin-top: -3px;
  }
}
.note_section .brief_heading,
.note_section .noteList {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 993px) and (max-height: 900px) {
  .note_section .brief_heading,
  .note_section .noteList {
    max-width: 85%;
  }
}
@media (max-width: 1440px) {
  .note_section .brief_heading,
  .note_section .noteList {
    max-width: 100%;
  }
}
.note_section .brief_heading {
  font-size: 22px;
  margin-bottom: 3%;
}
@media (min-width: 993px) and (max-height: 900px) {
  .note_section .brief_heading {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .note_section .brief_heading {
    font-size: 18px;
  }
}
.note_section .sectionTitle.h2 {
  color: #fff;
}
.note_section .noteList {
  font-size: clamp(15px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 993px) and (max-height: 900px) {
  .note_section .noteList {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .note_section .noteList {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .note_section .noteList {
    font-size: 15px;
    max-width: 95%;
    padding-left: 10px;
  }
}

.kv_star::before,
.kv_star::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: clamp(160px, 18.8%, 320px);
  height: 2px;
  top: var(--shooting-star-start-top);
  right: var(--shooting-star-start-right);
  background: linear-gradient(90deg, #fff 0%, rgba(104, 255, 255, 0.8) 25%, rgba(0, 255, 255, 0.15) 65%, transparent 100%);
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.8), 0 0 16px rgba(0, 255, 255, 0.45);
  opacity: 0;
  transform: rotate(-41deg);
  animation: shootingStar 3.5s ease-in infinite;
}

.kv_star::before {
  --shooting-star-start-top: 40%;
  --shooting-star-start-right: -25%;
  --shooting-star-end-top: 120%;
  --shooting-star-end-right: 95%;
}

.kv_star::after {
  --shooting-star-start-top: 10%;
  --shooting-star-start-right: 15%;
  --shooting-star-end-top: 90%;
  --shooting-star-end-right: 135%;
  width: clamp(110px, 11.75%, 200px);
  animation-delay: 1.5s;
}

@keyframes shootingStar {
  0% {
    top: var(--shooting-star-start-top);
    right: var(--shooting-star-start-right);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  18% {
    opacity: 0.5;
  }
  25% {
    top: var(--shooting-star-end-top);
    right: var(--shooting-star-end-right);
    opacity: 0;
  }
  100% {
    top: var(--shooting-star-end-top);
    right: var(--shooting-star-end-right);
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:target {
  scroll-margin-top: 100vh;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC";
  color: #343434;
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-divider {
  width: 100%;
  height: 2px;
  background: #000;
}

.ft-green-1 {
  color: #0c9e5b;
}

.ft-red-1 {
  color: #FF4848;
}

.ft-red-2 {
  color: #ff0000;
}

.container {
  width: 100%;
  max-width: 1400px;
}
@media (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 95%;
  }
}

.sectionTitle {
  position: relative;
  text-align: center;
  z-index: 2;
  color: #333;
}
.sectionTitle.h2 {
  font-size: clamp(28px, 3vw, 64px);
  color: #008689;
  font-style: italic;
  font-weight: bold;
}
@media (max-width: 380px) {
  .sectionTitle.h2 {
    font-size: 26px;
  }
}
.sectionTitle.h2 span {
  color: #ff4848;
}
.sectionTitle.h3 {
  font-size: clamp(26px, 2.2vw, 40px);
  color: #008689;
}
.sectionTitle.h4 {
  font-size: clamp(20px, 2vw, 36px);
  color: #01a4a7;
}
@media (max-width: 576px) {
  .sectionTitle.h4 {
    font-size: 26px;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.decimal {
  padding: 0;
  margin: 0;
  list-style-type: decimal;
}
.decimal > li {
  padding: 0 0 15px 0;
  margin-left: 20px;
}

.dotList {
  padding: 0;
  margin: 0;
  list-style-type: disc;
}
.dotList > li {
  padding: 0 0 10px 0;
  margin-left: 20px;
}

.list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}

.btn {
  position: relative;
  display: inline-block;
  font-size: 26px;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(rgb(255, 130, 126) 0%, rgb(255, 0, 0) 100%);
  padding: 15px 0;
  min-width: 220px;
  text-align: center;
  border-radius: 99rem;
  box-shadow: 0 14px 12px rgba(3, 110, 103, 0.2);
  transition: transform 0.25s ease;
  letter-spacing: 4px;
}
@media (max-width: 1200px) {
  .btn {
    font-size: 20px;
    padding: 12px 0;
    min-width: 180px;
    letter-spacing: 0;
  }
}
@media (max-width: 576px) {
  .btn {
    min-width: 160px;
  }
}
.btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.btn span {
  position: relative;
}

.btn_animate {
  position: relative;
  border-radius: 99rem;
  display: inline-block;
  overflow: hidden;
}
.btn_animate::before {
  content: "";
  display: inline-block;
  width: 100%;
  padding: 50px 20px;
  opacity: 1;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
  transform-origin: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  animation-delay: 1s;
  animation-name: mask-ani;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transform: rotate(-36deg) translate(0, -300px);
}

@keyframes mask-ani {
  0% {
    transform: rotate(-36deg) translate(0, -300px);
  }
  70%, 100% {
    transform: rotate(-36deg) translate(0, 200px);
  }
}
.sideBarArea {
  position: fixed;
  top: 40%;
  right: -2px;
  font-size: 20px;
  z-index: 88;
}
@media (max-width: 768px) {
  .sideBarArea {
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 20px;
    transform: none;
  }
}
@media (max-width: 768px) {
  .sideBarArea .sideBarList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
  }
}
.sideBarArea .sideBarList li {
  position: relative;
  background: linear-gradient(0deg, rgb(230, 192, 105) 0%, rgb(254, 235, 156) 37%, rgb(247, 223, 142) 60%, rgb(230, 192, 105) 100%);
  color: #452915;
  font-weight: 400;
  padding: 1.2rem 1.15rem;
  list-style: none;
  border-radius: 15px 0 0 15px;
  margin-bottom: 12px;
  transition: transform 0.25s ease;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .sideBarArea .sideBarList li {
    border: 0;
    border-radius: 0;
    text-align: center;
    margin-bottom: 0;
    padding: 20px 0;
    background: linear-gradient(0deg, rgb(253, 230, 138) 0%, rgb(235, 192, 88) 100%);
    box-shadow: 0 -8px 20px rgba(41, 161, 153, 0.3);
  }
}
.sideBarArea .sideBarList li::before {
  content: "";
  position: absolute;
  right: 0;
  top: -116px;
  width: 120px;
  height: 285px;
  background: url("../img/sideBar_star_01.png") no-repeat center/100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sideBarArea .sideBarList li::before {
    display: none;
  }
}
.sideBarArea .sideBarList li:last-child {
  background: linear-gradient(0deg, rgb(51, 214, 191) 0%, rgb(110, 255, 235) 50%, rgb(51, 214, 191) 100%);
}
@media (max-width: 768px) {
  .sideBarArea .sideBarList li:last-child {
    background: linear-gradient(0deg, rgb(0, 233, 206) 0%, rgb(1, 205, 181) 100%);
  }
}
.sideBarArea .sideBarList li:last-child::before {
  right: 20px;
  top: -90px;
  width: 120px;
  height: 285px;
  background: url("../img/sideBar_star_02.png") no-repeat center/100%;
}
@media (max-width: 768px) {
  .sideBarArea .sideBarList li:last-child::before {
    display: none;
  }
}
.sideBarArea .sideBarList li:last-child a {
  color: #006769;
}
.sideBarArea .sideBarList li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #452915;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .sideBarArea .sideBarList li a br {
    display: none;
  }
}
/*# sourceMappingURL=rate-alert.css.map */
