/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700&display=swap');
@charset "UTF-8";
/************************************************************************************
RESET
*************************************************************************************/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, font, 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, figure, mark{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    
}
body {line-height: 1; -webkit-text-size-adjust: none;}
ol, ul { list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table {
   /* border-collapse: collapse;*/
    border-spacing: 0;
}
a img {border: none;}
.clean { clear:both;}
a {color: #292929; text-decoration: none; blr:expression(this.onFocus=this.blur()); outline: none; /* for Firefox */hlbr:expression(this.onFocus=this.blur()); /* for IE */}
a:hover {text-decoration:none;}
a:focus{ -moz-outline-style: none;}

/* 第一屏區塊 
.block-first{overflow: hidden;padding-top: 150px;margin-top: -150px;}
.block-first1{overflow: hidden;padding-top: 120px;margin-top: -120px;}*/

/* 全域顏色變數 */
:root {
	--white-color:#ffffff;
	--bk-color:#000000;
	--yellow-color:#ffeb44;
	--blue-color:#34d2ef;
	--pink-color:#f71bb0;    
}

body{font-family: 'Noto Sans TC', sans-serif;}

.title{
  background: url("../images/title-yellow.webp") center top no-repeat;
  width: 335px;
  height: 108px;
  text-align: center;
  margin: 0 auto;
  font-size: 45px;
  margin-bottom: 60px;
  padding-top: 25px;
}

.title span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
  text-transform:uppercase;
}

header{margin-top: 40px;}

.kv {
  width: 100%;
  aspect-ratio: 1920 / 699;  /* 與設計稿比例 */
  max-width: 1920px;
  margin: 0 auto;
  background: url("../images/main-pic.webp") center top no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}



/* 左右探照燈 */
.kv::before,
.kv::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.7) 0%,
    rgba(255,255,255,0.4) 20%,
    rgba(255,255,255,0) 60%
  );
  border-radius: 50%;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.7;
}

/* 左邊：移動+呼吸 */
.kv::before {
  animation: spotlight-left 8s ease-in-out infinite,
             breathing 4s ease-in-out infinite alternate;
}

/* 右邊：移動+呼吸（不同步） */
.kv::after {
  animation: spotlight-right 8s ease-in-out infinite,
             breathing 5s ease-in-out infinite alternate;
}

@keyframes spotlight-left {
  0%   { transform: translate(-40%, -20%); }
  50%  { transform: translate(40%, 20%); }
  100% { transform: translate(-40%, -20%); }
}

@keyframes spotlight-right {
  0%   { transform: translate(40%, -20%); }
  50%  { transform: translate(-40%, 20%); }
  100% { transform: translate(40%, -20%); }
}

@keyframes breathing {
  0%   { opacity: 0.5; }
  100% { opacity: 0.9; }
}

.title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 115;
}

.main-title {
  width: 50vw;
  max-width: 983px;
  aspect-ratio: 983 / 393;
  background: url("../images/main-title.webp") center top no-repeat;
  background-size: contain;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
}

h1 {
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
}

/*==nav CSS=====*/
#main-nav{
   z-index: 990;
  background: linear-gradient(#9263de,#9164de);
}

/* === 主選單容器 === */
#block_menu {
  width: 100%;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 999;
}

/* === sticky 狀態 === */
#block_menu.sticky {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background: linear-gradient(#9263de,#9164de);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
}

/* === 上方紫色選單 === */
.class-nav ul {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.class-nav li {
  display: inline-block;
  font: 500 18px 'Noto Sans TC', serif;
  letter-spacing: 1px;
}

.class-nav li.menu-title {
  font-size: 18px;
  color: #000000;
  background: url("../images/foreign.webp");
  background-size: contain;
  width: 85px;
  height: 83px;
}

.class-nav li.menu-title-second {
  background: url("../images/taiwan.webp");
  background-size: contain;
}

.class-nav li.menu-bank a{
  color: #FFFFFF;
  border: solid 1px #FFFFFF;
  height: 55px;
  padding: 0 5px;
  border-radius: 5px;
  margin-left: 20px;
  font-size: 16px;
  line-height: 20px;
  padding-top: 5px;
  box-sizing: border-box;
}

.class-nav li.menu-10k a{
  background: #ffde00;
  color: #f71bb0;
  height: 55px;
  padding: 3px 5px 0 5px;
  font-size: 20px;
  line-height: 23px;
  font-weight: 600;
  border-radius: 5px;
}

.class-nav li.menu-10k a .all{
  display: block;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
}

.class-nav li.menu-10k a {
  position: relative;
}

.class-nav li.menu-10k a.active{color: #f71bb0;}

.class-nav li.menu-10k a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffde00;
}

.class-nav li a {
  position: relative;
  display: inline-block;
  color: #53E5EA;
}

.class-nav li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: #53E5EA;
  bottom: -10px;
  left: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.class-nav li a:hover::before,
.class-nav li a.active::before {
  transform: scaleX(1);
}

.class-nav li.menu-bank a:hover::before,.class-nav li.menu-10k a:hover::before{
  transform: scaleX(0);}

.class-nav li a.active {
  font-weight: 600;
  color: #FFFFFF;
}

/* === 下方白色 navbar === */
.navbar-nav {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 5px 0;
  background: #FFFFFF;
  border-radius: 10px;
  transform: translateY(10px);
  position: relative;
  z-index: 1000;
  padding: 10px 5px;
  box-sizing: border-box;
  
}

.navbar-nav li {
  display: inline-block;
  font: 400 15px 'Noto Sans TC', serif;
  margin: 0 ;
}

.navbar-nav li a {
  display: block;
  padding: 1px 5px;
  text-align: center;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
  background: #FFE63F;
  border-radius: 30px;
}

/*======================
==== Slider CSS=====
=======================*/
.ad {
    padding: 60px 0 80px;
    background: url("../images/bg-plaid.webp");
}

.ad-block{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
}

.sale__swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
.ad-block .swiper-horizontal>.swiper-pagination-bullets,
.ad-block .swiper-pagination-bullets.swiper-pagination-horizontal,
.ad-block .swiper-pagination-custom,.swiper-pagination-fraction{
    bottom: -30px;
}
.ad-block .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #FFF6AE;
    opacity: 1;
}
.ad-block .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #6f7257;
}
 /*第一段尾*/

.coupon{
  background: #f71bb0;
  min-height: 500px;
  padding-bottom: 150px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: #f71bb0;
  padding: 15px 0;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-left 90s linear infinite;
  will-change: transform;
  margin-top: 20px;
}

.marquee-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.marquee-item {
  font: 900 36px/1 "Arial", sans-serif;
  color: #ffd8f2;
  white-space: nowrap;
}

.marquee-item img {
  width: 60px;
  height: auto;
  transform-origin: bottom center;
  animation: tilt 3s ease-in-out infinite;
  margin: 0 8px;
  padding: 4px 0;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes tilt {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(6deg); }
}

.marquee-item:nth-child(2) img { animation-delay: 0s; }
.marquee-item:nth-child(4) img { animation-delay: 0.8s; }
.marquee-item:nth-child(6) img { animation-delay: 1.5s; }

.marquee-group:nth-of-type(2) .marquee-item:nth-child(2) img { animation-delay: 0.4s; }
.marquee-group:nth-of-type(2) .marquee-item:nth-child(4) img { animation-delay: 1.2s; }
.marquee-group:nth-of-type(2) .marquee-item:nth-child(6) img { animation-delay: 2s; }

.marquee-group:nth-of-type(3) .marquee-item:nth-child(2) img { animation-delay: 0.6s; }
.marquee-group:nth-of-type(3) .marquee-item:nth-child(4) img { animation-delay: 1.6s; }
.marquee-group:nth-of-type(3) .marquee-item:nth-child(6) img { animation-delay: 2.4s; }

@media (max-width: 1024px) {
  .marquee-item { font-size: 28px; }
  .marquee-item img { width: 45px; }
}
@media (max-width: 768px) {
  .marquee-item { font-size: 22px; }
  .marquee-item img { width: 35px; }
}
@media (max-width: 480px) {
  .marquee-item { font-size: 18px; }
  .marquee-item img { width: 28px; }
}

.coupon-wrap {
  background: 
    url("../images/bg-coupon.png") no-repeat center center,
    linear-gradient(to bottom, 
      #f71bb0 0%, 
      #ff4fc9 50%, 
      #f71bb0 100%);
  /*min-height: 341px;*/
  min-height: auto;
  padding: 80px 20px;
 /* overflow: hidden;*/
  overflow: visible;
  text-align: center;
}

.coupon-card {
  max-width: 900px;
  margin: 0 auto;
}  

.coupon-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00b3f0;
  color: #fff;
  border-radius: 60px;
  box-sizing: border-box;
  transform: translateY(50px);
  position: relative;
  overflow: visible;
}

.coupon-banner::after,
.coupon-banner::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FA34BC;
  border: solid 10px #00B3F0;
  top: 50%;
  transform: translateY(-50%);
}

.coupon-banner::after { left: -20px; }
.coupon-banner::before { right: -20px; }

.coupon-banner .banner-text {
  font-size: 29px;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
}

.coupon-banner .banner-text span {
  display: block;
  font-size: 36px;
  margin-top: 15px;
}

.coupon-banner .banner-price {
  transform: translateY(-30px);
  font-size: 140px;
  font-weight: 900;
  letter-spacing: -5px;
  color: #ff0;
  line-height: 1;
  text-shadow: 
    -6px -6px 0 #00b3f0,  
     6px -6px 0 #00b3f0,
    -6px  6px 0 #00b3f0,
     6px  6px 0 #00b3f0,
     0px -6px 0 #00b3f0,
     0px  6px 0 #00b3f0,
    -6px  0px 0 #00b3f0,
     6px  0px 0 #00b3f0;
}

.coupon-banner .banner-price span{
  font-size: 80px;
  margin-right: 10px;
}

.coupon-banner .banner-price em{
  font-size: 160px;
  margin-right: 10px;
  font-style: normal;
}

.coupon-body {
  margin: 0 auto;
  width: 90%;
  padding: 30px 25px;
  padding-top: 80px;
  border-radius: 10px 10px 30px 30px;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  gap:20px;
  box-sizing: border-box;
}

.coupon-rule{
  width: 58%;
  text-align: left;
}

.coupon-rule p{
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
}

.coupon-rule ul{
  padding-left: 10px;
  padding-top: 20px;
}

.coupon-rule li{
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}

.coupon-rule li::before{
  content: '.';
  font-size: 20px;
  position: absolute;
  left: -5px;
  top: -5px;
}

.coupon-tkt {
  display: block; 
  background: url("../images/tkt.png") no-repeat center center;
  width: 300px;
  height: 168px;
  background-size: contain;
  text-indent: -9999px; /* 隱藏文字，SEO 友好 */
  overflow: hidden;
}



/* ========== more-rule ========== */

/* 展開/收合更多規則 */
.more-rule {
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 10px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
}

.more-rule .toggle-btn {
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
  font-size: 18px;
  border-bottom: dotted 1px #FFFFFF;
  padding-bottom: 6px;
}

.more-rule .toggle-btn:hover {
  color: #FFD6F1;
}

/* 箭頭樣式 */
.more-rule .toggle-btn .arrow {
  display: inline-block;
  margin-right: 6px;
  transition: transform 0.3s ease;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #FFFFFF; /* 預設向下箭頭 */
  transform: rotate(-90deg);     /* 收合時箭頭方向 */
}

/* 展開時箭頭旋轉 */
.more-rule.open .toggle-btn .arrow {
  transform: rotate(0deg);
}

/* 展開/收合動畫 */
.more-rule .toggle-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 10px;
  font-weight: normal;
  color: #FFFFFF;
  line-height: 1.6;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  text-align: left;
}

.more-rule.open .toggle-content {
   max-height: none;
  opacity: 1;
}

/* 展開內容統一樣式 */
.more-rule .toggle-content p,
.more-rule .toggle-content li {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 8px;
}

.more-rule .toggle-content ul {
  list-style: none;
  margin: 10px 0 10px 20px;
  padding: 0;
}

.more-rule .toggle-content li {
  position: relative;
  padding-left: 18px;
}

.more-rule .toggle-content li::before,
.more-rule .toggle-content p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
}

.more-rule .toggle-content p {
  position: relative;
  padding-left: 18px;
}

.toggle-content a{color: #B7FFE5;}

/* RWD：小螢幕下的字體縮小 */
@media (max-width: 600px) {
  .more-rule .toggle-content p,
  .more-rule .toggle-content li {
    font-size: 13px;
    line-height: 20px;
  }

  .more-rule .toggle-btn {
    font-size: 15px;
  }
}
/* ========== END more-rule ========== */

/*第三段尾*/

/* ========== limited-offer ========== */
#limited-offer{
  background: 
  url("../images/bg-yellow.webp") center top,var(--yellow-color);
  min-height: 600px;
  padding-bottom: 60px;
}
.block-center{
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 100px;
}

.limited-content {
  display: flex;
  justify-content: space-between; /* 三格平分 */
  justify-content: center;
  gap: 20px; /* 區塊之間間距 */
  flex-wrap: wrap; /* 小螢幕換行 */
  padding: 0 20px; /* 左右內距 */
  box-sizing: border-box; /* 避免超出 */
}

.sale-pic img{
  width: 100%;
}

.sale-box {
  position: relative;
  display: flex;
  flex-direction: column;         
  justify-content: flex-start;    
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;       
  flex: 1 1 calc(33.333% - 20px); /* 桌機三欄 */
  min-width: 280px;               
  max-width: calc(33.333% - 20px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.sale-box a {
  display: flex;
  flex-direction: column;
  height: 100%; /* a 填滿父層 */
}

/* hover 浮起 */
.sale-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* 點擊縮小 */
.sale-box:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* 亮片效果 */
.sale-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -85%; 
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.sale-box:hover::after,
.sale-box:active::after {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.sale-name {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  background: var(--blue-color);
  text-align: center;
  padding:20px 10px;
  box-sizing: border-box;
  min-height: 95px; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 說明區塊 */
.sale-info {
  flex-grow: 1;                  
  display: flex;                 
  flex-direction: column;
  justify-content: flex-start;   
  padding: 10px 20px;
}

.sale-info p{
  text-align: center;
  margin: 10px 0;
  font-size: 18px;
  line-height: 24px;
}

.info-txt{
  padding-left: 15px;
}

.info-txt li{
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 22px;
  position: relative;
}

.info-txt li::before{
  content: '.';
  position: absolute;
  left:-10px;
  top:-5px;
}

.sale-city ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.sale-city li{
  display: inline-block;
  padding: 6px 12px;
  background: #e5e5e5;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.sale-city li:empty { display: none;}




/* 價格 */
.sale-price {
  margin-top: auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  padding: 0 0 20px 0;
}

.sale-price strong {
  font-size: 46px;
  color: var(--pink-color);
}
/* ========== END limited-offer ========== */
/*第四段尾*/



/* 平板 (小於 1024px) */
@media (max-width: 1024px) {
  .sale-box {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* 手機 (小於 768px) */
@media (max-width: 768px) {
  .sale-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.sale-box:has(.card-saleout:empty):hover {
	transform: translateY(4px);
}

.sale-box:has(.card-saleout):hover {
	transform: unset;
}

.card-saleout {
	width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    background: rgb(60 60 60 / 60%);
    display: inline-flex;
    align-items: center;
    justify-content: center;	
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
}



.card-saleout:empty {
	display: none;
}
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffc107;
  color: #000;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 14px;
}



/* === 輪替背景 section === */
.tour-section:nth-child(even) {
    min-height: 500px;
    padding-top: 0px;
    padding-bottom: 160px;
    position: relative;
    background: url("../images/bg-pink.webp") center top repeat;
}

.tour-section:nth-child(even) .title {
    background: url("../images/title-pink.webp") center top no-repeat;
}

/* === 奇數 === */
.tour-section:nth-child(odd) {
    min-height: 500px;
    padding-top: 0px;
    padding-bottom: 160px;
    position: relative;
    background: url("../images/bg-blue.webp") center top repeat;
}

.tour-section:nth-child(odd) .title {
    background: url("../images/title-blue.webp") center top no-repeat;
}


/* 主推行程 */
.hotsale {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  transition: transform .3s ease;
}
.hotsale:hover {
  transform: scale(0.97);
}
.hotsale {
  position: relative;
}

.hotsale-link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
  text-indent: -9999px;
}
.hot-pic{width: 50%;height: 400px;position: relative;z-index: 1;}
.hot-pic img{border-radius: 150px 0 150px 0; width: 100%;}
.hot-pic::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 80%;
  background:rgba(251,251,251,0.5);
  left: 0px;top: -15px;
  z-index: -1;
  border-radius: 150px 0 150px 0;
}
.hot-tour{
  width:50%;
  height: auto;
  margin-top: 40px;
  background: #fff;
  transform: translateX(-30px);
  padding: 35px 25px;
  box-sizing: border-box;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap:15px;
  z-index: 2;
  position: relative;
  border-radius: 20px;
}
.hot-tour a{display: block;}
.city{
  position: absolute;
  top: 0px;
  right: 0px;
  background: #434343;
  color: var(--white-color);
  padding: 3px 8px 5px 8px;
}
.hot-name{font-size: 20px;font-weight: 600;line-height: 30px;}
.hot-name em{font-style: normal;display: block; font-size: 16px;color: #FF882D; }
.hot-info{list-style-type: none;min-height: 80px;}
.hot-info li{font-size: 15px;font-weight: 400;position: relative;text-indent: 15px;margin-bottom: 8px;color: #0096e4;line-height: 20px;}
.hot-info li a{display: block;}
.hot-info li::before{position: absolute;content: '';width: 8px;height: 8px;background: #34D2EF;border-radius: 3px 1px;left: 0px;top: 6px;}
.hot-price{font-size: 16px;text-align: right;}
.hot-price strong{font-size: 30px;color: var(--pink-color);margin: 0 5px 0px 3px;}
.main-tour-link {  
  display:flex; 
  justify-content: flex-end;  
  text-align: right; 
  margin-right: 10px; 
  margin-bottom: 15px;
}
.main-tour-link a {
  text-decoration: none; 
  color: #666667; 
  height:100%; 
  border-radius: 26px; 
  font-size: 14px; 
  font-weight: 600; 
  border:1px solid #666667; 
  padding:2px 5px;
  line-height: 1.7em; 
  margin:3px 5px 0 0; 
}
.main-tour-link a:hover { background: #FDE7A7;}
.main-tour-link a:empty { display: none;}


/* 條列行程 */
.area{
  padding: 5px 10px;
  border: solid 1px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 40px;
  border-radius: 5px;
}
.tour-list{
  width: 95%;
  margin: 0 auto;
  margin-top: 30px;
  background:var(--white-color);
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  margin-top: 60px;
}
.tour-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 5px;
}

.tour-list li{
  list-style-type: none;
  position: relative; 
  border-bottom: dashed 1px;
  padding-bottom: 0px;
  margin-bottom: 10px;
  width: 100%; 
  height:100%;
  text-indent: 20px; 
  transition: transform .3s ease;

}
.tour-list li a{display: block;transition: background-color 0.5s ease; }
.tour-list li::before{
  position: absolute;
  content: '';
  width: 13px;
  height: 13px; 
  background: url("../images/tour-icon.png") ;
  left:0px;
  top: 10px;
}
.tour-list li:hover {
  transform: scale(0.99);
}
.list-name{ 
  flex: 1;       /* 佔滿剩下空間 */
  min-width: 0;  /* 避免被內容撐爆 */
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;}
.list-name span{
  padding: 0 5px 2px 5px;
  background:rgba(251,251,251,0.4); 
  margin-right: 8px;
  border: solid 1px;
  font-size: 15px;
}
.list-name em{
  font-style: normal;
  font-size: 15px;
  margin-left: 5px;
  color: #0096e4; 
  color: #FF882D;
}
.list-price {
  flex-shrink: 0;      /* 不壓縮 */
  white-space: nowrap; /* 不換行 */
  margin-left: 10px;
  font-size: 16px;
}
.list-price strong {
  color: var(--pink-color);
  font-size: 20px;
  margin: 0 2px 0 4px;
}


   /*----台灣行程 hover 不縮放----*/
.tour-list.tw li:hover {
  transform: scale(1);
}
/*.tour-list-link{display: flex;flex-direction: row;gap:5px;justify-content: flex-end;}*/
.link-city{
  display: flex;
  flex-direction: row;
  gap:5px;
  justify-content: flex-end;
}
.link-city a{
  display: block;
  width: auto;
  text-align: center;
  padding:3px 8px;
  border: 1px solid;
  text-indent: 0px;
  border-radius: 30px;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-size: 14px;
}
.link-city a:hover{background: #FDE7A7;}
.link-city a:empty{ display: none;}


.pkg-more{text-align: right;margin-top: 30px;}
.pkg-more a{
  display: inline-block;
  font-size: 15px;
  border-radius: 5px;
  padding: 3px 5px;
  border: solid 1px;
  margin: 3px;
}
.pkg-more a:hover{
  border: solid 1px;
  background: #FFEECC;
}


/* RWD 設定 */
@media screen and (max-width:960px) {
    .header{height:700px;}
    .pic{min-height:560px;}
    .pic #demo-1{min-height:560px;}
}

@media screen and (min-width: 769px) and (max-width: 930px) {
    .nav li {
      margin: 0px; 
      font-size: 14px;
      font-weight: 600;
      margin-top: 2px;
    }
}    

@media screen and (max-width:850px) {
  .class-nav ul {gap: 5px;}
  .class-nav li.menu-title {
    width: 65px;
    height: 63px;
  }
} 

/* 850px 以下：Coupon Banner 縮小 */
@media (max-width: 850px) {
  .coupon-banner {
    padding: 20px 30px;
  }

  .coupon-banner .banner-text {
    font-size: clamp(18px, 3vw, 22px);
  }

  .coupon-banner .banner-text span {
    font-size: clamp(24px, 4vw, 32px);
  }

  .coupon-banner .banner-price {
    font-size: clamp(80px, 14vw, 120px);
    letter-spacing: -2px;
    transform: none;
    text-shadow: none;
  }
}

/* 600px 以下：Coupon Banner 改為直式 */
@media (max-width: 600px) {
  .coupon-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .coupon-banner .banner-text {
    text-align: center;
    font-size: clamp(20px, 4.5vw, 24px);
  }

  .coupon-banner .banner-text span {
    font-size: clamp(28px, 6vw, 36px);
  }

  .coupon-banner .banner-price {
    margin-top: 0px;
    font-size: clamp(80px, 20vw, 110px);
    white-space: normal;
  }
  .coupon-banner .banner-price em{font-size: 140px;}
}

/* 900px 以下：手機版調整 */
@media screen and (max-width:900px) {
  .hot-pic img{border-radius: 30px 0 60px 0;display: block;}
  .hot-pic::before{width: 0px;height: 0px;}
  .class-nav li.menu-bank a{margin-left: 0px;}
}  

/* 768px 以下：手機版調整 */
@media screen and (max-width:768px) {
  #block_menu{display: none;}
  .kv {background-image: url("../images/main-pic-s.webp"); aspect-ratio: 768 / 500;}
  .main-title {width: 70vw;}
  .hotsale{flex-direction: column;width: 95%;margin: 0 auto;}
  .hot-pic{width: 100%;height: auto;}
  .hot-pic img{border-radius: 30px 0 0px 0;display: block;}
  .hot-pic::before{width: 0px;height: 0px;}
  .hot-tour{width:100%;height: auto; margin-top:0px; transform: translateX(0px);border-radius: 0px 0 30px 0;}
  .city{top: -5px;}
  .hot-price{text-align: center;}
  .tour-txt{flex-direction: column;width: 95%;margin: 0 auto;}
  .list-name{width: 100%;}
  .tour-list li a{padding-bottom: 10px;}
  .tour-list li .link-city a{padding-bottom: 3px;}
  .list-price{width: 100%;text-align:right;}
  .coupon-body {flex-direction: column;align-items: center;}
  .coupon-rule{width: 100%;}
  .main-tour-link,.tour-list-link{justify-content: center; }
  .tour-list-link{margin-top: 15px;}
  .pkg-more{text-align: center;}
  .coupon-wrap {padding: 0px 20px;}
  .tour-list li{text-indent: 5px; }
}


/* 600px 以下 */
@media screen and (max-width:600px) {
  
  .tour-list li{text-indent: 10px; }
  
}
