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

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

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

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

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

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

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

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: #0B3359;
}

.color-black {
  color: #3c3c3c;
}

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

.color-gold {
  color: #F9C277;
}

/*-------------------------------------------
  3. Typography
  文字排版
-------------------------------------------*/
.text-en {
  font-family: "Lora", serif;
  text-transform: uppercase;
}
.text-en--sm {
  font-family: "Lora", 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: "Lora", serif;
  font-size: 24px;
}
@media (max-width: 992px) {
  .text-en--sm-md {
    font-size: 15px;
  }
}
.text-en--md {
  font-family: "Lora", 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: 20px;
    letter-spacing: 0.1vmin;
  }
}
.text-en--md-lg {
  font-family: "Lora", 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: "Lora", serif;
  font-size: 96px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .text-en--lg {
    font-size: 76px;
  }
}
@media (max-width: 992px) {
  .text-en--lg {
    font-size: 48px;
    letter-spacing: 0.3vmin;
  }
}
.text-en--max {
  font-family: "Lora", 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: "Lora", serif;
  font-size: 72px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .text-en--tel {
    font-size: 10vmin;
  }
}

.text-chin--sm {
  font-size: 12px;
}
.text-chin--md {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 35px;
  letter-spacing: 4px;
  text-align: justify;
}
@media (max-width: 1400px) {
  .text-chin--md {
    font-size: 16px;
    letter-spacing: 0.2vmin;
    line-height: 250%;
  }
}
@media (max-width: 576px) {
  .text-chin--md {
    font-size: 14px;
    letter-spacing: 2.5px;
    line-height: 220%;
  }
}
.text-chin--md-lg {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 5.6px;
  font-family: "Noto Serif TC", serif;
  line-height: 150%;
  text-wrap: nowrap;
}
@media (max-width: 576px) {
  .text-chin--md-lg {
    font-size: 18px;
    letter-spacing: 4px;
  }
}
.text-chin--lg {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 5.6px;
  font-family: "Noto Serif TC", serif;
  line-height: 120%;
}
@media (max-width: 1200px) {
  .text-chin--lg {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .text-chin--lg {
    font-size: 32px;
  }
}
.text-chin--title {
  font-family: "Noto Serif TC", serif;
  font-size: 68px;
  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: no-repeat url(../src/sec-form/sec-form-bk.jpg);
  background-size: cover;
  background-position: 41% center;
  padding-top: 35vh;
  padding-bottom: 15vh;
  gap: 120px;
  transition: all 0.5s ease-in-out;
  position: relative;
}
@media (max-width: 992px) {
  #section-form {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 576px) {
  #section-form {
    gap: 60px;
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
#section-form .form-box {
  gap: 80px;
  padding: 200px 120px 160px 120px;
  background: url(../src/sec-form/form-bk.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@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--title {
  position: relative;
}
#section-form .form-box .text-group--title h4 {
  opacity: 0.7;
  z-index: 1;
}
#section-form .form-box .text-group--title h2 {
  font-size: 68px;
  letter-spacing: 14px;
  z-index: 1;
}
@media (max-width: 1200px) {
  #section-form .form-box .text-group--title h2 {
    font-size: 6vmin;
    letter-spacing: 1vmin;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .text-group--title h2 {
    font-size: 7.5vmin;
    letter-spacing: 1.2vmin;
  }
}
#section-form .form-box .text-group--title h3 {
  border-top: 1px solid #0B3359;
  border-bottom: 1px solid #0B3359;
  padding: 0 38px 0 38px;
  z-index: 1;
}
@media (max-width: 992px) {
  #section-form .form-box .text-group--title h3 {
    padding: 0 5vw 0 5vw;
  }
}
#section-form .form-box .text-group--title .brush-orange-form img {
  position: absolute;
  top: -45vh;
  transform: translateX(-65%);
  z-index: 0;
}
@media (max-width: 992px) {
  #section-form .form-box .text-group--title .brush-orange-form img {
    width: 500px;
    top: -27vh;
  }
}
@media (max-width: 576px) {
  #section-form .form-box .text-group--title .brush-orange-form img {
    width: 320px;
    top: -200px;
  }
}
#section-form .form-box .form-msg {
  height: 100%;
}
@media (max-width: 1200px) {
  #section-form .form-box .form-msg {
    height: 25vh;
  }
}
#section-form .form-box .form-msg textarea {
  height: 100%;
}
#section-form .form-box .info-sub 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: 5px;
  background: #0B3359;
  border: 0;
}
@media (max-width: 576px) {
  #section-form .form-box .info-sub button {
    padding: 4px 20px;
  }
}
#section-form .form-box .info-sub button img {
  width: 20px;
}
@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: #0B3359;
}

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: #3c3c3c !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
.form-select:focus,
.form-control:focus {
  color: #3c3c3c;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #0B3359 !important;
  box-shadow: unset !important;
}

/* --- Submit Button --- */
#submit {
  width: 100%;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  background-color: #0B3359;
  color: #fff;
  border-radius: 0;
  border: 0px solid #000;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
#submit:hover {
  background-color: #3c3c3c !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: #0B3359;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  border: 0px;
  letter-spacing: 2.5px;
}
@media (max-width: 576px) {
  .btn-form {
    font-size: 16px;
  }
}

/* --- Custom Checkbox --- */
.formCheck {
  width: 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 #3c3c3c;
  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: #0B3359 !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 {
  min-height: 100vh !important;
  margin-bottom: -1px;
  background: center/cover no-repeat url(../src/sec1/sec1-bk.jpg);
  padding: 11vh 5vw 11vh 5vw;
  transition: all 0.5s ease-in-out;
}
@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: 576px) {
  #section1 {
    padding: 10vh 5vw 8vh 5vw;
  }
}
#section1 .block-left {
  width: 25vw;
}
@media (max-width: 1400px) {
  #section1 .block-left {
    width: 35vw;
  }
}
@media (max-width: 1200px) {
  #section1 .block-left {
    width: 40vw;
  }
}
@media (max-width: 992px) {
  #section1 .block-left {
    gap: 3vh;
    width: 100%;
  }
}
#section1 .block-left .info-box {
  gap: 3vh;
}
#section1 .block-left .info-box .sec1-logo {
  width: 45%;
}
@media (max-width: 992px) {
  #section1 .block-left .info-box .sec1-logo {
    width: 20%;
  }
}
@media (max-width: 576px) {
  #section1 .block-left .info-box .sec1-logo {
    width: 30%;
  }
}
#section1 .block-left .info-box .sec1-info {
  width: 100%;
}
@media (max-width: 992px) {
  #section1 .block-left .info-box .sec1-info {
    width: 70%;
  }
}
@media (max-width: 576px) {
  #section1 .block-left .info-box .sec1-info {
    width: 100%;
  }
}
#section1 .block-left .sec1-subTitle {
  width: 60%;
}
@media (max-width: 576px) {
  #section1 .block-left .sec1-subTitle {
    width: 85%;
  }
}
#section1 .block-right {
  width: 20vw;
}
@media (max-width: 1400px) {
  #section1 .block-right {
    width: 25vw;
  }
}
@media (max-width: 1200px) {
  #section1 .block-right {
    width: 30vw;
  }
}
@media (max-width: 992px) {
  #section1 .block-right {
    width: 100%;
  }
}
#section1 .block-right .sec1-title {
  width: 100%;
}
@media (max-width: 992px) {
  #section1 .block-right .sec1-title {
    width: 25%;
    margin-right: 5vw;
  }
}
@media (max-width: 576px) {
  #section1 .block-right .sec1-title {
    width: 60%;
    margin-right: 3vw;
  }
}
#section1 .block-right .sec1-subTitle {
  width: 100%;
}

/* --- Section 2 --- */
#section2 {
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 992px) {
  #section2 {
    padding-top: 200px;
  }
}
#section2 .brush-cover--top {
  position: absolute;
  left: 0;
  top: 0;
  width: 50vw;
  opacity: 0.2;
}
#section2 .brush-cover--down {
  position: absolute;
  right: -20vw;
  bottom: 0;
  transform: rotate(-180deg);
  width: 50vw;
  opacity: 0.2;
}
#section2 .title-eng {
  position: absolute;
  left: 0px;
  top: 20px;
  writing-mode: vertical-lr;
  text-box: trim-both cap alphabetic;
}
@media (max-width: 992px) {
  #section2 .title-eng {
    writing-mode: horizontal-tb;
    top: 180px;
  }
}
#section2 .content .img-top img {
  width: 80vw;
  height: 760px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  #section2 .content .img-top img {
    width: 90vw;
    height: auto;
    aspect-ratio: 5/4;
  }
}
#section2 .content .text-block {
  gap: 180px;
  padding-left: 180px;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  #section2 .content .text-block {
    padding-left: 0px;
    gap: 100px;
  }
}
@media (max-width: 992px) {
  #section2 .content .text-block {
    padding-left: 0px;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 48px;
  }
}
@media (max-width: 992px) {
  #section2 .content .text-block .text p {
    text-align: center;
  }
}
@media (max-width: 992px) {
  #section2 .content .text-block .text {
    gap: 40px;
  }
}
#section2 .content .img-group {
  width: 90vw;
  height: 700px;
  gap: 10px;
}
@media (max-width: 1200px) {
  #section2 .content .img-group {
    height: -moz-fit-content;
    height: fit-content;
  }
}
#section2 .content .img-group .img-box {
  flex: 1 1 0;
}
#section2 .content .img-group .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  #section2 .content .img-group .img-box img {
    aspect-ratio: 4/3;
  }
}

/* --- Section 3 --- */
#section3 {
  padding-top: 150px;
  padding-bottom: 150px;
  padding-right: 5vw;
  overflow: hidden;
}
@media (max-width: 1200px) {
  #section3 {
    padding-right: 0;
  }
}
#section3 .block-left {
  gap: 40px;
}
@media (max-width: 1200px) {
  #section3 .block-left {
    gap: 200px;
  }
}
@media (max-width: 1200px) {
  #section3 .block-right {
    padding-left: 10vw;
    padding-top: 60px;
    gap: 60px;
  }
}
#section3 .block-right .brush-orange {
  position: absolute;
  right: -10vw;
  top: 0px;
  width: 480px;
}
@media (max-width: 1200px) {
  #section3 .block-right .brush-orange {
    width: 360px;
    right: auto;
    left: -5vw;
    top: 3vh;
  }
}
@media (max-width: 992px) {
  #section3 .block-right .brush-orange {
    width: 280px;
    left: -8vw;
    top: 2vh;
  }
}
@media (max-width: 576px) {
  #section3 .block-right .brush-orange {
    width: 180px;
    left: -10vw;
    top: 5vh;
  }
}
#section3 .block-right h2 {
  z-index: 1;
}
@media (max-width: 1200px) {
  #section3 .block-right h2 {
    text-align: left;
  }
}

/* --- Section 4 --- */
#section4 .pin-height {
  height: 400vh;
}
#section4 .pin-height .contain {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  left: 0 !important;
}
#section4 .pin-height .contain .images {
  width: 100vw;
  height: 100vh;
  position: relative;
}
#section4 .pin-height .contain .images .hidden {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(transparent 100%, #000 125%, #000 225%);
          mask-image: linear-gradient(transparent 100%, #000 125%, #000 225%);
}
#section4 .pin-height .contain .images .hidden .content-box {
  background-color: #fff;
  width: 576px;
  padding: 40px 60px 60px 60px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 99;
  gap: 40px;
  background: url(../src/紙背景-1.png) 0% 0%/100% repeat;
}
@media (max-width: 992px) {
  #section4 .pin-height .contain .images .hidden .content-box {
    padding: 40px 40px 40px 40px;
    width: 480px;
  }
}
@media (max-width: 576px) {
  #section4 .pin-height .contain .images .hidden .content-box {
    top: 55%;
    width: 80vw;
    padding: 5vw 5vw 4vh 5vw;
    gap: 24px;
  }
}
#section4 .pin-height .contain .images .hidden .content-box img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 576px) {
  #section4 .pin-height .contain .images .hidden .content-box img {
    aspect-ratio: 16/9;
  }
}
#section4 .pin-height .contain .images .hidden .content-box .text-block {
  gap: 40px;
}
@media (max-width: 576px) {
  #section4 .pin-height .contain .images .hidden .content-box .text-block {
    gap: 20px;
  }
}
#section4 .pin-height .contain .images .hidden .content-box .text-block p {
  writing-mode: vertical-rl;
  font-family: "Noto Serif TC", serif;
  font-size: 16px;
}
@media (max-width: 1400px) {
  #section4 .pin-height .contain .images .hidden .content-box .text-block p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  #section4 .pin-height .contain .images .hidden .content-box .text-block p {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
#section4 .pin-height .contain .images .hidden .content-box .text-block h5 {
  writing-mode: vertical-rl;
  font-style: italic;
}
#section4 .pin-height .contain .images .hidden .media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
#section4 .pin-height .contain .images .hidden .media img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#section4 .pin-height .contain .images .hidden .title-main {
  writing-mode: vertical-lr;
  position: absolute;
  right: 20vw;
  top: 200px;
  z-index: 120;
  line-height: 130%;
  letter-spacing: 12px;
  font-weight: 500;
  color: #e3e3e3;
}
@media (max-width: 1400px) {
  #section4 .pin-height .contain .images .hidden .title-main {
    right: 10vw;
  }
}
@media (max-width: 1200px) {
  #section4 .pin-height .contain .images .hidden .title-main {
    right: 7vw;
  }
}
@media (max-width: 992px) {
  #section4 .pin-height .contain .images .hidden .title-main {
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 576px) {
  #section4 .pin-height .contain .images .hidden .title-main {
    font-size: 21px;
    letter-spacing: 5px;
  }
}
#section4 .pin-height .contain .images .hidden .title-sub {
  position: absolute;
  left: 40px;
  bottom: 60px;
  z-index: 120;
}
@media (max-width: 992px) {
  #section4 .pin-height .contain .images .hidden .title-sub {
    left: 50%;
    bottom: 3vh;
    transform: translateX(-50%);
  }
}
#section4 .pin-height .contain .images .hidden:first-child {
  -webkit-mask-image: linear-gradient(transparent -25%, #000 0%, #000 100%);
          mask-image: linear-gradient(transparent -25%, #000 0%, #000 100%);
}

/* Carousels */
#sec3Carousel {
  max-width: 54vw;
  background-color: #3c3c3c;
}
@media (max-width: 1400px) {
  #sec3Carousel {
    max-width: 48vw;
  }
}
@media (max-width: 1200px) {
  #sec3Carousel {
    max-width: 100vw;
  }
}
#sec3Carousel .owl-img img {
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  #sec3Carousel .owl-img img {
    aspect-ratio: 4/3;
    height: auto;
  }
}

/* --- Section Video --- */
#section-video {
  width: 100%;
  max-width: 100%;
}

/*-------------------------------------------
  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 */