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

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: #5C5C5C;
  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-blue {
  color: #003779;
}

.color-black {
  color: #222222;
}

.color-text {
  color: #5C5C5C;
}

.color-gold {
  color: #F9C277;
}

/*-------------------------------------------
  3. Typography
  文字排版
-------------------------------------------*/
.text-en {
  font-family: "Cormorant", serif;
  text-transform: uppercase;
}
.text-en--sm {
  font-family: "Cormorant", 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: "Cormorant", serif;
  font-size: 24px;
}
@media (max-width: 992px) {
  .text-en--sm-md {
    font-size: 5vmin;
  }
}
.text-en--md {
  font-family: "Cormorant", 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: 992px) {
  .text-en--md {
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  .text-en--md {
    font-size: 18px;
    letter-spacing: 0.5vmin;
  }
}
.text-en--md-lg {
  font-family: "Cormorant", 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: "Cormorant", serif;
  font-size: 48px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .text-en--lg {
    font-size: 3.5vmin;
  }
}
@media (max-width: 576px) {
  .text-en--lg {
    font-size: 20px;
    letter-spacing: 0.7vmin;
  }
}
.text-en--max {
  font-family: "Cormorant", serif;
  font-size: 180px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .text-en--max {
    font-size: 20vmin;
  }
}
@media (max-width: 576px) {
  .text-en--max {
    font-size: 96px;
  }
}
.text-en--tel {
  font-family: "Cormorant", serif;
  font-size: 72px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .text-en--tel {
    font-size: 7vmin;
  }
}

.text-chin--sm {
  font-size: 12px;
}
.text-chin--md {
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 35px;
  letter-spacing: 4.5px;
  text-align: justify;
}
@media (max-width: 1400px) {
  .text-chin--md {
    font-size: 14px;
    letter-spacing: 0.7vmin;
    line-height: 250%;
  }
}
@media (max-width: 576px) {
  .text-chin--md {
    font-size: 13px;
    letter-spacing: 2.5px;
    line-height: 220%;
  }
}
.text-chin--md-lg {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 2.8px;
  font-family: "Noto Serif TC", serif;
  text-wrap: nowrap;
  font-weight: 600;
}
@media (max-width: 576px) {
  .text-chin--md-lg {
    font-size: 14px;
  }
}
.text-chin--lg {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 5.6px;
  font-family: "Noto Serif TC", serif;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .text-chin--lg {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .text-chin--lg {
    font-size: 16px;
  }
}
.text-chin--title {
  font-family: "Noto Serif TC", serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 9.6px;
  text-align: center;
  line-height: 150%;
}
@media (max-width: 1400px) {
  .text-chin--title {
    font-size: 3vmin;
    letter-spacing: 0.7vmin;
  }
}
@media (max-width: 992px) {
  .text-chin--title {
    font-size: 4vmin;
    letter-spacing: 1vmin;
  }
}
@media (max-width: 576px) {
  .text-chin--title {
    font-size: 24px;
    letter-spacing: 1.5vmin;
  }
}

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

.text-form {
  font-family: "Noto Serif TC", serif;
  font-size: 18px;
  line-height: 160%;
  font-weight: 200;
  letter-spacing: 0.9px;
}
@media (max-width: 576px) {
  .text-form {
    font-size: 12px;
  }
}
.text-form--lg {
  font-family: "Noto Serif TC", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 3.2px;
}
@media (max-width: 1200px) {
  .text-form--lg {
    font-size: 36px;
    letter-spacing: 4px;
  }
}
@media (max-width: 992px) {
  .text-form--lg {
    line-height: 150%;
  }
}
@media (max-width: 576px) {
  .text-form--lg {
    font-size: 24px;
    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: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), top/cover no-repeat url(../src/sec-form/sec-form-bk.jpg);
  padding-top: 35vh;
  padding-bottom: 15vh;
  gap: 120px;
}
@media (max-width: 992px) {
  #section-form {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 576px) {
  #section-form {
    gap: 60px;
    padding-top: 15vh;
    padding-bottom: 15vh;
  }
}
#section-form .form-box {
  gap: 80px;
  padding: 200px 120px 160px 120px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(194, 194, 194, 0.85) 100%);
}
@media (max-width: 1400px) {
  #section-form .form-box {
    padding: 15vh 5vw 10vh 5vw;
  }
}
@media (max-width: 1200px) {
  #section-form .form-box {
    gap: 8vh;
  }
}
@media (max-width: 992px) {
  #section-form .form-box {
    gap: 40px;
  }
}
#section-form .form-box .text-group .text-title h2 {
  font-size: 68px;
  letter-spacing: 14px;
}
@media (max-width: 1200px) {
  #section-form .form-box .text-group .text-title h2 {
    font-size: 6vmin;
    letter-spacing: 1vmin;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .text-group .text-title h2 {
    font-size: 9vmin;
    letter-spacing: 0.5vmin;
  }
}
#section-form .form-box .text-group p {
  margin-top: 60px;
}
#section-form .form-box #form .form-msg {
  height: 100%;
}
@media (max-width: 1200px) {
  #section-form .form-box #form .form-msg {
    height: 25vh;
  }
}
#section-form .form-box #form .form-msg textarea {
  height: 100%;
}
#section-form .form-box .info-sub h3 {
  font-size: 24px;
}
@media (max-width: 992px) {
  #section-form .form-box .info-sub h3 {
    padding: 8px 20px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub h3 {
    padding: 8px 8px;
    letter-spacing: 1px;
    text-wrap: nowrap;
  }
}
#section-form .form-box .info-sub h4 {
  font-size: 32px;
  line-height: 150%;
}
@media (max-width: 992px) {
  #section-form .form-box .info-sub h4 {
    font-size: 4vmin;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub h4 {
    font-size: 5vmin;
  }
}
#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: 600;
  line-height: 80%;
}
#section-form .form-box .info-sub p span {
  font-size: 32px;
}
@media (max-width: 992px) {
  #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: 4px 40px;
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(194, 194, 194, 0.5) 100%);
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub button {
    padding: 0px 28px;
  }
}
@media (max-width: 992px) {
  #section-form .text-chin--lg {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  #section-form .text-chin--md {
    font-size: 12px;
    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: #003779;
}

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

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

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

.form-select,
.form-control {
  color: #222222 !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
.form-select:focus,
.form-control:focus {
  color: #222222;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #003779 !important;
  box-shadow: unset !important;
}

/* --- Submit Button --- */
#submit {
  width: 100%;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  background-color: #003779;
  color: #fff;
  border-radius: 0;
  border: 0px solid #000;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
#submit:hover {
  background-color: #222222 !important;
  transition: 0.3s ease-in-out;
}

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

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

.custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
}
.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox input[type=checkbox]:checked + .circle::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 50%;
  width: 7px;
  height: 12px;
  border: 1px solid #222222;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-50%, -50%);
  border-radius: 1px;
}
.custom-checkbox .circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #5C5C5C;
  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
  外部套件覆寫
-------------------------------------------*/
/* --- Owl Carousel --- */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  margin: 0px 1vw;
  display: flex !important;
  flex-wrap: wrap !important;
  color: #fff !important;
  height: 35px !important;
  align-content: center !important;
  justify-content: center !important;
  cursor: pointer;
  z-index: 10;
}
.owl-carousel .owl-nav button.owl-next img,
.owl-carousel .owl-nav button.owl-prev img {
  height: 35px !important;
}

.owl-theme .owl-nav {
  position: absolute !important;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 999 !important;
  margin-top: 0px !important;
  pointer-events: none !important;
}
.owl-theme .owl-nav button {
  pointer-events: auto !important;
}
.owl-theme .owl-dots {
  position: absolute;
  top: 1vh !important;
  right: 1vw !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
@media (max-width: 1200px) {
  .owl-theme .owl-dots {
    right: 3vw !important;
  }
}
.owl-theme .owl-dots .owl-dot span {
  margin: 5px 3px !important;
  background: #D9D9D9 !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #003779 !important;
}

.owl-stage-outer {
  height: 100%;
}

.owl-text {
  font-family: "Noto Serif TC", serif;
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .owl-text {
    font-size: 24px;
  }
}
.owl-text > span {
  font-size: 16px;
  font-weight: 350;
}
@media (max-width: 576px) {
  .owl-text > span {
    font-size: 16px;
  }
}

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

/*-------------------------------------------
  6. Page Sections
  各區塊獨立設定
-------------------------------------------*/
/* --- Section 1 --- */
#section1 {
  -webkit-mask-image: url(../src/mask.png);
          mask-image: url(../src/mask.png);
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0;
  animation: 4s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
  min-height: 100vh !important;
  margin-bottom: -1px;
  background: center/cover no-repeat url(../src/sec1/sec1-bk.jpg);
  padding: 21vh 9vw 11vh 9vw;
}
@keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
            mask-position: center bottom;
    -webkit-mask-size: auto 0%;
            mask-size: auto 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: center top;
            mask-position: center top;
    -webkit-mask-size: auto 500%;
            mask-size: auto 500%;
    opacity: 1;
  }
}
@media (max-width: 992px) {
  #section1 {
    background: center/cover no-repeat url(../src/sec1/mb-sec1-bk.jpg);
  }
}
@media (max-width: 576px) {
  #section1 {
    padding: 15vh 0 13vh 0;
  }
}
#section1 .kunyue-logo {
  position: absolute;
  left: 4vw;
  top: 7vh;
}
@media (max-width: 992px) {
  #section1 .kunyue-logo {
    left: 50%;
    transform: translateX(-50%);
  }
}
#section1 .kunyue-logo img {
  width: 8vw;
  height: auto;
}
@media (max-width: 992px) {
  #section1 .kunyue-logo img {
    width: 20vw;
  }
}
#section1 .txt--top {
  gap: 8px;
}
#section1 .txt--top .logo {
  width: 760px;
}
@media (max-width: 1200px) {
  #section1 .txt--top .logo {
    width: 53vmin;
  }
}
@media (max-width: 576px) {
  #section1 .txt--top .logo {
    width: 80vmin;
  }
}
#section1 .txt--top .logo-eng {
  width: 280px;
}
@media (max-width: 1200px) {
  #section1 .txt--top .logo-eng {
    width: 20vmin;
  }
}
@media (max-width: 576px) {
  #section1 .txt--top .logo-eng {
    width: 35vmin;
  }
}
#section1 .txt--down {
  gap: 32px;
}
@media (max-width: 576px) {
  #section1 .txt--down {
    gap: 16px;
  }
}
#section1 .txt--down .txt-description {
  width: 505px;
}
@media (max-width: 1200px) {
  #section1 .txt--down .txt-description {
    width: 55vmin;
  }
}
@media (max-width: 576px) {
  #section1 .txt--down .txt-description {
    width: 75vmin;
  }
}
#section1 .txt--down .txt-tel {
  width: 265px;
}
@media (max-width: 1200px) {
  #section1 .txt--down .txt-tel {
    width: 30vmin;
  }
}
@media (max-width: 576px) {
  #section1 .txt--down .txt-tel {
    width: 47vmin;
  }
}

/* --- Section 2 --- */
#section2 {
  /* --- Section 2 --- */
}
#section2 .text-group {
  position: absolute;
  z-index: 2;
  right: 6vw;
  top: 8vh;
}
@media (max-width: 1400px) {
  #section2 .text-group {
    right: 3vw;
    top: 4vh;
  }
}
@media (max-width: 992px) {
  #section2 .text-group {
    position: initial;
    top: 0;
    right: 0;
    padding: 120px 0 40px 0;
    background: linear-gradient(180deg, #014E90 0%, #387fac 100%);
  }
}
#section2 .text-group .text {
  margin-top: 24px;
}
@media (max-width: 1400px) {
  #section2 .text-group .text {
    margin-top: 12px;
  }
}
#section2 #section2 .text-group {
  position: absolute;
  z-index: 2;
  right: 6vw;
  top: 8vh;
}
@media (max-width: 1400px) {
  #section2 #section2 .text-group {
    right: 3vw;
    top: 4vh;
  }
}
@media (max-width: 992px) {
  #section2 #section2 .text-group {
    position: initial;
    top: 0;
    right: 0;
    padding: 120px 0 40px 0;
    background: linear-gradient(180deg, #014E90 0%, #387fac 100%);
  }
}
#section2 #section2 .text-group .text {
  margin-top: 24px;
}
@media (max-width: 1400px) {
  #section2 #section2 .text-group .text {
    margin-top: 12px;
  }
}
#section2 #section2 .img-shadow {
  height: -moz-fit-content;
  height: fit-content;
}

/* --- Section 3 --- */
#section3 {
  padding: 200px var(--padding-x);
  background: linear-gradient(180deg, #01E1EB 0%, #014E90 100%);
}
@media (max-width: 1400px) {
  #section3 {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 992px) {
  #section3 {
    height: -moz-fit-content;
    height: fit-content;
    padding: 15vh 0 0 0;
  }
}
@media (max-width: 992px) {
  #section3 {
    height: -moz-fit-content;
    height: fit-content;
    padding: 15vh var(--padding-x) 15vh var(--padding-x);
  }
}
#section3 .img-group {
  width: 45vw;
  height: 600px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(194, 194, 194, 0.6) 100%);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 1400px) {
  #section3 .img-group {
    width: 30vw;
    height: auto;
  }
}
@media (max-width: 992px) {
  #section3 .img-group {
    width: 100%;
    height: auto;
  }
}
#section3 .img-group--top {
  height: 50%;
}
#section3 .img-group--top .img-first {
  width: 70%;
  overflow: hidden;
}
@media (max-width: 1400px) {
  #section3 .img-group--top .img-first {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #section3 .img-group--top .img-first {
    width: 70%;
  }
}
#section3 .img-group--top .img-first img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section3 .img-group--top .img-last {
  width: 30%;
  background-color: #fff;
  padding: 32px;
}
@media (max-width: 1400px) {
  #section3 .img-group--top .img-last {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #section3 .img-group--top .img-last {
    padding: 8px;
    width: 30%;
  }
}
#section3 .img-group--top .img-last img {
  width: 100%;
}
#section3 .img-group--top .img-last h6 {
  margin-top: 20px;
  font-family: "Bakbak One";
  font-size: 20px;
  letter-spacing: 6px;
  text-wrap: nowrap;
}
@media (max-width: 992px) {
  #section3 .img-group--top .img-last h6 {
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.3vmin;
  }
}
#section3 .img-group--top .img-last p {
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-wrap: nowrap;
}
@media (max-width: 992px) {
  #section3 .img-group--top .img-last p {
    font-size: 12px;
    letter-spacing: 0.1vmin;
  }
}
#section3 .img-group--down {
  height: 50%;
}
#section3 .img-group--down .img-first {
  width: 25%;
  background-color: #fff;
}
@media (max-width: 1400px) {
  #section3 .img-group--down .img-first {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #section3 .img-group--down .img-first {
    width: 30%;
  }
}
#section3 .img-group--down .img-first img {
  max-width: 100%;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
}
#section3 .img-group--down .img-last {
  width: 75%;
  overflow: hidden;
}
@media (max-width: 1400px) {
  #section3 .img-group--down .img-last {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #section3 .img-group--down .img-last {
    width: 70%;
  }
}
#section3 .img-group--down .img-last img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#section3 .text-group .title h2 {
  opacity: 0.3;
  text-align: center;
  line-height: 80%;
}
#section3 .text-group p {
  text-wrap: wrap;
  text-align: center;
}
/* --- Section 4 --- */
#section4 {
  margin-top: -1px;
}
#section4 .text-group--outer {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  #section4 .text-group--outer {
    padding: 0px 20px 0px 20px;
    position: relative;
    background-color: #014E90;
    left: initial;
    left: 0;
    transform: translateX(0);
  }
}
#section4 .text-group--outer .text-group {
  padding: 24px 120px;
  gap: 120px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(194, 194, 194, 0.6) 100%);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 1400px) {
  #section4 .text-group--outer .text-group {
    padding: 12px 80px;
    gap: 60px;
  }
}
@media (max-width: 992px) {
  #section4 .text-group--outer .text-group {
    padding: 40px 12px 24px 12px;
    gap: 40px;
  }
}
#section4 .text-group--outer .text-group .title {
  border-radius: 50%;
  border: 1px #fff solid;
  width: 180px;
  aspect-ratio: 1/1;
}
@media (max-width: 1200px) {
  #section4 .text-group--outer .text-group .title {
    width: 140px;
  }
}
@media (max-width: 992px) {
  #section4 .text-group--outer .text-group .title {
    width: 120px;
  }
}
#section4 .text-group--outer .text-group .text {
  padding-left: 40px;
  border-left: 4px #fff solid;
  text-wrap: nowrap;
}
@media (max-width: 992px) {
  #section4 .text-group--outer .text-group .text {
    border-left: 0;
    padding-left: 0;
  }
}
#section4 figure::before {
  content: "";
  /* 必須 */
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; 的縮寫 */
  z-index: 1;
  /* 在圖片之上 */
  pointer-events: none;
  /* 讓底下互動不受影響（需要互動時移除） */
  background: linear-gradient(180deg, #014E90 5%, rgba(1, 78, 144, 0) 30%);
  top: -1px;
}
#section4 figure .section-location {
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
#section4 figure .section-location .section-landmarks {
  position: relative;
  min-height: 764px;
}
#section4 figure .section-location .section-landmarks .wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
#section4 figure .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: 992px) {
  #section4 figure .section-location .section-landmarks .wrapper .landscape {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
}
#section4 figure .section-location .memo {
  width: 100%;
  position: absolute;
  bottom: 0;
}
#section4 figure .description-box {
  height: 20%;
}

/* --- Section 5 --- */
#section5 {
  background: linear-gradient(180deg, #014E90 0%, #02B3CF 100%);
  padding: 18vh 5vw;
}
#section5 .content {
  padding: 12px 12px 12px 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(194, 194, 194, 0.5) 100%);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  #section5 .content {
    padding: 60px 12px 12px 12px;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  #section5 .content .text-group {
    gap: 40px;
    padding-left: calc(10vw - 12px);
  }
}
#section5 .content .text-group .title img {
  width: 100px;
  aspect-ratio: 1/1;
}
@media (max-width: 992px) {
  #section5 .content .text-group .title img {
    width: 15vw;
  }
}

/* --- Section 6 --- */
#section6 {
  background: linear-gradient(180deg, #02B3CF 0%, #FFF 100%), linear-gradient(180deg, #02B3CF 0%, #014E90 100%);
  padding: 18vh 0;
  margin-top: -1px;
}
@media (max-width: 992px) {
  #section6 {
    padding: 13vh 0;
  }
}
@media (max-width: 992px) {
  #section6 .title {
    gap: 12px;
  }
}
#section6 .title h2 {
  font-size: 150px;
  line-height: 100%;
  color: rgb(1, 78, 144);
  opacity: 0.3;
}
@media (max-width: 992px) {
  #section6 .title h2 {
    letter-spacing: -0.5vmin;
    font-size: 16vmin;
  }
}
#section6 .carousel-group {
  width: 100vw;
  margin-top: 11vh;
  padding: 20px 5vw;
  background: rgba(1, 78, 144, 0.8);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  #section6 .carousel-group {
    margin-top: 9vh;
    padding: 20px 0;
  }
}
#section6 .carousel-group #sec6Carousel {
  margin: 0 auto;
}
#section6 .carousel-group #sec6Carousel .owl-img img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
#section6 .text {
  margin-top: 8vh;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 80px;
  border-top: 1px solid #014E90;
  border-bottom: 1px solid #014E90;
}
@media (max-width: 576px) {
  #section6 .text {
    padding: 16px 0px;
    width: 90vw;
    text-wrap: nowrap;
  }
}

/* Carousels */
#sec5Carousel {
  max-width: 62vw;
  background-color: #222222;
}
@media (max-width: 1400px) {
  #sec5Carousel {
    max-width: 58vw;
  }
}
@media (max-width: 1200px) {
  #sec5Carousel {
    max-width: 52vw;
  }
}
@media (max-width: 992px) {
  #sec5Carousel {
    max-width: 100%;
  }
}
#sec5Carousel .owl-img img {
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media (max-width: 992px) {
  #sec5Carousel .owl-img img {
    aspect-ratio: 4/3;
  }
}

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

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