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

@media (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;
}
.section-v-between > .container,
.section-v-between > .container-fluid {
  flex: 1 1 auto;
}

/* ========================
  🖼 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%;
  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;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 23/5;
  background: linear-gradient(123deg, rgba(0, 0, 0, 0) 32.84%, rgb(0, 0, 0) 100%);
  mask: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: 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, 3/2);
}
@media (max-width: 991px) {
  .img-cover {
    aspect-ratio: var(--ratio-m, var(--ratio, 3/2));
  }
}

.img-caption {
  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);
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
}

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

/* ========================
  🎬 Video Components
======================== */
.bg-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bg-video-wrap > div {
  position: absolute;
  inset: 0;
}
.bg-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-ctrl-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 9999;
  pointer-events: auto;
}

.btn-music {
  font-size: 2rem;
  color: #E0DFC6;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1.5vw;
  line-height: 1;
}

.btn-sound {
  display: none;
}

.video-wrap {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
.video-wrap > div {
  width: 100%;
  font-size: 0;
  position: relative;
}
.video-wrap > div video {
  display: block;
  width: 100%;
}
.video-wrap .video-controls {
  width: 100%;
}

.youtube-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1680/954;
  border: none;
}

.youtube-thumb {
  overflow: hidden;
  padding: 5% 10%;
}
.youtube-thumb a {
  display: block;
}
.youtube-thumb a .Img .img-ratio {
  padding-top: 56%;
}
.youtube-thumb a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 5rem;
  transition: all 0.5s;
}
.youtube-thumb a:hover i {
  font-size: 6rem;
  transition: all 0.5s;
}

* {
  position: relative;
  box-sizing: border-box;
  /*transition:all 1s;*/
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: #3E3A39;
  font-size: 1rem;
}

h2 {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}

h2 span {
  display: block;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #111;
  text-decoration: none;
}

.btn {
  text-decoration: none;
  border-radius: 0;
}
.btn:hover {
  text-decoration: none;
}

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

.fancybox-navigation {
  height: 100vh;
}

.navbar-toggler {
  z-index: 101;
  margin: 0;
  border: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 45px;
  height: 3px;
  background-color: #111;
  margin-bottom: 5px;
  font-weight: 300;
}

.navbar-nav .nav-link span {
  font-size: 3vw;
  display: block;
  font-weight: 300;
  font-family: Plain-Ultrathin, sans-serif;
}

.navbar-collapse {
  background-color: #eee;
  z-index: 100;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.navbar-collapse.show {
  top: 0;
}

.collapsing {
  opacity: 0;
  background-color: #fff;
  height: 0 !important;
}

.collapsing:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: red;
}

.navbar-collapse .navbar-content {
  padding: 0 10%;
  background-color: #eee;
  border: none;
}
@media (max-width: 991px) {
  .navbar-collapse .navbar-content {
    padding-inline: 8%;
  }
}

.navbar-collapse .navbar-content .infoBox .list {
  padding-right: 10%;
}
@media (max-width: 991px) {
  .navbar-collapse .navbar-content .infoBox .list {
    padding-right: 0;
  }
}

.navbar-collapse .navbar-content .infoBox p {
  font-size: 13px;
}

.navbar-collapse .navbar-content .infoBox .info_tell {
  padding-left: 10%;
}

.navbar-nav .dropdown-menu {
  position: absolute;
  width: 100%;
  text-align: center;
}

.dropdown-item {
  display: inline-block;
}

.dropdown-menu {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
}

header {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  z-index: 100;
  padding: 10px;
}

.navbar-brand {
  z-index: 99;
}

.bg-light {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

header .SocialBox {
  position: fixed;
  bottom: 20px;
  left: 50px;
  width: 20%;
  z-index: 10;
}

header .SocialBox .item {
  display: block;
  max-width: 30px;
  margin-bottom: 10px;
}

header .SocialBox img {
  width: 100%;
}

header .Social a {
  width: 30%;
  max-width: 40px;
  padding-right: 10px;
  display: inline-block;
}

header .copyright {
  writing-mode: vertical-rl;
  position: fixed;
  font-size: 5px;
  color: #999;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media (max-width: 768px) {
  header {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
  }
  .navbar-nav .nav-link {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .navbar-collapse .navbar-content .infoBox .info_tell {
    text-align: left;
    padding-left: 15px;
  }
}
/* ========================
  🔤 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;
}

/* breadcrumbs-area */
.breadcrumbs-area {
  box-sizing: border-box;
  padding: 15px 10% 45px;
}

.breadcrumbs-list {
  text-align: right;
}

.breadcrumbs-list li {
  display: inline-block;
  font-size: 10px;
  line-height: 1.4;
}

.breadcrumbs-list a {
  display: inline-block;
  position: relative;
  margin-right: 14px;
  padding-right: 15px;
}

.breadcrumbs-list li a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
}

.breadcrumbs-list li:last-child a::after {
  display: none;
}

@media (max-width: 768px) {
  .breadcrumbs-area {
    padding: 10% 10% 45px;
  }
}
/* prev-link */
.pagenation-area {
  padding-top: 10%;
  font-size: 12px;
}

.pagenation-area a {
  display: block;
  padding: 0 20px;
}

.next-link a {
  text-align: right;
}

.center-link a {
  text-align: center;
}

.prev-link a::after,
.next-link a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
}

.prev-link a::after {
  transform: rotate(-135deg);
}

.next-link a::after {
  position: absolute;
  left: 100%;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .pagenation-area a {
    padding: 0;
  }
}
/*bannerBox*/
.bannerBox:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 30vh;
  background-color: #47A5C2;
  background: linear-gradient(to bottom, #E3F1F1 0%, #47A5C2 47.63%, #276AA4 100%);
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}

.bannerBox .banner .Txt h2 {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 6.6rem;
  background: linear-gradient(97deg, #8CC5B4 0%, #47A5C2 47.63%, #276AA4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .bannerBox .banner .Txt h2 {
    font-size: clamp(28.3px, -0.06px + 7.27vw, 72px);
  }
}

.bannerBox .banner .Txt h3 {
  font-size: 2rem;
  color: #231815;
  /*font-family: 'Noto Serif TC', serif;*/
  font-family: ryo-display-plusn, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  position: absolute;
  top: 100%;
  left: 8%;
}
@media (max-width: 991px) {
  .bannerBox .banner .Txt h3 {
    color: #838383;
  }
}

.bannerBox .banner .Txt h3:before {
  content: "";
  width: 60px;
  height: 1px;
  transform: translate(-60%, 10%) rotate(-45deg);
  display: block;
  background-color: #999;
}

.bannerBox .banner .Txt h2 span {
  display: block;
}

.bannerBox .banner .ImgBox i {
  color: #cecece;
  font-size: 9px;
  line-height: 1;
  font-style: normal;
}

@media (max-width: 768px) {
  .bannerBox .banner {
    height: auto;
  }
}
.titleBox {
  display: inline-block;
  margin-bottom: 3rem;
}

.titleBox h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: #47A5C2;
  background: linear-gradient(97deg, #8CC5B4 0%, #47A5C2 47.63%, #276AA4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.titleBox i {
  font-size: 8px;
  text-transform: uppercase;
  position: absolute;
  top: 100%;
  left: 5px;
  text-align: left;
}

.titleBox.white {
  color: #fff;
}

.TxtBox h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  line-height: 0.8;
  line-height: 1;
  padding-bottom: 2rem;
  color: #47A5C2;
  background: linear-gradient(97deg, #8CC5B4 0%, #47A5C2 47.63%, #276AA4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.TxtBox h4 {
  font-size: 2rem;
  font-family: "Noto Serif TC", "PMingLiU", serif;
}

.TxtBox h5 {
  font-weight: 600;
  padding-top: 1rem;
}

.TxtBox h6 {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: 1.2rem;
}

.TxtBox p {
  padding-top: 1rem;
  font-weight: 400 !important;
  text-align: justify;
}

.ImgBox {
  width: 100%;
  height: 100%;
}

.ImgBox .InnerImg {
  width: 100%;
  padding-top: 120%;
}

.ImgBox .InnerImg .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .TxtBox h3 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .TxtBox h4 {
    font-size: 1.8rem;
  }
}
/*
footer
*/
footer {
  padding: 10% 0 1rem;
}

footer .infoBox h4 {
  border-bottom: 1px solid #555;
  margin-bottom: 1rem;
  margin-top: 3rem;
  padding-bottom: 1rem;
}

footer .infoBox .list {
  display: flex;
  justify-content: center;
  font-size: 1rem;
}

footer .infoBox .list .Item i {
  font-size: 10px;
  color: #999;
}

footer .info_tell {
  text-align: right;
  font-size: 0.8rem;
  white-space: nowrap;
}

footer .bottomBox {
  margin-top: 5%;
  text-align: center;
}

footer .menuList {
  padding: 3% 0;
}

footer .menuList li {
  display: inline-block;
  padding: 5px 10px;
  color: #999;
}

footer .menuList li:after {
  content: "/";
  padding-left: 10px;
}

footer .menuList li:last-child:after {
  content: "";
  padding-left: 0px;
}

footer .menuList li a {
  color: #999;
  display: inline-block;
}

footer .topLink button {
  display: block;
  height: 60px;
  width: 60px;
  background-color: #47A5C2;
  background: linear-gradient(to bottom, #E3F1F1 0%, #47A5C2 47.63%, #276AA4 100%);
  margin: 0 auto;
  border: none;
  border-radius: 50%;
  padding-top: 0.5%;
  color: #fff;
  font-size: 10px;
}

footer .copyright {
  margin-top: 12pt;
  font-size: 10px;
  color: #999;
}

@media (max-width: 768px) {
  .titleBox h3 {
    font-size: 3.9rem;
  }
  footer .infoBox h4 {
    text-align: center;
  }
  footer .info_tell {
    text-align: center;
    margin-bottom: 10%;
  }
  footer .menuList {
    padding-top: 2rem;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
  }
  footer .menuList li {
    padding: 3px;
    font-size: 10px;
  }
  footer .menuList li:after {
    padding: 3px;
  }
  footer .copyright {
    margin-top: 10px;
  }
}/*# sourceMappingURL=main.css.map */