@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;
}
.overflow-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* 基本元素重設 */
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: #3e3a39;
  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--10 {
  gap: 10px;
}

.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: #15284e;
}

.color-blue {
  color: #15284e;
}

.color-green {
  color: #84bc26;
}

.color-text {
  color: #3e3a39;
}

.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: 8vmin;
    letter-spacing: 1.2px;
  }
}

.text-chin--sm {
  font-size: 14px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 350;
}
@media (max-width: 576px) {
  .text-chin--sm {
    font-size: 12px;
  }
}
.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: 350;
  line-height: 200%;
  letter-spacing: 5px;
}
@media (max-width: 1800px) {
  .text-chin--md {
    letter-spacing: 3px;
  }
}
@media (max-width: 1400px) {
  .text-chin--md {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
@media (max-width: 1200px) {
  .text-chin--md {
    letter-spacing: 0px;
  }
}
@media (max-width: 576px) {
  .text-chin--md {
    font-size: 14px;
    letter-spacing: 0.4px;
    line-height: 180%;
  }
}
.text-chin--md-lg {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 6.4px;
  font-family: "Noto Serif TC", serif;
  line-height: 160%;
  text-wrap: nowrap;
}
@media (max-width: 1800px) {
  .text-chin--md-lg {
    font-size: 3.4vmin;
  }
}
@media (max-width: 1400px) {
  .text-chin--md-lg {
    font-size: 2.8vmin;
    letter-spacing: 4px;
  }
}
@media (max-width: 1200px) {
  .text-chin--md-lg {
    font-size: 2.5vmin;
    letter-spacing: 3px;
  }
}
@media (max-width: 991px) {
  .text-chin--md-lg {
    font-size: 3.4vmin;
  }
}
@media (max-width: 576px) {
  .text-chin--md-lg {
    font-size: 16px;
    letter-spacing: 2.6px;
  }
}
.text-chin--lg {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 15px;
  font-family: "Noto Serif TC", serif;
  line-height: 120%;
}
@media (max-width: 1400px) {
  .text-chin--lg {
    font-size: 5.8vmin;
  }
}
@media (max-width: 1200px) {
  .text-chin--lg {
    font-size: 5.2vmin;
  }
}
@media (max-width: 991px) {
  .text-chin--lg {
    font-size: 6vmin;
    letter-spacing: 8px;
  }
}
@media (max-width: 576px) {
  .text-chin--lg {
    font-size: 32px;
    letter-spacing: 4px;
  }
}
.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;
  z-index: 99;
}
@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-color: #f5f5f5;
  padding-top: 220px;
  padding-bottom: 154px;
  padding-left: 16vw;
  padding-right: 16vw;
  gap: 310px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  width: 100.1vw;
}
@media (max-width: 1800px) {
  #section-form {
    padding-left: 11vw;
    padding-right: 11vw;
  }
}
@media (max-width: 1200px) {
  #section-form {
    padding-left: 7.3vw;
    padding-right: 7.3vw;
  }
}
@media (max-width: 991px) {
  #section-form {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
@media (max-width: 576px) {
  #section-form {
    gap: 140px;
    padding-bottom: 13vh;
  }
}
#section-form .img-whale {
  width: 1160px;
  right: -240px;
  top: 380px;
  will-change: transform;
  animation: whaleSwim 12s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transform-origin: center right;
}
@media (max-width: 1800px) {
  #section-form .img-whale {
    width: 60vw;
  }
}
@media (max-width: 991px) {
  #section-form .img-whale {
    top: 100px;
    right: -37vw;
    width: 80vw;
  }
}
@media (max-width: 991px) {
  #section-form .img-whale {
    top: 90px;
    right: -49vw;
    width: 98vw;
  }
}
#section-form .form-box {
  gap: 110px;
}
@media (max-width: 1200px) {
  #section-form .form-box {
    gap: 6vw;
  }
}
@media (max-width: 991px) {
  #section-form .form-box {
    gap: 180px;
  }
}
@media (max-width: 576px) {
  #section-form .form-box {
    gap: 120px;
  }
}
#section-form .form-box .block-left {
  gap: 120px;
}
@media (max-width: 991px) {
  #section-form .form-box .block-left {
    gap: 80px;
  }
}
#section-form .form-box .block-left .txt-group {
  gap: 60px;
}
#section-form .form-box .block-left .txt-group .form-eng {
  max-width: 328px;
}
@media (max-width: 991px) {
  #section-form .form-box .block-left .txt-group .form-eng {
    max-width: 40vw;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .block-left .txt-group .form-eng {
    max-width: 46vw;
  }
}
#section-form .form-box .block-left .txt-group .title-group {
  width: -moz-fit-content;
  width: fit-content;
  gap: 16px;
}
@media (max-width: 991px) {
  #section-form .form-box .block-left .txt-group .title-group {
    gap: 4px;
  }
}
#section-form .form-box .block-left .txt-group .title-group .title h2 {
  letter-spacing: 3px;
}
#section-form .form-box .block-left .txt-group .title-group .title span {
  font-size: 32px;
  line-height: 50%;
  font-weight: 100;
}
#section-form .form-box .block-left .txt-group .title-group .subtitle h4 {
  letter-spacing: 9px;
}
@media (max-width: 991px) {
  #section-form .form-box .block-left .txt-group .title-group .subtitle h4 {
    letter-spacing: 4px;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .block-left .txt-group .title-group .subtitle h4 {
    letter-spacing: 4.6px;
  }
}
#section-form .form-box .block-left .txt-group .txt {
  padding-top: 40px;
}
@media (max-width: 991px) {
  #section-form .form-box .block-left .txt-group .txt {
    padding-top: 0;
    margin-top: -20px;
  }
}
#section-form .form-box .block-left .form .input-block {
  gap: 20px;
}
@media (max-width: 1200px) {
  #section-form .form-box .block-left .form .input-block {
    gap: 0;
  }
}
#section-form .form-box .block-left .form .input-block > div:nth-child(1), #section-form .form-box .block-left .form .input-block > div:nth-child(2) {
  gap: 20px;
}
@media (max-width: 991px) {
  #section-form .form-box .block-left .form .input-block > div:nth-child(1), #section-form .form-box .block-left .form .input-block > div:nth-child(2) {
    gap: 0;
  }
}
#section-form .form-box .block-left .form .input-block .form-group .custom-placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #3e3a39;
  font-size: 18px;
  pointer-events: none;
}
@media (max-width: 576px) {
  #section-form .form-box .block-left .form .input-block .form-group .custom-placeholder {
    font-size: 16px;
  }
}
#section-form .form-box .block-left .form .input-block .form-group .custom-placeholder .required-star {
  color: #80971f;
  margin-left: 4px;
  font-weight: bold;
}
#section-form .form-box .block-left .form .input-block .form-group .form-control:not(:-moz-placeholder) ~ .custom-placeholder {
  transform: translateY(-50%) scale(0.9);
}
#section-form .form-box .block-left .form .input-block .form-group .form-control:focus ~ .custom-placeholder,
#section-form .form-box .block-left .form .input-block .form-group .form-control:not(:placeholder-shown) ~ .custom-placeholder {
  transform: translateY(-50%) scale(0.9);
}
#section-form .form-box .block-left .form .input-block .form-group select + .custom-placeholder {
  margin-left: -4px;
  font-size: 20px;
}
@media (max-width: 576px) {
  #section-form .form-box .block-left .form .input-block .form-group select + .custom-placeholder {
    font-size: 18px;
  }
}
#section-form .form-box .block-left .form .input-block .form-group select.select-placeholder-active {
  color: transparent !important;
}
#section-form .form-box .block-left .form .input-block .form-group select.select-placeholder-active option {
  color: #3e3a39 !important;
}
#section-form .form-box .block-left .form .input-block .form-msg {
  transition: all 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}
#section-form .form-box .block-left .form .input-block .form-msg textarea {
  height: 200px;
}
#section-form .form-box .info-sub {
  width: 100%;
  gap: 48px;
}
@media (max-width: 1400px) {
  #section-form .form-box .info-sub {
    width: -moz-fit-content;
    width: fit-content;
    gap: 60px;
  }
}
@media (max-width: 991px) {
  #section-form .form-box .info-sub {
    gap: 100px;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub {
    gap: 40px;
  }
}
#section-form .form-box .info-sub button {
  font-family: "Noto Serif TC", serif;
  padding: 12px 0;
  background-color: transparent;
  border: 1px solid #3e3a39;
  color: #3e3a39;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 5.6px;
  width: 100%;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 991px) {
  #section-form .form-box .info-sub button {
    width: 40vw;
    padding: 16px 0;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub button {
    width: 100%;
    padding: 24px 0;
    font-size: 13px;
  }
}
#section-form .form-box .info-sub button:hover {
  border: 1px solid #8abf1f;
  color: #8abf1f;
}
#section-form .form-box .info-sub h4 {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 110%;
}
#section-form .form-box .info-sub .address-group {
  width: 100%;
}
@media (max-width: 1400px) {
  #section-form .form-box .info-sub .address-group {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#section-form .form-box .info-sub .address-group--top {
  gap: 8px;
  width: 100%;
}
#section-form .form-box .info-sub .address-group--top p {
  font-size: 28px;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media (max-width: 1400px) {
  #section-form .form-box .info-sub .address-group--top p {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  #section-form .form-box .info-sub .address-group--top p {
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub .address-group--top p {
    font-size: 6vmin;
  }
}
#section-form .form-box .info-sub .tel-group {
  width: 100%;
}
#section-form .form-box .info-sub .tel-group--top {
  gap: 8px;
  width: 100%;
}
#section-form .form-box .info-sub .tel-group--top p {
  font-size: 34px;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
#section-form .form-box .copy-right {
  margin-top: 80px;
}
@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: #3e3a39;
}
#section-form input[type=text],
#section-form input[type=tel],
#section-form input[type=email],
#section-form select,
#section-form textarea {
  padding: 18px 0px 20px 0px !important;
  border: 0 !important;
  border-bottom: 1px solid #3e3a39 !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: 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: #3e3a39 !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: #3e3a39 !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: #3e3a39 !important;
  border-radius: 0 !important;
}
#section-form .form-select:focus,
#section-form .form-control:focus {
  color: #3e3a39;
  border: 1px solid #3e3a39 !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='%233e3a39' 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: #3e3a39;
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  #section-form #submit {
    width: 100%;
  }
}
#section-form #submit:hover {
  background-color: #000 !important;
  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;
  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 #3e3a39;
  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 #3e3a39;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: border-color 0.2s;
  margin-right: 0;
  box-sizing: border-box;
  vertical-align: middle;
  aspect-ratio: 1/1;
}

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

/* lightcase 套件 */
#lightcase-info {
  position: fixed !important;
  left: 15px !important;
  bottom: 20px !important;
  width: auto !important;
  max-width: 80vw !important;
  z-index: 10005 !important;
  padding: 0 !important;
  background: transparent !important;
}
#lightcase-info #lightcase-caption {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 2px;
  text-align: left !important;
}
#lightcase-info #lightcase-sequence {
  display: none !important;
}

/*-------------------------------------------
  6. Page Sections
  各區塊獨立設定
-------------------------------------------*/
/* --- Section 1 --- */
#section1 {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 56.25vw;
  overflow: hidden;
}
@media (max-width: 991px) {
  #section1 {
    height: 177.77vw;
  }
}
#section1 .sec1-bkvideo {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
/* --- Section 2 --- */
#section2 {
  padding: 240px 0vw 180px 7.3vw;
  background-color: white;
}
@media (max-width: 991px) {
  #section2 {
    gap: 60px;
    padding: 100px 0 0 0;
  }
}
#section2 .parallax-img {
  max-width: 863px;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  #section2 .parallax-img {
    max-width: 100vw;
    aspect-ratio: 16/10;
  }
}
#section2 .parallax-img .text-description {
  position: absolute;
  bottom: 1vh;
  left: 1vh;
}
@media (max-width: 576px) {
  #section2 .parallax-img .text-description {
    bottom: 2vw;
    left: 2vw;
  }
}
#section2 .content-group {
  gap: 160px;
  padding-left: 7vw;
}
@media (max-width: 1400px) {
  #section2 .content-group {
    gap: 80px;
    padding-left: 3vw;
  }
}
@media (max-width: 991px) {
  #section2 .content-group {
    padding-left: 8vw;
    gap: 40px;
  }
}
#section2 .content-group .sec2-line {
  position: absolute;
  left: 0;
  bottom: 320px;
}
@media (max-width: 1400px) {
  #section2 .content-group .sec2-line {
    bottom: 240px;
  }
}
@media (max-width: 991px) {
  #section2 .content-group .sec2-line {
    bottom: 200px;
  }
}
@media (max-width: 576px) {
  #section2 .content-group .sec2-line {
    bottom: 150px;
  }
}
#section2 .content-group .title-group {
  gap: 40px;
}
#section2 .content-group .title-group--top {
  gap: initial;
  width: 100%;
}
@media (max-width: 991px) {
  #section2 .content-group .title-group--top {
    gap: 100px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#section2 .content-group .title-group--top img {
  width: 10vw;
}
@media (max-width: 1200px) {
  #section2 .content-group .title-group--top img {
    width: 15vw;
  }
}
@media (max-width: 991px) {
  #section2 .content-group .title-group--top img {
    width: 20vw;
  }
}
@media (max-width: 576px) {
  #section2 .content-group .title-group--top img {
    width: 34vw;
  }
}
#section2 .content-group .title-group--top .title-chin h2 {
  writing-mode: vertical-rl;
}
#section2 .content-group .title-group--top .title-chin h2:nth-child(1) {
  padding-top: 130px;
}
@media (max-width: 991px) {
  #section2 .content-group .title-group--top .title-chin h2:nth-child(1) {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  #section2 .content-group .title-group--top .title-chin h2:nth-child(1) {
    padding-top: 40px;
  }
}
#section2 .content-group .title-group--top .title-chin span {
  font-size: 32px;
  line-height: 50%;
  font-weight: 100;
  text-indent: -6px;
}

/* --- Section 3 --- */
#section3 {
  padding: 120px 7.3vw 180px 0;
  background-color: white;
}
@media (max-width: 991px) {
  #section3 {
    gap: 60px;
    padding: 100px 0 0 0;
  }
}
#section3 .img {
  max-width: 863px;
  aspect-ratio: 1/1;
}
@media (max-width: 1200px) {
  #section3 .img {
    max-width: 46vw;
  }
}
@media (max-width: 991px) {
  #section3 .img {
    max-width: 100vw;
    aspect-ratio: 16/10;
  }
}
#section3 .content-group {
  gap: 160px;
  padding-right: 5.7vw;
}
@media (max-width: 1400px) {
  #section3 .content-group {
    gap: 80px;
    padding-right: 3vw;
  }
}
@media (max-width: 991px) {
  #section3 .content-group {
    padding-left: 8vw;
    gap: 40px;
  }
}
#section3 .content-group .sec3-line {
  position: absolute;
  left: 0;
  bottom: 260px;
}
@media (max-width: 1400px) {
  #section3 .content-group .sec3-line {
    bottom: 200px;
  }
}
@media (max-width: 991px) {
  #section3 .content-group .sec3-line {
    bottom: 100px;
  }
}
@media (max-width: 576px) {
  #section3 .content-group .sec3-line {
    bottom: 90px;
  }
}
#section3 .content-group .title-group {
  gap: 40px;
}
#section3 .content-group .title-group--top {
  gap: initial;
  width: 100%;
}
@media (max-width: 991px) {
  #section3 .content-group .title-group--top {
    gap: 100px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#section3 .content-group .title-group--top img {
  width: 10vw;
}
@media (max-width: 1200px) {
  #section3 .content-group .title-group--top img {
    width: 15vw;
  }
}
@media (max-width: 991px) {
  #section3 .content-group .title-group--top img {
    width: 20vw;
  }
}
@media (max-width: 576px) {
  #section3 .content-group .title-group--top img {
    width: 34vw;
  }
}
#section3 .content-group .title-group--top .title-chin h2 {
  writing-mode: vertical-rl;
}
#section3 .content-group .title-group--top .title-chin h2:nth-child(1) {
  padding-top: 130px;
}
@media (max-width: 991px) {
  #section3 .content-group .title-group--top .title-chin h2:nth-child(1) {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  #section3 .content-group .title-group--top .title-chin h2:nth-child(1) {
    padding-top: 40px;
  }
}
#section3 .content-group .title-group--top .title-chin span {
  font-size: 32px;
  line-height: 50%;
  font-weight: 100;
  text-indent: -6px;
}

/* --- Section 4 --- */
#section4 {
  padding: 100px 0vw 240px 7.3vw;
  background-color: white;
}
@media (max-width: 991px) {
  #section4 {
    gap: 60px;
    padding: 100px 0 0 0;
  }
}
#section4 .img-block {
  gap: 40px;
}
#section4 .img-block .subtitle {
  gap: 20px;
}
#section4 .img-block .img-grid {
  width: 890px;
  height: 610px;
  gap: 10px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
}
@media (max-width: 1800px) {
  #section4 .img-block .img-grid {
    width: 40vw;
    height: auto;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#section4 .img-block .img-grid img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section4 .content-group {
  gap: 160px;
  padding-left: 7vw;
}
@media (max-width: 1400px) {
  #section4 .content-group {
    gap: 80px;
    padding-left: 3vw;
  }
}
@media (max-width: 991px) {
  #section4 .content-group {
    padding-left: 8vw;
    gap: 40px;
  }
}
#section4 .content-group .sec4-leaf {
  max-width: 60px;
  position: absolute;
  bottom: 0;
  right: 20px;
  transform-origin: bottom right;
  will-change: transform;
  animation: leafSwaySilky 6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
#section4 .content-group .sec4-line {
  position: absolute;
  left: 0;
  bottom: 400px;
}
@media (max-width: 1400px) {
  #section4 .content-group .sec4-line {
    bottom: 340px;
  }
}
@media (max-width: 991px) {
  #section4 .content-group .sec4-line {
    bottom: 310px;
  }
}
@media (max-width: 576px) {
  #section4 .content-group .sec4-line {
    bottom: 220px;
  }
}
#section4 .content-group .title-group {
  gap: 40px;
}
#section4 .content-group .title-group--top {
  gap: 8vw;
}
@media (max-width: 991px) {
  #section4 .content-group .title-group--top {
    gap: 100px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#section4 .content-group .title-group--top img {
  width: 10vw;
}
@media (max-width: 1200px) {
  #section4 .content-group .title-group--top img {
    width: 15vw;
  }
}
@media (max-width: 991px) {
  #section4 .content-group .title-group--top img {
    width: 20vw;
  }
}
@media (max-width: 576px) {
  #section4 .content-group .title-group--top img {
    width: 34vw;
  }
}
#section4 .content-group .title-group--top .title-chin h2 {
  writing-mode: vertical-rl;
}
#section4 .content-group .title-group--top .title-chin h2:nth-child(1) {
  padding-top: 130px;
}
@media (max-width: 991px) {
  #section4 .content-group .title-group--top .title-chin h2:nth-child(1) {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  #section4 .content-group .title-group--top .title-chin h2:nth-child(1) {
    padding-top: 40px;
  }
}
#section4 .content-group .title-group--top .title-chin span {
  font-size: 32px;
  line-height: 50%;
  font-weight: 100;
}
#section4 .sec4Swiper {
  width: 100vw;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/10;
}
@media (max-width: 991px) {
  #section4 .sec4Swiper {
    aspect-ratio: 16/10;
    height: auto;
  }
}
#section4 .sec4Swiper .swiper-slide {
  height: auto;
}
#section4 .sec4Swiper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 20px;
  bottom: 16px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section4 .sec4Swiper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section4 .sec4Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
}
@media (max-width: 991px) {
  #section4 .sec4Swiper .swiper-button-next,
  #section4 .sec4Swiper .swiper-button-prev {
    width: 4vw;
  }
}

/* --- Section 5 --- */
#section5 {
  padding: 120px 7.3vw 180px 0;
  background-color: white;
}
@media (max-width: 991px) {
  #section5 {
    gap: 20px;
    padding: 100px 0 0 0;
  }
}
#section5 .content-group {
  gap: 160px;
  padding-right: 5.7vw;
}
@media (max-width: 1400px) {
  #section5 .content-group {
    gap: 80px;
    padding-right: 3vw;
  }
}
@media (max-width: 991px) {
  #section5 .content-group {
    padding-left: 8vw;
    gap: 40px;
  }
}
#section5 .content-group .sec5-line {
  position: absolute;
  left: 0;
  bottom: 360px;
}
@media (max-width: 1400px) {
  #section5 .content-group .sec5-line {
    bottom: 280px;
  }
}
@media (max-width: 991px) {
  #section5 .content-group .sec5-line {
    bottom: 70px;
  }
}
@media (max-width: 576px) {
  #section5 .content-group .sec5-line {
    bottom: 80px;
  }
}
#section5 .content-group .title-group {
  gap: 40px;
}
#section5 .content-group .title-group--top {
  gap: initial;
  width: 100%;
}
@media (max-width: 991px) {
  #section5 .content-group .title-group--top {
    gap: 100px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#section5 .content-group .title-group--top img {
  width: 10vw;
}
@media (max-width: 1200px) {
  #section5 .content-group .title-group--top img {
    width: 15vw;
  }
}
@media (max-width: 991px) {
  #section5 .content-group .title-group--top img {
    width: 20vw;
  }
}
@media (max-width: 576px) {
  #section5 .content-group .title-group--top img {
    width: 34vw;
  }
}
#section5 .content-group .title-group--top .title-chin h2 {
  writing-mode: vertical-rl;
}
#section5 .content-group .title-group--top .title-chin h2:nth-child(1) {
  padding-top: 130px;
}
@media (max-width: 991px) {
  #section5 .content-group .title-group--top .title-chin h2 {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  #section5 .content-group .title-group--top .title-chin h2 {
    padding-top: 40px;
  }
}
#section5 .content-group .title-group--top .title-chin span {
  font-size: 32px;
  line-height: 50%;
  font-weight: 100;
  text-indent: -6px;
}
#section5 .sec5Swiper {
  max-width: 45vw;
  margin: 0;
  aspect-ratio: 1/1;
}
@media (max-width: 991px) {
  #section5 .sec5Swiper {
    max-width: 84vw;
    aspect-ratio: 16/10;
  }
}
#section5 .sec5Swiper .swiper-slide {
  height: auto;
}
#section5 .sec5Swiper .swiper-slide .aflow {
  position: absolute;
  z-index: 888;
  left: 20px;
  bottom: 16px;
  font-size: 15px;
}
@media (max-width: 576px) {
  #section5 .sec5Swiper .swiper-slide .aflow {
    left: 2vw;
    bottom: 2vw;
    font-size: 13px;
  }
}
#section5 .sec5Swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
}
@media (max-width: 991px) {
  #section5 .sec5Swiper .swiper-button-next,
  #section5 .sec5Swiper .swiper-button-prev {
    width: 4vw;
  }
}

/* --- Section 6 --- */
@media (max-width: 991px) {
  #section6 {
    padding: 8px 8vw 110px 8vw;
  }
}
#section6 .sec6-video {
  width: 100vw;
}
@media (max-width: 991px) {
  #section6 .sec6-video {
    width: 100%;
  }
}
/*-----------------------------------------------------
置底小圖示navbar設定
-----------------------------------------------------*/
.nav-bar {
  position: fixed;
  z-index: 1000;
  bottom: -100px;
  /*一開始先隱藏header*/
  width: 100%;
  padding: 3vh 40px 1.5vh 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 90%);
  transition: bottom 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .nav-bar {
    padding: 24px 20px 12px 20px;
  }
}
.nav-bar .logo {
  width: 150px;
}
@media (max-width: 576px) {
  .nav-bar .logo {
    width: 100px;
  }
}
.nav-bar .logo img {
  width: 100%;
}
.nav-bar .call_to_action {
  display: flex;
  gap: 10px;
}
@media (max-width: 576px) {
  .nav-bar .call_to_action {
    gap: 4px;
  }
}
.nav-bar .call_to_action a {
  width: 60px;
  padding: 8px;
  box-sizing: border-box;
  transition: all 0.3s;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 576px) {
  .nav-bar .call_to_action a {
    width: 45px;
  }
}
.nav-bar .call_to_action a:hover {
  opacity: 0.8;
}
.nav-bar .call_to_action a .fa {
  font-size: 30px;
}
@media (max-width: 576px) {
  .nav-bar .call_to_action a .fa {
    font-size: 25px;
  }
}

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

/*-------------------------------------------
  7. Animation
  動畫設計 
-------------------------------------------*/
@keyframes whaleSwim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(10px) translateX(35px) rotate(-3deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes leafSwaySilky {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-4deg) scaleX(0.99);
  }
  70% {
    transform: rotate(3deg) scaleX(1.01);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 修改aos動畫移動距離 */
[data-aos=fade-right] {
  transform: translateX(-2vw) !important;
}

[data-aos=fade-right].aos-animate {
  transform: translateX(0) !important;
}

[data-aos=fade-up] {
  transform: translateY(4vh) !important;
}

[data-aos=fade-up].aos-animate {
  transform: translateY(0) !important;
}

[data-aos=fade-down] {
  transform: translateY(-4vh) !important;
}

[data-aos=fade-down].aos-animate {
  transform: translateY(0) !important;
}/*# sourceMappingURL=style.css.map */