@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Family */
/* Section Spacing - 常見預設 */
/*
  手機常用：padding-inline 20-48px、padding-block 32-64px
  桌機常用：padding-inline 90-150px、padding-block 48-80px
  row 間距：手機 16-28px、桌機 24-36px
  如果不需要 gutter，可用 .section-pad--px-0 / .section-pad--py-0 等類別來局部去除。
*/
/* Section Spacing - Desktop */
/* Section Spacing - 常見預設 end*/
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
/* =========================================
  📐 Section Spacing System v2

  規則：
  - .section-pad        = 全站預設 padding，貼在 <section>
  - .section-pad--px-0  = 手機 X 軸 0，桌機自動補回
  - .section-pad--py-0  = 手機 Y 軸 0，桌機自動補回
  - .section-pad--pt-0  = 手機上方 0，桌機自動補回
  - .section-pad--pb-0  = 手機下方 0，桌機自動補回
  - .section-pad--ps-0  = 手機左側 0，桌機自動補回
  - .section-pad--pe-0  = 手機右側 0，桌機自動補回
  - .section-gutter     = section 等級的 row 間距，貼在 Bootstrap .row
  - 其餘削減用 Bootstrap：py-0 / py-lg-0 / px-0 …

  手機滿版用法：
  <section class="section-pad section-pad--px-0">
    <img>
    <div class="px-mobile-section">文字</div>
  </section>
========================================= */
/* ─── Root Tokens ────────────────────────────────────────── */
:root {
  --section-padding-px: clamp(36.4px, -5px + 10.62vw, 100.2px);
  --section-padding-py: clamp(60px, -8.14px + 17.47vw, 165px);
  --section-gutter-y: clamp(40px, -5.42px + 11.65vw, 110px);
  --section-gutter-x: clamp(16px, 0.1px + 2vw, 24px);
}

@media (min-width: 992px) {
  :root {
    --section-padding-px: clamp(82.5px, -0.34px + 8.35vw, 160px);
    --section-padding-py: clamp(58px, 0.28px + 5.82vw, 112px);
    --section-gutter-y: clamp(24px, 0.2px + 1.8vw, 36px);
    --section-gutter-x: clamp(32px, 0px + 3vw, 48px);
    --content-padding-px: clamp(82.6px, calc(-0.14px + 8.34vw), 160px);
    --content-gutter-px: clamp(50.6px, calc(-0.07px + 5.11vw), 98px);
  }
}
/* ─── .section-pad ───────────────────────────────────────── */
.content-wrap {
  padding-inline: var(--content-padding-px);
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .content-wrap {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}

.txt-wrap {
  padding-inline: clamp(14px, -3.65px + 4.53vw, 41.2px);
}
@media (min-width: 992px) {
  .txt-wrap {
    padding-inline: clamp(20px, -1.38px + 2.16vw, 40px);
  }
}

.page {
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .page {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}

.section-pad {
  padding-inline: var(--section-padding-px);
  padding-block: var(--section-padding-py);
  /* 手機 X 軸 0，桌機補回 */
}
.section-pad--px-0 {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .section-pad--px-0 {
    padding-inline: var(--section-padding-px);
  }
}
.section-pad {
  /* 手機 Y 軸 0，桌機補回 */
}
.section-pad--py-0 {
  padding-block: 0;
}
@media (min-width: 992px) {
  .section-pad--py-0 {
    padding-block: var(--section-padding-py);
  }
}
.section-pad {
  /* 手機上方 0，桌機補回 */
}
.section-pad--pt-0 {
  padding-top: 0;
}
@media (min-width: 992px) {
  .section-pad--pt-0 {
    padding-top: var(--section-padding-py);
  }
}
.section-pad {
  /* 手機下方 0，桌機補回 */
}
.section-pad--pb-0 {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .section-pad--pb-0 {
    padding-bottom: var(--section-padding-py);
  }
}
.section-pad {
  /* 手機左側 0，桌機補回 */
}
.section-pad--ps-0 {
  padding-left: 0;
}
@media (min-width: 992px) {
  .section-pad--ps-0 {
    padding-left: var(--section-padding-px);
  }
}
.section-pad {
  /* 手機右側 0，桌機補回 */
}
.section-pad--pe-0 {
  padding-right: 0;
}
@media (min-width: 992px) {
  .section-pad--pe-0 {
    padding-right: var(--section-padding-px);
  }
}

/* ─── .section-gutter（Bootstrap .row 的 section 等級間距）── */
.section-gutter {
  --bs-gutter-y: var(--section-gutter-y);
  --bs-gutter-x: var(--section-gutter-x);
}

/* ─── 手機局部回填 ───────────────────────────────────────── */
/* section-pad--bleed 內，讓部分內容保有手機 padding
   用法：<div class="px-mobile-section"> */
@media (max-width: 991px) {
  .px-mobile-section {
    padding-inline: var(--section-padding-px);
  }
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.66;
  letter-spacing: 0.04em;
  font-size: 1rem;
}
@media (max-width: 991px) {
  body {
    font-size: 0.9rem;
  }
}

/* ========================
  🏷 Page Typography Patterns
  語意標題 class — 全站共用標題組合樣式
  修改此處即可全站同步，不需逐一改 section
  需要差異化時，在 style.scss 內的 pageXX 局部覆蓋
======================== */
/* 英文裝飾大標（LOCATION / CONCEPT 等）
   字體切換：直接加 .font-* class
   modifier: --primary */
.page-en-title {
  font-size: clamp(2.25rem, 25.7px + 3.21vw, 4.5rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.page-en-title--primary {
  color: #2ea7e0;
}

/* 中文主標題
   字體切換：直接加 .font-* class
   modifier: --primary */
.page-zh-title {
  font-size: clamp(1.2rem, 15.5px + 1.14vw, 2rem);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.5rem;
  margin-bottom: 0.09em;
  white-space: nowrap;
}
.page-zh-title--primary {
  color: #2ea7e0;
}

/* 中文次標題（Optional）modifier: --primary */
.page-zh-subtitle {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: 0;
}
.page-zh-subtitle--primary {
  color: #2ea7e0;
}
.page-zh-subtitle {
  font-size: clamp(14.5px, -2.05px + 4.24vw, 40px);
}
@media (min-width: 992px) {
  .page-zh-subtitle {
    font-size: clamp(15.5px, 1.56vw, 30px);
  }
}

/* 英文次標題（Optional）modifier: --primary */
.page-en-subtitle {
  font-size: clamp(1.1rem, 15.8px + 0.57vw, 1.5rem);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.page-en-subtitle--primary {
  color: #2ea7e0;
}

/* 中文小標籤（Optional）modifier: --primary */
.page-zh-label {
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  color: #2ea7e0;
}
.page-zh-label--primary {
  color: #2ea7e0;
}

/* 英文小標籤（Optional）modifier: --primary */
.page-en-label {
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2ea7e0;
}
.page-en-label--primary {
  color: #2ea7e0;
}

/* 圖說 / 註解（Optional）
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-caption {
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
}
.page-caption--primary {
  color: #2ea7e0;
}

/* ========================
  📢 Slogan（廣告標語系統）
  用於 Banner / Footer 品牌訴求語
  字體切換：直接加 .font-* class
======================== */
/* 廣告標語容器：無預設對齊，搭配 .text-spread 啟用字元均分 */
.slogan-wrap {
  max-width: 100%;
  margin-inline: auto;
}

/* 標語字級一（最大） modifier: --primary */
.page-slogan-heading1 {
  font-size: clamp(1.5rem, 17.1px + 2.14vw, 3rem);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  letter-spacing: 0.3rem;
  line-height: 1.8;
}
.page-slogan-heading1--primary {
  color: #2ea7e0;
}

/* 標語字級二（次大） modifier: --primary */
.page-slogan-heading2 {
  font-size: clamp(1.25rem, 14px + 1.5vw, 2.4rem);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  letter-spacing: 0.25rem;
  line-height: 1.8;
}
.page-slogan-heading2--primary {
  color: #2ea7e0;
}

/* 標語字級三（中） modifier: --primary */
.page-slogan-heading3 {
  font-size: clamp(1.1rem, 12px + 0.9vw, 1.8rem);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  letter-spacing: 0.15rem;
  line-height: 2;
}
.page-slogan-heading3--primary {
  color: #2ea7e0;
}

/* 標語小標籤（小） modifier: --primary */
.page-slogan-label {
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2ea7e0;
}
.page-slogan-label--primary {
  color: #2ea7e0;
}

/* ========================
  ✨ Text Decoration Utilities
======================== */
/* 字元均分
   1. 加在 .slogan-wrap 上 → 所有子行統一均分：<div class="slogan-wrap text-spread">
   2. 單一元素獨立使用 → <h2 class="page-slogan-heading1 text-spread">
   兩者都需在 style.scss 設定 width */
.text-spread {
  max-width: 100%;
  margin-inline: auto;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}

/* 文字左右對齊*/
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
  word-break: break-all;
}

@media (min-width: 992px) {
  .text-lg-justify {
    text-align: justify;
    text-justify: inter-ideograph;
    -moz-text-align-last: left;
         text-align-last: left;
    word-break: break-all;
  }
  .text-lg-justify.text-center {
    text-align: justify !important;
  }
}

/* 線條夾文字
   顏色繼承父層，深色背景自動變白：<p class="title-lined text-white">
   用法：<p class="title-lined page-slogan-heading3"> */
.title-lined {
  display: flex;
  align-items: center;
}
.title-lined::before, .title-lined::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.title-lined::before {
  margin-right: 1.5rem;
}
.title-lined::after {
  margin-left: 1.5rem;
}

/* ========================
  📐 Text Alignment
======================== */
/*
  .txt-wrap 標準結構：
  .txt-wrap
    ├── .txt-title    → 標題群組（label / title / subtitle）
    ├── .txt-body     → 段落內文（<p> 自動套用對齊規則）
    └── small.page-caption
*/
.txt-wrap .txt-title {
  margin-bottom: clamp(16.5px, -0.07px + 1.67vw, 32px);
}
@media (max-width: 991px) {
  .txt-wrap .txt-title {
    margin-top: clamp(40px, -5.42px + 11.65vw, 110px);
    margin-bottom: clamp(18px, -2.47px + 5.25vw, 49.55px);
  }
}
.txt-wrap .txt-body p {
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  font-family: "Noto Serif TC", "PMingLiU", serif;
}
@media (min-width: 992px) {
  .txt-wrap .txt-body p {
    -moz-text-align-last: start;
         text-align-last: start;
  }
}

@media (min-width: 992px) {
  .txt-wrap + .txt-wrap {
    padding-top: clamp(24px, -4.86px + 2.91vw, 51px);
  }
}
@media (max-width: 991px) {
  .txt-title.text-center .page-zh-title span,
  .txt-title.text-center .page-zh-subtitle span {
    position: relative;
    display: block;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ========================
  🔤 Font System
======================== */
.font-zh-sans {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.font-zh-serif {
  font-family: "Noto Serif TC", "PMingLiU", serif;
}

.font-en-sans {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.font-en-serif {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/* ========================
  🎞 Plugins
======================== */
/* slick */
.slick-prev {
  left: 0;
  z-index: 10;
}
.slick-prev:before {
  content: "\f284";
}

.slick-next {
  right: 0;
}
.slick-next:before {
  content: "\f285";
}

.slick-next,
.slick-prev {
  width: auto;
  height: auto;
}

.slick-prev:before,
.slick-next:before {
  font-family: bootstrap-icons !important;
  font-size: 3rem;
}

.slick-dots li button:before {
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
}

.slick-dots li.slick-active button:before {
  color: #2ea7e0;
  opacity: 1;
}

.slick-dots {
  bottom: 4%;
  padding-inline: 6px;
}
@media (max-width: 991px) {
  .slick-dots {
    display: none !important;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .slick-slider.is-multiple .slick-list {
    margin-inline: clamp(-13px, 0.45px - 0.7vw, -6.5px);
  }
  .slick-slider.is-multiple .slick-slide {
    padding-inline: clamp(6.5px, -0.45px + 0.7vw, 13px);
  }
}
/* fancybox */
.fancybox-navigation {
  height: 100vh;
}

/* ========================
  📐 Section Layout
======================== */
/* --- 高度 ---
   手機 / 平板直向：min-height: 100svh
   桌機橫向（≥1200px）：aspect-ratio: 16/9
   加 .is-fullscreen 可強制所有裝置皆 100svh
*/
section {
  width: 100%;
  min-width: 100%;
  overflow: hidden;
}

@media (orientation: landscape) and (min-width: 992px) {
  .section-screen {
    min-height: unset;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.section-screen.is-fullscreen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen.is-fullscreen {
    aspect-ratio: unset;
    min-height: 100svh;
  }
}

/* --- 垂直對齊（需搭配高度 class 或自訂高度才有效果） --- */
.section-v-center {
  display: flex;
  align-items: center;
}

.section-v-between {
  display: flex;
  align-items: stretch;
}

/* ========================
  🖼 Image
======================== */
/*
  .img-wrap 支援兩種內部結構：

  舊版（background-image）：
  <div class="img-wrap">
    <div class="img-ratio">
      <div class="img-bg" style="background-image: url(xxx.jpg);"></div>
    </div>
    <div class="img-caption">說明</div>
  </div>

  新版（<img> + aspect-ratio）：
  <div class="img-wrap">
    <img class="img-cover" style="aspect-ratio: 10/7;"
         src="xxx.jpg" alt="..." loading="lazy">
    <div class="img-caption">說明</div>
  </div>
*/
.img-wrap {
  position: relative;
}
.img-wrap a {
  display: block;
}
.img-wrap .img-ratio {
  position: relative;
  width: 100%;
  padding-top: 70%;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-wrap .img-ratio {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}
.img-wrap .img-ratio .img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.img-wrap.img-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, #225e9f 0%, rgba(34, 94, 159, 0) 40%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .img-wrap.img-gradient::after {
    display: none;
  }
}
.img-wrap.img-gradient .img-caption {
  z-index: 2;
}

.img-cover {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-cover {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}

.img-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  text-align: start;
  padding: 3px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.678);
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
}
@media (max-width: 991px) {
  .img-caption {
    text-align: center;
  }
}

/* ========================
  🗺 google Map Embed 
======================== */
.map-embed iframe {
  display: block;
  width: 100% !important;
  height: clamp(300px, 50vh, 700px) !important;
  border: none;
}

/* ========================
  🎭 Stage / Layer（分層進場）
======================== */
.stage-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage,
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ========================
  🔧 Base
======================== */
*,
*::before,
*::after {
  position: relative;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* ========================
  🎨 Color System
======================== */
:root {
  --color-primary: #2ea7e0;
  --color-primary-hover: #2689b7;
  --color-secondary: #bea850;
  --color-secondary-hover: #a68915;
  --color-gray: #888888;
  --color-gray-hover: #656565;
  --bs-primary: #2ea7e0;
  --bs-primary-rgb: 46, 167, 224;
  --bs-secondary: #bea850;
  --bs-secondary-rgb: 190, 168, 80;
  --bs-link-color: #2ea7e0;
  --bs-link-hover-color: #2689b7;
}

.text-gray {
  color: #888888 !important;
}

.bg-gray {
  background-color: #888888 !important;
}

.border-gray {
  border-color: #888888 !important;
}

.form-check-input:checked {
  background-color: #2ea7e0 !important;
  border-color: #2ea7e0 !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2ea7e0;
  --bs-btn-border-color: #2ea7e0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2689b7;
  --bs-btn-hover-border-color: #2689b7;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2689b7;
  --bs-btn-active-border-color:#2689b7;
  --bs-btn-focus-shadow-rgb: 46, 167, 224;
}

.btn-outline-primary {
  --bs-btn-color: #2ea7e0;
  --bs-btn-border-color: #2ea7e0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2ea7e0;
  --bs-btn-hover-border-color: #2ea7e0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2689b7;
  --bs-btn-active-border-color:#2689b7;
  --bs-btn-focus-shadow-rgb: 46, 167, 224;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #bea850;
  --bs-btn-border-color: #bea850;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a68915;
  --bs-btn-hover-border-color: #a68915;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a68915;
  --bs-btn-active-border-color:#a68915;
  --bs-btn-focus-shadow-rgb: 190, 168, 80;
}

.btn-outline-secondary {
  --bs-btn-color: #bea850;
  --bs-btn-border-color: #bea850;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bea850;
  --bs-btn-hover-border-color: #bea850;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a68915;
  --bs-btn-active-border-color:#a68915;
  --bs-btn-focus-shadow-rgb: 190, 168, 80;
}

.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #656565;
  --bs-btn-hover-border-color: #656565;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

.btn-outline-gray {
  --bs-btn-color: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #888888;
  --bs-btn-hover-border-color: #888888;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

/* ========================
  🎭 form
======================== */
.form-control {
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.596);
}
.form-control:focus {
  color: #333333;
  background-color: #fff;
  border-color: #2ea7e0;
  outline: 0;
  box-shadow: 0 0 10px 3px rgba(46, 167, 224, 0.44);
}

/* ========================
  🔗 Link / Button
======================== */
a,
.btn {
  text-decoration: none;
  border-radius: 0;
}
a:hover,
.btn:hover {
  text-decoration: none;
}

a:focus,
button:focus {
  outline: none !important;
}

p {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */