@charset "UTF-8";
/*-------------------------------------------
  0. SCSS Setup
  SCSS 設定 (變數、Mixins 等)
-------------------------------------------*/
.text-yellow, .text-gold {
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root {
  --padding-x: 96px;
}

@media (max-width: 1800px) {
  :root {
    --padding-x: 80px;
  }
}
@media (max-width: 1400px) {
  :root {
    --padding-x: 40px;
  }
}
@media (max-width: 576px) {
  :root {
    --padding-x: 20px;
  }
}
/*-------------------------------------------
  1. Global Resets & Base
  全域重設與基礎樣式
-------------------------------------------*/
*,
:after,
:before {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Serif TC", serif;
  overflow-x: hidden;
  background: url(../src/紙背景-1.png) 0% 0%/20% repeat;
}
@media (max-width: 991px) {
  body {
    background: url(../src/紙背景-1.png) 0% 0%/100% repeat;
  }
}

/* 基本元素重設 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
summary,
table,
time,
tt,
u,
ul,
var,
video {
  margin: 0;
  margin-bottom: 0 !important;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

section {
  margin-top: -1px;
}

ol,
ul {
  list-style: none;
}

img,
object,
embed,
video {
  vertical-align: text-top;
  border: 0;
}

video {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

a {
  transition: 1s;
  text-decoration: none;
  color: #fff;
}
a:link, a:hover, a:active, a:visited {
  text-decoration: none;
  color: #fff;
}

p {
  color: #090C22;
  word-wrap: break-word;
}

/*-------------------------------------------
  2. Layout & Helpers
  共用佈局與輔助工具
-------------------------------------------*/
.container {
  max-width: 86% !important;
}

/* Padding */
.px-9vw {
  padding-right: 9vw;
  padding-left: 9vw;
}

.pl-5vw {
  padding-left: 5vw;
}

.pl-8vw {
  padding-left: 8vw;
}

.pr-5vw {
  padding-right: 5vw;
}

.pr-8vw {
  padding-right: 8vw;
}

.py-10vh {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.pt-18vh {
  padding-top: 18vh;
}

.pb-13vh {
  padding-bottom: 13vh;
}

.pt-20vh {
  padding-top: 20vh;
}

/* Margin */
.mt-5vh {
  margin-top: 5vh;
}

.mt-7vh {
  margin-top: 7vh;
}

.mb-5vh {
  margin-bottom: 5vh !important;
}

.mb-10vh {
  margin-bottom: 10vh !important;
}

.mb-20vh {
  margin-bottom: 20vh !important;
}

/* Sizing */
.w-45 {
  width: 45%;
}

.w-53 {
  width: 53%;
}

.h-100vh {
  height: 100vh;
}

/* Flexbox Gap */
.gap--4 {
  gap: 4px;
}

.gap--12 {
  gap: 12px;
}

.gap--20 {
  gap: 20px;
}

.gap--40 {
  gap: 40px;
}

.gap--60 {
  gap: 60px;
}

.gap--80 {
  gap: 80px;
}

.gap--100 {
  gap: 100px;
}

.gap--120 {
  gap: 120px;
}

.gap--160 {
  gap: 160px;
}

/* Z-index */
.zindex-999 {
  z-index: 999;
}

/* Colors */
.color-white {
  color: #fff;
}

.color-red {
  color: #FF000D;
}

.color-blue {
  color: #0B3359;
}

.color-blue {
  color: #0B3359;
}

.color-green {
  color: #576A4A;
}

.color-text {
  color: #090C22;
}

.color-gold {
  color: #F9C277;
}

/*-------------------------------------------
  3. Typography
  文字排版
-------------------------------------------*/
.text-en {
  font-family: "Tinos", serif;
  text-transform: uppercase;
}
.text-en--sm {
  font-family: "Tinos", serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.6px;
}
@media (max-width: 576px) {
  .text-en--sm {
    font-size: 12px;
  }
}
.text-en--sm-md {
  font-family: "Tinos", serif;
  font-size: 24px;
}
@media (max-width: 991px) {
  .text-en--sm-md {
    font-size: 15px;
  }
}
.text-en--md {
  font-family: "Tinos", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-align: center;
}
@media (max-width: 1400px) {
  .text-en--md {
    font-size: 2vmin;
  }
}
@media (max-width: 991px) {
  .text-en--md {
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  .text-en--md {
    font-size: 20px;
    letter-spacing: 0.1vmin;
  }
}
.text-en--md-lg {
  font-family: "Tinos", serif;
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .text-en--md-lg {
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  .text-en--md-lg {
    font-size: 5vmin;
    letter-spacing: 0.7vmin;
  }
}
.text-en--lg {
  font-family: "Tinos", serif;
  font-size: 72px;
  font-weight: 400;
  text-wrap: nowrap;
}
.text-en--max {
  font-family: "Tinos", serif;
  font-size: 80px;
  font-weight: 400;
  text-wrap: nowrap;
  letter-spacing: 4px;
}
@media (max-width: 1800px) {
  .text-en--max {
    font-size: 7.5vmin;
  }
}
@media (max-width: 1400px) {
  .text-en--max {
    font-size: 6vmin;
  }
}
@media (max-width: 1200px) {
  .text-en--max {
    font-size: 6vmin;
  }
}
@media (max-width: 991px) {
  .text-en--max {
    font-size: 5vmin;
    letter-spacing: 1.4px;
  }
}
@media (max-width: 576px) {
  .text-en--max {
    font-size: 6.8vmin;
    letter-spacing: 0px;
  }
}
.text-en--tel {
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 80%;
}
@media (max-width: 991px) {
  .text-en--tel {
    font-size: 10vmin;
  }
}

.text-chin--sm {
  font-size: 12px;
}
.text-chin--sm-md {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.8px;
}
.text-chin--md {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1px;
}
@media (max-width: 1400px) {
  .text-chin--md {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .text-chin--md {
    font-size: 14px;
    letter-spacing: 0.4px;
    line-height: 210%;
  }
}
.text-chin--md-lg {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 4.8px;
  font-family: "Noto Serif TC", serif;
  line-height: 150%;
  text-wrap: nowrap;
}
@media (max-width: 991px) {
  .text-chin--md-lg {
    font-size: 20px;
    letter-spacing: 5vw;
  }
}
@media (max-width: 576px) {
  .text-chin--md-lg {
    font-size: 18px;
  }
}
.text-chin--lg {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 160%;
}
@media (max-width: 1200px) {
  .text-chin--lg {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .text-chin--lg {
    font-size: 20px;
  }
}
.text-chin--title {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 7px;
  line-height: 80%;
}
@media (max-width: 1400px) {
  .text-chin--title {
    font-size: 3vmin;
    letter-spacing: 5px;
  }
}
@media (max-width: 991px) {
  .text-chin--title {
    font-size: 3vmin;
  }
}
@media (max-width: 576px) {
  .text-chin--title {
    font-size: 24px;
    letter-spacing: 2px;
  }
}

.text-description {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0px;
}
@media (max-width: 1200px) {
  .text-description {
    font-size: 10px;
  }
}
.text-description--lg {
  font-family: "Noto Serif TC", serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 163%;
  letter-spacing: 6px;
}

.text-form--lg {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 28px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 1.4px;
}
@media (max-width: 1200px) {
  .text-form--lg {
    font-size: 36px;
    letter-spacing: 4px;
  }
}
@media (max-width: 991px) {
  .text-form--lg {
    line-height: 150%;
  }
}
@media (max-width: 576px) {
  .text-form--lg {
    font-size: 16px;
    letter-spacing: 0.7vmin;
  }
}
.text-form--md {
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 2.4px;
}
@media (max-width: 576px) {
  .text-form--md {
    font-size: 4vmin;
  }
}
.text-form--sm {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.6px;
}
@media (max-width: 576px) {
  .text-form--sm {
    font-size: 10px;
    line-height: 150%;
  }
}

.text-gold {
  background: linear-gradient(270deg, #FBE9B9 -22.33%, #C4B08B -0.15%, #98835F 32.01%, #FBE9B9 61.95%, #98835F 88.57%);
}

.text-yellow {
  background: linear-gradient(312deg, #FBE9B9 -540.04%, #C4B08B -310.43%, #98835F 22.52%, #FBE9B9 332.5%, #98835F 608.04%);
}

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

.text-left {
  text-align: end;
}

/*-------------------------------------------
  4. Components
  元件
-------------------------------------------*/
/* --- Form --- */
#section-form {
  padding-top: 35vh;
  padding-bottom: 15vh;
  padding-left: 150px;
  padding-right: 150px;
  gap: 200px;
  transition: all 0.5s ease-in-out;
  position: relative;
}
@media (max-width: 1200px) {
  #section-form {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
@media (max-width: 576px) {
  #section-form {
    gap: 120px;
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
#section-form .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section-form .title-group {
    padding-left: 4vw;
  }
}
@media (max-width: 576px) {
  #section-form .title-group {
    padding-left: 24px;
    gap: 8px;
  }
}
#section-form .title-group h2 {
  line-height: 80%;
}
#section-form .title-group h3 {
  line-height: 150%;
}
#section-form .form-box {
  gap: 80px;
}
@media (max-width: 1200px) {
  #section-form .form-box {
    gap: 8vh;
  }
}
@media (max-width: 991px) {
  #section-form .form-box {
    gap: 60px;
  }
}
#section-form .form-box .text-group--title {
  gap: 20px;
}
@media (max-width: 991px) {
  #section-form .form-box .text-group--title {
    gap: 14px;
  }
}
#section-form .form-box .text-group--title h4 {
  letter-spacing: 12px;
}
#section-form .form-box .text-group--title h2 {
  font-size: 120px;
}
@media (max-width: 991px) {
  #section-form .form-box .text-group--title h2 {
    font-size: 12vmin;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .text-group--title h2 {
    font-size: 48px;
  }
}
#section-form .form-box .text-group--title h3 {
  margin-top: 40px;
  font-size: 28px;
}
@media (max-width: 991px) {
  #section-form .form-box .text-group--title h3 {
    letter-spacing: 0.8px;
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .text-group--title h3 {
    margin-top: 26px;
    font-size: 15px;
  }
}
#section-form .form-box .form-msg {
  transition: all 0.5s ease-in-out;
  height: 100%;
}
@media (max-width: 1200px) {
  #section-form .form-box .form-msg {
    height: 25vh;
  }
}
#section-form .form-box .form-msg textarea {
  height: 100%;
}
#section-form .form-box .info-sub .telGroup {
  gap: 24px;
}
@media (max-width: 991px) {
  #section-form .text-chin--lg {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  #section-form .text-chin--md {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 180%;
  }
}
#section-form .banner-block {
  gap: 100px;
}
@media (max-width: 991px) {
  #section-form .banner-block {
    gap: 60px;
  }
}
#section-form .banner-block .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section-form .banner-block .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section-form .banner-block .title-group {
    gap: 8px;
    padding-left: 24px;
  }
}
#section-form .banner-block .title-group h2 {
  line-height: 80%;
}
#section-form .banner-block .title-group h3 {
  line-height: 150%;
}
#section-form .banner-block .secFormSwiper {
  width: 100%;
  margin: 0;
}
#section-form .banner-block .secFormSwiper .swiper-slide {
  height: auto;
  transition: 0.3s ease-in-out;
}
#section-form .banner-block .secFormSwiper .swiper-slide:hover {
  transform: translateY(-20px);
  opacity: 80%;
  transition: 0.3s ease-in-out;
}
#section-form .banner-block .secFormSwiper .swiper-slide img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  #section-form .banner-block .secFormSwiper .swiper-slide img {
    width: 99%;
  }
}
#section-form .banner-block .secFormSwiper .swiper-button-next,
#section-form .banner-block .secFormSwiper .swiper-button-prev {
  top: calc(50% - 4vh);
  transition: 0.3s ease-in-out;
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  padding: 20px 0px 24px 20px !important;
  border-bottom: 1px solid #000;
  background-color: transparent !important;
  font-size: 18px !important;
}
@media (max-width: 576px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  select,
  textarea {
    font-size: 12px !important;
  }
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #090C22 !important;
  font-size: 18px !important;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #090C22 !important;
  font-size: 18px !important;
}
@media (max-width: 576px) {
  input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 12px !important;
  }
  input[type=text]::placeholder,
  input[type=tel]::placeholder,
  input[type=email]::placeholder,
  select::placeholder,
  textarea::placeholder {
    font-size: 12px !important;
  }
}

textarea:focus::-moz-placeholder {
  opacity: 0;
}

textarea:focus::placeholder {
  opacity: 0;
}

.form-select,
.form-control {
  color: #090C22 !important;
  border: 1px solid #C6C6C6 !important;
  border-radius: 0 !important;
}
.form-select:focus,
.form-control:focus {
  color: #090C22;
  border: 1px solid #090C22 !important;
  box-shadow: unset !important;
}
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

/* --- Submit Button --- */
#submit {
  width: 100%;
  padding: 20px 8vw;
  justify-content: center;
  align-items: center;
  background-color: #1B3029;
  color: #fff;
  border-radius: 0;
  border: 0px solid #000;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #submit {
    width: 100%;
  }
}
#submit:hover {
  background-color: #576A4A !important;
  color: #fff;
  transition: 0.3s ease-in-out;
}

/* --- Form page button --- */
.btn-form {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 40px;
  background-color: #fff;
  border-radius: 1000px;
  color: #0B3359;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  border: 0px;
  letter-spacing: 2.5px;
}
@media (max-width: 576px) {
  .btn-form {
    font-size: 16px;
  }
}

/* --- Custom Checkbox --- */
.formCheck {
  width: 100%;
}
@media (max-width: 1400px) {
  .formCheck {
    width: 100%;
  }
}

.custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}
.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox input[type=checkbox]:checked + .circle::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 50%;
  width: 7px;
  height: 12px;
  border: 1px solid #090C22;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-50%, -50%);
  border-radius: 1px;
}
.custom-checkbox .circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #090C22;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: border-color 0.2s;
  margin-right: 0;
  box-sizing: border-box;
  vertical-align: middle;
}

/*-------------------------------------------
  5. Plugin Overrides
  外部套件覆寫
-------------------------------------------*/
/* Swiper Carousels */
.swiper {
  --swiper-theme-color: white;
  /* 例如橘色 */
  --swiper-pagination-color: white;
  /* pagination 圓點顏色 */
}

.description-box {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  position: absolute !important;
  padding-bottom: 1vh;
  padding-left: 1vh;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .description-box {
    padding-right: 2vw;
    padding-bottom: 2vw;
  }
}

/*-------------------------------------------
  6. Page Sections
  各區塊獨立設定
-------------------------------------------*/
/* --- Section 1 --- */
#section1 {
  position: relative;
  width: 100%;
  height: 1081px;
  max-width: 100%;
  overflow: hidden;
  background-color: #1B3029;
}
@media (max-width: 991px) {
  #section1 {
    height: unset;
  }
}
#section1 .block-left {
  width: 72vw;
}
#section1 .block-left .sec1-bkvideo {
  width: 72vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
  position: absolute;
  z-index: 0;
}
#section1 .block-left h4 {
  letter-spacing: 6vw;
  text-indent: 6vw;
  text-align: center;
  z-index: 1;
  padding-bottom: 100px;
  text-shadow: 0px 4px 15px #0C0C0D;
}
#section1 .block-left aside {
  position: absolute;
  left: 16px;
  bottom: 20px;
  opacity: 50%;
  z-index: 1;
}
#section1 .block-left .txt-thankyou-pc {
  width: 50vw;
  padding: 0 0 10vh 5vw;
}
#section1 .block-right {
  width: 28vw;
  padding-bottom: 100px;
  gap: 68px;
  background-color: #1B3029;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #section1 .block-right {
    width: 100vw;
    height: 101vh;
    padding-top: 64px;
    gap: 0;
  }
}
#section1 .block-right .sec1-bkimg {
  position: absolute;
  width: 28vw;
  top: 0;
  z-index: 0;
}
#section1 .block-right .sec1-bkvideo {
  width: auto;
  height: 101vh;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  z-index: 0;
}
#section1 .block-right h3 {
  writing-mode: vertical-rl;
  z-index: 1;
  letter-spacing: 10px;
  flex: 1 1 0;
}
#section1 .block-right .sec1-logo {
  width: 62%;
  z-index: 1;
}
@media (max-width: 991px) {
  #section1 .block-right .sec1-logo {
    width: 40%;
  }
}
@media (max-width: 576px) {
  #section1 .block-right .sec1-logo {
    width: 65%;
  }
}
#section1 .block-right .txt-thankyou-mb {
  width: 80%;
}

/* --- Section 2 --- */
#section2 {
  padding: 240px 150px 0 150px;
}
@media (max-width: 1200px) {
  #section2 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 576px) {
  #section2 {
    padding: 120px 8vw 0 8vw;
  }
}
#section2 .content {
  gap: 100px;
}
@media (max-width: 991px) {
  #section2 .content {
    gap: 60px;
  }
}
#section2 .content .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section2 .content .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section2 .content .title-group {
    padding-left: 4vw;
    gap: 8px;
  }
}
#section2 .content .title-group h2 {
  line-height: 80%;
}
#section2 .content .title-group h3 {
  line-height: 150%;
}
#section2 .content .txt-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section2 .content .txt-group {
    gap: 36px;
  }
}
#section2 .content .txt-group .hashtag-group {
  gap: 14px;
}
#section2 .content .txt-group .hashtag-group h5 {
  border: 1px solid #576A4A;
  font-weight: 500;
  padding: 0 10px 0 10px;
}
#section2 .content .swiper-group .sec2Swiper {
  width: 100%;
  margin: 0;
}
#section2 .content .swiper-group .sec2Swiper .swiper-slide {
  height: auto;
}
#section2 .content .swiper-group .sec2Swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  #section2 .content .swiper-group .sec2Swiper .swiper-button-next,
  #section2 .content .swiper-group .sec2Swiper .swiper-button-prev {
    width: 4vw;
  }
}
@media (max-width: 991px) {
  #section2 .content .swiper-group .sec2Swiper .swiper-pagination-bullet {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.8vw 0 0.8vw;
  }
}

/* --- Section 3 --- */
#section3 {
  padding: 300px 150px 0 150px;
}
@media (max-width: 1200px) {
  #section3 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 576px) {
  #section3 {
    padding: 120px 8vw 0 8vw;
  }
}
#section3 .content {
  gap: 100px;
}
@media (max-width: 991px) {
  #section3 .content {
    gap: 60px;
  }
}
#section3 .content .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section3 .content .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section3 .content .title-group {
    padding-left: 4vw;
    gap: 8px;
  }
}
#section3 .content .title-group h2 {
  line-height: 80%;
}
#section3 .content .title-group h3 {
  line-height: 150%;
}
#section3 .content .txt-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section3 .content .txt-group {
    gap: 36px;
  }
}
#section3 .content .swiper-group .sec3Swiper {
  width: 100%;
  margin: 0;
}
#section3 .content .swiper-group .sec3Swiper .swiper-slide {
  height: auto;
}
#section3 .content .swiper-group .sec3Swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  #section3 .content .swiper-group .sec3Swiper .swiper-button-next,
  #section3 .content .swiper-group .sec3Swiper .swiper-button-prev {
    width: 4vw;
  }
}
@media (max-width: 991px) {
  #section3 .content .swiper-group .sec3Swiper .swiper-pagination-bullet {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.8vw 0 0.8vw;
  }
}

/* --- Section 4 --- */
#section4 {
  padding: 300px 150px 0 150px;
}
@media (max-width: 1200px) {
  #section4 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 576px) {
  #section4 {
    padding: 120px 8vw 0 8vw;
  }
}
#section4 .content {
  gap: 100px;
}
@media (max-width: 991px) {
  #section4 .content {
    gap: 60px;
  }
}
#section4 .content .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section4 .content .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section4 .content .title-group {
    padding-left: 4vw;
    gap: 8px;
  }
}
#section4 .content .title-group h2 {
  line-height: 80%;
}
#section4 .content .title-group h3 {
  line-height: 150%;
}
#section4 .content .sec4Swiper {
  width: 100%;
  margin: 0;
}
#section4 .content .sec4Swiper .swiper-slide {
  height: auto;
}
#section4 .content .sec4Swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

/* --- Section 5 --- */
#section5 {
  padding: 300px 150px 0 150px;
}
@media (max-width: 1200px) {
  #section5 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 576px) {
  #section5 {
    padding: 120px 8vw 0 8vw;
  }
}
#section5 .content {
  gap: 100px;
}
@media (max-width: 991px) {
  #section5 .content {
    gap: 60px;
  }
}
#section5 .content .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section5 .content .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section5 .content .title-group {
    padding-left: 4vw;
    gap: 8px;
  }
}
#section5 .content .title-group h2 {
  line-height: 80%;
}
#section5 .content .title-group h3 {
  line-height: 150%;
}
#section5 .content .sec5Swiper {
  width: 100%;
  margin: 0;
}
#section5 .content .sec5Swiper .swiper-slide {
  height: auto;
}
#section5 .content .sec5Swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

/* --- Section 6 --- */
#section6 {
  padding: 300px 150px 0 150px;
}
@media (max-width: 1200px) {
  #section6 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 576px) {
  #section6 {
    padding: 120px 8vw 0 8vw;
  }
}
#section6 .content {
  gap: 100px;
}
@media (max-width: 991px) {
  #section6 .content {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  #section6 .content {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  #section6 .content {
    gap: 8px;
  }
}
#section6 .content .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section6 .content .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section6 .content .title-group {
    padding-left: 4vw;
    gap: 8px;
  }
}
#section6 .content .title-group h2 {
  line-height: 80%;
}
#section6 .content .title-group h3 {
  line-height: 150%;
}
#section6 .content .sec6-1 {
  position: relative;
}
#section6 .content .sec6-1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  #section6 .content .sec6-1 img {
    height: 70vw;
  }
}
#section6 .content .sec6-1 .txt-group {
  position: absolute;
  right: 80px;
  top: 120px;
  z-index: 1;
  gap: 60px;
  width: 440px;
}
#section6 .content .sec6-1 .txt-group h2 {
  text-align: end;
  line-height: 100%;
}
#section6 .content .sec6-1 .txt-group p {
  line-height: 170%;
  text-align: justify;
}
#section6 .content .sec6-1 aside {
  position: absolute;
  left: 16px;
  bottom: 20px;
  z-index: 1;
}
@media (max-width: 991px) {
  #section6 .content .sec6-1 aside {
    left: 8px;
    bottom: 10px;
  }
}
#section6 .content .sec6-2::before {
  content: "";
  /* 必須 */
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; 的縮寫 */
  z-index: 1;
  /* 在圖片之上 */
  pointer-events: none;
  /* 讓底下互動不受影響（需要互動時移除） */
  top: -1px;
}
#section6 .content .sec6-2 .section-location {
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
#section6 .content .sec6-2 .section-location .section-landmarks {
  position: relative;
  min-height: 764px;
}
@media (max-width: 991px) {
  #section6 .content .sec6-2 .section-location .section-landmarks {
    min-height: 700px;
  }
}
@media (max-width: 576px) {
  #section6 .content .sec6-2 .section-location .section-landmarks {
    min-height: 600px;
  }
}
#section6 .content .sec6-2 .section-location .section-landmarks .wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
#section6 .content .sec6-2 .section-location .section-landmarks .wrapper .landscape {
  display: flex;
  flex-direction: column;
  width: 1920px;
  height: 1280px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  #section6 .content .sec6-2 .section-location .section-landmarks .wrapper .landscape {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
}
#section6 .content .sec6-2 .section-location .memo {
  width: 100%;
  position: absolute;
  bottom: 0;
}
#section6 .content .sec6-2 .description-box {
  height: 20%;
}
#section6 .content .sec6-3 {
  padding: 120px 0 120px 0;
  gap: 100px;
}
@media (max-width: 991px) {
  #section6 .content .sec6-3 {
    padding: 0 0 100px 0;
  }
}
#section6 .content .sec6-3 .sec6Swiper {
  width: 100%;
  margin: 0;
}
#section6 .content .sec6-3 .sec6Swiper .swiper-slide {
  height: auto;
}
#section6 .content .sec6-3 .sec6Swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
#section6 .content .sec6-3 .sec6Swiper .swiper-button-next,
#section6 .content .sec6-3 .sec6Swiper .swiper-button-prev {
  top: calc(50% - 3vh);
  transition: 0.3s ease-in-out;
}
#section6 .content .sec6-4 {
  width: 100%;
}
#section6 .content .sec6-5 {
  gap: 100px;
}
@media (max-width: 991px) {
  #section6 .content .sec6-5 {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  #section6 .content .sec6-5 {
    gap: 8px;
  }
}
#section6 .content .sec6-5 {
  /* --- map --- */
}
#section6 .content .sec6-5 .map iframe {
  height: 920px;
}
@media (max-width: 991px) {
  #section6 .content .sec6-5 .map iframe {
    height: 390px;
  }
}
#section6 .content .sec6-5 .btn-group {
  gap: 32px;
}
@media (max-width: 991px) {
  #section6 .content .sec6-5 .btn-group {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  #section6 .content .sec6-5 .btn-group {
    gap: 8px;
  }
}
#section6 .content .sec6-5 .btn-group button {
  padding: 24px 60px;
  background-color: #1B3029;
  border: 0;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #section6 .content .sec6-5 .btn-group button {
    padding: 20px 0px;
    flex: 1 1 0;
  }
}
#section6 .content .sec6-5 .btn-group button:hover {
  background-color: #576A4A !important;
  color: #fff;
  transition: 0.3s ease-in-out;
}

/* --- Section 7 --- */
#section7 {
  padding: 300px 150px 0 150px;
}
@media (max-width: 1200px) {
  #section7 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 576px) {
  #section7 {
    padding: 120px 8vw 0 8vw;
  }
}
#section7 .content {
  gap: 100px;
}
@media (max-width: 991px) {
  #section7 .content {
    gap: 60px;
  }
}
#section7 .content .title-group {
  padding-left: 60px;
  border-left: 2px solid #090C22;
  gap: 24px;
}
@media (max-width: 1200px) {
  #section7 .content .title-group {
    padding-left: 4vw;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  #section7 .content .title-group {
    padding-left: 4vw;
    gap: 8px;
  }
}
#section7 .content .title-group h2 {
  line-height: 80%;
}
#section7 .content .title-group h3 {
  line-height: 150%;
}
#section7 .content .info-group {
  gap: 110px;
}
@media (max-width: 1800px) {
  #section7 .content .info-group {
    gap: 6vw;
  }
}
@media (max-width: 1400px) {
  #section7 .content .info-group {
    gap: 3vw;
  }
}
#section7 .content .info-group .img-banner img {
  width: 38vw;
}
@media (max-width: 1200px) {
  #section7 .content .info-group .img-banner img {
    width: 100%;
  }
}
#section7 .content .info-group .txt-group hr {
  margin: 0;
}
@media (max-width: 1200px) {
  #section7 .content .info-group .txt-group hr {
    margin: 16px 0 16px 0;
  }
}
#section7 .content .info-group .txt-group .txt {
  gap: 48px;
}
@media (max-width: 1400px) {
  #section7 .content .info-group .txt-group .txt {
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  #section7 .content .info-group .txt-group .txt {
    gap: 50px;
  }
}
@media (max-width: 576px) {
  #section7 .content .info-group .txt-group .txt {
    gap: 24px;
  }
}
#section7 .content .info-group .txt-group .txt h5 {
  font-weight: 400;
  text-wrap: nowrap;
}
#section7 .content .info-group .txt-group .txt h4 {
  font-size: 25px;
  font-weight: 400;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.8px;
}
@media (max-width: 991px) {
  #section7 .content .info-group .txt-group .txt h4 {
    letter-spacing: 0.4px;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  #section7 .content .info-group .txt-group .txt h4 {
    font-size: 16px;
  }
}

/*-----------------------------------------------------
置底小圖示navbar設定
-----------------------------------------------------*/
.nav-bar {
  width: 100.1%;
  background: linear-gradient(to right, #3a5c5c, #004948, #004948);
  position: fixed;
  top: 0;
  z-index: 40;
  align-items: center;
}
.nav-bar .logo-wrapper {
  padding-left: 0.75rem;
}
.nav-bar .logo-wrapper .logo-img {
  width: 190px;
}
.nav-bar .nav-links {
  display: flex;
  justify-content: space-between;
}
.nav-bar .nav-links .nav-item + .nav-item {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-bar .nav-links .nav-item .nav-link {
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.nav-bar .nav-links .nav-item .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nav-bar .nav-links .nav-item .nav-link .nav-icon {
  width: 50%;
  padding: 1rem 0;
}

/*-------------------------------------------
  7. Responsive Media Queries (Generated from above)
  響應式設計 (已整合至上方各選擇器中)

  以下為新增的 RWD Helpers
-------------------------------------------*/
@media (max-width: 991px) {
  .px-lg--8vw {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
@media (max-width: 576px) {
  .gap-sm--60 {
    gap: 60px;
  }
  .px-sm--20 {
    padding-left: 20px;
    padding-right: 20px;
  }
}/*# sourceMappingURL=style.css.map */