@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Family */
/* Section Spacing */
/*
  content-edge：內容版心與瀏覽器邊界的預設距離
  section-py：section 上下留白
  如果不需要上下 padding，可用 .section-py--mobile-0 等類別局部去除。
*/
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
/* Text Block Padding */
body {
  overflow-x: hidden;
}

.txt-title {
  margin-bottom: 1.5em;
}

.page-zh-title {
  font-size: calc(24 * var(--vw-base));
  font-weight: 500;
  color: #222529;
}
@media (max-width: 991px) {
  .page-zh-title {
    font-size: calc(25 * var(--vw-base));
  }
}

.txt-body p {
  color: #222529;
  font-size: calc(18 * var(--vw-base));
}
@media (max-width: 991px) {
  .txt-body p {
    font-size: calc(21 * var(--vw-base));
  }
}

.card-title {
  font-size: calc(24 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  color: #222529;
  font-weight: 600;
}
@media (max-width: 991px) {
  .card-title {
    font-size: calc(24 * var(--vw-base));
  }
}

.page-en-title {
  font-size: calc(74 * var(--vw-base));
  font-family: "Cinzel";
}
@media (max-width: 991px) {
  .page-en-title {
    font-size: calc(49 * var(--vw-base));
  }
}

.page-zh-subtitle {
  font-size: calc(47 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-zh-subtitle {
    font-size: calc(32 * var(--vw-base));
  }
}

.slogan-title {
  font-size: calc(65 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: bold;
  color: #fff;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .slogan-title {
    font-size: calc(32 * var(--vw-base));
  }
}

.slogan-subtitle {
  font-size: calc(46 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 991px) {
  .slogan-subtitle {
    font-size: calc(22 * var(--vw-base));
  }
}

.banner {
  aspect-ratio: 16/9;
}
@media (max-width: 991px) {
  .banner {
    aspect-ratio: 9/16;
  }
}

.page01 {
  background-image: url(../images/img/page01-img-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  aspect-ratio: 1920/600;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .page01 {
    background-attachment: scroll;
    aspect-ratio: 610/324;
  }
}
.page01 .container-fluid {
  width: 100%;
}

@media (max-width: 991px) {
  .page02 .page-zh-title,
  .page04 .page-zh-title,
  .page05 .page-zh-title {
    font-size: calc(30 * var(--vw-base));
  }
}
.page02 .txt-title img,
.page04 .txt-title img,
.page05 .txt-title img {
  max-width: 100%;
  width: 31%;
}
@media (max-width: 991px) {
  .page02 .txt-title img,
  .page04 .txt-title img,
  .page05 .txt-title img {
    width: 80%;
    margin-bottom: calc(20 * var(--vw-base));
  }
}
.page02 .txt-title .deco-line::after,
.page04 .txt-title .deco-line::after,
.page05 .txt-title .deco-line::after {
  content: "";
  display: block;
  width: calc(40 * var(--vw-base));
  height: 1px;
  background-color: #222529;
  margin-top: 0.7em;
}

.page02::after {
  content: "";
  background-image: url(../images/img/page-deco-h.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 188/50;
  position: absolute;
  width: 10%;
  top: 11%;
  right: 5%;
}
@media (max-width: 991px) {
  .page02::after {
    width: 17%;
    top: 7.8%;
    right: 7%;
  }
}

@media (max-width: 991px) {
  .page03 .page-zh-title {
    font-size: calc(30 * var(--vw-base));
  }
}
.page03 .txt-title img {
  max-width: 100%;
  width: 31%;
}
@media (max-width: 991px) {
  .page03 .txt-title img {
    width: 80%;
    margin-bottom: calc(20 * var(--vw-base));
  }
}
.page03 .txt-title .deco-line::after {
  content: "";
  display: block;
  width: calc(40 * var(--vw-base));
  height: 1px;
  background-color: #222529;
  margin-top: 0.7em;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .page03 .txt-title .deco-line::after {
    margin-left: 0;
    margin-right: 0;
  }
}
.page03::after {
  content: "";
  background-image: url(../images/img/page-deco-h.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 188/50;
  position: absolute;
  width: 10%;
  top: 11%;
  right: 5%;
}
@media (max-width: 991px) {
  .page03::after {
    width: 17%;
    top: 5.9%;
    right: 7%;
  }
}

.page04::after {
  content: "";
  background-image: url(../images/img/page-deco-v.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 50/188;
  position: absolute;
  width: 4%;
  top: -6%;
  right: 5%;
}
@media (max-width: 991px) {
  .page04::after {
    background-image: url(../images/img/page-deco-h.svg);
    aspect-ratio: 188/50;
    width: 17%;
    top: 7.8%;
    right: 7%;
  }
}

.page05::after {
  content: "";
  background-image: url(../images/img/page-deco-h.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 188/50;
  position: absolute;
  width: 10%;
  top: 11%;
  right: 5%;
}
@media (max-width: 991px) {
  .page05::after {
    width: 17%;
    top: 9.3%;
    right: 7%;
  }
}

.page06 {
  background-image: url(../images/img/page06-img-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  aspect-ratio: 1920/600;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .page06 {
    background-attachment: scroll;
    aspect-ratio: 610/324;
  }
  .page06 .title-lined::before {
    margin-right: 0.5rem;
  }
  .page06 .title-lined::after {
    margin-left: 0.5rem;
  }
}
.page06 .container-fluid {
  width: 100%;
}

.page07 {
  overflow-x: hidden;
  background-image: url(../images/img/page07-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .page07 {
    background-image: url(../images/img/page07-bg-m.jpg);
  }
}
@media (min-width: 992px) {
  .page07 {
    --content-edge: calc(50 * var(--vw-base));
  }
  .page07 .page-zh-title {
    font-size: calc(32 * var(--vw-base));
  }
}
.page07 .swiper-button-next,
.page07 .swiper-button-prev {
  color: #b0b0b0;
}
.page07 .page-zh-subtitle::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(70 * var(--vw-base));
  background-color: #fff;
  margin-inline: auto;
  margin-block: 0.5em;
}
.page07 .deco-line::after {
  content: "";
  display: block;
  width: calc(40 * var(--vw-base));
  height: 1px;
  background-color: #222529;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-inline: auto;
}
.page07 .txt-body p {
  font-weight: 400;
}
.page07 .card-box {
  padding: calc(40 * var(--vw-base));
  background-color: #fff;
}
@media (max-width: 991px) {
  .page07 .pageSwiper {
    overflow: hidden;
    padding-bottom: calc(50 * var(--vw-base));
  }
  .page07 .pageSwiper .swiper-pagination {
    bottom: 0;
  }
  .page07 .pageSwiper .swiper-pagination-bullet {
    background: #e3e3e3;
    opacity: 1;
  }
  .page07 .pageSwiper .swiper-pagination-bullet-active {
    background: #da534a;
  }
  .page07 .pageSwiper .swiper-button-prev,
  .page07 .pageSwiper .swiper-button-next {
    --swiper-navigation-size: 24px;
    width: calc(var(--swiper-navigation-size) / 15 * 27);
  }
  .page07 .pageSwiper .swiper-button-prev {
    left: 0;
  }
  .page07 .pageSwiper .swiper-button-next {
    right: 0;
  }
  .page07 .pageSwiper .swiper-slide .col-10 {
    width: 75%;
  }
}

.page08 {
  background-color: #ececec;
  overflow-x: hidden;
}
.page08 .txt-title img {
  max-width: 100%;
  width: 31%;
}
@media (max-width: 991px) {
  .page08 .txt-title img {
    width: 80%;
    margin-bottom: calc(20 * var(--vw-base));
  }
}
.page08 .page-zh-title {
  font-size: calc(32 * var(--vw-base));
  line-height: 1.7;
  font-weight: 400;
}
.page08 .page-zh-title small {
  font-size: 0.7em;
}
.page08 .txt-body p {
  font-weight: 400;
}
.page08 .txt-body p b {
  color: #222529;
}
.page08 .txt-body p i {
  color: #222529;
  font-style: normal;
  font-family: "Cinzel";
}
.page08 .deco-line::after {
  content: "";
  display: block;
  width: calc(40 * var(--vw-base));
  height: 1px;
  background-color: #222529;
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}
@media (min-width: 992px) {
  .page08 .txt-pb {
    padding-bottom: calc(23 * var(--vw-base));
  }
}
@media (max-width: 991px) {
  .page08 .pageSwiper {
    overflow: hidden;
    padding-bottom: calc(50 * var(--vw-base));
  }
  .page08 .pageSwiper .swiper-pagination {
    bottom: 0;
  }
  .page08 .pageSwiper .swiper-button-prev,
  .page08 .pageSwiper .swiper-button-next {
    --swiper-navigation-size: 24px;
    width: calc(var(--swiper-navigation-size) / 15 * 27);
  }
  .page08 .pageSwiper .swiper-button-prev {
    left: 0;
  }
  .page08 .pageSwiper .swiper-button-next {
    right: 0;
  }
  .page08 .pageSwiper .swiper-slide .col-10 {
    width: 75%;
  }
}

.page11 #form1 .form-control,
.page11 #form1 .form-select {
  border-radius: 8px;
}
.page11 #form1 .form-floating > textarea.form-control {
  height: 130px;
}
.page11 #form1 .col-lg-6:has(#city),
.page11 #form1 .col-lg-6:has(#district) {
  display: none;
}/*# sourceMappingURL=style.css.map */