@charset "UTF-8";

:root {
  --green: #285d42;
  --green-dark: #163b2b;
  --green-light: #7f9f85;
  --cream: #f7f5ef;
  --paper: #fff;
  --text: #40433f;
  --muted: #858981;
  --line: #dedfd9;
  --header-top-h: 34px;
  --header-main-h: 100px;
  --nav-h: 52px;
  --container: 1180px;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.8;
  --line-height-small: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family:
    "Noto Serif TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
}

body.menuOpen {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

/*---------------*/
.home-section {
  min-height: 50svh;
  padding: 100px 0;
}
.hilight {
  color: red;
  font-weight: 600;
  letter-spacing: 1px;
}
.noteList a {
  color: var(--green-dark);
  font-weight: 600;
  transition: all 0.3s;
}
.noteList a:hover {
  color: var(--green);
}
/* =========================
   HEADER
========================= */
.siteHeader {
  position: relative;
  z-index: 100;
  background: #fff;
}

.headerTop {
  min-height: var(--header-top-h);
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--font-size-small);
  letter-spacing: 0.08em;
}

.headerTop__inner {
  min-height: var(--header-top-h);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.headerContact {
  display: flex;
  align-items: center;
  gap: 13px;
}

.headerContact a {
  transition: opacity 0.25s ease;
}

.headerContact a:hover {
  opacity: 0.65;
}

.headerContact__divider {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
}

.headerMain__inner {
  height: var(--header-main-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.siteLogo {
  display: block;
  width: 250px;
}

.siteLogo img {
  min-height: 62px;
  object-fit: contain;
}

.menuBtn {
  display: none;
}

.desktopNav {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #e6e6e6;
}

.desktopNav__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: var(--nav-h);
}

.desktopNav__list > li {
  position: relative;
  min-width: 150px;
}

.desktopNav__list > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #565b55;
  font-size: var(--font-size-base);
  letter-spacing: 0.18em;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.desktopNav__list > li > a:hover,
.desktopNav__list > li:hover > a {
  color: var(--green);
  background: #fafafa;
}

.hasSubmenu > a::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 9px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 190px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.submenu--wide {
  width: 245px;
}

.hasSubmenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 9px 20px;
  color: #666;
  font-size: var(--font-size-small);
  letter-spacing: 0.08em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.submenu a:hover {
  color: var(--green);
  background: #f5f7f4;
}

.mobileNav {
  display: none;
}

/* =========================
   HOME KV
========================= */
.homeKv {
  position: relative;
  height: clamp(520px, 68vw, 760px);
  min-height: 520px;
  overflow: hidden;
  background: #dfe6df;
}

.homeKv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.28)
  );
  pointer-events: none;
}

.homeKv__caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 10%;
  width: min(90%, 860px);
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}

.homeKv__caption h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

.homeKv__en {
  margin-bottom: 8px;
  font-size: var(--font-size-small);
  letter-spacing: 0.38em;
  text-indent: 0.38em;
}

.homeKv__sub {
  margin-bottom: 0;
  font-size: var(--font-size-base);
  letter-spacing: 0.18em;
}

.bg-cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}

.bg-cover.cover-rectangle {
  padding-bottom: 64%;
}

.bg-cover.cover-square {
  padding-bottom: 100%;
}
.kvSlideItem {
  overflow: hidden;
  opacity: 0 !important;
  transition: opacity 1.5s ease-out !important;
}

.kvSlideItem.slick-current {
  opacity: 1 !important;
  transition: opacity 1.5s ease-out !important;
}

.kvSlideItem.slick-active .bg-cover {
  transform: scale(1);
  animation-delay: 1s;
}

.kvSlideItem .bg-cover {
  height: 100dvh;
  transform: scale(1.13);
  transition: transform 12s cubic-bezier(0, 0, 0.46, 1.02);
}

/* =========================
   COMMON
========================= */
.sectionEyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: var(--font-size-small);
  letter-spacing: 0.25em;
  margin-right: -0.25em;
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--green-dark);
  font-family: Arial, sans-serif;
  font-size: var(--font-size-small);
  letter-spacing: 0.2em;
}

.textLink span {
  transition: transform 0.25s ease;
}

.textLink:hover span {
  transform: translateX(5px);
}

.fadeText {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.fadeText.isShow {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   INTRO
========================= */
.homeIntro {
  padding: 110px 0 118px;
  background: #fff;
}

.homeIntro__inner {
  max-width: 820px;
  text-align: center;
}

.homeIntro h2 {
  margin-bottom: 30px;
  color: var(--green-dark);
  font-size: clamp(26px, 3vw, 39px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.homeIntro__text {
  margin-bottom: 0;
  color: #70746e;
  font-size: var(--font-size-base);
  line-height: 2.35;
  letter-spacing: 0.08em;
}

/* =========================
   FEATURE BLOCKS
========================= */
.homeFeature {
  padding: 96px 0;
}

.homeFeature--breakfast {
  background: var(--cream);
}

.homeFeature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.homeFeature__image {
  position: relative;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background: #dfe4dc;
}

.homeFeature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.homeFeature__image:hover img {
  transform: scale(1.025);
}

.homeFeature__content {
  max-width: 420px;
}

.homeFeature__content h2 {
  margin-bottom: 25px;
  color: var(--green-dark);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.homeFeature__content > p:not(.sectionEyebrow) {
  color: #6b706a;
  font-size: var(--font-size-base);
  line-height: 2.15;
  letter-spacing: 0.05em;
}

/* =========================
   ROOMS
========================= */
.homeRooms {
  padding: 110px 0 120px;
  background: #fff;
}

.sectionHeading {
  margin-bottom: 50px;
  text-align: center;
}

.sectionHeading h2 {
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.roomSliderPlaceholder {
  display: flex;
  flex-wrap: wrap;
}
.roomSlide {
  flex: 0 0 calc(100% / 2 - 30px);
  margin: 0 15px 30px;
}
.roomSlide__image {
  display: block;
  aspect-ratio: 1 / 0.83;
  overflow: hidden;
  background: #e0e4df;
}

.roomSlide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.roomSlide:hover .roomSlide__image img {
  transform: scale(1.035);
}

.roomSlide__content {
  padding: 22px 4px 0;
  text-align: center;
}

.roomSlide__content span {
  display: block;
  margin-bottom: 5px;
  color: #a0a59d;
  font-family: Arial, sans-serif;
  font-size: var(--font-size-small);
  letter-spacing: 0.2em;
}

.roomSlide__content h3 {
  margin-bottom: 2px;
  color: #40463f;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

.roomSlide__content p {
  margin-bottom: 0;
  color: #858a82;
  font-size: var(--font-size-small);
  letter-spacing: 0.08em;
}

/* =========================
   HOME LINKS
========================= */
.homeLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.homeLinks__item {
  position: relative;
  height: 340px;
  overflow: hidden;
  color: #fff;
}

.homeLinks__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.homeLinks__mask {
  position: absolute;
  inset: 0;
  background: rgba(18, 43, 30, 0.32);
  transition: background 0.35s ease;
}

.homeLinks__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.homeLinks__content span {
  margin-bottom: 4px;
  font-family: Arial, sans-serif;
  font-size: var(--font-size-small);
  letter-spacing: 0.28em;
}

.homeLinks__content h2 {
  margin-bottom: 0;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.homeLinks__item:hover img {
  transform: scale(1.035);
}

.homeLinks__item:hover .homeLinks__mask {
  background: rgba(18, 43, 30, 0.44);
}

/* =========================
   FOOTER
========================= */
.siteFooter {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-dark);
}

.siteFooter__inner {
  min-height: 235px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 45px;
}

.footerLogo {
  width: 200px;
}

.footerLogo img {
  min-height: 70px;
  object-fit: contain;
}

.footerInfo {
  font-size: var(--font-size-small);
  line-height: 2;
  letter-spacing: 0.04em;
}

.footerInfo p {
  margin-bottom: 3px;
}

.footerInfo span {
  margin: 0 8px;
  opacity: 0.4;
}

.footerInfo a:hover {
  text-decoration: underline;
}

.footerBooking {
  display: inline-flex;
  min-width: 125px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-small);
  letter-spacing: 0.14em;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.footerBooking:hover {
  color: var(--green-dark);
  background: #fff;
}

.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footerBottom p {
  margin: 0;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: Arial, sans-serif;
  font-size: var(--font-size-small);
  letter-spacing: 0.05em;
  text-align: center;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  :root {
    --header-main-h: 86px;
  }

  .desktopNav__list > li {
    min-width: 132px;
  }

  .desktopNav__list > li > a {
    padding-inline: 18px;
  }

  .siteLogo {
    width: 220px;
  }

  .homeFeature__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
  }

  .siteFooter__inner {
    grid-template-columns: 180px 1fr auto;
    gap: 30px;
  }

  .footerLogo {
    width: 165px;
  }
}

/* =========================
   MOBILE NAV BREAKPOINT
========================= */
@media (max-width: 820px) {
  :root {
    --header-main-h: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .headerTop {
    display: none;
  }

  .headerMain {
    border-bottom: 1px solid #e9e9e5;
  }

  .headerMain__inner {
    justify-content: space-between;
  }

  .siteLogo {
    width: 175px;
  }

  .siteLogo img {
    min-height: 48px;
  }

  .desktopNav {
    display: none;
  }

  .menuBtn {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .menuBtn span {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 1px;
    background: #34493c;
    transition:
      top 0.3s ease,
      transform 0.3s ease,
      opacity 0.2s ease;
  }

  .menuBtn span:nth-child(1) {
    top: 12px;
  }
  .menuBtn span:nth-child(2) {
    top: 20px;
  }
  .menuBtn span:nth-child(3) {
    top: 28px;
  }

  .menuOpen .menuBtn span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .menuOpen .menuBtn span:nth-child(2) {
    opacity: 0;
  }

  .menuOpen .menuBtn span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .mobileNav {
    position: fixed;
    z-index: 99;
    top: var(--header-main-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(255, 255, 255, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.32s ease,
      transform 0.32s ease,
      visibility 0.32s ease;
  }

  .menuOpen .mobileNav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobileNav__scroll {
    height: 100%;
    padding: 26px 28px 40px;
    overflow-y: auto;
  }

  .mobileNav__list > li {
    border-bottom: 1px solid #e7e8e4;
  }

  .mobileNav__list > li > a,
  .mobileNav__row > a {
    display: flex;
    min-height: 58px;
    align-items: center;
    color: #33453a;
    font-size: var(--font-size-base);
    letter-spacing: 0.13em;
  }

  .mobileNav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobileNav__row > a {
    flex: 1;
  }

  .submenuBtn {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    cursor: pointer;
  }

  .submenuBtn::before,
  .submenuBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: #647369;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }

  .submenuBtn::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .hasMobileSubmenu.isOpen .submenuBtn::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .mobileSubmenu {
    display: none;
    padding: 0 0 13px 14px;
  }

  .mobileSubmenu a {
    display: block;
    padding: 8px 0;
    color: #7c837c;
    font-size: var(--font-size-small);
    letter-spacing: 0.08em;
  }

  .mobileNav__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 32px;
    color: #788078;
    font-family: Arial, sans-serif;
    font-size: var(--font-size-small);
    letter-spacing: 0.08em;
  }

  .homeKv {
    height: min(76vh, 720px);
    min-height: 510px;
  }

  .homeIntro {
    padding: 80px 0 84px;
  }

  .homeFeature {
    padding: 70px 0 78px;
  }

  .homeFeature__grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .homeFeature__image,
  .homeFeature__content {
    width: 100%;
  }

  .homeFeature__content {
    max-width: 600px;
    padding-inline: 3px;
  }

  .homeRooms {
    padding: 82px 0 90px;
  }

  .roomSliderPlaceholder {
    gap: 28px 18px;
  }

  .homeLinks__item {
    height: 280px;
  }

  .siteFooter__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
    padding: 58px 0 50px;
    text-align: center;
  }

  .footerInfo span {
    display: none;
  }

  .footerInfo p {
    display: flex;
    flex-direction: column;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 560px) {
  .container {
    width: calc(100% - 30px);
  }

  .homeKv {
    height: calc(100svh - var(--header-main-h));
    min-height: 520px;
    max-height: 720px;
  }

  .homeKv__caption {
    bottom: 9%;
    transform: translateX(-50%) !important;
  }

  .homeKv__caption h1 {
    font-size: 31px;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .homeKv__sub {
    font-size: var(--font-size-base);
    line-height: 1.8;
  }

  .homeIntro {
    padding: 68px 0 72px;
  }

  .homeIntro h2 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.75;
  }

  .homeIntro__text {
    font-size: var(--font-size-base);
    line-height: 2.1;
  }

  .homeIntro__text br {
    display: none;
  }

  .homeFeature {
    padding: 56px 0 64px;
  }

  .homeFeature__grid {
    gap: 28px;
  }

  .homeFeature__image {
    aspect-ratio: 1.18 / 1;
  }

  .homeFeature__content h2 {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .homeFeature__content > p:not(.sectionEyebrow) {
    font-size: var(--font-size-base);
    line-height: 2;
  }

  .homeRooms {
    padding: 68px 0 74px;
  }

  .sectionHeading {
    margin-bottom: 36px;
  }

  .roomSliderPlaceholder {
    display: block;
  }

  .roomSlide + .roomSlide {
    margin-top: 42px;
  }

  .roomSlide__image {
    aspect-ratio: 1.25 / 1;
  }

  .homeLinks {
    grid-template-columns: 1fr;
  }

  .homeLinks__item {
    height: 230px;
  }

  .homeLinks__content h2 {
    font-size: 26px;
  }

  .footerLogo {
    width: 180px;
  }

  .footerInfo {
    font-size: var(--font-size-small);
  }
}
/*----------*/
/* Offers page only. Shared header, footer, typography and navigation live in villegreen.css. */
.pageHeading {
  padding: 72px 0 48px;
  text-align: center;
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pageHeading::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  top: 0px;
  left: 0px;
}
.pageHeading h1 {
  position: relative;
  z-index: 4;
  color: #fff;
}
.pageHeading .sectionEyebrow {
  margin-bottom: 12px;
}
.headIntrol {
  max-width: 320px;
  background-color: rgba(255 255 255 / 0.65);
  padding: 20px;
  border-radius: 8px;
  margin: 0 auto;
}
/* booking */
.bookingPage {
  --booking-space: 64px;
}
.bookingPage .breadcrumbNav {
  padding: 16px 0;
  border-bottom: 1px solid var(--line, #dedfd9);
  color: var(--muted, #858981);
  font-size: var(--font-size-small, 14px);
}
.bookingPage .breadcrumbNav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bookingPage .breadcrumbNav li + li::before {
  content: "/";
  margin-right: 10px;
  color: #b6bbb2;
}
.bookingPage .breadcrumbNav a:hover {
  color: var(--green, #285d42);
}
.bookingPage__inner {
  padding-top: var(--booking-space);
  padding-bottom: 100px;
}
/* 精簡匯款資訊卡 */
.bookingBank {
  max-width: 960px;
  margin: 0 auto;
  padding: 26px 32px;
  background: var(--cream, #f7f5ef);
  border-left: 3px solid var(--green, #285d42);
}
.bookingBank h2 {
  margin: 0 0 18px;
  color: var(--green-dark, #163b2b);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.bookingBank__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  margin: 0;
}
.bookingBank__details > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}
.bookingBank__details dt {
  flex: 0 0 80px;
  color: var(--muted, #858981);
  font-size: var(--font-size-small, 14px);
}
.bookingBank__details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: var(--font-size-base, 16px);
}
.bookingBank__account {
  color: var(--green-dark, #163b2b);
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}
/* 單欄閱讀內容：保留原文段落與清單格式 */
.bookingContent {
  max-width: 960px;
  margin: 0 auto;
}
.bookingSection {
  padding: var(--booking-space) 0;
  border-bottom: 1px solid var(--line, #dedfd9);
}
.bookingSection:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.bookingSection h2 {
  margin: 0 0 28px;
  color: var(--green-dark, #163b2b);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.12em;
}
.bookingSection__body {
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.8);
  overflow-wrap: anywhere;
}
.bookingSection__body p {
  margin: 0 0 18px;
}
.bookingSection__body p:last-child {
  margin-bottom: 0;
}
.bookingSection__body ol,
.bookingSection__body ul {
  margin: 0 0 24px;
  padding-left: 1.6em;
}
.bookingSection__body ol {
  list-style: decimal;
}
.bookingSection__body ul {
  list-style: disc;
}
.bookingSection__body li {
  padding-left: 0.25em;
  line-height: 2em;
}
.bookingSection__body li:last-child {
  margin-bottom: 0;
}
.bookingSection__body li::marker {
  color: var(--green, #285d42);
}
.bookingSection__body a {
  color: var(--green-dark, #163b2b);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bookingSection__body .table-responsive {
  overflow-x: auto;
}
.bookingSection__body table {
  width: 100%;
  border-collapse: collapse;
}
.bookingSection__body th,
.bookingSection__body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line, #dedfd9);
  text-align: left;
}
@media (max-width: 820px) {
  .bookingPage {
    --booking-space: 48px;
  }
  .bookingPage__inner {
    padding-bottom: 75px;
  }
}
@media (max-width: 560px) {
  .bookingPage {
    --booking-space: 36px;
  }
  .bookingPage__inner {
    padding-bottom: 60px;
  }
  .bookingBank {
    padding: 22px 20px;
  }
  .bookingBank h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .bookingBank__details {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .bookingBank__details dt {
    flex-basis: 80px;
  }
  .bookingSection h2 {
    margin-bottom: 22px;
  }
}

/* 舊公開資料核對提示：核對完成後可移除這個區塊與樣式。 */
.bookingSourceNotice {
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 10px 14px;
  background: #fff8e8;
  border: 1px solid #e8d8b6;
  color: #66583b;
  font-size: var(--font-size-small, 14px);
  line-height: 1.7;
}
.bookingBank__details dt {
  flex: 0 0 140px;
}
.bookingBank__note {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line, #dedfd9);
  font-size: var(--font-size-small, 14px);
  line-height: 1.7;
}
.bookingBank a:hover {
  color: var(--green, #285d42);
  text-decoration: underline;
}
.bookingRulesIntro {
  margin-bottom: 32px;
}
.bookingRulesIntro p {
  margin-bottom: 8px;
}
.bookingSection__body h3 {
  margin: 0 0 20px;
  color: var(--green-dark, #163b2b);
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.bookingSourceFootnote {
  color: var(--muted, #858981);
  font-size: var(--font-size-small, 14px);
}
@media (max-width: 560px) {
  .bookingBank__details dt {
    flex-basis: 112px;
  }
  .bookingSection__body h3 {
    font-size: 20px;
  }
}
.img_wrap {
  display: flex;
  position: relative;
}

.img_wrap .title {
  position: absolute;
  z-index: 5;
  bottom: 0px;
  left: 0px;
  width: 60%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.img_wrap .title h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 5px;
}

.img_wrap > .cover {
  flex: 0 0 60%;
}

.img_wrap > .cover a.bg-cover {
  height: 100%;
  width: 100%;
  display: block;
}

.img_wrap .img_more {
  flex: 0 0 40%;
  display: flex;
  flex-wrap: wrap;
}

.img_wrap .img_more .more {
  flex: 0 0 50%;
}
ul.detailItem {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
ul.detailItem > li {
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 4px;
}
.page-title {
  margin-bottom: 15px;
  font-size: 16pt;
}
@media (max-width: 991px) {
  .img_wrap .img_more .more a {
    padding-bottom: 100% !important;
  }
}

@media (max-width: 767px) {
  .img_wrap > .cover {
    flex: 0 0 40%;
  }

  .img_wrap .img_more {
    flex: 0 0 60%;
  }
}

@media (max-width: 576px) {
  #Info .container-lg {
    padding-left: 0px;
    padding-right: 0px;
  }

  .img_wrap .title {
    width: 100%;
    bottom: inherit;
    top: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .img_wrap .title h1 {
    font-size: 18pt;
  }
  .img_wrap {
    flex-wrap: wrap;
  }

  .img_wrap > .cover {
    flex: 0 0 100%;
  }

  .img_wrap > .cover a.bg-cover {
    padding-bottom: 64%;
  }

  .img_wrap .img_more {
    flex: 0 0 100%;
  }

  .img_wrap .img_more .more {
    flex: 0 0 25%;
    border-top: 2px solid #fff;
  }

  .img_wrap .img_more .more:not(:last-child) {
    border-left: 2px solid #fff;
  }
}

table.gs-table {
  width: 100%;
}
table.gs-table tbody {
  font-size: 14px;
}

table.gs-table tr td:nth-child(2) {
  padding: 0 20px;
}
table.gs-table tr td:nth-child(1) {
  background: #f5f5f5;
  padding: 12px;
}
table.gs-table tr td:nth-last-child(n + 2),
table.gs-table tr td:nth-child(2) {
  border-bottom: 1px solid #ddd;
}
table.gs-table tr:nth-child(1) td:nth-child(2),
table.gs-table tr td:nth-child(1) {
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .traffic_wrap {
    padding: 0;
  }
  .gmap {
    margin-bottom: 15px;
  }
}

.con_wrap .con-border {
  border: 1px solid #ececec;
  padding-top: 15px;
  margin-bottom: 40px;
}
.con_wrap .desc ol {
  padding-left: 20px;
  text-align: justify;
  font-size: 14px;
}
/*-----------------
  Switch Box
------------------*/
.switchBox {
  display: flex;
  gap: 50px;
}
.switchBox .switchItem {
  flex: 0 1 50%;
}
.switchBox.sw37 .switchItem:first-of-type {
  flex: 0 1 30%;
}
.switchBox.sw37 .switchItem:last-of-type {
  flex: 0 1 70%;
}
@media (max-width: 767px) {
  .switchBox {
    flex-wrap: wrap;
  }
  .switchBox.sw37 .switchItem:first-of-type,
  .switchBox.sw37 .switchItem:last-of-type,
  .switchBox .switchItem {
    flex: 0 0 100%;
  }
}
/*---------------------
  Cus Text 
---------------------*/
.leadSize {
  font-size: 1.1em;
  line-height: 1.8em;
  letter-spacing: 2px;
  text-align: justify;
}
.leadFonts {
  color: #3387a2;
}
.bookIntrol {
  margin-bottom: 25px;
}
.bookIntrol > p {
  margin-bottom: 0;
}
.bookIntrol p.bookIntrol__author {
  font-size: 0.8em;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 2px solid #3387a2;
}
.photoGroup {
  display: flex;
  gap: 30px;
}
.photoGroup .photoItem {
  flex: 0 1 calc(100% / 3);
}
.photoGroup .photoItem .photoCover {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .photoGroup {
    flex-wrap: wrap;
  }
  .photoGroup .photoItem {
    flex: 1 1 50%;
  }
}
