@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap");
/* ============================================================
   貼紙字外框 mixin
   在字周圍疊出「描邊環」：16 個方向、以 $r 為半徑放一圈同色副本。
   sticker() 疊兩層 —— 白框（上）＋彩色框（下，可再往下位移 $offset）：
     @include sticker;                        // 白框 + 紫框，紫框在白框下方 4px
     @include sticker($r: 5px);               // 外框更粗
     @include sticker($offset: 6px);          // 紫框再往下露出更多
     @include sticker($shadow: #000);         // 換底層外框顏色
     @include sticker($shadow: false);        // 只要白框、不要底層
============================================================ */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans TC", sans-serif;
}

body.active {
  overflow: hidden;
}

.w-100 {
  width: 100% !important;
}

.banner-swiper {
  overflow: hidden;
  position: relative;
}

.banner-swiper .swiper-wrapper {
  align-items: stretch;
}

.banner-swiper .swiper-slide {
  height: auto;
  position: relative;
}

.banner-kv-2 {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../images/banner-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-2-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1440px;
  position: relative;
}

.kv-2-left {
  width: 50%;
  padding-left: 126px;
  position: relative;
  padding-right: 54px;
}
.kv-2-left img {
  max-width: 100%;
}

.kv-2-right {
  width: 50%;
  position: relative;
  padding-right: 54px;
}
.kv-2-right img {
  max-width: 100%;
}

.kv-2-1 {
  width: 493px;
  position: absolute;
  top: 16px;
  right: -16px;
  z-index: 1;
  opacity: 0;
}

.kv-2-2 {
  width: 546px;
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: -44px;
  opacity: 0;
}

.kvplay .kv-2-1 {
  animation: fadeInRight 1s forwards 1s;
}

.kvplay .kv-2-2 {
  animation: fadeInRight 1s forwards 1.2s;
}

.kv-2-tag {
  display: inline-block;
  background-color: #fff;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, calc(100% - 20px) 100%, 100% 0%);
  color: #1E1E1E;
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.02em;
  padding: 0 38px 0 18px;
}

.kv-2-tag span {
  display: inline-block;
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 36px;
  font-weight: 700;
  margin: 0 4px;
}

.kv-2-title {
  display: inline-block;
  color: #FFF;
  font-family: "Albert Sans";
  font-size: 68px;
  font-weight: 700;
  line-height: 86px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  padding: 0 48px;
  background-color: #000;
  white-space: nowrap;
  opacity: 0;
}

.kv-2-sub-title {
  display: inline-block;
  color: #FFF;
  font-family: "Albert Sans";
  font-size: 48px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  padding: 0 32px;
  background-color: #000;
  margin-left: 92px;
  white-space: nowrap;
  opacity: 0;
}

.kvplay .kv-2-title {
  animation: fadeInLeft 1s forwards 0.6s;
}

.kvplay .kv-2-sub-title {
  animation: fadeInLeft 1s forwards 0.8s;
}

.kv-2-sub-title i {
  color: #E1F44B;
}

.kv-2-btn {
  padding-left: 92px;
  padding-top: 16px;
}

.kv-2-check {
  display: inline-block;
  text-decoration: none;
  color: #1E1E1E;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding: 4px 50px 12px 0;
  position: relative;
  background-image: url(../images/check-link.svg), url(../images/check-line.svg);
  background-repeat: no-repeat;
  background-position: top right, bottom left;
  background-size: 42px auto, 90% auto;
}

.kv-2-check:hover {
  opacity: 0.7;
}

.kv2-icon-1 {
  position: absolute;
  top: 40px;
  right: 360px;
  opacity: 0;
}

.kvplay .kv2-icon-1 {
  animation: fadeInRight 1s forwards 0.5s;
}

.kv2-icon-3 {
  width: 270px;
  position: absolute;
  left: 414px;
  top: -70px;
}

.kv2-icon-2 {
  width: 89px;
  position: absolute;
  top: 50%;
  left: 24px;
}

.marquee {
  height: 44px;
  overflow: hidden;
  position: fixed;
  z-index: 9;
  top: 109px;
  left: 0;
  background: #874FFF;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 30px;
  padding: 7px 0;
}

.marquee-track {
  white-space: nowrap;
  height: 30px;
  animation: bg-slider 60s linear infinite;
}

@keyframes bg-slider {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-4004px);
  }
}
.marquee-track span {
  display: inline-flex;
  width: 2002px;
  height: 24px;
  white-space: nowrap;
  text-align: center;
}

.marquee-track i {
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  margin-right: 8px;
  color: #E1F44B;
}

.marquee-track span img {
  width: 22px;
  margin: 0 12px;
  transform: translateY(3px);
}

.red {
  color: #D70C18 !important;
}

.purple {
  color: #874FFF !important;
}

.tab-link {
  display: none !important;
  max-width: 1000px;
  margin: 0 auto;
}

.tab-link.active {
  display: inline-flex !important;
}

small {
  font-size: 85%;
}

.show-xs {
  display: none !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 32px !important;
}

.section-note {
  color: #6B6B6B;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.bg-ball-1 {
  width: 402px;
  height: 402px;
  border-radius: 50%;
  opacity: 0.1;
  background: #874FFF;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  position: absolute;
  top: 230px;
  right: -30px;
}

.bg-ball-2 {
  width: 402px;
  height: 402px;
  border-radius: 50%;
  opacity: 0.1;
  background: radial-gradient(104.17% 104.17% at 20.81% 0%, #D9D9D9 0%, #E1F44B 100%);
  filter: blur(50px);
  -webkit-filter: blur(50px);
  position: absolute;
  top: 50%;
  left: -10px;
}

.bg-ball-3 {
  width: 402px;
  height: 402px;
  border-radius: 50%;
  opacity: 0.1;
  background: #874FFF;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  position: absolute;
  bottom: 101px;
  right: 104px;
}

.section-2-swiper {
  overflow: hidden;
  position: relative;
  margin-top: auto;
}

.benefits-card {
  border-radius: 16px;
  background: #FFF;
  padding: 12px;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.tag-2 {
  position: absolute;
  position: absolute;
  top: -36px;
  right: -30px;
}

.benefits-item {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #E4E4E4;
  padding: 24px 0;
}

.benefits-title {
  color: #4D4D4D;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  width: 206px;
  text-align: center;
}

.benefits-area {
  display: inline-block;
  text-align: left;
}

.benefits-title span {
  display: inline-block;
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  margin-right: 6px;
  font-weight: bolder;
  text-shadow: 4px 0px 0 #fff, 3.696px 1.532px 0 #fff, 2.828px 2.828px 0 #fff, 1.532px 3.696px 0 #fff, 0px 4px 0 #fff, -1.532px 3.696px 0 #fff, -2.828px 2.828px 0 #fff, -3.696px 1.532px 0 #fff, -4px 0px 0 #fff, -3.696px -1.532px 0 #fff, -2.828px -2.828px 0 #fff, -1.532px -3.696px 0 #fff, 0px -4px 0 #fff, 1.532px -3.696px 0 #fff, 2.828px -2.828px 0 #fff, 3.696px -1.532px 0 #fff, 4px 3px 0 #7b5fe7, 3.696px 4.532px 0 #7b5fe7, 2.828px 5.828px 0 #7b5fe7, 1.532px 6.696px 0 #7b5fe7, 0px 7px 0 #7b5fe7, -1.532px 6.696px 0 #7b5fe7, -2.828px 5.828px 0 #7b5fe7, -3.696px 4.532px 0 #7b5fe7, -4px 3px 0 #7b5fe7, -3.696px 1.468px 0 #7b5fe7, -2.828px 0.172px 0 #7b5fe7, -1.532px -0.696px 0 #7b5fe7, 0px -1px 0 #7b5fe7, 1.532px -0.696px 0 #7b5fe7, 2.828px 0.172px 0 #7b5fe7, 3.696px 1.468px 0 #7b5fe7;
}

.benefits-title i {
  display: block;
  margin-top: 8px;
}

.benefits-info {
  flex: 1;
}

.info-list {
  display: flex;
  align-items: flex-end;
  padding: 6px 0;
}

.info-list.fix-1 {
  padding-top: 18px;
}

.info-list.fix-2 {
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: solid 1px #E4E4E4;
}

.list-left {
  width: 172px;
  display: inline-flex;
  align-items: center;
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
}

.chill-text-shadow {
  position: absolute;
  z-index: -1;
  max-width: 164px;
  bottom: -10px;
  animation: markerDraw 1.5s ease-in-out infinite;
  /* 螢光筆由左至右反覆畫出 */
}

/* 劃重點：由左至右畫出 → 停留 → 循環重畫（只從左至右，不做左側裁切）*/
@keyframes markerDraw {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    /* 右側裁掉 → 全隱藏（起點在左）*/
  }
  55%, 100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    /* 55% 前畫到底，之後停留至循環結束 */
  }
}
.list-left i:nth-child(1) {
  display: inline-block;
  width: 110px;
}

.list-left em {
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 0;
  color: #949494;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.list-left span {
  display: inline-block;
  position: relative;
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.list-left span.fix {
  margin-top: 20px;
}

.info-icon {
  vertical-align: middle;
  margin-right: 8px;
}

.list-full {
  color: #1E1E1E;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.list-full span {
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.list-right {
  flex: 1;
  color: #4D4D4D;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-left: 24px;
}

.list-right-text {
  padding-top: 20px;
  color: #874FFF;
}

.benefits-item:last-child {
  border-bottom: none;
  padding-bottom: 12px;
}

.section-2-swipe {
  width: 100%;
  margin-bottom: 12px;
}

.card-img {
  width: 100%;
}

.bottom {
  width: 100%;
  margin-bottom: 48px;
}

.ball-4 {
  position: absolute;
  top: -60px;
  left: 60%;
  z-index: 1;
}

.ball-5 {
  position: absolute;
  bottom: 50%;
  right: -80px;
  z-index: 1;
  opacity: 0.5;
}

.ball-6 {
  position: absolute;
  bottom: 90px;
  left: 0;
  z-index: 1;
}

#section-2 {
  padding: 0 !important;
  background-image: url("../images/section-bg2.png");
  background-size: cover;
}

.section-2-box {
  width: 100%;
  max-width: 1260px;
  padding: 0 30px;
  display: flex;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.spotlight-2 {
  position: absolute;
  top: 0;
  right: -20px;
  width: 470px;
  z-index: -1;
}

.section-2-left {
  width: 376px;
  position: relative;
  z-index: 1;
  padding: 380px 83px 0 47px;
}

.section-2-right {
  padding: 80px 0;
  flex: 1;
}

.swiper-1-out {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.section-1-swiper {
  position: relative;
}

.section-1-btn {
  margin-bottom: 32px;
  text-align: center;
}

#section-1 {
  background-image: url("../images/section-bg.png");
  background-size: cover;
}

.side-btn {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  width: 50px;
  padding: 20px 14px;
  align-items: center;
  display: inline-block;
  position: fixed;
  right: 0;
  bottom: 120px;
  z-index: 9;
  text-decoration: none;
  background-color: #874FFF;
  border-radius: 12px 0 0 12px;
  border-top: 1px solid #E1F44B;
  border-bottom: 1px solid #E1F44B;
  border-left: 1px solid #E1F44B;
}

.side-btn:hover {
  background-color: #A67CFF;
}

.side-btn.fix {
  padding: 32px 14px;
  bottom: 272px;
  z-index: 9;
  background-color: #FF7A1E;
}

.side-btn.fix:hover {
  background-color: #ff8b37;
}

.to-top {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border-radius: 60px;
  border: 1px solid #949494;
  background-image: url(../images/top.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  position: fixed;
  z-index: 9;
  right: 30px;
  bottom: 30px;
}

.banner-text {
  font-family: "Albert Sans";
  color: #1E1E1E;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.4);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInLeft 1s forwards 0.5s;
}

.tag-icon {
  width: 29px;
  margin-right: 4px;
  vertical-align: middle;
}

.tag-icon.fix {
  margin-left: 20px;
}

.banner-sub-title {
  color: #1E1E1E;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.4);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInLeft 1s forwards 0.3s;
}

.banner-sub-title span {
  display: inline-block;
  color: #874FFF;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.4);
  font-family: "Albert Sans";
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

.banner-title {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
  color: #1E1E1E;
  text-shadow: 4.545px 3.409px 0 rgba(255, 255, 255, 0.4);
  font-size: 70px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.4px;
  white-space: nowrap;
  opacity: 0;
  margin-left: -0.1em;
  animation: fadeInLeft 1s forwards 0.1s;
}

.banner-title span {
  display: inline-block;
  margin: 0 12px;
  color: #874FFF;
  text-shadow: 4.545px 3.409px 0 rgba(255, 255, 255, 0.4);
  font-family: "Albert Sans";
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.tag-1 {
  position: absolute;
  bottom: 90%;
  right: 0;
  transform: translateX(80%);
}

.banner {
  background-image: url("../images/banner-bg.png");
  position: relative;
  height: 708px;
  overflow: hidden;
  background-size: cover;
}

.banner-section {
  margin-top: 153px;
  position: relative;
}

.banner-container {
  width: 100%;
  height: 100%;
  max-width: 1260px;
  margin: 0 auto;
  background-image: url(../images/spotline.svg);
  background-repeat: no-repeat;
  background-position: top right 30px;
  background-size: 1329px auto;
  display: flex;
  padding: 0 30px;
}

.banner-info {
  width: 52%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-kv {
  width: 48%;
  display: flex;
  align-items: flex-end;
}

.kv {
  width: 800px;
  margin-left: -24%;
  opacity: 0;
  animation: fadeInRight 1s forwards 0.3s;
}

.ball-1 {
  position: absolute;
  top: -60px;
  right: 50%;
  transform: translateX(-650px);
  z-index: 3;
}

.ball-2 {
  position: absolute;
  bottom: -60px;
  right: 50%;
  transform: translateX(-280px);
  z-index: 3;
}

.ball-3 {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(507px);
  z-index: 3;
}

.scroll {
  height: 120px;
  width: 22px;
  position: absolute;
  bottom: 34px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  text-decoration: none;
}

.scroll i {
  display: inline-block;
  color: #1E1E1E;
  font-family: "Albert Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  transform: rotate(90deg);
}

.scroll span {
  display: inline-block;
  width: 1px;
  height: 68px;
  background-color: #1E1E1E;
}

.text-center {
  text-align: center !important;
}

.tables {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-radius: 8px;
  border-spacing: 0;
  margin-bottom: 8px;
}

.tables td {
  padding: 8px 16px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.tables td span {
  color: #D02025;
}

.tables th {
  padding: 8px 16px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #333;
  border-right: solid 1px #fff;
  width: 33.3%;
  vertical-align: middle;
}

.tables th:last-child {
  border-right: none;
}

.tables .bg-gray {
  background-color: #F5F5F5;
}

.popup-mask {
  width: 100%;
  height: 100dvh;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.popup-mask.active {
  display: flex;
}

.popup-body {
  width: calc(100% - 60px);
  max-width: 680px;
  border-radius: 20px;
  background: #FFF;
  border-top: solid 24px #874FFF;
  padding: 20px 40px;
  opacity: 0;
}

.popup-mask.active .popup-body {
  animation: popup 0.5s forwards 0.1s;
}

@keyframes popup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-head {
  color: #333;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding-right: 36px;
  position: relative;
  padding-bottom: 20px;
}

.close {
  display: inline-block;
  width: 36px;
  position: absolute;
  right: 0;
  top: 0;
}

.close img {
  width: 100%;
}

.popup-content {
  width: 100%;
  max-height: calc(80svh - 120px);
  overflow: auto;
  color: #1B1B1B;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.popup-content h5 {
  color: #874FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.popup-content ol {
  list-style-type: decimal;
  padding-left: 1.6em;
  margin-bottom: 8px;
}

.popup-content a {
  color: #874FFF;
}

.popup-content ol > li > ol {
  list-style-type: lower-alpha;
}

/* .popup-content ol>li>ol.bracket-list {
    list-style-type: none;
    counter-reset: item;
  padding-left: 0;
}
.bracket-list li {
  counter-increment: item;
  margin: 0.5em 0;
}

.bracket-list li::before {
  content: "(" counter(item) ") ";
} */
.popup-content ul {
  list-style-type: disc;
  padding-left: 1.6em;
  margin-bottom: 8px;
}

.pop-note {
  color: #6B6B6B;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.card-row {
  display: flex;
  justify-content: space-between;
}

.card {
  width: calc(50% - 22px);
  border-radius: 16px;
  background: #FFF;
  padding: 44px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.card-title {
  margin-bottom: 12px;
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.card-text {
  margin-bottom: 24px;
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.card-text span {
  display: inline-block;
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.item-col-title {
  color: #1E1E1E;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.item-col-title span {
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.item-col-text {
  color: #4D4D4D;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.item-col-text span {
  display: inline-block;
}

.item-col-text a {
  color: #D70C18;
}

.info {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../images/info.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 4px;
  vertical-align: middle;
  transform: translateY(-1px);
}

.info.fix {
  transform: translateY(-4px);
}

.plan-tag {
  display: inline-flex;
  border-radius: 8px;
  background: #874FFF;
  height: 50px;
  padding: 0 28px;
  align-items: center;
  color: #FFF;
  text-shadow: 0.778px 3.113px 0 rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.plan-tag span {
  display: inline-block;
  color: #E1F44B;
  text-shadow: 0.778px 3.113px 0 rgba(0, 0, 0, 0.25);
  font-family: "Albert Sans";
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 4px;
}

.plan-tag i {
  font-size: 20px;
}

.item-row {
  display: flex;
  flex-wrap: wrap;
}

.item-col {
  width: 50%;
  padding-right: 40px;
  margin-bottom: 12px;
}

.item-col-full {
  width: 100%;
  margin-bottom: 12px;
}

.seven-plan {
  padding: 24px 30px;
  border-radius: 16px;
  background: #FFF;
  margin-bottom: 32px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.plan-item {
  padding: 24px 0 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D2D2D2;
}

.seven-plan .plan-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.search-box {
  width: 100%;
  padding: 0 30px;
  text-align: center;
  position: sticky;
  top: 60px;
  z-index: 9;
  margin-bottom: 32px;
}

.search-box.active {
  background-color: #fff;
  border-bottom: 1px solid #949494;
}

.search-box.fix {
  position: fixed;
  left: 0;
}

.tabs-sticky {
  width: 100%;
  text-align: center;
  position: sticky;
  top: 108px;
  z-index: 9;
  margin-bottom: 32px;
}

.tabs-sticky.active {
  background-color: #F5F5F5;
}

.search {
  width: 100%;
  max-width: 1100px;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #949494;
  background-color: #FFF;
  padding-left: 52px;
  padding-right: 24px;
  outline: none;
  color: #1B1B1B;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background-image: url(../images/search.svg);
  background-repeat: no-repeat;
  background-position: center left 24px;
}

.search-box.active .search {
  border: none;
}

.search::placeholder {
  color: #949494;
}

.search-note {
  color: #4D4D4D;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.48px;
  margin-bottom: 32px;
}

.search-note.fix {
  color: #949494;
  text-align: justify;
  margin-bottom: 0;
  padding-top: 36px;
}

.search-btn {
  text-align: center;
  margin-bottom: 32px;
}

.level-btn {
  text-align: center;
}

.level-card {
  border-radius: 16px;
  background: #FFF;
  position: relative;
  z-index: 1;
  padding: 16px 24px 0 24px;
  margin-bottom: 32px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.level-ball {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #E1F44B;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #1E1E1E;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.level-ball.fix {
  background-color: #874FFF;
  color: #fff;
}

.num {
  font-family: "Albert Sans";
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 4px;
}

.level-text {
  color: #4D4D4D;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.level-title {
  color: #1E1E1E;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.level-title span {
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.tri {
  width: 20px;
  margin-bottom: 12px;
}

.level-box {
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto;
}

.level-left,
.level-right {
  width: calc(50% - 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.check-card {
  border-radius: 16px 16px 0 0;
  background: #4D4D4D;
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 12px 24px;
}

.check-card.fix {
  border-radius: 0;
}

.check-card.fix-1 {
  background: #874FFF;
}

.check-card-info {
  display: flex;
}

.check-card-info span:nth-child(1) {
  width: 24px;
}

.check-card-info span:nth-child(2) {
  padding-left: 8px;
  flex: 1;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.bar-box {
  border-radius: 50px;
  background-color: #FFF;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.bar-left {
  display: inline-flex;
}

.bar-icon {
  width: 35px;
  margin-right: 12px;
}

.bar-left h5 {
  color: #4D4D4D;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.bar-left h5 span {
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bar-right {
  display: inline-block;
}

.info-card {
  border-radius: 16px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  padding: 24px;
}

.info-btn {
  color: #1B1B1B;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.info-btn img {
  width: 24px;
  transform-origin: center center;
  transform: rotate(0);
  transition: all 0.5s;
}

.info-card.active .info-btn img {
  transform: rotate(180deg);
}

.info-content {
  color: #1B1B1B;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.info-card.active .info-content {
  max-height: 300vh;
}

.info-content h5 {
  font-weight: 500;
}

.space {
  display: block;
  height: 20px;
}

.info-content ol {
  padding-left: 2em;
  list-style-type: decimal;
  margin-bottom: 8px;
}

.note {
  color: #4D4D4D;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.48px;
  padding-left: 2rem;
}

.button_container {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 13px 20px 13px 30px;
  border-radius: 50px;
  background: #874FFF;
}

.btn span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/btn.svg);
  background-size: cover;
  margin-left: 4px;
}

.btn:hover {
  background: #A67CFF;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  color: #874FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
}

.link-btn span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/link.svg);
  background-size: cover;
  margin-left: 4px;
}

.link-btn:hover {
  color: #A67CFF;
}

.link-btn:hover span {
  background-image: url(../images/link-1.svg);
}

.card-icon-box {
  color: #C82525;
  font-family: "Albert Sans";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-icon {
  width: 24px;
  margin-right: 6px;
}

.swiper-card-date {
  color: #949494;
  font-family: "Albert Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.swiper-card-text {
  font-size: 18px;
  color: #1E1E1E;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  height: 54px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-card-text.fix {
  height: auto;
  min-height: 3em;
  text-align: center;
  margin-bottom: 10px;
  display: block;
  -webkit-line-clamp: none;
}

.swiper-card-text span {
  color: #874FFF;
}

.swiper-card-price {
  color: #6B6B6B;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  height: 22px;
}

.swiper-card-link {
  padding-top: 12px;
  border-top: solid 1px #E4E4E4;
  text-align: center;
}

#section-4 {
  background: url("../images/section-bg2-1.png");
  background-size: cover;
  position: relative;
}

#section-6 {
  background: url("../images/section-bg.png");
  background-size: cover;
  position: relative;
}

#section-7 {
  background: url("../images/section-bg3.png");
  background-size: cover;
  position: relative;
  background-position: center center;
}

.container-box {
  width: 100%;
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.swiper-out-box {
  position: relative;
}

.section-1-swiper,
.section-4-swiper,
.section-6-swiper {
  padding-bottom: 42px;
}

.swiper-card {
  border-radius: 12px;
  background-color: #FFF;
  padding: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
}

.swiper-card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.button-next {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1B1B1B;
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  right: -74px;
  margin-top: -46px;
  cursor: pointer;
  z-index: 9;
}

.button-next:hover,
.button-prev:hover {
  background-color: #874fff;
}

.button-prev {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1B1B1B;
  background-image: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  left: -74px;
  margin-top: -46px;
  cursor: pointer;
  z-index: 9;
}

.button-next.swiper-button-disabled,
.button-prev.swiper-button-disabled {
  cursor: default;
  background-color: rgba(27, 27, 27, 0.5);
  pointer-events: none;
}

.button-prev.fix,
.button-next.fix {
  display: none;
}

.tab-1-swiper,
.tab-2-swiper,
.tab-3-swiper {
  padding-bottom: 40px;
}

.swiper-pagination-bullet-active {
  background: #874FFF;
  width: 26px;
  border-radius: 8px;
}

/* 首頁 banner 分頁：移到左側、直向排列（與 .scroll 同樣 left: 40px） */
.banner-swiper .swiper-pagination {
  left: 40px;
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  display: block;
}

/* 直向膠囊：作用中的點改為「上下長」而非「左右長」 */
.banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 8px;
  height: 26px;
  border-radius: 8px;
}

.swiper-box {
  padding: 0 12%;
}

.tab-box {
  position: relative;
}

.tab-content,
.tab-table {
  display: none;
  position: relative;
}

.tab-content.active,
.tab-table.active {
  display: block;
}

.app-img {
  width: 100%;
  margin-bottom: 16px;
}

.swiper-box p {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  font-weight: 500;
  line-height: 1.8;
  color: #1E1E1E;
}

.tab-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 48px;
}

.tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #c9c9c9;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tab-menu li,
.tabs-nav li {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1px;
}

.tab-menu li a {
  position: relative;
  padding-bottom: 16px;
  padding-left: 0.1em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.1em;
  color: #b3b3b3;
  transition: color 0.3s;
  text-decoration: none;
}

.tabs-nav li a {
  display: block;
  width: 100%;
  position: relative;
  padding: 20px 10px 24px 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  color: #b3b3b3;
  transition: color 0.3s;
  text-decoration: none;
}

.tab-menu li a.active,
.tabs-nav li a.active {
  color: #1E1E1E;
}

.tab-menu li a.active:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-size: 50%;
  background-image: linear-gradient(90deg, #b492fe 0%, #b492fe 30%, #874FFF 55%, #874FFF 85%, #b492fe 100%);
  background-repeat: repeat;
  animation: bg_move 1s infinite linear;
}

.tabs-nav li a.active::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-size: 50%;
  background-color: #D02025;
}

@keyframes bg_move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.section-title {
  color: #1E1E1E;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.28em;
  position: relative;
  z-index: 1;
  font-family: "Albert Sans";
  width: fit-content;
  margin: 0 auto 8px;
}
.section-title::before, .section-title::after {
  content: "";
  background-image: url("../images/text-icon.svg");
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section-title::before {
  left: -42px;
}
.section-title::after {
  right: -30px;
}
.section-title.fix {
  margin-right: auto;
  margin-left: 80px;
}
.section-title.icon-orange::before, .section-title.icon-orange::after {
  background-image: url("../images/text-icon2.svg");
}
.section-title.icon-pink::before, .section-title.icon-pink::after {
  background-image: url("../images/text-icon3.svg");
}
.section-title.no-icon::before, .section-title.no-icon::after {
  display: none;
}
.section-title.icon-end::before, .section-title.icon-end::after {
  transform: translateY(-30%);
}

.section-title span {
  display: inline-block;
  position: relative;
  color: #1E1E1E;
  /* 黑字（最上層）*/
  /* 白框 + 紫框（紫框在白框下方 4px），順序由 mixin 內部處理 */
  text-shadow: 4px 0px 0 #fff, 3.696px 1.532px 0 #fff, 2.828px 2.828px 0 #fff, 1.532px 3.696px 0 #fff, 0px 4px 0 #fff, -1.532px 3.696px 0 #fff, -2.828px 2.828px 0 #fff, -3.696px 1.532px 0 #fff, -4px 0px 0 #fff, -3.696px -1.532px 0 #fff, -2.828px -2.828px 0 #fff, -1.532px -3.696px 0 #fff, 0px -4px 0 #fff, 1.532px -3.696px 0 #fff, 2.828px -2.828px 0 #fff, 3.696px -1.532px 0 #fff, 4px 4px 0 #7b5fe7, 3.696px 5.532px 0 #7b5fe7, 2.828px 6.828px 0 #7b5fe7, 1.532px 7.696px 0 #7b5fe7, 0px 8px 0 #7b5fe7, -1.532px 7.696px 0 #7b5fe7, -2.828px 6.828px 0 #7b5fe7, -3.696px 5.532px 0 #7b5fe7, -4px 4px 0 #7b5fe7, -3.696px 2.468px 0 #7b5fe7, -2.828px 1.172px 0 #7b5fe7, -1.532px 0.304px 0 #7b5fe7, 0px 0px 0 #7b5fe7, 1.532px 0.304px 0 #7b5fe7, 2.828px 1.172px 0 #7b5fe7, 3.696px 2.468px 0 #7b5fe7;
}

.section-title i {
  font-family: "Albert Sans";
  font-size: 70px;
  color: #874FFF;
  line-height: 1;
  font-weight: bolder;
}

.section-sub-title {
  color: #4D4D4D;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.section-sub-title span {
  color: #874FFF;
  font-family: "Albert Sans";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#section-2-1 {
  background-image: url("../images/section-bg2-1.png"), linear-gradient(96.06deg, #E6E6E6 2.7%, #F4F4F4 17.5%, #F9F9F9 49.9%, #FDFDFD 72.33%);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, 0 0;
  background-size: 100% auto, auto;
  overflow: visible !important;
}
@media (max-width: 1024px) {
  #section-2-1 {
    background: linear-gradient(96.06deg, #E6E6E6 2.7%, #F4F4F4 17.5%, #F9F9F9 49.9%, #FDFDFD 72.33%);
  }
}

/* ============================================================
   chill 刷 標頭（search-area 上方）
   star.svg 是白色 → 需要桃紅底才浮得出來
============================================================ */
.chill-head {
  text-align: center;
  padding: 28px 20px 24px;
  background: #FF6AB1;
  border-radius: 64px 64px 0 0;
  height: 120px;
  position: relative;
  border: 4px solid #FF6AB1;
}
@media (max-width: 1024px) {
  .chill-head {
    margin-top: 60px;
    height: 100px;
  }
}

.chill-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chill-logo {
  display: block;
  width: 247px;
  height: auto;
  position: absolute;
  top: -44px;
}
@media (max-width: 1024px) {
  .chill-logo {
    width: 200px;
  }
}

.chill-star {
  width: 30px;
  height: auto;
  position: absolute;
  right: -30px;
  top: -28px;
}

.chill-star--r {
  align-self: flex-end;
}

.chill-date {
  display: inline-block;
  margin-top: 44px;
  padding: 6px 18px;
  background: white;
  color: #874FFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transform: rotate(-4deg);
  position: relative;
}
@media (max-width: 1024px) {
  .chill-date {
    margin-top: 22px;
  }
}

/* chill 刷 分類表：沿用 .seven-plan / .plan-item 結構，改成桃紅主題 */
.chill-plan {
  border-radius: 0 0 16px 16px;
  border: 6px solid #FF6AB1;
  padding: 0 24px;
  box-shadow: none;
}
.chill-plan .plan-tag {
  background: #FF6AB1;
}
.chill-plan .item-col-title span {
  color: #FF3D9C;
}

.section-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#section-3 {
  background-image: url("../images/section-bg3.png");
  background-size: cover;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#section-5 {
  background-image: url("../images/section-bg2.png");
  background-size: cover;
}

footer {
  background-color: #EBEBEB;
  text-align: center;
}

.footer-box {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  text-align: left;
}

.footer-box h5 {
  display: inline-block;
  color: #343434;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-text {
  display: inline-block;
  color: #343434;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 24px;
}

.copy-right {
  background: #D70C18;
  overflow: hidden;
}

.footer-row {
  width: 100%;
  max-width: 1260px;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 30px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  padding-right: 30px;
  text-align: left;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-right {
  height: 56px;
  padding-left: 35px;
  width: 423px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-right::after {
  content: "";
  height: 100%;
  width: 400%;
  background: #DEDEDE;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-right img {
  width: 148px;
}

header {
  width: 100%;
  background-color: #D70C18;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.navbar {
  height: 60px;
  padding: 0 40px;
  max-width: 1280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.logo {
  display: inline-block;
}

.logo img {
  width: auto;
  height: 24px;
}

.menu {
  display: inline-flex;
}

.menu li {
  display: inline-block;
  padding: 0 16px;
  position: relative;
}

.menu li::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.menu li:last-child {
  padding-right: 0;
}

.menu li:last-child:after {
  display: none;
}

.menu li a {
  display: block;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 26px;
  text-decoration: none;
}

.ball-7 {
  width: 134px;
  position: absolute;
  top: -5px;
  left: -30px;
}

.ball-8 {
  width: 165px;
  position: absolute;
  top: 250px;
  right: 30px;
  z-index: 3;
}

.ball-9 {
  width: 105px;
  position: absolute;
  bottom: 80px;
  left: 110px;
}

sm {
  font-size: 18px !important;
}

@media (max-width: 1440px) {
  .navbar {
    padding: 0 32px;
  }
}
@media (max-width: 1240px) {
  .button-next {
    right: -25px;
  }
  .button-prev {
    left: -25px;
  }
  .kv2-icon-3 {
    left: 312px;
  }
  .kv2-icon-2 {
    width: 89px;
    position: absolute;
    top: 50%;
    left: -78px;
  }
}
@media (max-width: 1024px) {
  /* 非桌機（含平板/手機）隱藏首頁 banner 分頁 */
  .banner-swiper .swiper-pagination {
    display: none;
  }
  .kv-2-right,
  .kv-2-left {
    flex: 1 1 0;
    /* 兩張 gif 各分一半高度 */
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .kv-2-right img,
  .kv-2-left img {
    /* 依可用空間等比縮放、完整呈現、不裁切 */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .kv-2-container {
    flex-direction: column;
    height: 100%;
    gap: 2%;
  }
  .kv-2-left {
    padding-top: 40px;
  }
  .tabs-sticky {
    top: 102px;
  }
  .copy-right {
    background: #D70C18;
    overflow: hidden;
  }
  .footer-row {
    height: auto;
    padding: 10px;
    margin: 0 auto;
  }
  .footer-left {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .footer-right {
    display: none;
  }
  .search-box {
    padding: 0 30px;
    top: 53px;
  }
  .ball-7 {
    width: 134px;
    position: absolute;
    top: -40px;
    left: -60px;
  }
  .ball-8 {
    width: 84px;
    position: absolute;
    top: 50%;
    right: -20px;
    z-index: 0;
  }
  .ball-9 {
    bottom: 86px;
    left: -26px;
  }
  .bg-ball-1 {
    width: 207px;
    height: 207px;
    top: 212px;
    right: -103px;
  }
  .bg-ball-2 {
    display: none;
  }
  .bg-ball-3 {
    width: 207px;
    height: 207px;
    bottom: 0;
    right: -70px;
  }
  .section-2-left {
    display: none;
  }
  .ball-4 {
    width: 134px;
    top: -60px;
    left: auto;
    right: -65px;
  }
  .ball-5 {
    width: 140px;
    bottom: 46%;
    right: -50px;
  }
  .ball-6 {
    width: 105px;
    bottom: 20px;
    left: -20px;
  }
  .button_container {
    display: inline-block;
    position: absolute;
    top: 17.5px;
    right: 20px;
    height: 18px;
    width: 24px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
  }
  .button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    width: 100%;
  }
  .button_container.active .middle {
    opacity: 0;
  }
  .button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    width: 100%;
  }
  .button_container span {
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    transition: all 0.35s ease;
    background-color: #fff;
  }
  .button_container span:nth-of-type(2) {
    top: 8px;
    width: 100%;
  }
  .button_container span:nth-of-type(3) {
    top: 16px;
  }
  .menu-box span {
    margin-top: 20px;
    display: block;
    padding: 20px 0;
    background-color: #eeeeee;
    text-align: center;
    width: 100%;
  }
  .menu-box {
    width: 100%;
    height: calc(100dvh - 53px);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
  }
  .menu-box.active {
    max-height: 100vh;
  }
  .menu {
    display: flex;
    flex-direction: column;
    padding-top: 44px;
    width: 100%;
  }
  .menu li {
    display: block;
    padding: 0;
    margin: 0;
  }
  .menu li::after {
    display: none;
  }
  .menu li a {
    width: 100%;
    text-align: center;
    display: block;
    color: #888;
    font-size: 16px;
    line-height: 1.1;
    padding: 24px;
    border-bottom: none;
    text-align: center;
  }
  .menu li a.active {
    color: #D02025;
  }
  .navbar {
    padding: 0 20px;
    height: 53px;
    justify-content: center;
  }
  .banner {
    /* 固定 header+搜尋+跑馬燈共佔 138px（= .banner-section margin-top），
       讓「Header 頂 → banner-container 底」剛好等於一個動態視窗高(100dvh) */
    height: calc(100vh - 138px);
    height: calc(100dvh - 138px);
  }
  .banner-section {
    margin-top: 138px;
  }
  .banner-container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    background-image: url(../images/spotline-1.svg);
    background-size: 100% auto;
    flex-direction: column;
  }
  .banner-info {
    width: 100%;
    height: auto;
    padding-top: 80px;
    align-items: center;
    flex: 0 0 auto;
    /* 文字取自然高度，不壓縮 */
  }
  .banner-kv {
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .banner-kv img {
    width: 160%;
    max-width: none;
    position: absolute;
    bottom: 0;
  }
  .kv {
    /* object-fit: contain → 依高度等比縮放、完整呈現、永不裁切 */
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-left: 0;
  }
  .ball-1 {
    width: 68px;
    position: absolute;
    top: 50%;
    right: auto;
    transform: translateX(0);
    margin: -34px;
    left: 0;
    z-index: 3;
  }
  .ball-2 {
    width: 90px;
    position: absolute;
    bottom: 40%;
    right: -40px;
    transform: translateX(0);
    z-index: 3;
  }
  .ball-3 {
    width: 82px;
    position: absolute;
    top: auto;
    bottom: -40px;
    left: 40px;
    transform: translateX(0);
    z-index: 3;
  }
  .card {
    width: calc(50% - 16px);
    padding: 24px;
  }
  .marquee {
    height: 36px;
    z-index: 9;
    top: 102px;
    font-size: 16px;
    line-height: 30px;
    padding: 3px 0;
  }
  .marquee-track {
    white-space: nowrap;
    height: 30px;
    animation: bg-slider 60s linear infinite;
  }
  @keyframes bg-slider {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-3684px);
    }
  }
  .marquee-track span {
    display: inline-flex;
    width: 1842px;
    height: 24px;
    white-space: nowrap;
    text-align: center;
  }
  .marquee-track i {
    font-size: 18px;
  }
  .marquee-track span img {
    width: 22px;
    margin: 0 12px;
    transform: translateY(3px);
  }
}
@media (max-width: 768px) {
  .kv-2-container {
    justify-content: center;
  }
  .kv-2-left {
    padding-top: 10px;
  }
  .kv-2-right img,
  .kv-2-left img {
    max-width: 100%;
  }
  .button-prev.fix,
  .button-next.fix {
    display: inline-block;
  }
  .banner-text {
    color: #1E1E1E;
    text-shadow: 1.706px 1.706px 0 rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-bottom: 0;
  }
  .tag-icon {
    width: 17px;
    margin-right: 3px;
  }
  .banner-sub-title {
    text-shadow: 1.706px 1.706px 0 rgba(255, 255, 255, 0.4);
    font-size: 20px;
    margin-bottom: 12px;
  }
  .banner-sub-title span {
    text-shadow: 1.706px 1.706px 0 rgba(255, 255, 255, 0.4);
    font-size: 40px;
  }
  .banner-title {
    margin-bottom: 8px;
    text-shadow: 2.584px 1.938px 0 rgba(255, 255, 255, 0.4);
    font-size: 40px;
    letter-spacing: 0.8px;
  }
  .banner-title span {
    margin: 0 8px;
    text-shadow: 2.584px 1.938px 0 rgba(255, 255, 255, 0.4);
    font-size: 47px;
  }
  .tag-1 {
    width: 150px;
    position: absolute;
    bottom: 90%;
    right: 0;
    transform: translateX(80%);
  }
  .card-row {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: -20px;
  }
  .card {
    width: 100%;
    padding: 24px;
    margin-bottom: 20px;
  }
  .card-title {
    margin-bottom: 4px;
    font-size: 20px;
  }
  .card-text {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .bar-box {
    border-radius: 20px;
    padding: 16px 8px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .bar-left {
    display: flex;
    margin-bottom: 8px;
  }
  .bar-icon {
    width: 28px;
    margin-right: 0;
  }
  .bar-left h5 {
    font-size: 16px;
    padding-left: 4px;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  .bar-left h5 span {
    font-size: 17px;
  }
  .bar-right {
    width: 100%;
    display: block;
    padding: 0;
    text-align: right;
  }
  .level-card {
    padding: 20px 20px 0 20px;
  }
  .level-left,
  .level-right {
    width: calc(50% - 7px);
  }
  .level-ball {
    width: 48px;
    height: 48px;
    font-size: 10px;
    margin-bottom: 8px;
  }
  .num {
    font-size: 20px;
    margin-top: 2px;
  }
  .level-text {
    font-size: 14px;
    white-space: nowrap;
  }
  .level-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .level-title span {
    font-size: 28px;
  }
  .tri {
    width: 15px;
    margin-bottom: 8px;
  }
  .check-card {
    padding: 12px;
  }
  .check-card-info span:nth-child(1) {
    width: 18px;
  }
  .check-card-info span:nth-child(1) img {
    width: 18px;
  }
  .check-card-info span:nth-child(2) {
    padding-left: 6px;
    font-size: 14px;
  }
  .item-col {
    width: 100%;
    padding-right: 0;
  }
  .tab-box {
    padding: 0 30px;
  }
  .benefits-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .benefits-title {
    font-size: 18px;
    width: 100%;
    text-align: left;
    padding-bottom: 12px;
  }
  .benefits-title i {
    display: inline-block;
    margin-top: 0;
  }
  .benefits-title span {
    font-size: 48px;
    margin-right: 6px;
  }
  .info-list {
    align-items: center;
  }
  .list-left {
    width: 152px;
    font-size: 16px;
  }
  .list-left i:nth-child(1) {
    width: 100px;
  }
  .list-right {
    padding-left: 12px;
  }
  .info-list.fix-3 {
    padding-top: 6px;
  }
}
@media (max-width: 540px) {
  .banner-kv img {
    width: 180%;
    bottom: -2%;
  }
  .kv-2-container {
    justify-content: center;
    padding-bottom: 50px;
  }
  .kv-2-left {
    padding-top: 10px;
  }
  .kv-2-right img,
  .kv-2-left img {
    max-width: 90%;
  }
  .item-col-title span {
    letter-spacing: 0.01em;
  }
  .info.fix {
    margin-left: 2px;
  }
  .popup-content {
    max-height: calc(80svh - 165px);
  }
  .tag-icon.fix {
    margin-left: 10px;
  }
  .close {
    display: inline-block;
    width: 36px;
    position: absolute;
    right: 0;
    top: 0;
    position: absolute;
    top: -90px;
    background-color: #fff;
    right: -20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    padding: 6px;
  }
  .section-2-right {
    padding: 60px 0;
    width: 100%;
  }
  .section-2-box {
    padding: 0 20px;
  }
  .tag-2 {
    width: 120px;
    top: -26px;
    right: -20px;
  }
  .swiper-card-date {
    letter-spacing: 0.03em;
  }
  .section-1-swiper {
    width: 240px;
    margin: 0 auto;
  }
  .tag-1 {
    width: 120px;
    bottom: 96%;
    transform: translateX(60%);
  }
  .banner-container {
    padding: 0 20px;
  }
  .scroll {
    height: 110px;
    bottom: 20px;
    left: 10px;
  }
  .scroll i {
    font-size: 12px;
  }
  .kv {
    width: auto;
    /* 沿用 ≤1024 的 object-fit 縮放，不再鎖固定寬 */
  }
  .banner-info {
    padding-top: 80px;
    max-width: 320px;
    margin: 0 auto;
  }
  .popup-body {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .popup-head {
    font-size: 20px;
    padding-right: 0;
  }
  .swiper-box {
    padding: 0;
    width: 240px;
    margin: 0 auto;
  }
  .section-4-swiper,
  .section-6-swiper {
    margin: 0 auto;
    width: 240px;
  }
  .button-prev {
    width: 40px;
    height: 40px;
    left: -10px;
  }
  .button-next {
    width: 40px;
    height: 40px;
    right: -10px;
  }
  .tab-box {
    padding: 0 20px;
  }
  .plan-tag {
    padding: 0 18px;
    font-size: 20px;
  }
  .seven-plan {
    padding: 12px;
  }
  .plan-item {
    padding: 0 0 8px;
  }
  .search-note,
  .search-btn {
    margin-bottom: 20px;
  }
  .container-box {
    padding: 0 20px;
  }
  section {
    padding: 60px 0;
  }
  .swiper-card {
    padding: 12px;
  }
  .swiper-card-text {
    font-size: 16px;
    height: 72px;
    -webkit-line-clamp: 3;
  }
  .swiper-box p {
    font-size: 16px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-sub-title {
    font-size: 20px;
  }
  .tab-menu {
    padding: 0 10px;
    margin-bottom: 32px;
  }
  .tab-menu li a {
    font-size: 14px;
  }
  .footer-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px;
  }
  .footer-box h5 {
    width: 100%;
    display: block;
    text-align: center;
  }
  .footer-text {
    padding-left: 0;
    padding-top: 24px;
  }
  .hide-xs {
    display: none !important;
  }
  .show-xs {
    display: block !important;
  }
  .popup-content h5 {
    font-size: 16px;
  }
  .copy-right {
    padding: 10px 10px 60px;
  }
  .side-btn {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    padding: 0;
    bottom: 0;
  }
  .side-btn.fix {
    right: auto;
    left: 0;
    padding: 0;
    bottom: 0;
  }
  .to-top {
    width: 48px;
    height: 48px;
    right: 10px;
    bottom: 60px;
  }
  .search-box {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .info-btn {
    font-size: 18px;
  }
  .tabs-nav li a {
    padding: 10px 10px 14px;
    font-size: 14px;
  }
  .search-note.fix {
    padding-top: 20px;
  }
}
@media (max-width: 430px) {
  .list-right-text {
    padding-top: 4px;
  }
}
