/* 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;}
.sticky {
  top: 30px;
}


.scrollto {
  scroll-margin-top: 180px;
}

@media (max-width: 768px) {
  .scrollto {
    scroll-margin-top: 80px;
  }
}

/* =========================
   KV
========================= */

.site-header {
  margin-top: 40px;
}

.kv {
  width: 100%;
  max-width: 1920px;
  height: 840px;
  margin: 0 auto;
  background: url("../img/main-pic.webp") center top / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* 標題 */
.title-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* 主標本體 */
.main-title {
  position: relative;
  width: 806px;
  aspect-ratio: 806 / 736;
  background: url("../img/main-title.webp") center center / contain no-repeat;

  font-size: 0;
  line-height: 0;
  color: transparent;

  overflow: visible;
  white-space: nowrap;
  animation: neon-flicker-clean 5.2s infinite;
}

/* 近距離光暈 */
.main-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/main-title.webp") center center / contain no-repeat;
  filter:
    blur(2px)
    brightness(1.18)
    saturate(1.15);
  opacity: 0.28;
  z-index: -1;
  animation: neon-glow-clean 4.2s ease-in-out infinite;
  pointer-events: none;
}

.main-title::after {
  display: none;
}
/* 主標本體微閃 */ @keyframes neon-flicker-clean { 0%, 100% { filter: brightness(1) saturate(1); } 7% { filter: brightness(1.05) saturate(1.04); } 8% { filter: brightness(0.97) saturate(0.98); } 9% { filter: brightness(1.08) saturate(1.06); } 10%, 72% { filter: brightness(1.01) saturate(1.02); } 73% { filter: brightness(0.98) saturate(0.99); } 74% { filter: brightness(1.06) saturate(1.05); } 75% { filter: brightness(1) saturate(1.02); } } /* 近距離光暈呼吸 */ @keyframes neon-glow-clean { 0%, 100% { opacity: 0.22; filter: blur(2px) brightness(1.12) saturate(1.1); } 50% { opacity: 0.34; filter: blur(3px) brightness(1.22) saturate(1.18); } }



/* =========================
   KV 選單
========================= */

#main-nav.is-fixed {
  position: fixed;
  left: 50%;
  top: 55px;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(92%, 1120px);
}

/* fixed 後佔位 */
.nav-placeholder {
  display: none;
  height: 0;
}

.nav-placeholder.is-show {
  display: block;
  height: 62px;
}

.area-nav {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 20;

  width: min(90%, 1120px);
  min-height: 52px;
  padding: 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 2px solid rgba(220, 238, 255, 0.98);

  background:
    linear-gradient(
      to bottom,
      rgba(42, 54, 160, 0.96) 0%,
      rgba(15, 30, 116, 0.98) 48%,
      rgba(5, 18, 82, 0.98) 100%
    );

  box-shadow:
    0 0 0 2px rgba(149, 255, 255, 0.42),
    0 0 10px rgba(117, 242, 255, 0.95),
    0 0 24px rgba(76, 210, 255, 0.75),
    0 0 38px rgba(109, 84, 255, 0.46),
    inset 0 2px 6px rgba(255, 210, 255, 0.55),
    inset 0 -3px 8px rgba(57, 255, 255, 0.58);

  overflow: visible;
}

.nav-list {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: normal;
}

.nav-list li {
  display: flex;
  align-items: center;

  font-family: "微軟正黑體", "黑體", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.nav-list li:not(:last-child)::after {
  content: "｜";
  display: inline-block;
  margin: 0 12px;
  color: rgba(111, 255, 255, 0.95);
  text-shadow:
    0 0 5px rgba(101, 255, 255, 0.95),
    0 0 10px rgba(101, 255, 255, 0.7);
}

.nav-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;

  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.4),
    0 0 8px rgba(116, 240, 255, 0.4);
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff56b;
  text-shadow:
    0 0 5px rgba(255, 245, 107, 1),
    0 0 12px rgba(255, 202, 40, 0.3);
}




/*======================
==== Slider CSS=====
=======================*/

.ad {
    padding: 60px 0 80px;
}


.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: #4B55B3;
  opacity: 1;
  margin: 0 5px !important;

  box-shadow:
    0 0 4px rgba(75, 85, 179, 0.8),
    0 0 10px rgba(75, 85, 179, 0.45);

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ad-block .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFF6AE;
  transform: scale(1.12);

  box-shadow:
    0 0 5px rgba(255, 246, 174, 0.95),
    0 0 12px rgba(255, 230, 80, 0.75),
    0 0 22px rgba(255, 180, 40, 0.45);
}




/*商品區*/

a.product {
    transition: all 0.3s ease-in;
}

a.product:hover {
    transform: translateY(4px);
}

a.product:hover .product_pic>img {
    opacity: 0.9;
}

/* =========================
   共用設定
========================= */

* {
  box-sizing: border-box;
}

body {
  background: #050f68;
  font-family: "微軟正黑體", "黑體", sans-serif;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}


/* =========================
   內容區 container
   奇偶區塊背景光點
========================= */
.container {
  position: relative;
  width: 100%;
  padding: 110px 0 90px;
  background-color: #05075a;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px auto;
  overflow: hidden;
}

/* 奇數：藍色光點 */
.container:nth-child(odd) {
  background-image: url("../img/light-blue.webp");
}

/* 偶數：紫色光點 */
.container:nth-child(even) {
  background-image: url("../img/light-purple.webp");
}


/* =========================
   主框 main
========================= */

.main {
  position: relative;
  width: min(92%, 1300px);
  margin: 0 auto;

  border: 3px solid transparent;
  border-radius: 18px;

  background:
    linear-gradient(#05075a, #05075a) padding-box,
    linear-gradient(
      135deg,
      #2effff 0%,
      #1ecfff 38%,
      #5172ff 68%,
      #ff5af1 100%
    ) border-box;

  box-shadow:
    0 0 8px rgba(38, 246, 255, 0.8),
    0 0 18px rgba(255, 92, 245, 0.45),
    inset 0 0 36px rgba(17, 30, 150, 0.42);
}

.block-first {
  position: relative;
  padding: 82px 72px 60px;
}

/* =========================
   每一區主框
========================= */

.container:nth-child(odd) .main {
  background:
    linear-gradient(#05075a, #05075a) padding-box,
    linear-gradient(
      135deg,
      #2effff 0%,
      #1ecfff 38%,
      #5172ff 68%,
      #ff5af1 100%
    ) border-box;

  box-shadow:
    0 0 8px rgba(38, 246, 255, 0.8),
    0 0 18px rgba(255, 92, 245, 0.45),
    inset 0 0 36px rgba(17, 30, 150, 0.42);
}

.container:nth-child(even) .main {
  background:
    linear-gradient(#05075a, #05075a) padding-box,
    linear-gradient(
      135deg,
      #36f5ff 0%,
      #755cff 42%,
      #b45cff 68%,
      #ff63f2 100%
    ) border-box;

  box-shadow:
    0 0 8px rgba(92, 230, 255, 0.7),
    0 0 18px rgba(255, 99, 242, 0.5),
    inset 0 0 36px rgba(17, 30, 150, 0.42);
}


/* =========================
   區塊標題：蓋在框線上
========================= */

.title {
  position: absolute;
  left: 50%;
  top: -85px;
  transform: translateX(-50%);
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 360px;
  height: 148px;
  margin: 0;
  padding: 0 24px;

  background: #05075a;

  text-indent: 0;
  overflow: visible;
  white-space: nowrap;
}

/* 柔邊蓋掉框線切口 */
.title::before {
  content: "";
  position: absolute;
  inset: -4px -12px;
  z-index: -1;
  background: #05075a;
  border-radius: 18px;
  filter: blur(5px);
}

/* 左右圓點 */
.title-dot {
  position: absolute;
  top: 56%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border: 3px solid #24E0FF;
  border-radius: 50%;
  background: #05075a;

  box-shadow:
    0 0 5px rgba(109, 255, 246, 0.95),
    0 0 10px rgba(109, 255, 246, 0.65),
    0 0 16px rgba(53, 221, 255, 0.45);
}

.container:nth-child(odd) .title-dot {border: 3px solid #24E0FF;}
.container:nth-child(even) .title-dot {border: 3px solid #5B9DFF;}

.title-dot-left {
  left: -18px;
}

.title-dot-right {
  right: -18px;
}

/* icon 固定尺寸 */
.title-icon {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 各國只換圖片 */
.title-jp .title-icon {
  background-image: url("../img/title-jp.webp");
}

.title-kor .title-icon {
  background-image: url("../img/title-kor.webp");
}

.title-sea .title-icon {
  background-image: url("../img/title-sea.webp");
}


.title-hk-mo .title-icon {
  background-image: url("../img/title-hk-mo.webp");
}

.title-eu .title-icon {
  background-image: url("../img/title-eu.webp");
}


.title-usa-ca .title-icon {
  background-image: url("../img/title-usa-ca.webp");
}

.title-nz-au .title-icon {
  background-image: url("../img/title-nz-au.webp");
}

.title-cruise .title-icon {
  background-image: url("../img/title-cruise.webp");
}

.title-txg .title-icon {
  background-image: url("../img/title-txg.webp");
}

.title-khh .title-icon {
  background-image: url("../img/title-khh.webp");
}

/* 文字 */
.title-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.title-txt em {
  margin-bottom: 5px;
  color: rgba(109, 255, 246, 0.68);
  font-size: 13px;
  font-style: normal; /* 這行補回來，避免斜體 */
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 2px rgba(109, 255, 246, 0.45),
    0 0 5px rgba(109, 255, 246, 0.22);
}

.title-txt strong {
  color: #6dfff6;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 2px rgba(109, 255, 246, 0.55),
    0 0 5px rgba(109, 255, 246, 0.32),
    0 0 9px rgba(53, 221, 255, 0.18);
}

/* 地區標題霓虹微閃：降低亮度版 */
.title {
  animation: titleNeonFlickerSoft 5.6s infinite;
}

.title .title-icon,
.title .title-txt {
  animation: titleNeonGlowSoft 5.2s ease-in-out infinite;
}

@keyframes titleNeonFlickerSoft {
  0%, 100% {
    filter: brightness(1) saturate(1);
  }

  8% {
    filter: brightness(1.03) saturate(1.02);
  }

  9% {
    filter: brightness(0.98) saturate(0.98);
  }

  10% {
    filter: brightness(1.04) saturate(1.03);
  }

  11%, 72% {
    filter: brightness(1) saturate(1);
  }

  73% {
    filter: brightness(0.98) saturate(0.98);
  }

  74% {
    filter: brightness(1.03) saturate(1.02);
  }

  75% {
    filter: brightness(1) saturate(1);
  }
}

@keyframes titleNeonGlowSoft {
  0%, 100% {
    filter:
      drop-shadow(0 0 2px rgba(109, 255, 246, 0.45))
      drop-shadow(0 0 6px rgba(53, 221, 255, 0.22));
  }

  50% {
    filter:
      drop-shadow(0 0 3px rgba(109, 255, 246, 0.58))
      drop-shadow(0 0 8px rgba(53, 221, 255, 0.32));
  }
}

.title .title-icon {
  animation: none;
}
/* =========================
   主打商品 hotsale
========================= */

.hotsale-outer {
  margin-bottom: 36px;
}

.hotsale {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(22, 93, 224, 0.98) 0%,
    rgba(29, 44, 178, 0.98) 55%,
    rgba(25, 35, 156, 0.98) 100%
  );
  box-shadow:
    0 0 18px rgba(38, 162, 255, 0.2),
    inset 0 0 32px rgba(255, 255, 255, 0.04);
}

.hot-pic {
  overflow: hidden;
}

.hot-pic img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.hot-tour {
  position: relative;
  padding: 34px 38px 30px;
}

.city {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 46px;
  height: 24px;
  padding: 0 10px;
  margin-bottom: 14px;

  border: 1px solid rgba(45, 245, 255, 0.9);
  border-radius: 4px;

  color: #5effff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 8px rgba(94, 255, 255, 0.75);
}

.hot-name {
  margin: 0 0 18px;
  color: #22ffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.hot-info {
  margin: 0;
  padding: 0;
}

.hot-info li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.hot-info li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

.hot-price {
  margin-top: 24px;
  text-align: right;
  color: #fff36d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 0 6px rgba(255, 236, 61, 0.7),
    0 0 12px rgba(255, 162, 20, 0.45);
}

.hot-price strong {
  margin: 0 4px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.hotsale-outer a {
  display: block;
}

.hotsale {
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.hotsale-outer a:hover .hotsale {
  transform: scale(0.985);
  filter: brightness(1.08);
  box-shadow:
    0 0 18px rgba(38, 246, 255, 0.15),
    0 0 28px rgba(255, 92, 245, 0.25);
}

/* =========================
   條列商品 tour-list
========================= */
.tour-list {
  width: 95%;
  margin: 30px auto 0;
  padding: 0;
}

.tour-list li {
  list-style: none;
  border-bottom: 1px dotted rgba(96, 196, 255, 0.6);
}

.tour-list li:last-child {
  border-bottom: none;
}

.tour-list li a {
  display: block;
  width: 100%;
  padding: 13px 0;
}

.tour-txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.list-name {
  width: 78%;
  margin: 0;
  color: #19f4ff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(25, 244, 255, 0.5);
}

.list-name span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: auto;
  padding: 2px 5px;
  margin-right: 10px;
  border: 1px solid rgba(47, 246, 255, 0.9);
  border-radius: 4px;
  color: #49ffff;
  font-size: 16px;
  font-weight: 700;
}

.list-name em {
  display: inline;
  margin-left: 8px;
  color: #ff8ae8;
  text-shadow: 0 0 6px rgba(255, 92, 245, 0.55);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.list-price {
  flex: 0 0 auto;
  color: #fff36d;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  text-shadow:
    0 0 6px rgba(255, 236, 61, 0.7),
    0 0 12px rgba(255, 162, 20, 0.45);
}

.list-price strong {
  margin: 0 3px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.tour-list li a {
  position: relative;
  display: block;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

/* hover 時整行微微右移 */
.tour-list li a:hover {
  transform: translateX(6px);
  filter: brightness(1.12);
}

/* 商品名稱變亮 */
.tour-list li a:hover .list-name {
  color: #6dfff6;
  text-shadow:
    0 0 5px rgba(109, 255, 246, 0.25),
    0 0 12px rgba(53, 221, 255, 0.35);
}

/* 地區 tag 微亮 */
.tour-list li a:hover .list-name span {
  box-shadow:
    0 0 6px rgba(109, 255, 246, 0.65);
}

/* 備註文字稍微亮一點 */
.tour-list li a:hover .list-name em {
  color: #ff9cf4;
  text-shadow:
    0 0 5px rgba(255, 92, 245, 0.45);
}

/* 價格 hover 加強一點 */
.tour-list li a:hover .list-price {
  color: #fff56b;
  text-shadow:
    0 0 6px rgba(255, 245, 107, 0.95),
    0 0 14px rgba(255, 202, 40, 0.65);
}


/* =========================
   RWD
========================= */

/* 1200 以下：選單稍微收 */
@media (max-width: 1200px) {
  .area-nav {
    bottom: 28px;
  }

  .nav-list li {
    font-size: 16px;
  }

  .nav-list li:not(:last-child)::after {
    margin: 0 6px;
  }
}


/* 1024 以下：地區標題收入框內 */
@media (max-width: 1024px) {
  .area-nav,
  #main-nav.is-fixed {
    width: calc(100% - 48px);
  }

  .area-nav {
    min-height: 50px;
    padding: 0 26px;
  }

  .nav-list li {
    font-size: 16px;
  }

  .nav-list li:not(:last-child)::after {
    margin: 0 9px;
  }

  .container {
    padding: 96px 0 78px;
    background-size: 1600px auto;
  }

  .main {
    width: min(92%, 960px);
  }

  .block-first {
    padding: 34px 48px 52px;
  }

  .title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;

    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto 24px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: transparent;
  }

  .title::before,
  .title-dot {
    display: none;
  }

  .title-txt em {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .title-txt strong {
    font-size: 32px;
  }

  .hot-tour {
    padding: 28px 30px;
  }

  .hot-name {
    font-size: 18px;
  }

  .tour-list {
    padding: 0 20px;
  }
}


/* 900 以下：KV 主標開始縮、選單可折行 */
@media (max-width: 900px) {
  .kv {
    height: clamp(480px, 95vw, 760px);
    background-position: center top;
  }

  .title-wrap {
    top: 48%;
  }

  .main-title {
    width: 90vw;
  }

  .area-nav,
  #main-nav.is-fixed {
    width: calc(100% - 32px);
  }

  .area-nav {
    min-height: auto;
    padding: 9px 20px;
    border-radius: 26px;
  }

  .nav-list {
    row-gap: 2px;
  }

  .nav-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .nav-list li:not(:last-child)::after {
    margin: 0 7px;
  }

  .nav-placeholder.is-show {
    height: 76px;
  }
}


/* 768 以下：手機版開始 */
@media (max-width: 768px) {
  .site-header {
    margin-top: 0;
  }

  .kv {
    height: clamp(440px, 92vw, 680px);
  }

  .title-wrap {
    top: 53%;
  }

  #main-nav {
    display: none;
  }

  .ad {
    padding: 0 0 30px;
  }

  .container {
    padding: 82px 0 64px;
    background-size: 1200px auto;
  }

  .block-first {
    padding: 64px 20px 36px;
    border-radius: 14px;
  }

  .title {
    margin-bottom: 24px;
    gap: 10px;
  }

  .title-icon {
    width: 120px;
    height: 120px;
  }

  .title-txt em {
    font-size: 12px;
  }

  .title-txt strong {
    font-size: 26px;
  }

  .hotsale {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hot-pic img {
    min-height: 190px;
  }

  .hot-tour {
    padding: 24px 22px 28px;
  }

  .hot-name {
    font-size: 17px;
  }

  .hot-info li {
    font-size: 14px;
  }

  .hot-price strong {
    font-size: 32px;
  }

  .tour-txt {
    display: block;
  }

  .list-name {
    width: 100%;
    font-size: 18px;
    line-height: 1.55;
  }

  .list-name span {
    margin-right: 8px;
  }

  .list-name em {
    display: block;
    margin: 5px 0 0;
    font-size: 16px;
  }

  .list-price {
    margin-top: 6px;
    text-align: right;
  }

  .list-price strong {
    font-size: 24px;
  }
}


/* 600 以下：選單如果未隱藏時的保險 */
@media (max-width: 600px) {
  #main-nav.is-fixed {
    top: 55px;
  }

  .area-nav {
    width: calc(100% - 24px);
    padding: 8px 14px;
    border-radius: 22px;
  }

  .nav-list li {
    font-size: 14px;
    line-height: 1.85;
  }

  .nav-list li:not(:last-child)::after {
    margin: 0 5px;
  }

  .nav-placeholder.is-show {
    height: 88px;
  }
}


/* 480 以下：手機細修 */
@media (max-width: 480px) {
  .kv {
    height: clamp(390px, 96vw, 460px);
  }

  .title-wrap {
    top: 54%;
  }

  .main-title {
    width: 92vw;
  }

  .main {
    width: calc(100% - 28px);
  }

  .container {
    padding: 72px 0 54px;
  }

  .block-first {
    padding: 58px 14px 30px;
  }

  .tour-list {
    width: 100%;
    margin: 10px auto 0;
    padding: 0;
  }

  .title {
    margin-bottom: 18px;
    gap: 8px;
  }

  .title-txt em {
    font-size: 12px;
  }

  .title-txt strong {
    font-size: 28px;
  }

  .hot-pic img {
    min-height: 170px;
  }

  .hot-tour {
    padding: 20px 16px 24px;
  }

  .area-nav {
    bottom: 20px;
  }
}


/* 420 以下：極小尺寸保險 */
@media (max-width: 420px) {
  .nav-list li {
    font-size: 13px;
    line-height: 1.8;
  }

  .nav-list li:not(:last-child)::after {
    margin: 0 4px;
  }

  .area-nav {
    padding: 8px 10px;
  }
}

