@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
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 {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  color: #444444;
  margin: 0;
  border: 0;
  font-size: 16px;
  overflow-x: hidden;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif, Arial;
  line-height: 1.4;
}

a {
  color: #009891;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.4;
}

:root {
  /* 基礎設定：將原 H1 (2rem, 1.2rem + 4vw, 4rem) 乘以 0.84 */
  /* H1: 手機 27px -> 桌機 54px */
  --h1-size: clamp(1.68rem, 1.01rem + 3.36vw, 3.36rem);
  /* H2: 手機 20px -> 桌機 40px */
  --h2-size: clamp(1.26rem, 0.76rem + 2.52vw, 2.52rem);
  /* H3: 手機 17px -> 桌機 30px */
  --h3-size: clamp(1.05rem, 0.71rem + 1.68vw, 1.89rem);
  /* H4: 手機 15px -> 桌機 23.5px */
  --h4-size: clamp(0.945rem, 0.73rem + 1.05vw, 1.47rem);
  /* H5: 手機 13px -> 桌機 18.5px */
  --h5-size: clamp(0.84rem, 0.71rem + 0.63vw, 1.155rem);
  /* 建議正文基準 (維持約 16px) */
  --p-size: 1rem;
}

/* 應用於 HTML 標籤 */
h1 {
  font-size: var(--h1-size);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: var(--h4-size);
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: var(--h5-size);
  font-weight: 600;
  line-height: 1.4;
  color: #666;
}

.bar {
  /* height: 5px; */
  background: #fff;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media (min-width: 960px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
.container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#ALL_WRAP {
  font-family: "Noto Sans SC", sans-serif, var(--fa-style-family, "Font Awesome 6 Free");
  width: 100%;
  margin: 0 auto;
  position: relative;
}

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

header .container {
  display: flex;
  max-width: 100%;
  width: 100%;
  padding: 6px 35px;
  justify-content: space-between;
  align-items: center;
  background: white;
}

header.active .container {
  padding: 6px 35px;
}

/*-------主視覺--------*/
#Top_bg {
  background: #C7E6E4;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.KV-ara {
  position: relative;
  padding: 30px 0px;
}

.kvTitle {
  align-self: center;
  font-size: clamp(60px, 4.5vw, 120px);
  font-weight: 900;
  color: #2f9f8b;
  color: transparent;
  background-image: linear-gradient(-20deg, #0d7b77 0%, #0d7b77 20%, #13b9b1 50%, #0d7b77 80%, #0d7b77 100%);
  background-clip: text;
  width: 100%;
  visibility: hidden;
  position: relative;
}

.btn_inst {
  background: linear-gradient(rgb(255, 148, 148) 0%, rgb(241, 26, 26) 100%);
  position: relative;
  font-size: 32px;
  font-weight: bolder;
  color: #FFF;
  width: 100%;
  max-width: 280px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  border-radius: 44px 44px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  margin: 1.2vw auto;
}

.btn_inst:hover {
  background: linear-gradient(0deg, rgb(255, 81, 81) 0%, rgb(255, 181, 181) 110%);
  transform: translateY(-5px);
}

.btn_inst a {
  color: #FFFFFF;
}

/*-------end主視覺--------*/
#Part-2 {
  background-color: #13B7B0;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

#info-Part-bg {
  background-color: #13B7B0;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  padding: 20px;
}

/*-------優惠活動--------*/
#Part-1,
#Part-3 {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/Activity-kv.jpg");
}

.lottery {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 3vw;
  flex-direction: column;
}

.Activit-title {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: #13A49D;
  margin-bottom: 20px;
  font-weight: bold !important;
}

.text-ara {
  position: relative;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  padding: 3vw 4vw;
}

.BNT-ara {
  position: relative;
  display: flex;
  width: auto;
  max-width: 75%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.BNT-ara .btn_inst {
  background: linear-gradient(rgb(18, 177, 170) 0%, rgb(16, 147, 140) 100%);
  position: relative;
  font-size: clamp(27px, 2.8vw, 32px);
  font-weight: bolder;
  color: #FFF;
  width: 100%;
  padding: 1.5rem 2.5rem;
  text-align: center;
  border-radius: 44px 44px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  margin: 1.2vw auto;
}

.BNT-ara .btn_inst:nth-child(2) {
  background: linear-gradient(rgb(255, 148, 148) 0%, rgb(255, 26, 26) 100%);
}

.BNT-ara .btn_inst:hover {
  background: linear-gradient(0deg, rgb(18, 177, 170) 0%, rgb(16, 147, 140) 110%);
  transform: translateY(-5px);
}

.BNT-ara .btn_inst:nth-child(2):hover {
  background: linear-gradient(0deg, rgb(255, 81, 81) 0%, rgb(255, 181, 181) 110%);
  transform: translateY(-5px);
}

.content {
  margin: 1rem;
}

.content ul li {
  list-style: none;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: bold;
}

.content ul li span {
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 400;
}

.content ul li::before {
  content: "★";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/*=======優惠活動表格==========*/
.Activity-wrap {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #13B7B0;
  width: 100%;
  margin: 20px auto;
}

.Activity-wrap table {
  font-family: "Oswald", sans-serif;
  border-collapse: separate;
  width: 100%;
  border-spacing: 0;
}

.Activity-wrap table th {
  background-color: #13B7B0;
  color: #ffffff;
  width: 200px;
  height: auto;
  font-size: clamp(20px, 2.8vw, 28px);
}

.Activity-wrap table td {
  background-color: #f3f3f3;
  width: 25vw;
  height: auto;
  padding: 1.5vw;
  text-align: center;
  font-size: clamp(18px, 1.8vw, 24px);
  border-top: 2px solid #13B7B0;
  border-left: 2px solid #13B7B0;
}

.Activity-wrap table td span {
  font-size: 15px;
  font-weight: 400;
}

.Activity-wrap table tr td:first-child {
  border-left: none;
  text-align: center;
}

.Activity-wrap table tr td:last-child {
  text-align: justify;
}

.Activity-wrap table th {
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.Activity-wrap table tr:nth-of-type(1) th {
  border-top: none;
  font-size: 22.7px;
  text-align: center;
}

.Activity-wra tr:first-child th:first-child {
  border-top: none;
  border-left: none;
}

.Activity-wra tr:last-of-type {
  border-bottom: 2px solid #75c6b6;
}

/*-------end優惠活動--------*/
/*-------人氣減碼--------*/
.exchange-title {
  position: relative;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  font-style: italic;
}

/*=======表格==========*/
.wrap {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #FF8888;
  width: 80%;
  margin: 0 auto;
}

table {
  font-family: "Oswald", sans-serif;
  border-collapse: separate;
  width: 100%;
  border-spacing: 0;
}

th {
  background-color: #FF8888;
  color: #ffffff;
  width: 25vw;
  height: auto;
  padding: 20px 0px;
}

td {
  background-color: #f3f3f3;
  width: 25vw;
  height: auto;
  padding: 12px 0px;
  text-align: center;
  font-size: clamp(18px, 2.8vw, 24px);
  border-top: 2px solid #FF8888;
  border-left: 2px solid #FF8888;
}

tr td:first-child {
  border-left: none;
}

th {
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

tr:nth-of-type(1) th {
  border-top: none;
  font-size: clamp(18px, 2.8vw, 24px);
  text-align: center;
}

tr:first-child th:first-child {
  border-top: none;
  border-left: none;
}

tr:last-of-type {
  border-bottom: 2px solid #75c6b6;
}

.exchange-notes {
  position: relative;
  padding-top: 10px;
}

.exchange-notes span {
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 400;
  margin: 0 auto;
  color: white;
}

/*----start輪播圖片-----*/
.Step-title {
  position: relative;
  color: #13a49d;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bolder;
}

/* 基礎設定 */
.Step-ara {
  width: 100%;
  position: relative;
  margin: 20px auto;
  padding: 0 20px;
}

.step-content {
  position: relative;
  margin: 0 10px;
  /* 卡片間距 */
}

.step-content img {
  width: auto;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 100%;
}

/* 步驟標籤文字 */
.step-label {
  position: relative;
  color: #13B7B0;
  padding: 20px 0px;
  font-size: clamp(24px, 2.8vw, 28px);
  font-weight: bold;
}

/* --- 桌機版 (螢幕 > 768px) --- */
@media (min-width: 769px) {
  .step-slider {
    display: flex !important;
    /* 強制並排 */
    justify-content: space-between;
  }
  .step-item {
    width: 33.33%;
    /* 三個步驟平分 */
    outline: none;
  }
  /* 隱藏 Slick 可能產生的箭頭或點點 */
  .slick-arrow,
  .slick-dots {
    display: none !important;
  }
}
/* --- 手機版微調 (螢幕 <= 768px) --- */
@media (max-width: 768px) {
  .step-slider {
    margin: 0 -10px;
    /* 抵銷內部 margin 使邊距一致 */
  }
  /* 讓點點出現在下方 */
  .slick-dots {
    bottom: -40px;
  }
}
/*----end輪播圖片-----*/
.title-smellsize {
  font-size: clamp(20px, 2.4vw, 30px);
}

.Precautions {
  background-color: #f6f6f6;
  padding: 20px 0px;
  position: relative;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.pay-10 {
  color: #3f3f3f;
  line-height: 1.5;
  text-align: justify;
  margin: 0 auto;
  width: 88%;
}

.Note_title {
  margin-left: -20px;
}

.pay-10 > p {
  margin: 0px;
  text-align: justify;
}

.pay-10 ul:last-child li {
  list-style-type: decimal;
}

/*rwd*/
/* 768px 以下的樣式 */
@media all and (max-width: 768px) {
  .pay-10 {
    width: 84%;
  }
}
/* 640px 以下的樣式 */
@media all and (max-width: 640px) {
  #TOP-KV-m {
    display: block;
  }
  #Part-1 {
    margin: 0;
  }
  .lottery {
    width: 100%;
    padding: 6vw 2.4vw;
  }
  .content-1 img,
  .content-2 img {
    max-width: 70%;
  }
  .content-2 {
    right: -10vw;
  }
  .BNT-ara {
    flex-direction: column;
    padding: 10px 0px;
  }
  .BNT-ara .btn_inst {
    margin: 1rem auto;
  }
  .testimonial-item {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  .testimonial-item .text5 {
    margin: 0;
    width: 320px;
    padding: 0px;
    height: 30vw;
    text-align: center;
  }
  .text-ara {
    padding: 24px 20px 24px 35px;
  }
  .content {
    margin: 0;
  }
  .wrap {
    width: 100%;
  }
}
/* 480px 以下的樣式 */
@media all and (max-width: 480px) {
  .content-1,
  .content-2 {
    display: none;
  }
  .testimonial-item .text5 {
    height: 32vw;
  }
}
.fontRed-200 {
  color: #e72929;
}

.custom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.custom-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: 90%;
}

.overlay-text {
  font-size: clamp(24px, 4vw, 72px);
  margin-bottom: 20px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 10%;
}

.overlay-close {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #13A49D;
  color: #ffffff;
  border: none;
  position: relative;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.overlay-close:hover {
  opacity: 1;
  transform: rotate(95deg);
}

.overlay-close::before,
.overlay-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
}

.overlay-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.overlay-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/*# sourceMappingURL=exchange-receive.css.map */
