@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Size - Desktop */
/* Font Size - Mobile */
/* Section Spacing */
/* 80px */
/* 48px */
/* Font Family */
/* Root Tokens（給 CSS / JS 共用） */
:root {
  /* Font Size - Desktop */
  --fs-h1: 3rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.125rem;
  --fs-small: 0.875rem;
  --fs-caption: 0.75rem;
  /* Font Size - Mobile */
  --fs-h1-m: 1.6rem;
  --fs-h2-m: 1.2rem;
  --fs-h3-m: 1.1rem;
  --fs-h4-m: 1rem;
  --fs-small-m: 0.75rem;
  --fs-caption-m: 0.65rem;
}

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

body {
  /* ✅ 預設字級（取代 fs-body） */
  font-size: 1rem;
  /* ✅ 預設字體 */
  font-family: "Noto Serif TC", "PMingLiU", serif;
  background: #fff;
}
@media (max-width: 991px) {
  body {
    font-size: 0.9rem;
  }
}

/* ========================
  🔠 Typography System
======================== */
/* Mobile First */
.fs-h1 {
  font-size: var(--fs-h1-m);
}

.fs-h2 {
  font-size: var(--fs-h2-m);
}

.fs-h3 {
  font-size: var(--fs-h3-m);
}

.fs-h4 {
  font-size: var(--fs-h4-m);
}

.fs-small {
  font-size: var(--fs-small-m);
}

.fs-caption, .infoImg {
  font-size: var(--fs-caption-m);
}

/* Desktop */
@media (min-width: 992px) {
  .fs-h1 {
    font-size: var(--fs-h1);
  }
  .fs-h2 {
    font-size: var(--fs-h2);
  }
  .fs-h3 {
    font-size: var(--fs-h3);
  }
  .fs-h4 {
    font-size: var(--fs-h4);
  }
  .fs-small {
    font-size: var(--fs-small);
  }
  .fs-caption, .infoImg {
    font-size: var(--fs-caption);
  }
}
/* ❌ 不提供 fs-body（避免濫用） */
/* ========================
  📐 Text Alignment
======================== */
/* 段落對齊
   手機：左右對齊（窄版避免右側鋸齒）
   桌機：inherit，讓父層 text-center 等 class 自然接管
   作用範圍：.Txt > .text 內的 <p>，標題（.Txt 直屬）不受影響 */
.Txt .text p {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
  word-break: break-all;
}
@media (min-width: 992px) {
  .Txt .text p {
    text-align: inherit;
    -moz-text-align-last: auto;
         text-align-last: auto;
    word-break: normal;
  }
}
.Txt .text p.text-center {
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  word-break: normal;
}
@media (min-width: 992px) {
  .Txt .text p.text-lg-center {
    -moz-text-align-last: center;
         text-align-last: center;
  }
}

/* ========================
  🔤 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;
}

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

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

/* ========================
  🖼 Image
======================== */
.Img a {
  display: block;
}
.Img .innerImg {
  width: 100%;
  padding-top: 70%;
}
.Img .innerImg .image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.infoImg {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  text-align: right;
  padding: 3px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.678);
  /* ✅ 改為使用系統字級 */
}

/* ========================
  📐 Section Spacing
======================== */
.section-pt, .section-py {
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .section-pt, .section-py {
    padding-top: 5rem;
  }
}

.section-pb, .section-py {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .section-pb, .section-py {
    padding-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .section-lg-pt, .section-lg-py {
    padding-top: 5rem;
  }
}

@media (min-width: 992px) {
  .section-lg-pb, .section-lg-py {
    padding-bottom: 5rem;
  }
}

.section-sm-pt, .section-sm-py {
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .section-sm-pt, .section-sm-py {
    padding-top: 0;
  }
}

.section-sm-pb, .section-sm-py {
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .section-sm-pb, .section-sm-py {
    padding-bottom: 0;
  }
}

/* ========================
  🎨 Color System
======================== */
.text-primary {
  color: #CC5D17 !important;
}

.bg-primary {
  background-color: #CC5D17 !important;
}

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

.btn-primary {
  color: #fff;
  background-color: #CC5D17;
  border-color: #CC5D17;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
  background-color: #b55010;
  border-color: #b55010;
}
.btn-primary:active, .btn-primary.active {
  background-color: #b55010;
  border-color: #b55010;
}

/* ========================
  🎞 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;
}

/* fancybox */
.fancybox-navigation {
  height: 100vh;
}

body {
  -webkit-user-select: none; /* Safari, Chrome, iOS */
  -moz-user-select: none; /* Firefox */ /* IE/Edge */
  user-select: none; /* 標準語法 */
  /* 手機端長按與點擊優化 */
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
body .Img .innerImg .image {
  -webkit-user-drag: none;
  pointer-events: none;
}
body img {
  -webkit-user-drag: none;
  pointer-events: none;
}/*# sourceMappingURL=main.css.map */