*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
  ══════════════════════════════════════════
  由你旅遊 品牌色彩系統
  底色：#5B622E（橄欖綠）
  輪播色：#46B8F5（天藍）↔ #FFC03F（金黃）每 3 秒切換
  ══════════════════════════════════════════
*/
:root {
  /* 輪播色 — 由 JS 每 3 秒切換，套用於所有區塊標題 */
  --carousel:   #B0D1D9;
  /* 初始值，JS 會動態更新 */
  --carousel-1: #B0D1D9;
  /* 霧藍 */
  --carousel-2: #FFDB78;
  /* 金黃 */
  --carousel-3: #A7C6D9;
  /* 淺藍灰 */
  --carousel-4: #C1AB87;
  /* 暖棕 */
  --carousel-5: #E6FFBB;
  /* 嫩綠黃 */

  /* 頁面底色系統（橄欖綠系） */
  --page-bg:    #5B622E;
  /* 主底色 */
  --bg-dark:    #474e23;
  /* 深一階 — 深色區塊 */
  --bg-darker:  #363b1a;
  /* 最深 — nav/footer */
  --bg-light:   #687236;
  /* 淺一階 — 輕色區塊 */
  --bg-card:    rgba(255,255,255,0.07);
  /* 卡片背景 */
  --bg-card-hv: rgba(255,255,255,0.12);
  /* 文字色 */
  --text:       #f4f0e6;
  /* 主文字（淺米白） */
  --text-muted: rgba(255,255,255,0.65);
  --text-dim:   rgba(255,255,255,0.35);
  --border:     rgba(255,255,255,0.12);
  --border-light: rgba(255,255,255,0.07);
  /* 字體 — 系統預設 sans-serif */
  --font-main:  sans-serif;
  --font-serif: sans-serif;
}

/*
  Fillo／官網嵌入：避免與母站 .container、body 等全域樣式衝突，
  並強制橫向滿版（含 1920px）。
  注意：#ut-fukuoka-root 不使用 transform／filter，避免破壞 sticky/fixed 定位。
*/
html.ut-fukuoka-html {
  width: 100%;
  max-width: none;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body.ut-fukuoka-body {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
#ut-fukuoka-root {
  width: 100%;
  max-width: none;
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  background: var(--page-bg);
}

/* 內容欄維持可讀寬度；與 Bootstrap 等 .container 區隔 */
#ut-fukuoka-root .container {
  max-width: 1440px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
  box-sizing: border-box !important;
}

/* 背景區塊務必橫向拉滿 */
#ut-fukuoka-root > .hero-wrapper,
#ut-fukuoka-root > .feat-bar,
#ut-fukuoka-root > section,
#ut-fukuoka-root > .c-detail,
#ut-fukuoka-root > footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

#ut-fukuoka-root .hero-wrapper,
#ut-fukuoka-root .hero {
  width: 100vw;
  max-width: 100vw;
}

/* 商品頁內長條導航：固定在官網 header 下方 */
.fukuoka-subnav {
  position: fixed;
  top: 79px;
  left: 0;
  right: 0;
  /* 必須低於官網 header／下拉選單，避免遮住主選單 */
  z-index: 9;
  padding: 0 160px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(54, 59, 26, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.fukuoka-subnav-logo {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.25;
}
.fukuoka-subnav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fukuoka-subnav-links li {
  display: flex;
  align-items: center;
}
.fukuoka-subnav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.25;
}
.fukuoka-subnav-links a:hover {
  color: var(--carousel);
}
.fukuoka-subnav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  background: var(--carousel);
  color: #1a1a10;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  line-height: 1;
}

/* 避免固定導航遮住 Hero 內容 */
#ut-fukuoka-root .hero-wrapper {
  margin-top: 58px;
}

@media (max-width: 1440px) {
  #ut-fukuoka-root .container {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}

@media (max-width: 900px) {
  #ut-fukuoka-root .container {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .fukuoka-subnav {
    display: none;
  }
  #ut-fukuoka-root .hero-wrapper {
    margin-top: 0;
  }
}

body {
  font-family: var(--font-main);
  background: var(--page-bg);
  color: var(--text);
  overflow-x: clip;
  width: 100%;
}

/* ─── 自訂游標（跟著輪播色變化） ─── */
.cur {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
.cur svg {
  width: 100%;
  height: 100%;
}
.cur-r {
  position:fixed;
  width:34px;
  height:34px;
  border:1.5px solid var(--carousel);
  border-radius:50%;
  pointer-events:none;
  z-index:9998;
  transform:translate(-50%,-50%);
  transition:border-color 0.8s ease, transform .4s ease;
  opacity:.55;
}
#ut-fukuoka-root *, #ut-fukuoka-root a, #ut-fukuoka-root button {
  cursor: none;
}

/* ─── HERO — Glanta 風格：滾動切換全螢幕圖片 ─── */

/* 外層包裝：高度 = 張數 × 100vh，讓滾動有空間 */
.hero-wrapper {
  height: 1200vh;
  /* 6 張 × 200vh，每張有兩倍滾動距離 */;
}

/* Hero 本體 sticky 固定在視窗 */
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* 每一張投影片 — opacity/transform 由 JS 直接控制 */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* 投影片背景圖 */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

/* 第一張投影片：影片背景 */
.slide-video-wrap {
  background: #000;
}
.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 漸層遮罩 */
.slide-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(36,41,16,.15) 0%,
    rgba(36,41,16,.05) 40%,
    rgba(36,41,16,.72) 100%
  );
}

/* 投影片內容 */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  /* 較大的 padding-bottom 讓主標／副標區塊相對畫面上移 */
  padding: 0 120px 160px 170px;
}
.slide-inner {
  max-width: 860px;
}

/* ── 標題字體修正 ── */
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 400;
  /* 原本 700 → 改為 400，較不粗 */
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--carousel);
  display: block;
  font-weight: 600;
  /* 原本 300 太細 → 改為 600，清楚可見 */
  font-size: 0.52em;
  letter-spacing: 3px;
  margin-bottom: 12px;
  transition: color 0.8s ease;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-sub {
  font-size: clamp(13px, 1.6vw, 17px);
  color: rgba(255,255,255,.75);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 2.5px;
}
.hero-badges {
  display: flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ── 投影片指示點（右側）── */
.slide-dots {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .4s, transform .4s;
  position: relative;
}
.dot::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: opacity .4s;
}
.dot.active {
  border-color: var(--carousel);
  transform: scale(1.15);
  transition: border-color 0.8s ease, transform .4s;
}
.dot.active::after {
  opacity: 0;
}
.dot .dot-icon {
  position: absolute;
  width: 13px;
  height: 13px;
  opacity: 0;
  transition: opacity .4s;
}
.dot.active .dot-icon {
  opacity: 1;
}
.dot .dot-icon path,
.dot .dot-icon line,
.dot .dot-icon circle {
  stroke: var(--carousel);
  transition: stroke 0.8s ease;
}

/* ── 進度條（底部） ── */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--carousel);
  transition: width 0.6s ease, background 0.8s ease;
  z-index: 10;
}

/* ── Scroll 提示 ── */
.play-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.play-line {
  width:1px;
  height:56px;
  background:linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
.play-hint span {
  font-size: 12px;
  letter-spacing:3px;
  color:rgba(255,255,255,.45);
  writing-mode:vertical-rl;
  text-transform:uppercase;
}

/* ── hero-tag 標籤 ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--carousel);
  padding: 6px 20px;
  margin-bottom: 20px;
  transition: background 0.8s ease;
  border-radius: 20px;
}
.hero-tag span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a1a10;
}

/* ── badge ── */
.badge {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  border-radius: 20px;
}
.badge.fill {
  background:var(--carousel);
  border-color:var(--carousel);
  color:#1a1a10;
  font-weight:500;
  transition: background 0.8s ease, border-color 0.8s ease;
}

/* ─── 品牌特色橫幅 ─── */
.feat-bar {
  background: var(--bg-darker);
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.feat-item {
  padding: 36px 24px;
  border-right: 1px solid var(--border-light);
  text-align:center;
  transition:.3s;
}
.feat-item:last-child {
  border-right:none;
}
.feat-item:hover {
  background: rgba(255,255,255,.05);
}
.feat-icon {
  display:block;
  margin-bottom:10px;
}
.feat-icon img {
  display: none;
}
.feat-icon-mask {
  width: 32px;
  height: 32px;
  background-color: var(--carousel);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.8s ease;
  display: inline-block;
}
.feat-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--carousel);
  transition: color 0.8s ease;
}
.feat-desc {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing:.5px;
}

/* ─── 通用區塊標頭 ─── */
.sec-wrap {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:56px;
}
.sec-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--carousel);
  border-bottom: 2px solid var(--carousel);
  padding-bottom: 4px;
  margin-bottom: 14px;
  transition: color 0.8s ease, border-color 0.8s ease;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.sec-title em {
  font-style: normal;
  color: var(--carousel);
  transition: color 0.8s ease;
}
.sec-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  text-align:right;
  font-weight:300;
  white-space: nowrap;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  width: 100%;
}

/* ─── 介紹 ─── */
.intro {
  padding: 100px 0;
  background: var(--page-bg);
}
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:100px;
  align-items:center;
}
.intro-text p {
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 18px;
}
.intro-rule {
  width:40px;
  height:3px;
  background:var(--carousel);
  margin:28px 0;
  transition: background 0.8s ease;
}
.intro-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:36px;
}
.num-box {
  background: var(--bg-card);
  padding:20px 16px;
  border-top: 3px solid var(--carousel);
  transition: border-color 0.8s ease;
  border-radius: 12px;
}
.num-big {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--carousel);
  font-weight: 700;
  line-height:1;
  transition: color 0.8s ease;
}
.num-lbl {
  font-size:12px;
  color:var(--text-muted);
  margin-top:4px;
  font-weight:300;
}
.intro-photo-wrap {
  position:relative;
  width: 88%;
  max-width: 460px;
  justify-self: end;
}
.intro-photo {
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
  border-radius: 20px;
}
.intro-stamp {
  position:absolute;
  bottom:-18px;
  left:-18px;
  width:118px;
  height:118px;
  background: var(--carousel);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color: var(--bg-darker);
  transition: background 0.8s ease;
  border-radius: 50%;
}
.stamp-big {
  font-family:var(--font-serif);
  font-size:40px;
  font-weight:700;
  line-height:1;
}
.stamp-sm {
  font-size: 11px;
  letter-spacing:1px;
  opacity:.8;
  margin-top:4px;
}

/* ─── 球場 ─── */
.courses {
  padding:100px 0;
  background:var(--bg-dark);
}

/* Flexbox 卡片展開：hover 哪張就放大哪張 */
.course-grid {
  display: flex;
  gap: 12px;
  height: 560px;
  align-items: stretch;
}
.c-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-darker);
  border-radius: 20px;
  flex: 1;
  min-width: 0;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 預設：第一張（.main）較寬 */
.c-card.main {
  flex: 1.8;
}

/* hover 任一張時：所有卡片縮回 flex:1，包含 .main */
.course-grid:has(.c-card:hover) .c-card.main {
  flex: 1;
}

/* hover 的那張展開 */
.course-grid .c-card:hover {
  flex: 1.8;
}

.c-img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.7;
  transition: opacity .65s, transform .65s;
}
.c-card:hover .c-img {
  opacity:.9;
  transform:scale(1.04);
}
.c-over {
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(36,41,16,.92) 0%, transparent 55%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
}
.c-day {
  font-size: 12px;
  letter-spacing:2px;
  color:var(--carousel);
  margin-bottom:6px;
  text-transform:uppercase;
  transition: color 0.8s ease;
}
.c-name {
  font-family:var(--font-serif);
  font-size:clamp(16px,2vw,26px);
  color:#fff;
  font-weight:700;
  margin-bottom:6px;
  line-height:1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* hover 展開後顯示完整文字 */
.c-card:hover .c-name {
  white-space: normal;
}
.c-en {
  font-size:12px;
  color:rgba(255,255,255,.45);
  letter-spacing:1px;
}
.c-chip {
  display:inline-block;
  margin-top:12px;
  font-size: 12px;
  letter-spacing:1.5px;
  border:1px solid var(--carousel);
  color:var(--carousel);
  padding:4px 14px;
  transition: border-color 0.8s ease, color 0.8s ease, opacity 0.3s ease;
  border-radius: 20px;
}
/* 非 hover 的卡片淡出 chip */
.course-grid:has(.c-card:hover) .c-card:not(:hover) .c-chip {
  opacity: 0;
}

/* 球場詳情 */
.c-detail {
  background:var(--page-bg);
  padding:72px 0;
}
.c-detail-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  background:transparent;
}
.cd {
  background:var(--bg-card);
  padding:44px 36px;
  transition:.3s;
  border-top:3px solid transparent;
  border-radius: 16px;
}
.cd:hover {
  border-top-color:var(--carousel);
  background:var(--bg-card-hv);
}
.cd-num {
  font-family:var(--font-serif);
  font-size:56px;
  color:rgba(255,255,255,.06);
  font-weight:700;
  line-height:1;
  margin-bottom:14px;
}
.cd-name {
  font-size:20px;
  font-weight:700;
  color:var(--text);
  margin-bottom:6px;
}
.cd-en {
  font-size:12px;
  color:var(--carousel);
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
  font-weight:500;
  transition: color 0.8s ease;
}
.cd-desc {
  font-size:13px;
  color:var(--text-muted);
  line-height:1.9;
  font-weight:300;
}
.cd-info {
  margin-top:16px;
  font-size: 12px;
  color:var(--text-dim);
  border-top:1px solid var(--border);
  padding-top:12px;
  letter-spacing:.5px;
}

/* ─── 行程 ─── */
.itin {
  background:var(--bg-darker);
  padding:100px 0;
}
.itin .sec-tag {
  color:var(--carousel);
  border-bottom-color:var(--carousel);
}
.itin .sec-title {
  color:#fff;
}
.itin .sec-title em {
  color:var(--carousel);
}
.itin .sec-note {
  color:var(--text-dim);
}

.day-list {
  margin-top:60px;
}
.day {
  display:grid;
  grid-template-columns:90px 2px 1fr 300px;
  gap:0 44px;
  padding:48px 0;
  border-top:1px solid var(--border-light);
  transition:.3s;
}
.day:hover {
  background:rgba(255,255,255,.02);
  margin:0 -16px;
  padding:48px 16px;
}
.day-n {
  font-family:var(--font-serif);
  font-size:68px;
  font-weight:700;
  color:rgba(255,255,255,.07);
  text-align:right;
  line-height:1;
  align-self:start;
  padding-top:6px;
}
.day-spine {
  background:var(--border);
  position:relative;
}
.day-spine::after {
  content:'';
  position:absolute;
  top:14px;
  left:-5px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--carousel);
  box-shadow:0 0 14px rgba(70,184,245,.5);
  transition: background 0.8s ease, box-shadow 0.8s ease;
}
.day-lbl {
  font-size: 12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--carousel);
  margin-bottom:8px;
  font-weight:500;
  transition: color 0.8s ease;
}
.day-ttl {
  font-family:var(--font-serif);
  font-size:24px;
  color:#fff;
  font-weight:700;
  margin-bottom:16px;
  line-height:1.3;
}
.day-txt {
  font-size:13px;
  color:var(--text-muted);
  line-height:2.1;
  font-weight:300;
  max-width:460px;
  margin-bottom:18px;
}
.day-tags {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.dtag {
  font-size: 12px;
  letter-spacing:1px;
  color:var(--text-dim);
  border:1px solid var(--border);
  padding:4px 12px;
  border-radius: 20px;
}
.day-box {
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  padding:24px;
  align-self:center;
  border-top: 2px solid var(--carousel);
  transition: border-top-color 0.8s ease;
  border-radius: 16px;
}
.dbox-lbl {
  font-size: 12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--carousel);
  margin-bottom:10px;
  font-weight:500;
  transition: color 0.8s ease;
}
.dbox-title {
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:8px;
  line-height:1.3;
}
.dbox-info {
  font-size:12px;
  color:var(--text-dim);
  line-height:1.8;
}
.dbox-meals {
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--border-light);
}
.meal {
  display:flex;
  gap:8px;
  font-size:12px;
  color:var(--text-dim);
  margin-bottom:3px;
}
.meal strong {
  color:var(--carousel);
  font-weight:500;
  transition: color 0.8s ease;
}

/* ─── 住宿 ─── */
.hotel {
  padding:100px 0;
  background:var(--bg-light);
}
.hotel-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:56px;
}
.h-card {
  background:var(--bg-card);
  overflow:hidden;
  transition:.3s;
  border-top:3px solid transparent;
  border-radius: 20px;
}
.h-card:hover {
  border-top-color:var(--carousel);
}
.h-img-wrap {
  overflow:hidden;
  border-radius: 20px 20px 0 0;
}
.h-img {
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transition:.6s;
}
.h-card:hover .h-img {
  transform:scale(1.04);
}
.h-body {
  padding:36px;
}
.h-type {
  font-size: 12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--carousel);
  font-weight:500;
  margin-bottom:8px;
  transition: color 0.8s ease;
}
.h-name {
  font-size:22px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}
.h-en {
  font-size:12px;
  color:var(--text-muted);
  letter-spacing:1px;
  margin-bottom:16px;
}
.h-desc {
  font-size:13px;
  color:var(--text-muted);
  line-height:1.9;
  font-weight:300;
}
.h-perks {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:16px;
}
.h-perk {
  font-size: 12px;
  letter-spacing:.5px;
  padding:4px 12px;
  border:1px solid var(--border);
  color:var(--text-muted);
  border-radius: 20px;
}

/* ─── 費用 ─── */
.price-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}
.price-sec {
  padding:100px 0;
  background:var(--page-bg);
}
.price-sec .sec-tag {
  display:block;
  margin-bottom:16px;
}
.price-sec h2 {
  font-family:var(--font-serif);
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  color:var(--text);
  line-height:1.3;
  margin-bottom:24px;
}
.price-sec h2 em {
  font-style:normal;
  color:var(--carousel);
  transition: color 0.8s ease;
}
.price-sec > div > p {
  font-size:13px;
  color:var(--text-muted);
  line-height:2;
  font-weight:300;
  margin-bottom:32px;
}

.incl-ttl {
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:700;
  color:var(--text);
  margin-bottom:14px;
}
.incl-ul {
  list-style:none;
  margin-bottom:28px;
}
.incl-ul li {
  font-size:13px;
  color:var(--text-muted);
  padding:9px 0 9px 22px;
  border-bottom:1px solid var(--border);
  font-weight:300;
  position:relative;
}
.incl-ul li::before {
  content:'✓';
  position:absolute;
  left:0;
  color:var(--carousel);
  font-size:12px;
  font-weight:700;
  transition: color 0.8s ease;
}
.excl-ul li::before {
  content:'—';
  color:var(--text-dim);
}

/* 報價卡 */
.price-card {
  background:var(--bg-darker);
  overflow:hidden;
  position:sticky;
  top:96px;
  border-radius: 20px;
}
.pc-head {
  padding:36px 36px 28px;
  border-bottom:1px solid var(--border-light);
}
.pc-tag {
  font-size: 12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--carousel);
  display:block;
  margin-bottom:12px;
  font-weight:500;
  transition: color 0.8s ease;
}
.pc-title {
  font-size:20px;
  font-weight:700;
  color:#fff;
  margin-bottom:6px;
}
.pc-sub {
  font-size:12px;
  color:var(--text-dim);
}
.tier-row {
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  padding:18px 36px;
  border-bottom:1px solid var(--border-light);
  transition:.3s;
}
.tier-row:hover {
  background:rgba(255,255,255,.05);
}
.tier-row.hot {
  background:rgba(255,192,63,.1);
  border-bottom-color:rgba(255,192,63,.25);
}
.tier-pax {
  font-size:13px;
  color:var(--text-muted);
  font-weight:300;
}
.tier-pax strong {
  color:#fff;
  font-weight:700;
  font-size:15px;
}
.tier-price {
  font-family:var(--font-serif);
  font-size:26px;
  color:#fff;
  font-weight:700;
  text-align:right;
}
.tier-price sup {
  font-size:13px;
  color:var(--carousel);
  vertical-align:super;
  font-family:var(--font-main);
  font-weight:500;
  transition: color 0.8s ease;
}
.tier-price sub {
  display:block;
  font-size: 12px;
  color:var(--text-dim);
  text-align:right;
  font-family:var(--font-main);
  font-weight:300;
}
.tier-row.hot .tier-price {
  color:var(--carousel);
  transition: color 0.8s ease;
}
.pc-note {
  padding:20px 36px;
  background:rgba(0,0,0,.2);
}
.pc-note p {
  font-size: 12px;
  color:var(--text-dim);
  line-height:1.8;
}
.pc-cta {
  padding:28px 36px;
}
.pc-cta a {
  display:block;
  width:100%;
  padding:16px;
  background:var(--carousel);
  color:#1a1a10;
  text-align:center;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  transition: background 0.8s ease;
  border-radius: 12px;
}
.pc-cta a:hover {
  opacity: 0.85;
}
.pc-single {
  margin-top:8px;
  font-size: 12px;
  color:var(--text-dim);
  text-align:center;
}

/* ─── 貼心提醒 ─── */
.tips-sec {
  background:var(--bg-dark);
  padding:80px 0;
}
.tips-inner {
  max-width:840px;
  margin:0 auto;
}
.tips-ttl {
  font-size:22px;
  font-weight:700;
  color:var(--text);
  margin-bottom:28px;
  display:flex;
  align-items:center;
  gap:14px;
}
.tips-ttl::after {
  content:'';
  flex:1;
  height:1px;
  background:var(--border);
}
.tips-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.tip {
  background:var(--bg-card);
  border:1px solid var(--border);
  padding:22px 26px;
  display:flex;
  gap:14px;
  border-left:3px solid var(--carousel);
  transition: border-left-color 0.8s ease;
  border-radius: 12px;
}
.tip-n {
  font-family:var(--font-serif);
  font-size:30px;
  color:rgba(255,255,255,.08);
  font-weight:700;
  line-height:1;
  flex-shrink:0;
}
.tip-txt {
  font-size:13px;
  color:var(--text-muted);
  line-height:1.8;
  font-weight:300;
}

/* ─── 品牌宣言 ─── */
.brand-cta {
  background:var(--bg-darker);
  padding:72px 0;
  text-align:center;
  border-top: 3px solid var(--carousel);
  transition: border-top-color 0.8s ease;
}
.brand-cta h2 {
  font-family:var(--font-serif);
  font-size:clamp(24px,2.8vw,40px);
  color:var(--text);
  font-weight:700;
  margin-bottom:12px;
}
.brand-cta p {
  font-size:14px;
  color:var(--text-muted);
  font-weight:300;
  margin-bottom:36px;
}
.brand-cta a {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  background:var(--carousel);
  color:#1a1a10;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-decoration:none;
  border-radius: 9999px;
  transition: background 0.8s ease;
}
.brand-cta-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-cta a:hover {
  opacity: 0.85;
}

/* ─── FOOTER ─── */
footer {
  background:var(--bg-darker);
  padding:48px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--border);
}
.f-logo {
  font-size:20px;
  font-weight:700;
  color:#fff;
}
.f-logo span {
  color:var(--carousel);
  transition: color 0.8s ease;
}
.f-copy {
  font-size:12px;
  color:var(--text-dim);
  font-weight:300;
}
.f-right {
  text-align:right;
}
.f-right a {
  display:block;
  font-size:13px;
  color:var(--carousel);
  text-decoration:none;
  margin-bottom:3px;
  transition: color 0.8s ease;
}
.f-right a:hover {
  color:#fff;
}

/* ─── 動畫 ─── */
.reveal {
  opacity:0;
  transform:translateY(32px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity:1;
  transform:none;
}
.reveal-d1 {
  transition-delay:.1s;
}
.reveal-d2 {
  transition-delay:.2s;
}
.reveal-d3 {
  transition-delay:.3s;
}
@keyframes fadeUp { from{
  opacity:0;
  transform:translateY(24px);
} to{
  opacity:1;
  transform:none;
} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── RWD ─── */
@media(max-width:1440px){
  .container {
  padding: 0 80px;
}
}
@media(max-width:900px){
  .container {
  padding: 0 28px;
  width: 100%;
  box-sizing: border-box;
}
  .sec-note {
  white-space: normal;
  text-align: left;
}

  .hero-wrapper {
  width: 100%;
}
  .hero {
  width: 100%;
  overflow: hidden;
}
  .slide {
  width: 100%;
}
  .slide-bg {
  width: 100%;
}
  .slide-content {
  padding: 0 24px 88px !important;
  box-sizing: border-box;
}
  .slide-content-center {
  padding: 24px !important;
  box-sizing: border-box;
}
  .slide-inner {
  width: 100%;
  box-sizing: border-box;
}
  .hero-tag {
  display: none;
}
  .hero h1 {
  font-size: clamp(26px, 6vw, 44px);
}
  .hero-badges {
  gap: 8px;
  flex-wrap: wrap;
}
  .badge {
  font-size: 12px;
  padding: 6px 12px;
}

  .feat-bar {
  grid-template-columns:1fr 1fr;
  width: 100%;
}
  .intro .container {
  grid-template-columns:1fr;
  gap:40px;
}
  .intro-photo-wrap {
  display:none;
}
  .courses, .c-detail, .itin, .hotel, .price-sec, .tips-sec, .brand-cta {
  padding:60px 0;
}
  .course-grid {
  flex-direction:column;
  height:auto;
  width:100%;
}
  .c-card {
  min-height: 240px;
  width: 100%;
}
  .c-detail-grid {
  grid-template-columns:1fr;
}
  .day {
  grid-template-columns: 50px 2px 1fr;
  gap: 0 16px;
  overflow: hidden;
}
  .day:hover {
  margin: 0;
  padding: 48px 0;
}
  .day-box {
  display:none;
}
  .day-n {
  font-size: 44px;
}
  .day-ttl {
  font-size: 18px;
}
  .day-txt {
  max-width: 100%;
}
  .hotel-grid {
  grid-template-columns:1fr;
}
  .price-container {
  grid-template-columns: 1fr !important;
  gap: 32px;
}
  .price-sec h2 {
  font-size: clamp(24px, 6vw, 36px);
}
  .price-card {
  position: static;
  width: 100%;
  border-radius: 16px;
}
  .pc-head {
  padding: 24px 20px 20px;
}
  .tier-row {
  padding: 16px 20px;
}
  .tier-price {
  font-size: 22px;
}
  .pc-note {
  padding: 16px 20px;
}
  .pc-cta {
  padding: 20px;
}
  .sec-wrap {
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}
  .sec-note {
  text-align:left;
  max-width:100%;
}
  .tips-grid {
  grid-template-columns:1fr;
}
  footer {
  flex-direction:column;
  gap:20px;
  padding:36px 0;
  text-align:center;
}
  .f-right {
  text-align:center;
}
  .hero-sub {
  font-size: 12px;
  letter-spacing: 1px;
  word-break: keep-all;
}
  .glanta-center-title {
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 2.2;
}
  .glanta-center-sub {
  font-size: 12px;
  letter-spacing: 3px;
}
  .feat-icon-mask {
  width: 30px;
  height: 30px;
}
}

/* ─── 投影片 4：模糊背景（Glanta 置中風格）─── */
.slide-bg-blur {
  filter: blur(0px);
  transform: scale(1.08) !important;
  transition: filter 1.2s ease;
}
.slide-bg-blur.blurred {
  filter: blur(5px);
}
.slide-mask-light {
  background: rgba(0,0,0,0.52) !important;
}
.slide-content-center {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}
.glanta-center-inner {
  text-align: center;
  max-width: 820px;
}
.glanta-center-sub {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 28px;
  font-family: sans-serif;
}
.glanta-center-title {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 2.4;
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-family: sans-serif;
}
.glanta-center-title .kw {
  color: var(--carousel);
  transition: color 0.8s ease;
}
.glanta-center-en {
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  font-family: sans-serif;
}

/* ─── Hotel Lightbox ─── */
.h-card {
  cursor: pointer;
}
.h-card .h-open-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--carousel);
  font-weight: 500;
  transition: color 0.8s ease;
}
.h-open-hint svg {
  width:14px;
  height:14px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
}

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(54, 59, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lb-box {
  position: relative;
  width: min(520px, 88vw);
  background: #5B622E;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.lb-overlay.open .lb-box {
  transform: translateY(0) scale(1);
}
.lb-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}
.lb-img-wrap img.fading {
  opacity: 0;
}
.lb-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.lb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s, transform 0.3s;
}
.lb-dot.on {
  background: var(--carousel);
  transform: scale(1.5);
}
.lb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lb-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.lb-arrow:hover {
  color: #fff;
}
.lb-arrow svg {
  width: 28px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  overflow: visible;
}
.lb-nav-count {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}
.lb-caption {
  padding: 14px 28px 18px;
}
.lb-caption-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--carousel);
  margin-bottom: 5px;
  transition: color 0.8s;
}
.lb-caption-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  font-weight: 300;
}
.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover {
  background: rgba(0,0,0,0.75);
}
.lb-close svg {
  width:14px;
  height:14px;
  stroke:#fff;
  fill:none;
  stroke-width:2;
}
.lb-esc-hint {
  position: absolute;
  top: calc(50% - min(260px, 44vw) - 36px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  pointer-events: none;
}
@media(max-width:900px){
  .lb-box {
  width: 86vw;
  border-radius: 16px;
}
  .lb-caption {
  padding: 18px 20px 22px;
}
  .lb-nav {
  padding: 12px 20px;
}
}
.mobile-br {
  display: none;
}
.desktop-br {
  display: inline;
}
@media(max-width:900px){
  .mobile-br {
  display: inline;
}
  .desktop-br {
  display: none;
}
}

/* 手機版固定底部詢問按鈕（位於母站底部工具列上方） */
.mobile-fixed-inquiry {
  display: none;
}
@media (max-width: 900px) {
  .brand-cta a {
    padding: 11px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .brand-cta-icon {
    width: 15px;
    height: 15px;
  }

  .mobile-fixed-inquiry {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    height: 44px;
    border-radius: 999px;
    background: var(--carousel);
    color: #1a1a10;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .mobile-fixed-inquiry.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* 預留固定按鈕空間，避免遮擋頁尾內容 */
  #ut-fukuoka-root {
    padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
    background: var(--page-bg);
  }
}
