@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: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Serif TC", serif;
  overflow-x: hidden;
}
/* 基本元素重設 */
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: #06182E;
  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--16 {
  margin-top: 16px;
}

.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--16 {
  gap: 16px;
}

.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: #84BC26;
}

.color-text {
  color: #06182E;
}

.color-gold {
  color: #D2D1BD !important;
}

/*-------------------------------------------
  3. Typography
  文字排版
-------------------------------------------*/
.text-en {
  font-family: "Inter", sans-serif !important;
}
.text-en--sm {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.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: 48px;
  font-weight: 400;
  text-wrap: nowrap;
  letter-spacing: 2.4px;
}
@media (max-width: 1400px) {
  .text-en--lg {
    font-size: 3vmin;
  }
}
@media (max-width: 991px) {
  .text-en--lg {
    font-size: 28px;
    letter-spacing: 0.4vmin;
  }
}
.text-en--max {
  font-family: "Tinos", serif;
  font-size: 56px;
  font-weight: 400;
  text-wrap: nowrap;
  letter-spacing: 1px;
}
@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: 34px;
  font-weight: 300;
  line-height: 80%;
  letter-spacing: 1.6px;
}
@media (max-width: 991px) {
  .text-en--tel {
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  .text-en--tel {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.text-chin--sm {
  font-size: 14px;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}
.text-chin--sm-md {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 2px;
}
@media (max-width: 576px) {
  .text-chin--sm-md {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
.text-chin--md {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 1px;
}
@media (max-width: 1400px) {
  .text-chin--md {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .text-chin--md {
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 200%;
  }
}
.text-chin--md-lg {
  font-size: 28px;
  font-weight: 350;
  letter-spacing: 1.2px;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 160%;
  text-wrap: nowrap;
}
@media (max-width: 1400px) {
  .text-chin--md-lg {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .text-chin--md-lg {
    font-size: 2.2vmin;
    letter-spacing: 1px;
  }
}
@media (max-width: 576px) {
  .text-chin--md-lg {
    font-size: 18px;
    letter-spacing: 0.8px;
  }
}
.text-chin--lg {
  font-size: 110px;
  font-weight: 700;
  letter-spacing: 7.8px;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 100%;
}
@media (max-width: 1800px) {
  .text-chin--lg {
    font-size: 9.8vmin;
  }
}
@media (max-width: 1400px) {
  .text-chin--lg {
    font-size: 7vmin;
  }
}
@media (max-width: 576px) {
  .text-chin--lg {
    font-size: 44px;
  }
}
.text-chin--title {
  font-family: "Noto Serif TC", serif;
  font-size: 100px;
  font-weight: 600;
  letter-spacing: 24px;
  line-height: 140%;
}
@media (max-width: 1800px) {
  .text-chin--title {
    font-size: 7vmin;
  }
}
@media (max-width: 1400px) {
  .text-chin--title {
    font-size: 6vmin;
    letter-spacing: 1.8vmin;
  }
}
@media (max-width: 991px) {
  .text-chin--title {
    font-size: 7vmin;
  }
}
@media (max-width: 576px) {
  .text-chin--title {
    font-size: 40px;
    letter-spacing: 9.6px;
  }
}

.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;
}

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

.text-form--lg {
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  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 {
  background: right bottom/cover no-repeat url(../src/sec-form/form-bk.jpg);
  padding-top: 21vh;
  padding-bottom: 154px;
  padding-left: 25vw;
  padding-right: 25vw;
  gap: 200px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  width: 100.1vw;
}
@media (max-width: 1400px) {
  #section-form {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
@media (max-width: 1200px) {
  #section-form {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
@media (max-width: 991px) {
  #section-form {
    padding-left: 8vw;
    padding-right: 8vw;
    background-position-x: 75%;
  }
}
@media (max-width: 576px) {
  #section-form {
    gap: 120px;
    padding-top: 150px;
    padding-bottom: 13vh;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#section-form .form-box {
  gap: 48px;
}
@media (max-width: 1200px) {
  #section-form .form-box {
    gap: 8vh;
  }
}
@media (max-width: 991px) {
  #section-form .form-box {
    gap: 60px;
    z-index: 999;
  }
}
#section-form .form-box .title-group {
  gap: 40px;
}
#section-form .form-box .title-group img {
  width: 25vw;
}
@media (max-width: 991px) {
  #section-form .form-box .title-group img {
    width: 42vw;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .title-group img {
    width: 48vw;
  }
}
#section-form .form-box .title-group h3 {
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  letter-spacing: 3.8px;
}
@media (max-width: 576px) {
  #section-form .form-box .title-group h3 {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
#section-form .form-box .input-block {
  gap: 32px;
}
@media (max-width: 1200px) {
  #section-form .form-box .input-block {
    gap: 0;
  }
}
#section-form .form-box .input-block .form-msg {
  transition: all 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}
@media (max-width: 1200px) {
  #section-form .form-box .input-block .form-msg {
    height: 25vh;
  }
}
#section-form .form-box .input-block .form-msg textarea {
  height: 100%;
}
#section-form .form-box .info-sub {
  width: 100%;
}
@media (max-width: 991px) {
  #section-form .form-box .info-sub {
    gap: 60px;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub {
    gap: 20px;
  }
}
#section-form .form-box .info-sub h3 {
  font-size: 16px;
}
@media (max-width: 991px) {
  #section-form .form-box .info-sub h3 {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
#section-form .form-box .info-sub p {
  font-family: "Noto Serif TC", serif;
}
#section-form .form-box .info-sub p a {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  line-height: 130%;
}
#section-form .form-box .info-sub p span {
  font-size: 32px;
}
@media (max-width: 991px) {
  #section-form .form-box .info-sub p span {
    font-size: 4vmin;
  }
}
#section-form .form-box .info-sub button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 16px;
  border: 0;
  background-color: #fff;
  border-radius: 1000px;
  letter-spacing: 0.8px;
  height: -moz-fit-content;
  height: fit-content;
}
#section-form .form-box .icon-group img:hover {
  transition: all 0.5s ease-in-out;
  opacity: 0.5;
}
#section-form .form-box .copy-right {
  margin-top: 80px;
}
@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 a,
#section-form a:link,
#section-form a:hover,
#section-form a:active,
#section-form a:visited {
  color: #fff;
}
#section-form input[type=text],
#section-form input[type=tel],
#section-form input[type=email],
#section-form select,
#section-form textarea {
  padding: 6px 12px !important;
  font-size: 18px !important;
}
@media (max-width: 576px) {
  #section-form input[type=text],
  #section-form input[type=tel],
  #section-form input[type=email],
  #section-form select,
  #section-form textarea {
    font-size: 16px !important;
  }
}
#section-form input[type=text]::-moz-placeholder, #section-form input[type=tel]::-moz-placeholder, #section-form input[type=email]::-moz-placeholder, #section-form select::-moz-placeholder, #section-form textarea::-moz-placeholder {
  color: rgba(20, 20, 20, 0.8) !important;
  font-size: 18px !important;
}
#section-form input[type=text]::placeholder,
#section-form input[type=tel]::placeholder,
#section-form input[type=email]::placeholder,
#section-form select::placeholder,
#section-form textarea::placeholder {
  color: rgba(20, 20, 20, 0.8) !important;
  font-size: 18px !important;
}
@media (max-width: 576px) {
  #section-form input[type=text]::-moz-placeholder, #section-form input[type=tel]::-moz-placeholder, #section-form input[type=email]::-moz-placeholder, #section-form select::-moz-placeholder, #section-form textarea::-moz-placeholder {
    font-size: 16px !important;
  }
  #section-form input[type=text]::placeholder,
  #section-form input[type=tel]::placeholder,
  #section-form input[type=email]::placeholder,
  #section-form select::placeholder,
  #section-form textarea::placeholder {
    font-size: 16px !important;
  }
}
#section-form textarea:focus::-moz-placeholder {
  opacity: 0;
}
#section-form textarea:focus::placeholder {
  opacity: 0;
}
#section-form .form-select,
#section-form .form-control {
  color: rgba(20, 20, 20, 0.8) !important;
  border-radius: 0 !important;
}
#section-form .form-select:focus,
#section-form .form-control:focus {
  color: #06182E;
  border: 1px solid #06182E !important;
  box-shadow: unset !important;
}
#section-form .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='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
#section-form {
  /* --- Submit Button --- */
}
#section-form #submit {
  width: 100%;
  padding: 20px 8vw;
  justify-content: center;
  align-items: center;
  background-color: #585858;
  color: #fff;
  border-radius: 0;
  border: 1px solid #000;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #section-form #submit {
    width: 100%;
  }
}
#section-form #submit:hover {
  background-color: #84BC26 !important;
  border: 1px solid #84BC26;
  color: #fff;
  transition: 0.3s ease-in-out;
}
#section-form {
  /* --- Form page button --- */
}
#section-form .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) {
  #section-form .btn-form {
    font-size: 16px;
  }
}
#section-form {
  /* --- Custom Checkbox --- */
}
#section-form .formCheck {
  width: 100%;
}
@media (max-width: 1400px) {
  #section-form .formCheck {
    width: 100%;
  }
}
#section-form .custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}
#section-form .custom-checkbox input[type=checkbox] {
  display: none;
}
#section-form .custom-checkbox input[type=checkbox]:checked + .circle::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 50%;
  width: 7px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-50%, -50%);
  border-radius: 1px;
}
#section-form .custom-checkbox .circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: border-color 0.2s;
  margin-right: 0;
  box-sizing: border-box;
  vertical-align: middle;
}

/*-----------------------------------------------------
影片靜音撥放設定
-----------------------------------------------------*/
.soundControl {
  position: absolute;
  top: 1%;
  right: 1.5%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 9999;
}
@media (max-width: 991px) {
  .soundControl {
    top: unset;
    bottom: 10px;
    right: 20px;
  }
}
.soundControl .soundBtn {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 991px) {
  .soundControl .soundBtn {
    font-size: 2rem;
  }
}
.soundControl .sound {
  display: none;
}

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

/*-------------------------------------------
  6. Page Sections
  各區塊獨立設定
-------------------------------------------*/
/* --- Section 1 --- */
#section1 {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
#section1 .sec1-bkvideo {
  width: 100vw;
  height: auto;
  margin-top: -5px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
#section1 .sec1-bkvideo iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  #section1 .sec1-bkvideo {
    aspect-ratio: 9/16;
  }
}

/* --- Section 2 --- */
#section2 {
  background-color: #DEDEDE;
  padding: 170px 0 220px 9vw;
}
@media (max-width: 991px) {
  #section2 {
    padding: 150px 10vw 180px 10vw;
    gap: 72px;
  }
}
@media (max-width: 576px) {
  #section2 {
    padding: 120px 5vw 120px 5vw;
  }
}
#section2 .block-left {
  gap: 72px;
}
@media (max-width: 1400px) {
  #section2 .block-left {
    gap: 60px;
  }
}
#section2 .block-left .title-group {
  gap: 60px;
}
@media (max-width: 1400px) {
  #section2 .block-left .title-group {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  #section2 .block-left .title-group {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  #section2 .block-left-video {
    margin-left: -12vw;
    width: 80vw;
  }
}
@media (max-width: 576px) {
  #section2 .block-left-video {
    margin-left: -10vw;
    width: 90vw;
  }
}
#section2 .block-left .txt-group {
  gap: 62px;
}
@media (max-width: 991px) {
  #section2 .block-left .txt-group {
    gap: 28px;
  }
}
@media (max-width: 991px) {
  #section2 .block-left .txt-group {
    gap: 20px;
  }
}
#section2 .block-left .img-group {
  gap: 12px;
  padding-top: 20px;
}
#section2 .block-left .img-group--item {
  width: 210px;
  z-index: 99;
}
@media (max-width: 1200px) {
  #section2 .block-left .img-group--item {
    width: 18vw;
  }
}
#section2 .block-left .img-group--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section2 .block-right-video {
  width: 90%;
  mix-blend-mode: darken;
}
#section2 .block-right .sec2Swiper {
  width: 100%;
  margin: 0;
  aspect-ratio: 16/11;
}
#section2 .block-right .sec2Swiper .swiper-slide {
  height: auto;
}
#section2 .block-right .sec2Swiper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 20px;
  bottom: 16px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section2 .block-right .sec2Swiper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section2 .block-right .sec2Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
}
@media (max-width: 991px) {
  #section2 .block-right .sec2Swiper .swiper-button-next,
  #section2 .block-right .sec2Swiper .swiper-button-prev {
    width: 4vw;
  }
}

/* --- Section 3 --- */
#section3 {
  width: 100.1vw;
}
#section3 .title-group {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  z-index: 9;
  gap: 16px;
}
@media (max-width: 991px) {
  #section3 .title-group {
    top: 72px;
    gap: 4px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  #section3 .title-group {
    gap: 20px;
  }
}
#section3 .title-group h3 {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 48px;
}
@media (max-width: 1400px) {
  #section3 .title-group h3 {
    font-size: 2.4vmin;
    letter-spacing: 3vmin;
  }
}
@media (max-width: 991px) {
  #section3 .title-group h3 {
    font-size: 14px;
    letter-spacing: 6px;
  }
}
#section3 .title-group .text-en {
  line-height: 90%;
  align-self: end;
}
#section3 .sec-aerial::before {
  content: "";
  /* 必須 */
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; 的縮寫 */
  z-index: 1;
  /* 在圖片之上 */
  pointer-events: none;
  /* 讓底下互動不受影響（需要互動時移除） */
  top: -1px;
}
#section3 .sec-aerial .section-location {
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
#section3 .sec-aerial .section-location .section-landmarks {
  position: relative;
  min-height: 764px;
}
@media (max-width: 991px) {
  #section3 .sec-aerial .section-location .section-landmarks {
    min-height: 700px;
  }
}
@media (max-width: 576px) {
  #section3 .sec-aerial .section-location .section-landmarks {
    min-height: 660px;
  }
}
#section3 .sec-aerial .section-location .section-landmarks .wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
#section3 .sec-aerial .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) {
  #section3 .sec-aerial .section-location .section-landmarks .wrapper .landscape {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
}
#section3 .sec-aerial .section-location .memo {
  width: 100%;
  position: absolute;
  bottom: 0;
}
#section3 .sec-aerial .description-box {
  height: 20%;
}
@media (max-width: 991px) {
  #section3 .sec-aerial .description-box {
    background: transparent;
    height: 14%;
  }
}
@media (max-width: 576px) {
  #section3 .sec-aerial .description-box {
    height: 9%;
  }
}

/* --- Section 4 --- */
#section4 {
  background-color: #cfcfcf;
  padding: 100px 6vw 320px 9vw;
  max-width: 100vw;
}
@media (max-width: 991px) {
  #section4 {
    gap: 72px;
    padding: 150px 10vw 180px 10vw;
  }
}
@media (max-width: 576px) {
  #section4 {
    padding: 120px 5vw 120px 5vw;
  }
}
#section4 .block-left {
  width: 5vw;
}
@media (max-width: 991px) {
  #section4 .block-left {
    width: unset;
  }
}
#section4 .block-left-video {
  width: 48vw;
  mix-blend-mode: darken;
  transform: translate(-9vw, 5vw);
}
@media (max-width: 1200px) {
  #section4 .block-left-video {
    transform: translate(-9vw, 7vw);
  }
}
#section4 .block-left .sec4Swiper {
  width: 100%;
  margin: 0;
  aspect-ratio: 16/10;
}
#section4 .block-left .sec4Swiper .swiper-slide {
  height: auto;
}
#section4 .block-left .sec4Swiper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 20px;
  bottom: 16px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section4 .block-left .sec4Swiper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section4 .block-left .sec4Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
}
@media (max-width: 991px) {
  #section4 .block-left .sec4Swiper .swiper-button-next,
  #section4 .block-left .sec4Swiper .swiper-button-prev {
    width: 4vw;
  }
}
#section4 .block-right {
  gap: 72px;
}
@media (max-width: 1400px) {
  #section4 .block-right {
    gap: 60px;
  }
}
#section4 .block-right .title-group {
  gap: 60px;
}
@media (max-width: 1400px) {
  #section4 .block-right .title-group {
    gap: 28px;
  }
}
@media (max-width: 576px) {
  #section4 .block-right .title-group {
    gap: 24px;
  }
}
#section4 .block-right .title-group h2 span {
  letter-spacing: 0px;
}
#section4 .block-right-video {
  width: 80vw;
  transform: translate(-3vw, 0);
  mix-blend-mode: darken;
}
@media (max-width: 576px) {
  #section4 .block-right-video {
    width: 102vw;
    transform: translate(-2vw, 0);
  }
}
#section4 .block-right .txt-group {
  gap: 62px;
}
@media (max-width: 1400px) {
  #section4 .block-right .txt-group {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  #section4 .block-right .txt-group {
    gap: 28px;
  }
}
@media (max-width: 576px) {
  #section4 .block-right .txt-group {
    gap: 20px;
  }
}
#section4 .block-right .img-group {
  gap: 12px;
  padding-top: 20px;
}
#section4 .block-right .img-group--item {
  width: 210px;
}
@media (max-width: 1200px) {
  #section4 .block-right .img-group--item {
    width: 18vw;
  }
}
#section4 .block-right .img-group--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- Section 5 --- */
#section5 {
  padding: 170px 6vw 320px 9vw;
  background-color: #E0E0E0;
  gap: 40px;
}
@media (max-width: 1200px) {
  #section5 {
    gap: 80px;
  }
}
@media (max-width: 991px) {
  #section5 {
    padding: 150px 10vw 180px 10vw;
    gap: 28px;
  }
}
@media (max-width: 576px) {
  #section5 {
    padding: 120px 5vw 120px 5vw;
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  #section5 .block-top {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  #section5 .block-top {
    gap: 60px;
  }
}
#section5 .block-top .title-group {
  gap: 60px;
}
@media (max-width: 1400px) {
  #section5 .block-top .title-group {
    gap: 28px;
  }
}
@media (max-width: 576px) {
  #section5 .block-top .title-group {
    gap: 24px;
  }
}
#section5 .block-top .title-group h2 {
  line-height: 100%;
}
@media (max-width: 991px) {
  #section5 .block-top .title-group h2 {
    line-height: 140%;
  }
}
#section5 .block-top .title-group h2 span {
  letter-spacing: 0px;
}
#section5 .block-top-img {
  width: 80vw;
}
@media (max-width: 991px) {
  #section5 .block-top-img {
    margin-left: 5vw;
  }
}
@media (max-width: 991px) {
  #section5 .block-top-img {
    margin-left: 10vw;
  }
}
#section5 .block-top .txt-group {
  gap: 62px;
}
#section5 .block-top .img-group {
  gap: 12px;
  padding-top: 20px;
}
#section5 .block-top .img-group--item {
  width: 210px;
}
#section5 .block-top .img-group--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section5 .block-bottom {
  gap: 5vw;
}
@media (max-width: 991px) {
  #section5 .block-bottom {
    gap: 72px;
  }
}
#section5 .block-bottom .block-left {
  width: 45vw;
}
@media (max-width: 1400px) {
  #section5 .block-bottom .block-left {
    width: 100%;
  }
}
#section5 .block-bottom .block-left-img {
  width: 90%;
  height: auto;
}
@media (max-width: 1200px) {
  #section5 .block-bottom .block-left-img {
    width: 100%;
  }
}
#section5 .block-bottom .block-left-img img {
  width: 100%;
  height: 100%;
}
#section5 .block-bottom .block-right {
  width: 55vw;
}
@media (max-width: 1400px) {
  #section5 .block-bottom .block-right {
    width: 100%;
  }
}
#section5 .block-bottom .block-right .sec5-bkvideo {
  position: relative;
  width: 55vw;
  padding-top: 56.25%;
  overflow: hidden;
}
#section5 .block-bottom .block-right .sec5-bkvideo iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  #section5 .block-bottom .block-right .sec5-bkvideo {
    width: 100%;
  }
}

/* --- Section 6 --- */
#section6 {
  background-color: #D3D1D2;
  padding: 170px 6vw 200px 0;
}
@media (max-width: 991px) {
  #section6 {
    padding: 150px 10vw 180px 10vw;
  }
}
@media (max-width: 576px) {
  #section6 {
    padding: 120px 5vw 120px 5vw;
  }
}
#section6 .block-left .sec6-bkvideo {
  width: 50vw;
  aspect-ratio: 71/72;
  mix-blend-mode: darken;
}
#section6 .block-right {
  gap: 180px;
}
@media (max-width: 1400px) {
  #section6 .block-right {
    gap: 120px;
  }
}
@media (max-width: 991px) {
  #section6 .block-right {
    gap: 40px;
  }
}
#section6 .block-right .sec6-bkvideo {
  width: 50vw;
  aspect-ratio: 71/72;
  mix-blend-mode: darken;
}
@media (max-width: 991px) {
  #section6 .block-right .sec6-bkvideo {
    width: 85vw;
  }
}
#section6 .block-right .title-group {
  gap: 60px;
}
@media (max-width: 1400px) {
  #section6 .block-right .title-group {
    gap: 28px;
  }
}
@media (max-width: 576px) {
  #section6 .block-right .title-group {
    gap: 24px;
  }
}
#section6 .block-right .title-group h2 span {
  letter-spacing: 0px;
}
#section6 .block-right .txt-group {
  gap: 62px;
}
@media (max-width: 1400px) {
  #section6 .block-right .txt-group {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  #section6 .block-right .txt-group {
    gap: 28px;
  }
}
@media (max-width: 991px) {
  #section6 .block-right .txt-group {
    gap: 20px;
  }
}

/* --- Section 7 --- */
#section7 {
  background: url(../src/sec7/sec7-bk.jpg) center/cover;
  width: 100.1vw;
  height: 100vh;
  aspect-ratio: 16/9;
  transition: 0.5s ease-in-out;
}
@media (max-width: 576px) {
  #section7 {
    height: 60vh;
  }
}
#section7 .sec7-logo {
  width: 18vw;
  height: auto;
}
@media (max-width: 1400px) {
  #section7 .sec7-logo {
    width: 25vw;
  }
}
@media (max-width: 1200px) {
  #section7 .sec7-logo {
    width: 30vw;
  }
}
@media (max-width: 991px) {
  #section7 .sec7-logo {
    width: 38vw;
  }
}
@media (max-width: 991px) {
  #section7 .sec7-logo {
    width: 35vw;
  }
}

/* --- Section 8 --- */
#section8 {
  background-color: #D3D1D2;
  padding: 210px 6vw 170px 6vw;
  gap: 8vw;
}
@media (max-width: 991px) {
  #section8 {
    padding: 150px 10vw 180px 10vw;
    gap: 72px;
  }
}
@media (max-width: 576px) {
  #section8 {
    padding: 120px 5vw 120px 5vw;
  }
}
#section8 .block-left {
  width: 35vw;
  gap: 180px;
}
@media (max-width: 1400px) {
  #section8 .block-left {
    gap: 120px;
  }
}
@media (max-width: 991px) {
  #section8 .block-left {
    width: 100vw;
    gap: 72px;
  }
}
@media (max-width: 576px) {
  #section8 .block-left {
    gap: 60px;
  }
}
#section8 .block-left .title-group {
  gap: 60px;
}
@media (max-width: 1400px) {
  #section8 .block-left .title-group {
    gap: 28px;
  }
}
@media (max-width: 576px) {
  #section8 .block-left .title-group {
    gap: 24px;
  }
}
#section8 .block-left .sec8-bkvideo {
  width: 100%;
  aspect-ratio: 16/9;
}
#section8 .block-left .txt-group {
  gap: 62px;
}
@media (max-width: 1400px) {
  #section8 .block-left .txt-group {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  #section8 .block-left .txt-group {
    gap: 28px;
  }
}
@media (max-width: 991px) {
  #section8 .block-left .txt-group {
    gap: 20px;
  }
}
#section8 .block-left .img-group {
  gap: 12px;
  padding-top: 20px;
}
#section8 .block-left .img-group--item {
  width: 210px;
}
#section8 .block-left .img-group--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section8 .block-right {
  width: 65vw;
}
@media (max-width: 1400px) {
  #section8 .block-right {
    width: 100%;
  }
}
#section8 .block-right .sec8-bkvideo {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
#section8 .block-right .sec8-bkvideo iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------------------------------------
置底小圖示navbar設定
-----------------------------------------------------*/
.nav-bar {
  position: fixed;
  z-index: 1000;
  bottom: -100px;
  /*一開始先隱藏header*/
  width: 100.1vw;
  padding: 30px 40px 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 95%);
  transition: bottom 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .nav-bar {
    padding: 36px 20px 10px 20px;
  }
}
.nav-bar .logo-wrapper .logo-img {
  height: 36px;
}
@media (max-width: 991px) {
  .nav-bar .logo-wrapper .logo-img {
    height: 27px;
  }
}
.nav-bar .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .nav-bar .nav-links {
    gap: 10px;
  }
}
.nav-bar .nav-links .nav-item {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .nav-bar .nav-links .nav-item {
    width: 40px;
  }
}
.nav-bar .nav-links .nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nav-bar .nav-links .nav-item a .fa {
  font-size: 30px;
}
@media (max-width: 991px) {
  .nav-bar .nav-links .nav-item a .fa {
    font-size: 24px;
  }
}
.nav-bar .nav-links .nav-item a .nav-icon {
  width: 40px;
  padding: 1rem 0;
}
@media (max-width: 991px) {
  .nav-bar .nav-links .nav-item a .nav-icon {
    width: 24px;
  }
}

.jquery-back-to-top {
  background-color: #84BC26 !important;
}
@media (max-width: 991px) {
  .jquery-back-to-top {
    display: none !important;
  }
}

/*-------------------------------------------
  7. Animation
  動畫設計 
-------------------------------------------*/
@keyframes moveCloudLeft1 {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  20% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.6;
  }
  60% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.4;
    transform: translateX(180px);
  }
  100% {
    opacity: 0;
    transform: translateX(200px);
  }
}
@keyframes moveCloudLeft2 {
  0% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateX(80px) scale(2);
  }
}
@keyframes moveCloudRight1 {
  0% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateX(-120px) scale(2);
  }
}
@keyframes moveCloudRight2 {
  0% {
    opacity: 0;
    transform: translateX(0) scale(1) rotate(0deg);
  }
  20% {
    opacity: 0.7;
  }
  90% {
    opacity: 1;
    transform: translateX(-300px) scale(5) rotate(-50deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-310px) scale(5) rotate(-50deg);
  }
}
@keyframes moveCloudRight3 {
  0% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
  20% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
    transform: translateX(160px) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translateX(170px);
  }
}/*# sourceMappingURL=style.css.map */