@charset "utf-8";

/* CSS Document */
/************************************************************************************
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,figure,article,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td ,header {
    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;/*防止allpe的safari瀏覽器字體變大*/
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
   /* border-collapse: collapse;*/
    border-spacing: 0;
}

a img {
	border: none;
}

.clean { clear:both;}

img { max-width:100%;}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/*基本顏色變數*/
:root {
	--white-color:#fff;
	--bk-color:#000;
	--yellow-color:#fee1a3;	
	--black-color:#141115;
	--red-color:#c40010;
	--family-basic:Verdana,"Noto Sans TC",'微軟正黑體';
	--family-noto:"Noto Sans TC",Verdana;	
}

html,
body {
  width: 100%;
  max-width: 100%;
}

/************************************************************************************
STRUCTURE 主要區塊
*************************************************************************************/

#web-outer {    
  width: 100%;
  overflow: visible;
  background: url("../img/cny_bg_01.webp") top repeat;
}

/*======================
====Main CSS=====
=======================*/

/*----header------*/

header h1 {
    text-indent: 101%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
	width: 100%;
}

/* ========================================
   春節版頭
   原始設計尺寸：1904 × 647
======================================== */

.cny-kv,
.cny-kv *,
.cny-kv *::before,
.cny-kv *::after {
  box-sizing: border-box;
}

.cny-kv {
  position: relative;
  width: 100%;
  height: 647px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #e7020d;
  background-image: url("../img/header_bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1904px 647px;
}

/* ========================================
   顯示範圍
======================================== */

.cny-kv-viewport {
  position: relative;
  width: 100%;
  height: 647px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ========================================
   桌機固定設計舞台
======================================== */

.cny-kv-stage {
  position: relative;  
  width: 1904px;
  height: 647px;
  margin: 0 auto;
}

.cny-kv-stage figure {
    margin: 0;
    padding: 0;
}

/* 素材共用 */
.cny-kv-stage img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  user-select: none;
  pointer-events: none;
}

/* 羊 */
.cny-kv-goat {
  top: 76px;
  left: 485px;
  width: 320px;
}

/* 年份＋Logo＋月曆 */
.cny-kv-calendar {
  top: 82px;
  left: 845px;
  width: 571px;
}

/* 主標 */
.cny-kv-title {
  top: 332px;
  left: 855px;
  width: 456px;
}
.mobile{display: none;}
/* ========================================
   1904px 以下：
   先維持原尺寸，左右自然裁切
======================================== */

@media screen and (max-width: 1904px) and (min-width: 1101px) { 
  .cny-kv-stage {
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }
}

/* ========================================
   1100px 以下：
   版頭高度縮小
   背景維持比例、置中裁切
   中間素材同步縮小
======================================== */

@media screen and (max-width: 1100px) {

  /*
   * 以 1100 × 647 當作縮放基準。
   *
   * 1100px 寬時高度為 647px；
   * 1000px 寬時高度約 588px；
   * 768px 寬時高度約 452px。
   */
  .cny-kv {
    height: calc(100vw * 647 / 1100);

    /*
     * 背景依「高度」等比例縮放，
     * 不使用 100% auto，因此不會整張塞進畫面。
     *
     * 背景維持置中，左右自然裁切。
     */
    background-size: auto 100%;
    background-position: center top;
  }

  .cny-kv-viewport {
    height: calc(100vw * 647 / 1100);
  }

  /*
   * 中間內容區域以 1100 × 647 為基準。
   */
  .cny-kv-stage {
    position: absolute;
    top: 0;
    left: 50%;

    width: 100%;
    height: calc(100vw * 647 / 1100);

    margin: 0;
    transform: translateX(-50%);
  }

  /*
   * 座標換算基準：
   * 原始 1904px 舞台縮成中間 1100px 顯示區域。
   *
   * 羊、月曆、大標只在中間範圍內同比縮小。
   */

  .cny-kv-goat {
    top: 11.75%;
    left: 7.55%;
    width: 29.09%;
  }

  .cny-kv-calendar {
    top: 12.67%;
    left: 40.27%;
    width: 51.91%;
  }

  .cny-kv-title {
    top: 51.31%;
    left: 41.18%;
    width: 41.45%;
  }
}
@media screen and (max-width: 600px) {
	.cny-kv {height: 100%;}
	.cny-kv-viewport{display: none;}
	.mobile{display: block;margin-top: 40px;}
}
/*======================
====nav CSS=====
=======================*/

#main-nav{
    width: 100%;
    z-index: 990;         
}
 
 #block_menu {
     text-align: center;
     font-family:"微軟正黑體","黑體";
     font-weight: 600;
     overflow: hidden;
 }
 
 .sticky {
     top:40px;
 }
/* ========================================
   選單外層
======================================== */

#main-nav {
  position: relative;
  z-index: 990;
  width: 100%;
  min-height: 114px;
}

#block_menu,
#block_menu *,
#block_menu *::before,
#block_menu *::after {
  box-sizing: border-box;
}

#block_menu {
  position: relative;
  z-index: 999;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
  font-family: var(--family-basic);
  font-weight: 600;
  text-align: center;
}

/* JS 加入 sticky 後固定 */
#block_menu.sticky {
  position: fixed;
  top: 40px;
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

/* 清除浮動 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ========================================
   第一層紅色選單
======================================== */

.class-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #c40010;
}

.class-nav p {
  flex: 0 0 auto;
  height: 60px;
  margin: 0;
  padding: 0;
}

/* ========================================
   國外／國內圖片共用
======================================== */

.class-nav .menu-title {
  display: block;
  width: 97px;
  height: 60px;
  padding: 0;
  overflow: hidden;

  /* 隱藏 HTML 文字，只顯示背景圖 */
  text-indent: -9999px;
  white-space: nowrap;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 97px 50px;
}

/* ========================================
   國外亮／暗
======================================== */

/* 國外亮：有花 */
.class-nav .menu-title-first {
  margin-right: 10px;
  background-image: url("../img/menu_01.webp");
}

/* 國外暗：沒有花 */
.class-nav .menu-title-first-off {
  margin-right: 10px;
  background-image: url("../img/menu_01-o.webp");
}

/* ========================================
   國內亮／暗
======================================== */

/* 國內亮：有花 */
.class-nav .menu-title-second {
  margin-right: 8px;
  margin-left: 10px;
  background-image: url("../img/menu_02.webp");
}

/* 國內暗：沒有花 */
.class-nav .menu-title-second-off {
  margin-right: 8px;
  margin-left: 10px;
  background-image: url("../img/menu_02-o.webp");
}

/* ========================================
   第一層各按鈕寬度
======================================== */

.class-nav .btn1 {
  width: 108px;
}

.class-nav .btn2 {
  width: 90px;
}

.class-nav .btn3 {
  width: 70px;
}

.class-nav .btn4 {
  width: 108px;
}

.class-nav .btn5 {
  width: 70px;
}

/* ========================================
   第一層文字連結
======================================== */

.class-nav p a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0 12px;
  color: var(--yellow-color);
  background: transparent;
  border: 0;
  font-family: var(--family-basic);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.class-nav p a:hover {
  color: #ffffff;
  background: transparent;
}

/* 第一層目前頁面 */
.class-nav p a.active2 {
  align-self: flex-end;
  height: 50px;
  margin-top: 10px;
  color:var(--red-color);
  background: var(--yellow-color);
  border-radius: 10px 10px 0 0;
  font-weight: 700;
}

.class-nav p a.active2:hover {
  color:var(--red-color);
  background: var(--yellow-color);
}

/* ========================================
   第二層淡黃色選單
======================================== */

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 5px 10px;
  background: var(--yellow-color);
  list-style: none;
}

.navbar-nav li {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  padding: 0;
  font-family: var(--family-basic);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  list-style: none;
}

.navbar-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 32px;
  margin: 0;
  padding: 5px 10px;
  color: #955f3a;
  background: transparent;
  border: 0;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.navbar-nav li a:hover {
  color: #fff;
  background: #c40010;
  border-radius: 30px;
}

/* 第二層目前所在區塊 */
.navbar-nav li a.active {
  padding-right: 10px;
  padding-left: 10px;
  color: #fff;
  background: #c40010;
  border-radius: 30px;
  font-weight: 600;
}

.navbar-nav li a.active:hover {
  color: #fff;
  background: #b50015;
}

/* ========================================
   錨點假高度
   沿用原頁方式
======================================== */

/*
 * 適合直接開啟：
 * tour.html#jp
 * tour.html#kr
 */
.block-first {
  overflow: hidden;
  padding-top: 150px;
  margin-top: -150px;
}

section:nth-child(odd) .bg-cny {
padding: 70px 0 120px 0;
  /*
   * 自己控制左右花紋距離上方
   */
  --flower-top: 100px;
  width: 100%;
  background:
    /* 左右花紋 */
    url("../img/bg_flower.webp") center var(--flower-top) no-repeat,

    /* 底部波浪 */
    url("../img/bg_wave.webp") center bottom no-repeat,

    /* 米色底 (repeat) */
    url("../img/cny_bg_02.webp") left top repeat;

  /*
   * 三層背景尺寸
   */

  background-size:
        1920px auto,   /* 左右花紋 */
        1920px auto,   /* 底部波浪 */
        auto;          /* 底紋 repeat */
}

section:nth-child(even) .bg-cny {
padding: 70px 0 120px 0;
 /*
   * 自己控制左右花紋距離上方
   */
  --flower-top: 100px;
  width: 100%;
  background:
    /* 左右花紋 */
    url("../img/bg_flower.webp") center var(--flower-top) no-repeat,

    /* 底部波浪 */
    url("../img/bg_wave.webp") center bottom no-repeat;

   background-size:
        1920px auto,   /* 左右花紋 */
        auto;          /* 底紋 repeat */
}


/*--介紹區--*/
.about-cny {
padding: 0 0 120px 0;
  --flower-top: 80px;
  width: 100%;
  background:
    /* 左右花紋 */
    url("../img/bg_flower.webp") center var(--flower-top) no-repeat,
    /* 底部波浪 */
    url("../img/bg_wave.webp") center bottom no-repeat;
   background-size:
        1920px auto,   /* 左右花紋 */
        auto;          /* 底紋 repeat */         
}

/*--請假攻略--*/
.vacation{padding-top: 70px;}
.vacation-wrap{max-width: 980px;width: 90%; margin: 30px auto 0 auto;}
.vacation-wrap p{font-size: 18px;color:var(--black-color);line-height: 1.8em; font-family: var(--family-basic);font-weight: 600;}



.holiday-info,
.holiday-info *,
.holiday-info *::before,
.holiday-info *::after {
  box-sizing: border-box;
}
.holiday-wrap{margin: 20px auto 0 auto;max-width: 660px;width: 80%;}
.holiday-info {   
  padding: 0;
  list-style: none;
}

.holiday-info li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
  padding-left: 30px;
  color: #e75c00;
  font-family: var(--family-basic);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
}

/* CSS 背景小花 */
.holiday-info li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 25px;
  height: 25px;
  content: "";
  background:
    url("../img/icon_01.webp")
    center / contain
    no-repeat;
}

.holiday-line {
  display: inline;
}

.holiday-info strong {
  display: inline-block;
  margin: 0 2px;
  color: #e95600;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  vertical-align: -2px;
}

.holiday-date {
  white-space: nowrap;
}

.holiday-info li:last-child {
  margin-bottom: 0;
}

/* ========================================
   980px 以下：兩欄資訊卡
======================================== */

@media screen and (max-width: 850px) {
  .holiday-wrap{max-width: inherit;width: inherit;}
  .holiday-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /*
     * 讓兩張卡片高度一致。
     */
    grid-auto-rows: 1fr;
    gap: 10px;
    width: 90%;
    max-width: 850px;
    margin: 24px auto 0;
    padding: 0;
  }

  .holiday-info li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    margin: 0;
    padding: 15px;
    color: #e75c00;
    background: #fff;
    border: 1px solid #c8b450;
    border-radius: 16px;
    box-shadow: none;
  }

  /* 卡片版拿掉小花 */
  .holiday-info li::before {
    display: none;
  }

  /*
   * 每一列固定欄位：
   * 請／休｜數字｜天｜日期
   */
  .holiday-row {
    display: grid;
    grid-template-columns:
      30px
      58px
      28px
      minmax(0, 1fr);
    align-items: baseline;
    column-gap: 5px;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .holiday-rest {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #c8b450;
  }

  .holiday-label,
  .holiday-unit {
    font-family: var(--family-basic);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .holiday-row strong {
    display: block;
    width: 100%;
    margin: 0;
    color: #e95600;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  .holiday-date {
    min-width: 0;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
  }
}

/* ========================================
   650px 以下：仍維持兩欄
======================================== */

@media screen and (max-width: 650px) {
  .holiday-info {
    /*width: 96%;*/
    gap: 10px;
  }

  .holiday-info li {
    padding: 14px 9px 13px;
    border-radius: 13px;
  }

  .holiday-row {
    grid-template-columns:
      23px
      43px
      21px
      minmax(0, 1fr);
    column-gap: 2px;
  }

  .holiday-label,
  .holiday-unit {
    font-size: 15px;
  }

  .holiday-row strong {
    font-size: 27px;
  }

  .holiday-date {
    font-size: 13px;
  }
}

/* ========================================
   520px 以下：一排一張
======================================== */

@media screen and (max-width: 520px) {
  .holiday-info {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;

    /*
     * 和新春禮遇相同寬度。
     */
    /*width: 90%;*/
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .holiday-info li {
    width: 100%;
    height: auto;
    padding: 17px 20px 16px;
    border-radius: 14px;
  }

  /*
   * 固定一個內部寬度並置中。
   * 兩張卡的「請、休、數字、日期」會完全對齊。
   */
  .holiday-row {
    grid-template-columns:
      30px
      58px
      28px
      minmax(0, 1fr);

    column-gap: 5px;
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .holiday-label,
  .holiday-unit {
    font-size: 18px;
  }

  .holiday-row strong {
    font-size: 32px;
  }

  .holiday-date {
    font-size: 15px;
  }

  .holiday-rest {
    margin-top: 10px;
    padding-top: 10px;
  }
}

/* ========================================
   380px 以下
======================================== */

@media screen and (max-width: 380px) {
  /*
   * 不再改成94%，保持和新春禮遇同樣90%。
   */
  .holiday-info {
    /*width: 90%;*/
  }

  .holiday-info li {
    padding: 15px 10px 14px;
  }

  .holiday-row {
    grid-template-columns:
      25px
      48px
      23px
      minmax(0, 1fr);

    max-width: 290px;
    column-gap: 3px;
  }

  .holiday-label,
  .holiday-unit {
    font-size: 16px;
  }

  .holiday-row strong {
    font-size: 29px;
  }
}


.discount{padding-top: 70px;}
.discount-note{max-width: 950px;width: 90%; margin: 20px auto 0 auto;}
.discount-note p{
	font-family: var(--family-basic);
    margin:0 0 8px;
    padding-left:1.2em;
    text-indent:-1.2em;
    color:var(--black-color);
    font-size:15px;
	font-weight: 500;
    line-height:1.8em;
}


/* ========================================
   賀歲優惠卡片
======================================== */

.promo-card-list,
.promo-card-list *,
.promo-card-list *::before,
.promo-card-list *::after {
  box-sizing: border-box;
}

.promo-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;  
  max-width: 980px;
  width: 90%;
  margin: 30px auto 0 auto;  
}

.promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*min-height: 220px;*/
  padding: 3%;
  color: #fff;
  background: #de0c1b;
  border-radius: 15px;
  font-family: var(--family-basic);
  text-align: center;
}

/* 上方金色小花 */
.promo-card-icon {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  margin-bottom: 5px;
  background:url("../img/icon_02.webp")center / contain no-repeat;
}

/* 商品標題 */
.promo-card-title {
  position: relative;	  
  color: #f6f6e3;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8em;  
  letter-spacing: 1px;
  width: 100%;
  display: block; 
  padding-bottom: 5px;
}

/* 底線 */
.promo-card-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:95%;
    height:1px;
    background: rgba(246, 246, 227, 0.95);
    transform:translateX(-50%);
}

/* 下方說明 */
.promo-card-text {
  padding-top: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8em;  
}
.promo-card-text span{display: block;}
.promo-card-text strong{color: #ffdf6e;}

/* ========================================
   平板
======================================== */

@media screen and (max-width: 768px) {
  .promo-card-list {
    gap: 10px;
    padding-right: 0;
    padding-left: 0;
  }

  .promo-card {
    /*min-height: 190px;*/
    padding: 17px 14px 20px;
    border-radius: 10px;
  }

  .promo-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 5px;
  }

  .promo-card-title {font-size: 20px;}
  .promo-card-text {font-size: 18px;}
}

/* ========================================
   手機
======================================== */

@media screen and (max-width: 600px) {
  .promo-card-list {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .promo-card {
    min-height: auto;
    padding: 18px 16px 21px;
  }
}


/*--大標--*/
/* ========================================
   請假攻略標題
======================================== */

.vacation-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 930px;
  margin: 0 auto;
  padding: 20px 15px;
  /*
   * 不設定第三張雲紋背景圖。
   * 需要底色可自行修改。
   */
  /*background: transparent;*/
 background: url("../img/big_title_bg.webp") bottom no-repeat;
}

/*
 * 第二張透明邊框圖設為 h2 背景。
 * 請將檔名換成實際使用的圖檔。
 */
.vacation-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 388px;
  max-width: 100%;
  /*
   * 第二張圖約為 400 × 143，
   * 使用相同比例，縮放時不會變形。
   */
  aspect-ratio: 388 / 143;
  margin: 0;
  padding: 10px 70px 12px;
  color:var(--red-color);
  text-align: center;
  background-image: url("../img/big_title_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* 中文大標 */
.vacation-title-zh {
  display: block;
  width: 100%;
  padding-bottom: 9px;
  border-bottom: 1px solid #c40010;
 font-family: var(--family-basic);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5px;
  white-space: nowrap;
}

/* 英文小標 */
.vacation-title-en {
  display: block;
  padding-top: 9px;
  font-family: var(--family-basic);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

/* ========================================
   388px 以下
======================================== */

@media screen and (max-width: 388px) {
  .vacation-title-box {
    padding-right: 8px;
    padding-left: 8px;
  }

  .vacation-title {
    /*
     * 距離畫面左右各保留 8px。
     * 邊框圖片會跟著 h2 一起縮小。
     */
    width: calc(100vw - 16px);
    padding-right: 64px;
    padding-left: 64px;
  }

  .vacation-title-zh {
    padding-bottom: 7px;
    font-size: 26px;
    letter-spacing: 5px;
  }

  .vacation-title-en {
    padding-top: 7px;
    font-size: 14px;
  }
}


/*--綜合大標--*/
.big-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 930px;
  margin: 0 auto;
  padding: 20px 15px;
  /*
   * 不設定第三張雲紋背景圖。
   * 需要底色可自行修改。
   */
  /*background: transparent;*/
 background: url("../img/big_title_bg.webp") bottom no-repeat;
}

/*
 * 第二張透明邊框圖設為 h2 背景。
 * 請將檔名換成實際使用的圖檔。
 */
.big-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 388px;
  max-width: 100%;
  /*
   * 第二張圖約為 400 × 143，
   * 使用相同比例，縮放時不會變形。
   */
  aspect-ratio: 388 / 143;
  margin: 0;
  padding: 10px 70px 12px;
  color:var(--red-color);
  text-align: center;
  background-image: url("../img/big_title_02.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* 中文大標 */
.big-title-zh {
  display: block;
  width: 100%;
  padding-bottom: 9px;
  border-bottom: 1px solid #d4b65e;
 font-family: var(--family-basic);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5px;
  white-space: nowrap;
}

/* 英文小標 */
.big-title-en {
  display: block;
  padding-top: 9px;
  font-family: var(--family-basic);
  font-size: 15px;
  font-weight: 400;
  color: #d4b65e;
  line-height: 1;
  letter-spacing: 0;
}

/* ========================================
   388px 以下
======================================== */

@media screen and (max-width: 388px) {
  .big-title-box {
    padding-right: 8px;
    padding-left: 8px;
  }

  .big-title {
    /*
     * 距離畫面左右各保留 8px。
     * 邊框圖片會跟著 h2 一起縮小。
     */
    width: calc(100vw - 16px);
    padding-right: 64px;
    padding-left: 64px;
  }

  .big-title-zh {
    padding-bottom: 7px;
    font-size: 26px;
    letter-spacing: 5px;
  }

  .big-title-en {
    padding-top: 7px;
    font-size: 14px;
  }
}



/* ========================================
   旅遊商品卡片
======================================== */

.tour-card,
.tour-card *,
.tour-card *::before,
.tour-card *::after {
  box-sizing: border-box;
}

.tour-card {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #c8b450;
  border-radius: 25px;
  font-family: var(--family-basic);
}

/* ========================================
   有連結時
======================================== */

.tour-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.tour-card-link:focus-visible {
  outline: 3px solid #d7333f;
  outline-offset: -4px;
}

.tour-card-link:hover .tour-card-title {
  color: var(--red-color);
}

.tour-card-link:hover .tour-card-pic img {
  transform: scale(1.03);
}

/* ========================================
   共用主體
======================================== */

.tour-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  /*
   * 讓左右兩欄高度一致。
   * 左圖會跟著右側內容高度撐滿。
   */
  align-items: stretch;
  min-height:375px;	
}

/* ========================================
   圖片區
======================================== */

.tour-card-pic {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

/*
 * 清除 figure 預設間距，
 * 並讓 figure 填滿整個左欄。
 */
.tour-card-pic figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.tour-card-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

/* 地區標籤 */
.tour-card-area {
  position: absolute;
  top: 0;
  left: 35px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 40px;
  margin: 0;
  padding: 0 22px;
  color: #fff;
  background: #cb4d34;
  border-radius: 0 0 20px 20px;
  font-family: var(--family-basic);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/* ========================================
   文字區
======================================== */

.tour-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 3%;
  background: #fff;
}

/* 標題 */
.tour-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-bottom: 10px;
  color: var(--black-color);
  border-bottom: 1px solid #c8b450;
  font-family: var(--family-basic);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
  transition: color 0.25s ease;
}

.tour-card-title span {
  display: inline-block;
  color:var(--red-color);
}

/* 行程特色 */
.tour-card-info {
  position: relative;
  z-index: 1;
  margin: 15px 0 0 15px;
  padding: 0 8px;
  font-family: var(--family-basic);
  list-style: circle;
}

.tour-card-info li {
  margin-top: 8px;
  color: #666666;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

/* ========================================
   價格
======================================== */

.tour-card-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: auto 0 0 0;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 600;	
  white-space: nowrap;
  font-family: var(--family-basic);
  var(--black-color);	
}

.tour-card-price strong {
  margin: 0 2px;
  color:var(--red-color);  
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

/* ========================================
   出發地點
======================================== */

.tour-card-departure {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
  padding: 0 0 12px 0;
  font-family: var(--family-basic);
}

.tour-card-departure > span {  	 
  white-space: nowrap;	
}

.tour-card-departure ul {
  display: flex;
  flex-wrap: wrap;  
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--black-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5em;	
}

.tour-card-departure li {
  margin: 0;
  padding: 0;
}

.tour-card-departure a {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;border-radius: 30px;border: 1px #c8b450 solid;padding: 8px;margin-left: 8px;text-decoration: none;min-width: 50px;text-align: center;background-color: #fff;color:var(--black-color);
  text-decoration: none;
  transition: color 0.2s ease,background-color 0.2s ease;
}

.tour-card-departure a:hover {
  background: #c8b450;color: #fff;
}

/* ========================================
   平板
======================================== */

@media screen and (max-width: 900px) {
  .tour-card-body {
    display: block;
  }

  /*
   * 平板以下恢復正常圖片流，
   * 圖片會依原始比例縮放。
   */
  .tour-card-pic {
    min-height: 0;
  }

  .tour-card-pic figure {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .tour-card-pic img {
    width: 100%;
    height: auto;
    object-fit: initial;
    transform: none;
  }

  .tour-card-link:hover .tour-card-pic img {
    transform: scale(1.03);
  }

  .tour-card-content {  
    padding: 3%;
  }

  .tour-card-title {
    padding-bottom: 13px;    
  }

  .tour-card-info {
    margin-top: 12px;
  }

  .tour-card-info li {}

  .tour-card-price {
    margin-top: 10px;
    margin-right: 0;
    padding-top: 0;
  }

  .tour-card-price strong {}

  .tour-card-content::after {
    display: none;
  }
}

/*---三區塊行程---*/
.tour-wrap{
	max-width: 1200px;
	width: 90%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;	
	margin: 30px auto;
	gap: 10px;
	}

.ct30 {width:31%;display: inline-block; vertical-align: top;position: relative;}
.tour-box{border-radius: 25px;border: #c8b450 1px solid;background-color: #fff;margin-bottom: 10px;}
.tour-box a{display: flex;flex-direction: column;height: 100%;text-decoration: none;}
.tour-box p.area{position: absolute;font-family: var(--family-basic);font-size: 18px;line-height: 40px; font-weight: 600; min-width: 80px;height: 40px;padding: 0 22px;color: #fff;background: #cb4d34;left: 35px;top: 0;border-radius: 0 0 20px 20px;text-align: center;}
.tour-box .tour-pic{margin-bottom: -10px;}
.tour-box .tour-pic img{border-radius: 25px 25px 0 0;}
.tour-box .tour-txt{display: flex;flex-direction: column;padding: 5% 5% 0 5%;}
.tour-box .tour-txt h3{
  font-family: var(--family-basic);	
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;  
  border-bottom: 1px solid #c8b450;	
  transition: color 0.25s ease;
  margin: 0 auto;
  padding-bottom: 10px;
  display: block;
  width: 100%;
  text-align: center;
}
.tour-box .tour-txt p{font-family: var(--family-basic);font-size: 15px;font-weight: 600;}
.tour-box a h3 { color:var(--black-color);}
.tour-box:hover h3 { color:var(--red-color);}

ul.tour-mark{position: relative;height: 100%; margin: 15px 0 0 15px;padding: 0 8px 60px 8px;font-family: var(--family-basic); list-style-type: circle;}
ul.tour-mark li{
  color: #666;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;  
  margin-top: 8px;}

.tour-box p.price{	
	color: var(--black-color);
	text-align: center;
	font-family: var(--family-basic);
	font-size: 15px;
	line-height: 1.5em;
	font-weight: 600;
	padding: 10px 0;
	position: absolute;
	bottom: 2%;
	left: 0;
	right: 0;
}

.tour-box p.price strong {
	margin: 0 2px;
	display: inline-block;	
	font-family: var(--family-basic);
	font-size: 22px;
	font-weight: 600;	
	color:var(--red-color);
}


/*---條列行程---*/
.product-wrap {max-width: 1200px; width: 90%; margin: 30px auto;display:block;}

/*---地區名---*/
.tour-area-title {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 7px 14px 7px 42px;
  color: #d92727;
  background-color: #fff8ef;
  background-image: url("../img/icon-flower.webp");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 23px 23px;
  border: 1px solid #ef5555;
  border-radius: 10px;
  font-family: var(--family-basic);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.tour-list {}
.tour-list a {display:flex;padding: 10px;overflow: hidden;border-bottom: dashed 1px #cdbe79;text-decoration: none; justify-content:space-between;/*align-items:center;*/}
.name-l{flex:0 0 80%;font-family: var(--family-basic);font-size: 18px;font-weight: 600; color:var(--black-color);line-height: 1.8em;}
.name-l em{font-style: normal;color: #fff;font-family: var(--family-basic);font-size: 15px;font-weight: 500;border-radius: 25px;padding: 5px;margin-right: 5px;background-color: #cb4d34;}
.name-l strong{display: inline-block;font-family: var(--family-basic);font-size: 15px;font-weight: 600;color: #cb4d34;margin-left: 5px;}
.name-l span{display: inline-block;font-family: var(--family-basic);font-size: 18px;font-weight: 600;color:var(--red-color);}

.name-l02{flex:0 0 80%;font-family: var(--family-basic);font-size: 18px;color:var(--black-color);line-height: 1.8em;}
.name-l02 em{font-style: normal;color: #fff;font-family: var(--family-basic);font-size: 15px;font-weight: 500;border-radius: 25px;padding: 5px;margin-right: 5px;background-color: #cb4d34;}
.name-l02 strong{display: inline-block;font-family: var(--family-basic);font-size: 15px;font-weight: 600;color: #cb4d34;margin-left: 5px;}
.name-l02 span{display: inline-block;font-family: var(--family-basic);font-size: 18px;font-weight: 600;color:var(--red-color);}

.price-r{flex:0 0 20%; text-align:right;font-family: var(--family-basic);font-size: 15px;font-weight: 600;line-height: 1.8em;color: var(--black-color);}
.price-r strong{font-size: 22px;font-weight: 600; margin: 0 2px;color: var(--red-color);}

.price-p{flex:0 0 20%; text-align:right;font-family: var(--family-basic);font-size: 15px;font-weight: 600;line-height: 1.8em;color: var(--black-color);}
.price-p strong{font-size: 22px;font-weight: 600; margin: 0 2px;color: var(--red-color);}


/*---國內條列行程---*/
.product-list {	
	border-bottom: dashed 1px #cdbe79;	
	clear: both;
	overflow: hidden;
	padding: 10px 0;
}

.product-line {
	color:#fff;	
	display:flex;
	justify-content:space-between;
	align-items:flex-start;	
	overflow:hidden;
}

.product-line h3{
font-family: var(--family-basic);font-size: 18px;font-weight: 600; color:var(--black-color);line-height: 1.8em;flex:0 0 80%;}
.product-line h3 em {font-style: normal;color: #fff;font-family: var(--family-basic);font-size: 15px;font-weight: 500;border-radius: 25px;padding: 5px;margin-right: 5px;background-color: #cb4d34;}
.product-line h3 strong {display: inline-block;font-family: var(--family-basic);font-size: 15px;font-weight: 600;color: #cb4d34;margin-left: 5px;}
.product-line h3 span {display: inline-block;font-family: var(--family-basic);font-size: 18px;font-weight: 600;color:var(--red-color);}
.product-line .price-r{flex:0 0 20%; text-align:right;font-family: var(--family-basic);font-size: 15px;font-weight: 500;line-height: 1.5em;color: var(--black-color);}
.product-line .price-r strong{font-size: 22px;font-weight: 600; margin: 0 2px;color: var(--red-color);}

.product-list p.link{display: block;font-family: var(--family-basic);font-size: 15px;font-weight: 500;line-height: 1.5em; text-align: right;margin-top: 5px;}
.product-list p.link a{display: inline-block;border-radius: 30px;border: 1px #c8b450 solid;padding: 8px;margin-left: 8px;text-decoration: none;min-width: 50px;text-align: center;background-color: #fff;color:var(--black-color);transition: color 0.2s ease,background-color 0.2s ease;}
.product-list p.link a:hover{background-color: #c8b450;color: #fff;}

/* ========================================
   修正共用 gotop 縮放後位置偏移
   不修改共用 JS
======================================== */

/*
 * 避免 footer 外層成為 fixed 的定位基準。
 */
#footer-webpages {
  position: static !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: visible !important;

  transform: none !important;
  filter: none !important;
  perspective: none !important;
  contain: none !important;
}

/*
 * 強制浮動區塊永遠以瀏覽器視窗定位。
 */
#footer-webpages .dm-aside {
  position: fixed !important;
  right: 10px !important;
  bottom: 130px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;

  width: auto !important;
  max-width: none !important;
  margin: 0 !important;

  /*
   * 注意：只清除 dm-aside 本身，
   * 不會動到裡面 gotop 按鈕的顯示動畫。
   */
  transform: none !important;
}

/* 手機原本的位置 */
@media screen and (max-width: 768px) {
  #footer-webpages .dm-aside {
    right: 10px !important;
    bottom: 80px !important;
  }
}
  
@media only screen and ( max-width:959px) {
  .name-l{flex:0 0 75%;}
  .price-r{flex:0 0 25%;}	
  .name-l02{flex:0 0 70%;}
  .price-p{flex:0 0 30%;}	
}


@media only screen and ( max-width:900px) {
.navbar-nav li a {font-size: 15px;padding: 5px;}
/* 第二層目前所在區塊 */
.navbar-nav li a.active {padding-right: 5px;padding-left: 5px;}	
}

@media only screen and ( max-width:850px) {
.product-line h3{flex:0 0 75%;}
.product-line .price-r{flex:0 0 25%;}
}

/*---平板-----*/
@media only screen and ( max-width:768px) 
{
#main-nav{display:none;}
section:nth-child(odd) .bg-cny,section:nth-child(even) .bg-cny {
padding: 30px 0 120px 0;	
}	
.about-cny {
padding: 0 0 50px 0;}	
.vacation,.discount{padding-top: 30px;}	
.block-first {  
  padding-top: 0;  
  margin-top: 0;
}	
.tour-wrap{flex-wrap: wrap;margin: 30px auto;}
.ct30 {width:100%;}
.tour-box .tour-txt{display: block;width: 100%;padding: 3% 3% 1% 3%;margin: 0 auto;}
ul.tour-mark{padding-bottom: 50px;}	
.tour-box .tour-txt h3{font-size: 22px;}	

.name-l{flex:0 0 68%;}
.price-r{flex:0 0 32%;}	
.name-l02{flex:0 0 65%;}
.price-p{flex:0 0 35%;}
}

@media only screen and (max-width:600px) 
{ 
.tour-list a {display:inherit;}	
.name-l,.name-l02{flex:initial;width: 100%; display: block;}
.price-r,.price-p{flex:initial;width: 100%;display: block;margin-top: 5px;}	
	
.product-line {	display:inherit;}	
.product-line h3{flex:initial;width: 100%; display: block;}	
.product-line .price-r{flex:initial;width: 100%; display: block;}	
ul.tour-mark{}		
}

/*---手機版-----*/

@media only screen and (max-width:480px) 
{		
}

@media only screen and (max-width:450px) 
{	
}
