@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;
}
/* 基本元素重設 */
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: #232322;
  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: #84BC26;
}

.color-text {
  color: #232322;
}

.color-gold {
  color: #F9C277;
}

/*-------------------------------------------
  3. Typography
  文字排版
-------------------------------------------*/
.text-en {
  font-family: "Prata", serif;
  text-transform: uppercase;
}
.text-en--sm {
  font-family: "Prata", 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: "Prata", serif;
  font-size: 24px;
}
@media (max-width: 991px) {
  .text-en--sm-md {
    font-size: 15px;
  }
}
.text-en--md {
  font-family: "Prata", 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: "Prata", 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: "Prata", serif;
  font-size: 72px;
  font-weight: 400;
  text-wrap: nowrap;
}
.text-en--max {
  font-family: "Prata", 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: 80px;
  font-weight: 300;
  line-height: 80%;
}
@media (max-width: 991px) {
  .text-en--tel {
    font-size: 10vmin;
  }
}

.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: 200%;
  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: 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: 13px;
  font-family: "Noto Serif TC", 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 Serif TC", serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  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;
}

.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;
}
@media (max-width: 576px) {
  .description-box {
    padding: 2vw;
  }
}

.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 {
  background: bottom/cover no-repeat url(../src/sec-form/form-bk.jpg);
  padding-top: 21vh;
  padding-bottom: 5vh;
  padding-left: 25vw;
  padding-right: 25vw;
  gap: 200px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
}
#section-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  top: -1px;
  height: 200px;
  width: 100vw;
  background: linear-gradient(180deg, #ece7e4 0%, transparent 100%);
}
@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;
  }
}
@media (max-width: 576px) {
  #section-form {
    gap: 120px;
    padding-top: 150px;
    padding-bottom: 5vh;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
#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;
    z-index: 999;
  }
}
#section-form .form-box .txt-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section-form .form-box .txt-group {
    gap: 32px;
  }
}
#section-form .form-box .txt-group .title-group {
  gap: 16px;
}
#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 .copy-right {
  margin-top: 50vh;
}
#section-form .cloud-left-1 {
  position: absolute;
  left: -50px;
  bottom: 200px;
  pointer-events: none;
  animation-name: moveCloudLeft1;
  animation-duration: 50s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 1800px) {
  #section-form .cloud-left-1 {
    bottom: 100px;
  }
}
@media (max-width: 991px) {
  #section-form .cloud-left-1 {
    width: 500px;
  }
}
#section-form .cloud-left-2 {
  position: absolute;
  left: -150px;
  bottom: 200px;
  pointer-events: none;
  animation-name: moveCloudLeft2;
  animation-duration: 50s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 991px) {
  #section-form .cloud-left-2 {
    width: 500px;
    bottom: 100px;
  }
}
#section-form .cloud-right-1 {
  position: absolute;
  right: -50px;
  top: 300px;
  pointer-events: none;
  animation-name: moveCloudRight1;
  animation-duration: 40s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 1800px) {
  #section-form .cloud-right-1 {
    top: 200px;
  }
}
@media (max-width: 991px) {
  #section-form .cloud-right-1 {
    width: 500px;
    top: unset;
    bottom: 50px;
  }
}
#section-form .cloud-right-2 {
  position: absolute;
  right: -150px;
  top: 200px;
  pointer-events: none;
  animation-name: moveCloudRight2;
  animation-duration: 65s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 991px) {
  #section-form .cloud-right-2 {
    width: 500px;
    top: unset;
    bottom: 50px;
  }
}
#section-form .cloud-right-3 {
  position: absolute;
  right: 0px;
  top: 350px;
  pointer-events: none;
  animation-name: moveCloudRight3;
  animation-duration: 20s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 1800px) {
  #section-form .cloud-right-3 {
    top: 100px;
    width: 700px;
  }
}
@media (max-width: 991px) {
  #section-form .cloud-right-3 {
    width: 500px;
    top: unset;
    bottom: 50px;
  }
}
@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: #84BC26;
}
#section-form input[type=text],
#section-form input[type=tel],
#section-form input[type=email],
#section-form select,
#section-form textarea {
  padding: 20px 0px 24px 0px !important;
  border: 0 !important;
  border-bottom: 1px solid #000 !important;
  background-color: transparent !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: 12px !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: #232322 !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: #232322 !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: 12px !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: 12px !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: #232322 !important;
  border-radius: 0 !important;
}
#section-form .form-select:focus,
#section-form .form-control:focus {
  color: #232322;
  border: 1px solid #232322 !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 {
  padding: 20px 8vw;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #000;
  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 #232322;
  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 #232322;
  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 圓點顏色 */
}

/*-------------------------------------------
  6. Page Sections
  各區塊獨立設定
-------------------------------------------*/
/* --- Section 1 --- */
#section1 {
  position: relative;
  width: 100%;
  height: 100.1vh;
  max-width: 100%;
  overflow: hidden;
  background: url(../src/sec1/sec1-bk-pc.jpg) center/cover no-repeat;
  transition: 0.5s ease-in-out;
  padding: 0 10vw 0 11vw;
}
@media (max-width: 991px) {
  #section1 {
    aspect-ratio: 5/9;
    height: auto;
    background: url(../src/sec1/sec1-bk-mb.jpg) bottom/cover no-repeat;
    padding: 20vh 13vw 8vh 13vw;
  }
}
@media (max-width: 576px) {
  #section1 {
    aspect-ratio: 5/11;
  }
}
#section1 .block-left {
  gap: 120px;
}
@media (max-width: 1200px) {
  #section1 .block-left {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  #section1 .block-left {
    gap: 30px;
  }
}
#section1 .block-left .sec1-logo {
  width: 33vw;
}
@media (max-width: 991px) {
  #section1 .block-left .sec1-logo {
    width: 100%;
  }
}
#section1 .block-left .sec1-subTitle {
  width: 27vw;
}
@media (max-width: 991px) {
  #section1 .block-left .sec1-subTitle {
    width: 80%;
  }
}
#section1 .block-right .sec1-title-pc {
  height: 65vh;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1400px) {
  #section1 .block-right .sec1-title-pc {
    height: 50vh;
  }
}
@media (max-width: 1200px) {
  #section1 .block-right .sec1-title-pc {
    height: 30vh;
  }
}
#section1 .block-right .sec1-title-mb {
  width: 38vw;
}

/* --- Section 2 --- */
#section2 {
  height: 250vh;
  padding: 280px 0 0 15vw;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1400px) {
  #section2 {
    height: 2000px;
  }
}
@media (max-width: 1200px) {
  #section2 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 991px) {
  #section2 {
    height: auto;
    padding: 100px 6vw 100px 6vw;
    gap: 40px;
  }
}
#section2 .txt-group {
  gap: 100px;
}
@media (max-width: 991px) {
  #section2 .txt-group {
    gap: 24px;
  }
}
#section2 .txt-group .title-group {
  gap: 16px;
}
#section2 .txt-group .title-group .title-chin img {
  height: 12px;
  width: 3px;
}
@media (max-width: 991px) {
  #section2 .img-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
#section2 .img-group .sec2-img-1 {
  position: absolute;
  right: 15vw;
  top: 37vh;
  height: 42vh;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1800px) {
  #section2 .img-group .sec2-img-1 {
    height: auto;
    width: 35vw;
    right: 5vw;
    top: 720px;
  }
}
@media (max-width: 1400px) {
  #section2 .img-group .sec2-img-1 {
    top: 420px;
    right: 3vw;
    width: 30vw;
  }
}
@media (max-width: 991px) {
  #section2 .img-group .sec2-img-1 {
    position: relative;
    right: unset;
    top: unset;
    width: 100%;
  }
}
#section2 .img-group .sec2-img-2 {
  position: absolute;
  left: 9vw;
  top: 93vh;
  height: 59vh;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1800px) {
  #section2 .img-group .sec2-img-2 {
    height: auto;
    width: 50vw;
    left: 5vw;
  }
}
@media (max-width: 1400px) {
  #section2 .img-group .sec2-img-2 {
    top: 740px;
  }
}
@media (max-width: 991px) {
  #section2 .img-group .sec2-img-2 {
    position: relative;
    left: unset;
    top: unset;
    width: 100%;
  }
}
#section2 .img-group .sec2-img-3 {
  position: absolute;
  right: 7vw;
  top: 106vh;
  height: 32vh;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1800px) {
  #section2 .img-group .sec2-img-3 {
    height: auto;
    width: 27vw;
    right: 2vw;
    top: 1400px;
  }
}
@media (max-width: 1400px) {
  #section2 .img-group .sec2-img-3 {
    top: 1000px;
  }
}
@media (max-width: 991px) {
  #section2 .img-group .sec2-img-3 {
    position: relative;
    right: unset;
    top: unset;
    width: 100%;
  }
}
#section2 .img-group .sec2-img-4 {
  position: absolute;
  right: 26vw;
  top: 170vh;
  height: 60vh;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1400px) {
  #section2 .img-group .sec2-img-4 {
    height: auto;
    top: unset;
    width: 50vw;
    bottom: 270px;
  }
}
@media (max-width: 991px) {
  #section2 .img-group .sec2-img-4 {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
  }
}

/* --- Section 3 --- */
#section3 {
  padding: 200px 150px 200px 150px;
  background: url(../src/sec3/sec3-bk.png) center/cover no-repeat;
}
@media (max-width: 1800px) {
  #section3 {
    padding: 200px 10vw 200px 10vw;
  }
}
@media (max-width: 1400px) {
  #section3 {
    padding: 150px 8vw 150px 8vw;
  }
}
@media (max-width: 576px) {
  #section3 {
    padding: 110px 6vw 110px 6vw;
  }
}
#section3 .content {
  gap: 70px;
}
@media (max-width: 1400px) {
  #section3 .content {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  #section3 .content {
    gap: 60px;
  }
}
#section3 .content .txt-group {
  gap: 100px;
}
@media (max-width: 991px) {
  #section3 .content .txt-group {
    gap: 60px;
  }
}
#section3 .content .txt-group .title-group {
  gap: 16px;
}
@media (max-width: 991px) {
  #section3 .content .txt-group .title-group {
    gap: 10px;
  }
}
#section3 .content .txt-group .title-group .title-chin img {
  height: 12px;
  width: 3px;
  filter: invert(1);
}
#section3 .content .txt-group .desc-group {
  gap: 48px;
}
#section3 .content .sec3Swiper {
  width: 100%;
  margin: 0;
  aspect-ratio: 16/10;
  margin-top: 110px;
}
@media (max-width: 1400px) {
  #section3 .content .sec3Swiper {
    margin-top: 140px;
  }
}
@media (max-width: 991px) {
  #section3 .content .sec3Swiper {
    margin-top: 0;
  }
}
#section3 .content .sec3Swiper .swiper-slide {
  height: auto;
}
#section3 .content .sec3Swiper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 20px;
  bottom: 16px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section3 .content .sec3Swiper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section3 .content .sec3Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
}
@media (max-width: 991px) {
  #section3 .content .sec3Swiper .swiper-button-next,
  #section3 .content .sec3Swiper .swiper-button-prev {
    width: 4vw;
  }
}
@media (max-width: 991px) {
  #section3 .content .sec3Swiper .swiper-pagination-bullet {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.8vw 0 0.8vw;
  }
}

/* --- Section 4 --- */
#section4 {
  padding: 200px 11vw 260px 11svw;
  background: url(../src/sec4/sec4-bk.jpg) center/cover no-repeat;
}
@media (max-width: 1200px) {
  #section4 {
    padding: 150px 10vw 200px 10vw;
  }
}
@media (max-width: 991px) {
  #section4 {
    padding: 200px 8vw 240px 8vw;
  }
}
@media (max-width: 576px) {
  #section4 {
    padding: 90px 6vw 160px 6vw;
  }
}
#section4 .content {
  gap: 70px;
}
@media (max-width: 991px) {
  #section4 .content {
    gap: 40px;
  }
}
#section4 .content .txt-group {
  gap: 100px;
}
#section4 .content .txt-group .title-group {
  gap: 16px;
}
#section4 .content .txt-group .title-group .title-chin img {
  height: 12px;
  width: 3px;
  filter: invert(1);
}
#section4 .content .txt-group .desc-group {
  gap: 48px;
}
#section4 .content .swiper-outer {
  position: relative;
  width: 100%;
  padding: 0 3.5vw 40px 3.5vw;
}
@media (max-width: 1400px) {
  #section4 .content .swiper-outer {
    padding: 0 5vw 40px 5vw;
  }
}
@media (max-width: 991px) {
  #section4 .content .swiper-outer {
    padding: 0;
  }
}
#section4 .content .swiper-outer .swiper-button-next,
#section4 .content .swiper-outer .swiper-button-prev {
  opacity: 0.3;
  color: #00301E;
  z-index: 999;
}
@media (max-width: 991px) {
  #section4 .content .swiper-outer .swiper-button-next,
  #section4 .content .swiper-outer .swiper-button-prev {
    color: #fff;
    opacity: 1;
    width: 4vw;
  }
}
@media (max-width: 991px) {
  #section4 .content .swiper-outer .swiper-pagination-bullet {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.8vw 0 0.8vw;
  }
}
#section4 .content .swiper-outer .sec4Swiper {
  width: 100%;
  margin: 0;
  height: auto;
}
#section4 .content .swiper-outer .sec4Swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
#section4 .content .swiper-outer .sec4Swiper .swiper-wrapper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 16px;
  bottom: 12px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section4 .content .swiper-outer .sec4Swiper .swiper-wrapper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section4 .content .swiper-outer .sec4Swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  bottom: 0;
  aspect-ratio: 16/10;
}

/* --- Section 5 --- */
#section5 .title-group {
  position: absolute;
  left: 7vw;
  top: 120px;
  z-index: 9;
  gap: 16px;
}
@media (max-width: 991px) {
  #section5 .title-group {
    left: 6vw;
    top: 40px;
    gap: 4px;
  }
}
#section5 .title-group .title-chin {
  color: #FDF113;
}
#section5 .sec-aerial::before {
  content: "";
  /* 必須 */
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; 的縮寫 */
  z-index: 1;
  /* 在圖片之上 */
  pointer-events: none;
  /* 讓底下互動不受影響（需要互動時移除） */
  top: -1px;
}
#section5 .sec-aerial .section-location {
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
#section5 .sec-aerial .section-location .section-landmarks {
  position: relative;
  min-height: 764px;
}
@media (max-width: 991px) {
  #section5 .sec-aerial .section-location .section-landmarks {
    min-height: 700px;
  }
}
@media (max-width: 576px) {
  #section5 .sec-aerial .section-location .section-landmarks {
    min-height: 600px;
  }
}
#section5 .sec-aerial .section-location .section-landmarks .wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
#section5 .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) {
  #section5 .sec-aerial .section-location .section-landmarks .wrapper .landscape {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
}
#section5 .sec-aerial .section-location .memo {
  width: 100%;
  position: absolute;
  bottom: 0;
}
#section5 .sec-aerial .description-box {
  height: 20%;
}

/* --- Section 6 --- */
#section6 {
  background: linear-gradient(180deg, #00301E 0%, #00150D 100%);
}
#section6 .sec6-top {
  padding: 330px 15vw 640px 15vw;
}
@media (max-width: 991px) {
  #section6 .sec6-top {
    padding: 200px 8vw 100px 8vw;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  #section6 .sec6-top {
    padding: 140px 6vw 0px 6vw;
  }
}
#section6 .sec6-top .txt-group {
  gap: 50px;
}
@media (max-width: 991px) {
  #section6 .sec6-top .txt-group {
    gap: 32px;
  }
}
#section6 .sec6-top .txt-group .title-group {
  gap: 40px;
}
@media (max-width: 991px) {
  #section6 .sec6-top .txt-group .title-group {
    gap: 32px;
  }
}
#section6 .sec6-top .txt-group .title-group .title-chin img {
  height: 12px;
  width: 3px;
  filter: invert(1);
}
#section6 .sec6-top .txt-group .desc-group {
  gap: 48px;
}
#section6 .sec6-top-img1 {
  width: 600px;
  height: 400px;
  position: absolute;
  left: 21vw;
  bottom: 100px;
}
@media (max-width: 1800px) {
  #section6 .sec6-top-img1 {
    left: 19vw;
  }
}
@media (max-width: 991px) {
  #section6 .sec6-top-img1 {
    position: relative;
    left: unset;
    bottom: unset;
    width: 100%;
    height: auto;
  }
}
#section6 .sec6-top-img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section6 .sec6-top-img2 {
  width: 500px;
  height: 570px;
  position: absolute;
  right: 6vw;
  bottom: 300px;
}
@media (max-width: 1800px) {
  #section6 .sec6-top-img2 {
    right: 4vw;
    bottom: 540px;
  }
}
@media (max-width: 1400px) {
  #section6 .sec6-top-img2 {
    width: 360px;
    height: 430px;
  }
}
@media (max-width: 991px) {
  #section6 .sec6-top-img2 {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
    height: auto;
  }
}
#section6 .sec6-top-img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section6 .sec6-down {
  padding: 280px 6vw;
  gap: 150px;
}
@media (max-width: 991px) {
  #section6 .sec6-down {
    padding: 100px 8vw 140px 8vw;
    gap: 60px;
  }
}
@media (max-width: 576px) {
  #section6 .sec6-down {
    padding: 100px 6vw 100px 6vw;
  }
}
#section6 .sec6-down-img {
  width: 100%;
  height: auto;
}
#section6 .sec6-down-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section6 .sec6-down .txt-group {
  gap: 50px;
}
@media (max-width: 991px) {
  #section6 .sec6-down .txt-group {
    gap: 32px;
  }
}
#section6 .sec6-down .txt-group .title-en {
  line-height: 160%;
}
@media (max-width: 991px) {
  #section6 .sec6-down .txt-group .title-en {
    line-height: 120%;
  }
}
#section6 .sec6-down .txt-group .desc-group {
  gap: 48px;
}
@media (max-width: 991px) {
  #section6 .sec6-down .txt-group .desc-group {
    gap: 32px;
  }
}
#section6 .sec6-down .txt-group .desc-group .title-chin img {
  height: 12px;
  width: 3px;
  filter: invert(1);
}
#section6 .sec6-down .txt-group .desc-group {
  gap: 48px;
}

/* --- Section 7 --- */
#section7 {
  background-color: #ece7e4;
  padding: 320px 7vw 220px 7vw;
  gap: 300px;
}
@media (max-width: 1200px) {
  #section7 {
    padding: 150px 10vw 0 10vw;
  }
}
@media (max-width: 991px) {
  #section7 {
    gap: 120px;
  }
}
@media (max-width: 576px) {
  #section7 {
    padding: 120px 8vw 0 8vw;
    gap: 100px;
  }
}
#section7 .sec7-top {
  width: 100%;
  gap: 180px;
}
@media (max-width: 1400px) {
  #section7 .sec7-top {
    gap: 100px;
  }
}
@media (max-width: 1200px) {
  #section7 .sec7-top {
    gap: 60px;
  }
}
#section7 .sec7-top .txt-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section7 .sec7-top .txt-group {
    gap: 32px;
  }
}
#section7 .sec7-top .txt-group .title-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section7 .sec7-top .txt-group .title-group {
    gap: 32px;
  }
}
#section7 .sec7-top .txt-group .title-group .title-chin img {
  height: 12px;
  width: 3px;
}
#section7 .sec7-top .sec7Swiper {
  width: 100%;
  margin: 0;
  aspect-ratio: 16/10;
}
#section7 .sec7-top .sec7Swiper .swiper-slide {
  height: auto;
}
#section7 .sec7-top .sec7Swiper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 20px;
  bottom: 16px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section7 .sec7-top .sec7Swiper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section7 .sec7-top .sec7Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  bottom: 0;
}
@media (max-width: 991px) {
  #section7 .sec7-top .sec7Swiper .swiper-button-next,
  #section7 .sec7-top .sec7Swiper .swiper-button-prev {
    width: 4vw;
  }
}
@media (max-width: 991px) {
  #section7 .sec7-top .sec7Swiper .swiper-pagination-bullet {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.8vw 0 0.8vw;
  }
}
#section7 .sec7-down {
  gap: 180px;
}
@media (max-width: 1400px) {
  #section7 .sec7-down {
    gap: 100px;
  }
}
@media (max-width: 1200px) {
  #section7 .sec7-down {
    gap: 60px;
  }
}
#section7 .sec7-down-img {
  width: 100%;
}
#section7 .sec7-down .txt-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section7 .sec7-down .txt-group {
    gap: 32px;
  }
}
#section7 .sec7-down .txt-group .title-group {
  gap: 60px;
}
@media (max-width: 991px) {
  #section7 .sec7-down .txt-group .title-group {
    gap: 32px;
  }
}
#section7 .sec7-down .txt-group .title-group .title-chin img {
  height: 12px;
  width: 3px;
}

/*-----------------------------------------------------
置底小圖示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. 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 */