@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "Noto Sans TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black", sans-serif;
  text-align: justify;
}

* {
  max-height: 99999px;
}

/* header */
.navbar-nav {
  flex-grow: 1;
  justify-content: end;
}

/* root */
:root {
  --swiper-theme-color: #198754;
  --rwd-60px: 60px;
  --rwd-75px: 75px;
  --img-200: 200px;
}

@media (max-width: 1399px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
    --img-200: 75%;
  }
}
@media (max-width: 1024px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
  }
}
@media (max-width: 768px) {
  :root {
    --rwd-60px: 36px;
    --rwd-75px: 48px;
  }
}
@media (max-width: 575px) {
  :root {
    --rwd-75px: 40px;
    --rwd-60px: 32px;
  }
}
/*
@media (max-width: 480px) {
    :root{

    }
} */
@media (max-width: 320px) {
  :root {
    --rwd-75px: 11.12vw;
    --rwd-60px: 5.6vw;
  }
}
/* 通用 */
.hover-img {
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul.ul-reset {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.img {
  max-width: 100%;
}

.hover-bigger:hover {
  transform: scale(1.1);
}

.hover-smaller:hover {
  transform: scale(0.95);
}

.tr-1 {
  transition: all 1s ease;
}

.tr-5 {
  transition: all 0.5s ease;
}

/* fixed */
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #f1f2f3;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.go-top {
  border: 0;
  background: none;
  bottom: 3vw;
  right: 30px;
  z-index: 999;
}

.go-top img {
  width: 5vw;
  height: auto;
}
@media (max-width: 1440px) {
  .go-top img {
    width: 5vw;
  }
}
@media (max-width: 991px) {
  .go-top img {
    width: 7vw;
  }
}
@media (max-width: 767px) {
  .go-top img {
    width: 12vw;
  }
}
@media (max-width: 576px) {
  .go-top img {
    width: 15vw;
  }
}

.buy-now {
  width: 7.5vw;
  position: fixed;
  z-index: 999;
  bottom: 120px;
  right: 30px;
  transition: all 0.5s ease-in-out;
  animation: buy-now 2s infinite;
}
@media (max-width: 1440px) {
  .buy-now {
    width: 9vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 991px) {
  .buy-now {
    width: 12vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .buy-now {
    width: 15vw;
    bottom: 90px;
    right: 30px;
  }
}
@media (max-width: 576px) {
  .buy-now {
    width: 21vw;
    bottom: 60px;
    right: 30px;
  }
}

@keyframes buy-now {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}
/*
@media (max-width: 320px) {

    #menu{

    }
}
*/
/* 內容區塊通用 */
.section-block {
  padding: var(--rwd-75px) 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1440px) {
  .section-block {
    padding: var(--rwd-60px) 0;
  }
}
/* menu */
.menu {
  position: absolute;
  z-index: 99;
  width: 100%;
  margin-top: 1.5vw;
}
@media (max-width: 991px) {
  .menu {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .menu.show-menu {
    position: fixed;
  }
}
@media (max-width: 575px) {
  .menu > div {
    padding-top: 2.5vw;
  }
}

.nav-link {
  font-weight: bold;
  font-size: 20px;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item a {
  color: #000;
  font-weight: bold;
  font-size: 1.5vw;
  text-align: center;
  margin: 0 8px;
  padding: 0px 8px;
  text-decoration: none;
  display: block;
  background-color: #fff;
  border: 2px solid #000;
}
.nav-item a:hover {
  color: #fff;
  font-weight: 500;
  background-color: #000;
}
@media (max-width: 1440px) {
  .nav-item a {
    font-size: 20px;
    margin: 0 8px;
    padding: 0 2px;
  }
}
@media (max-width: 991px) {
  .nav-item a {
    font-size: 16px;
    margin: 0 8px;
    padding: 0 2px;
  }
}
@media (max-width: 767px) {
  .nav-item a {
    font-size: 18px;
    margin: 0 8px;
    padding: 0 2px;
  }
}

.logos {
  display: flex;
  align-items: flex-start;
}
.logos a {
  display: block;
}

.logos img {
  width: auto;
  height: 3.25vw;
  margin-left: 0vw;
}
@media (max-width: 991px) {
  .logos img {
    width: auto;
    height: 4.5vw;
    margin-left: 0vw;
  }
}
@media (max-width: 575px) {
  .logos img {
    height: 10vw;
    margin-left: 1vw;
  }
}

@media (max-width: 767px) {
  .menu-nav > ul {
    border-radius: 36px;
    padding: 7vw 0.35vw;
  }
}

@media (max-width: 991px) {
  .nav-item:not(:last-child) {
    border-bottom: none;
  }
}

.menu-btn img {
  display: block;
  padding: 0.5vw;
  width: 5vw;
  height: auto;
}
@media (max-width: 767px) {
  .menu-btn img {
    width: 7.5vw;
  }
}
@media (max-width: 575px) {
  .menu-btn img {
    width: 11vw;
  }
}
.menu-btn div {
  background-image: url("../images/menu-icon.png");
  background-size: cover;
  width: 3.5vw;
  height: 3.5vw;
  margin-right: 1.5vw;
}
@media (max-width: 575px) {
  .menu-btn div {
    width: 8vw;
    height: 8vw;
    margin-right: 1vw;
  }
}

.show-menu .menu-btn div {
  background-image: url("../images/menu-close.png");
}

.menu-link ul {
  display: flex;
  align-items: center;
}

/* TODO: MENU RWD */
@media (max-width: 767px) {
  .menu.menu-add-bg {
    top: 0px;
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .nav-item a {
    padding: 8px;
  }
  .menu-link {
    position: fixed;
    top: 0px;
    right: 0;
    width: 27%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: rgba(255, 255, 255, 0.7019607843);
    transform: translateX(100%);
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .menu-link {
    width: 50%;
  }
}
@media (max-width: 767px) and (max-width: 575px) {
  .menu-link {
    width: 100%;
    padding-top: 12vw;
  }
}
@media (max-width: 767px) {
  .show-menu .menu-link {
    transform: translateX(0%);
  }
  .menu-link ul {
    flex-direction: column;
    padding-top: 54px;
    padding-bottom: 16px;
  }
}
.sw-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.swiper-add-arrows {
  position: relative;
  width: 64%;
  margin: auto;
}

.swiper-add-arrows .swiper-button-next, .swiper-add-arrows .swiper-button-prev {
  opacity: 0;
  z-index: -99;
}

.arr-left, .arr-right {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  width: 4vw;
  height: 4vw;
  top: 40%;
  background: url(../images/arr.png) center center no-repeat;
  background-size: 100% auto;
}

.arr-left:hover, .arr-right:hover {
  opacity: 0.5;
}

.arr-left {
  left: -4vw;
}

.arr-right {
  right: -4vw;
  transform: rotate(180deg);
}

.hide-3-items .arr-left, .hide-3-items .arr-right {
  display: none;
}

.btn-kv {
  height: 4vw;
  width: auto;
  position: absolute;
  bottom: 19.5%;
}

.btn-kv-vip {
  left: 28%;
}

.btn-kv-home {
  left: 82%;
}

.btn-note {
  left: 68%;
}

@media (max-width: 575px) {
  .btn-kv {
    height: 8vw;
    bottom: 2.5%;
  }
  .btn-kv-vip {
    left: 6%;
  }
  .btn-kv-home {
    left: 72%;
  }
  .btn-note {
    left: 44%;
  }
}
.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 46.875vw;
  z-index: -1;
  /* 確保背景不遮擋其他內容 */
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101vw;
  /* 確保影片覆蓋整個背景 */
  height: 57vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* 防止用戶點擊影片 */
}

@media (max-width: 575px) {
  .video-background {
    height: 176vw;
  }
  .video-background iframe {
    height: 182vw;
    transform: unset;
    top: -6vw;
    left: 0;
  }
}
/*
HTML 結構

  <section id="kv" class="position-relative kv">
    <!-- btn -->
    <div id="mute-button" style="background-size: cover;position: absolute; z-index: 3;background-image: url('./images/music-op.png');opacity: 0.75; left: 48.75vw; bottom: 5vw; cursor: pointer;"></div>
    <!-- yt -->
    <div class="video-background">
      <div id="video-player"></div>
      <div id="video-player-m"></div>
  </div>
</section>
*/
body {
  margin: 0;
  /* overflow: hidden;  隱藏滾動條 */
}

img {
  display: block;
}

.price-block {
  padding: 6.3541666667vw 0 11.8229166667vw 0;
  background-image: url("../images/bg/bg-price_01.jpg"), url("../images/bg/bg-price_02.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, left bottom;
  background-color: #45b3e6;
}
@media (max-width: 575px) {
  .price-block {
    background-image: unset;
    padding: 12vw 0;
  }
}

.price-box {
  width: 64.375vw;
  padding: 1.875vw 0;
  position: relative;
  z-index: 9;
  background-image: url("../images/bg/bg-paper_02.png");
  background-position: left top;
  background-size: 100% auto;
}
.price-box::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 3.8541666667vw;
  background-image: url("../images/bg/bg-paper_01.png");
  top: 0;
  background-size: 100% auto;
  transform: translateY(-95.5%);
  background-position: center bottom;
}
.price-box::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 4.6354166667vw;
  background-image: url("../images/bg/bg-paper_04.png");
  bottom: 0;
  background-size: 100% auto;
  transform: translateY(95.5%);
  background-position: center bottom;
}
@media (max-width: 991px) {
  .price-box {
    width: 85.61875vw;
  }
  .price-box::before {
    height: 5.1260416667vw;
  }
  .price-box::after {
    height: 6.1651041667vw;
  }
}
@media (max-width: 575px) {
  .price-box {
    width: 91.734375vw;
  }
  .price-box::before {
    height: 5.4921875vw;
  }
  .price-box::after {
    height: 6.60546875vw;
  }
}

.title-price {
  width: 34.375vw;
}
@media (max-width: 991px) {
  .title-price {
    width: 45.71875vw;
  }
}
@media (max-width: 575px) {
  .title-price {
    width: 72vw;
  }
}

.title-sub {
  width: 15.625vw;
}
@media (max-width: 991px) {
  .title-sub {
    width: 20.78125vw;
  }
}
@media (max-width: 575px) {
  .title-sub {
    width: 40vw;
    position: sticky;
    top: 8px;
  }
}

.img-price {
  width: 56.4583333333vw;
}
@media (max-width: 991px) {
  .img-price {
    width: 75.0895833333vw;
  }
}
@media (max-width: 575px) {
  .img-price {
    width: 86vw;
  }
}

.event-block {
  background-color: #fec232;
  background-image: url("../images/bg/bg-event_01.png");
  background-position: left bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 12.8125vw;
  padding-bottom: 8.8541666667vw;
}
.event-block::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 57.5vw;
  background-image: url("../images/bg/bg-event_01.png");
  top: 0;
  background-size: 100% auto;
  transform: translateY(-5.2083333333vw);
  background-position: center bottom;
}
@media (max-width: 575px) {
  .event-block {
    padding-top: 17.5vw;
    padding-bottom: 15vw;
  }
}

.event-box {
  position: relative;
  width: 66.6666666667vw;
  z-index: 9;
  background-image: url("../images/bg/bg-board-event_02.png");
  background-size: 100% auto;
  background-position: left top;
  padding-bottom: 3.75vw;
}
.event-box::after, .event-box::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100% auto;
}
.event-box::before {
  background-image: url("../images/bg/bg-board-event_01.png");
  top: 0;
  height: 9.0625vw;
  transform: translateY(-99%);
}
.event-box::after {
  background-image: url("../images/bg/bg-board-event_04.png");
  bottom: 0;
  height: 4.6875vw;
  transform: translateY(97%);
}
@media (max-width: 991px) {
  .event-box {
    width: 88.6666666667vw;
  }
  .event-box::before {
    height: 12.053125vw;
  }
  .event-box::after {
    height: 6.234375vw;
  }
}
@media (max-width: 991px) {
  .event-box {
    width: 95vw;
  }
}

.event-info-box {
  margin: 1.6666666667vw 0 0.8333333333vw 0;
}
.event-info-box img.img-de {
  width: 10.3125vw;
}
.event-info-box img.img-info {
  width: 24.7916666667vw;
}
@media (max-width: 991px) {
  .event-info-box {
    margin: 2.0833333333vw 0 1.4583333333vw 0;
  }
}

.img-step {
  width: 48.0729166667vw;
  margin-bottom: 1.6666666667vw;
}
@media (max-width: 991px) {
  .img-step {
    width: 63.9369791667vw;
    margin-bottom: 2.9166666667vw;
  }
}
@media (max-width: 575px) {
  .img-step {
    width: 80vw;
    padding-right: 2vw;
    margin-bottom: 4.5833333333vw;
  }
}

.ab-toger {
  z-index: 1;
  position: absolute;
  width: 19.2708333333vw;
}

.bg-price-tiger-l {
  top: 10%;
  left: 7%;
  animation: bg-price-tiger-l 2s infinite ease-in-out;
}

.bg-price-tiger-l-start {
  opacity: 0;
  animation: bg-price-tiger-l-start 2s infinite ease-in-out;
}

@keyframes bg-price-tiger-l {
  0%, 20%, 80%, 100% {
    transform: translateX(0);
  }
  35%, 65% {
    transform: translateX(10%);
  }
}
@keyframes bg-price-tiger-l-start {
  0%, 30%, 80%, 100% {
    opacity: 1;
  }
  35%, 65% {
    opacity: 0;
  }
}
.ab-paper {
  position: absolute;
  width: 9.6875vw;
  top: 23%;
  left: 4%;
}

.bg-price-tiger-r {
  top: 58%;
  left: 75%;
  animation: bg-price-tiger-r 2s infinite ease-in-out;
}

@keyframes bg-price-tiger-r {
  0%, 20%, 80%, 100% {
    transform: translateX(0);
  }
  35%, 65% {
    transform: translateX(-10%);
  }
}
.ab-font {
  top: 54%;
  left: 87%;
  position: absolute;
  width: 8.3333333333vw;
  animation: bg-price-tiger-l-start 2s infinite ease-in-out;
}

.price-chat-r {
  top: 31%;
  left: 87%;
  position: absolute;
  width: 8.3333333333vw;
  animation: price-chat-r 1s infinite ease-in-out;
}

@keyframes price-chat-r {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
.price-chat-l {
  top: 62%;
  left: 5%;
  position: absolute;
  width: 8.3333333333vw;
  animation: price-chat-r 1s infinite ease-in-out;
}

.bg-event-tiger-l {
  top: 30%;
  left: 5%;
  animation: bg-price-tiger-l 2s infinite ease-in-out;
}

.bg-event-chat-l {
  top: 25%;
  left: 5.5%;
}

.bg-event-tiger-r {
  top: 62%;
  left: 75.5%;
  animation: bg-price-tiger-r 2s infinite ease-in-out;
}

.event-chat-r {
  position: absolute;
  top: 22.5%;
  left: 85%;
  width: 8.3333333333vw;
  animation: price-chat-r 1s infinite ease-in-out;
}

.event-chat-l {
  position: absolute;
  top: 60%;
  left: 7%;
  width: 8.3333333333vw;
  animation: price-chat-r 1s infinite ease-in-out;
}

.mySwiper {
  width: 35.6770833333vw;
}
@media (max-width: 991px) {
  .mySwiper {
    width: 47.4505208333vw;
  }
}

.btn-event-group {
  margin-bottom: 3.125vw;
}
.btn-event-group > * {
  width: 9.7916666667vw;
}
@media (max-width: 991px) {
  .btn-event-group {
    margin-bottom: 4.15625vw;
  }
  .btn-event-group > * {
    width: 13.0229166667vw;
  }
}
@media (max-width: 575px) {
  .btn-event-group {
    margin-bottom: 3vw;
  }
  .btn-event-group > * {
    width: 32.5vw;
  }
}

.fly-man {
  width: 29.375vw;
  margin-bottom: 3.125vw;
}
@media (max-width: 991px) {
  .fly-man {
    width: 39.06875vw;
    margin-bottom: 4.15625vw;
  }
}
@media (max-width: 575px) {
  .fly-man {
    width: 76vw;
  }
}

.mySwiper {
  width: 45vw;
}
@media (max-width: 991px) {
  .mySwiper {
    width: 59.85vw;
  }
}
@media (max-width: 575px) {
  .mySwiper {
    width: 82vw;
  }
}

.mySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mySwiper .swiper-slide .sw-img {
  width: 18.75vw;
}
.mySwiper .swiper-slide .sw-info {
  width: 16.3020833333vw;
}
@media (max-width: 991px) {
  .mySwiper .swiper-slide .sw-img {
    width: 24.9375vw;
  }
  .mySwiper .swiper-slide .sw-info {
    width: 21.6817708333vw;
  }
}
@media (max-width: 575px) {
  .mySwiper .swiper-slide {
    flex-direction: column;
  }
  .mySwiper .swiper-slide .sw-img {
    width: 65.625vw;
  }
  .mySwiper .swiper-slide .sw-info {
    width: 57.0572916667vw;
    margin-left: 7.5vw;
  }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  width: 36px;
  height: 60px;
  background-image: url("../images/event/sw-arr.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  transform: scaleX(-1);
}/*# sourceMappingURL=all.css.map */