@charset "UTF-8";
/* Article typography
   用於最新消息內頁、工程進度內頁、一般內文頁。
*/
.article-label,
.page-label {
  margin-bottom: 0.75rem;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.article-en-title {
  color: #918066;
  font-size: clamp(9.4px, -1.37px + 2.76vw, 26px);
  font-family: "Cormorant", "Times New Roman", serif;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  .article-en-title {
    font-size: clamp(10.5px, -0.72px + 1.13vw, 21px);
  }
}

.article-zh-title {
  line-height: 1.8;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  margin-bottom: 2em;
  font-size: clamp(16px, 3.02px + 3.33vw, 36px);
}
@media (min-width: 992px) {
  .article-zh-title {
    font-size: clamp(12.5px, 0.21px + 1.24vw, 24px);
  }
}

.article-subtitle {
  margin: 2.5rem 0 1rem;
  color: #202020;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  font-size: clamp(12px, 0.32px + 3vw, 30px);
}
@media (min-width: 992px) {
  .article-subtitle {
    font-size: clamp(1.35rem, 2vw, 2rem);
  }
}

.article-content {
  color: #202020;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.97;
  font-size: clamp(9.4px, -1.37px + 2.76vw, 26px);
}
@media (min-width: 992px) {
  .article-content {
    font-size: clamp(9.2px, -0.21px + 0.95vw, 18px);
  }
}
.article-content p {
  margin-bottom: 1.7rem;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}
.article-content a {
  color: #918066;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.article-content img {
  display: block;
  width: 100%;
  margin: 2rem 0;
}

/* Text block helper
   用於一般圖文區，搭配 section-pad 使用。
*/
.txt-wrap .txt-title {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}
.txt-wrap .txt-body {
  line-height: 2;
}
.txt-wrap .txt-body p {
  margin-bottom: 1.25rem;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}

/* Font utilities */
.font-sans,
.font-zh-sans {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.font-serif,
.font-zh-serif {
  font-family: "Noto Serif TC", "PMingLiU", serif;
}

.font-en {
  font-family: "Cormorant", "Times New Roman", serif;
}

/* Text utilities */
.text-spread {
  max-width: 100%;
  margin-inline: auto;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.text-justify {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
  word-break: break-word;
}

@media (min-width: 992px) {
  .text-lg-justify {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
    word-break: break-word;
  }
  .text-lg-justify.text-center {
    text-align: justify !important;
  }
}

.title-lined {
  display: flex;
  align-items: center;
}
.title-lined::before, .title-lined::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.title-lined::before {
  margin-right: 1.5rem;
}
.title-lined::after {
  margin-left: 1.5rem;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site-bg__shadow {
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url("../images/bg-shadow.jpg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100vw auto;
  font-feature-settings: "palt" 1;
  transform-origin: top left;
  animation: siteBgShadow 10s cubic-bezier(0.05, 0.54, 0.46, 1.06) infinite;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

@keyframes siteBgShadow {
  0% {
    transform: skew(0deg, 0deg) scale(1.1);
  }
  25% {
    transform: skew(-2deg, -6deg) scale(1.15);
  }
  50% {
    transform: skew(-6deg, -8deg) scale(1.2);
  }
  75% {
    transform: skew(-2deg, 0deg) scale(1.15);
  }
  100% {
    transform: skew(0deg, 0deg) scale(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-bg__shadow {
    animation: none;
    transform: none;
  }
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: clamp(1rem, 1.5vw, 1.8rem);
  color: rgba(145, 128, 102, 0.6);
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(8.6px, -0.55px + 2.35vw, 22.7px);
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
@media (min-width: 992px) {
  .more-link {
    font-size: clamp(9.2px, -0.21px + 0.95vw, 18px);
  }
}
.more-link i {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(145, 128, 102, 0.25);
  border-radius: 50%;
  font-size: 0.85rem;
}
.more-link:hover, .more-link:focus {
  color: #918066;
}

.site-nav {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 9000;
}

.site-nav__toggle {
  position: fixed;
  top: clamp(2rem, 3vw, 3.35rem);
  right: clamp(2rem, 3.4vw, 4rem);
  z-index: 9100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.72rem;
  width: clamp(48px, 4vw, 76px);
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #202020;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.site-nav__toggle.is-open span:first-child {
  transform: translateY(0.38rem) rotate(18deg);
}
.site-nav__toggle.is-open span:last-child {
  transform: translateY(-0.38rem) rotate(-18deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 9050;
  display: grid;
  grid-template-columns: 16.7vw minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100svh;
  width: 100vw;
  padding: min(12vh, 8rem) 3.5vw 6vh 0;
  background-color: #fff;
  color: #202020;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(1.5rem, 0, 0);
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
}
.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0s;
}

.site-menu__logo {
  grid-row: 1/3;
  align-self: end;
  padding: 0 3.1vw 0 5vw;
}
.site-menu__logo img {
  display: block;
  width: min(100%, 128px);
  height: auto;
}

.site-menu__content {
  display: grid;
  grid-template-columns: minmax(420px, 44vw) minmax(360px, 1fr);
  align-items: center;
  min-height: clamp(480px, 55vh, 640px);
}

.site-menu__list {
  display: flex;
  flex-direction: row-reverse;
  align-self: stretch;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu__item {
  flex: 0 0 clamp(82px, 6.1vw, 118px);
  border-left: 1px solid rgba(101, 100, 100, 0.32);
}

.site-menu__link {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  height: 100%;
  padding: 0 1rem;
  text-decoration: none;
  writing-mode: vertical-rl;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.site-menu__link:hover, .site-menu__link:focus, .site-menu__link.is-active {
  opacity: 1;
}

.site-menu__zh {
  color: #333333;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(1.38rem, 1.35vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.site-menu__en {
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(0.82rem, 0.8vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-menu__visual {
  position: relative;
  height: 100%;
  --menu-main-bottom: 8%;
  --menu-main-right: 11%;
  --menu-main-width: min(23vw, 320px);
  --menu-main-ratio: 0.78;
  --menu-sub-right: 8%;
  --menu-sub-bottom: 5%;
  --menu-sub-width: min(12.5vw, 185px);
  --menu-sub-ratio: 0.73;
}
.site-menu__visual.is-home {
  --menu-main-bottom: 55.4%;
  --menu-main-right: 61%;
  --menu-main-width: 40%;
  --menu-main-ratio: 280 / 374;
  --menu-sub-right: 32.4%;
  --menu-sub-bottom: 42%;
  --menu-sub-width: 24%;
  --menu-sub-ratio: 158 / 215;
}
.site-menu__visual.is-about {
  --menu-main-bottom: 65%;
  --menu-main-right: 85%;
  --menu-main-width: 23%;
  --menu-main-ratio: 157 / 219;
  --menu-sub-right: 26%;
  --menu-sub-bottom: 46%;
  --menu-sub-width: 55%;
  --menu-sub-ratio: 370/233;
}
.site-menu__visual.is-news {
  --menu-main-bottom: 50%;
  --menu-main-right: 30%;
  --menu-main-width: 46%;
  --menu-main-ratio: 157 / 219;
  --menu-sub-right: 80%;
  --menu-sub-bottom: 42%;
  --menu-sub-width: 24%;
  --menu-sub-ratio: 1 / 1;
}
.site-menu__visual.is-case {
  --menu-main-bottom: 46%;
  --menu-main-right: 54%;
  --menu-main-width: 54%;
  --menu-main-ratio: 372 / 236;
  --menu-sub-right: 27%;
  --menu-sub-bottom: 65%;
  --menu-sub-width: 23%;
  --menu-sub-ratio: 157 / 220;
}
.site-menu__visual.is-repair {
  --menu-main-bottom: 56%;
  --menu-main-right: 33%;
  --menu-main-width: 47%;
  --menu-main-ratio: 320 / 322;
  --menu-sub-right: 72%;
  --menu-sub-bottom: 41%;
  --menu-sub-width: 30%;
  --menu-sub-ratio: 205 / 136.5;
}
.site-menu__visual.is-progress {
  --menu-main-bottom: 64%;
  --menu-main-right: 58%;
  --menu-main-width: 43%;
  --menu-main-ratio: 298 / 294;
  --menu-sub-right: 34%;
  --menu-sub-bottom: 40%;
  --menu-sub-width: 33%;
  --menu-sub-ratio: 225 / 227;
}
.site-menu__visual.is-changing .site-menu__photo {
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.985);
}

.site-menu__photo {
  position: absolute;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.site-menu__photo--main {
  bottom: var(--menu-main-bottom);
  right: var(--menu-main-right);
  width: var(--menu-main-width);
  aspect-ratio: var(--menu-main-ratio);
}
.site-menu__photo--sub {
  right: var(--menu-sub-right);
  bottom: var(--menu-sub-bottom);
  width: var(--menu-sub-width);
  aspect-ratio: var(--menu-sub-ratio);
}

.site-menu__footer {
  grid-column: 2/3;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2rem, 4vw, 4.5rem);
  color: #202020;
}

.site-menu__contact {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2.4rem);
}
.site-menu__contact a,
.site-menu__contact p {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: inherit;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.site-menu__contact i {
  color: #918066;
}

.site-menu__social {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #918066;
  text-decoration: none;
}
.site-menu__social i {
  font-size: 2.1rem;
  line-height: 1;
}
.site-menu__social img {
  width: 38px;
  height: 38px;
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .site-nav__toggle {
    top: 3.2%;
    right: 7%;
    width: clamp(36.5px, -20.69px + 5.77vw, 90px);
    gap: 0.66rem;
  }
  .site-menu {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    grid-template-columns: 14.7vw minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    padding-top: 1%;
    overflow: hidden;
  }
  .site-menu::before {
    content: "";
    width: 14.7vw;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #B3B3B3;
  }
  .site-menu__logo {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: start;
    padding: 4% 0 9.9vw 4.8vw;
  }
  .site-menu__logo img {
    width: 13vw;
  }
  .site-menu__content {
    grid-column: 2/3;
    grid-row: 2/3;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 8vw;
  }
  .site-menu__list {
    grid-column: 1/2;
    grid-row: 1/2;
    display: block;
    padding-right: 0;
  }
  .site-menu__item {
    border-left: 0;
    border-right: 0;
  }
  .site-menu__link {
    display: flex;
    align-items: end;
    gap: clamp(0px, -5.19px + 1.33vw, 8px);
    height: auto;
    padding: 0;
    padding-block: 5.7%;
    margin: 0;
    writing-mode: horizontal-tb;
  }
  .site-menu__zh {
    flex: 0 0 auto;
    font-size: clamp(16px, 3.02px + 3.33vw, 36px);
    letter-spacing: 0.18em;
    line-height: 1;
  }
  .site-menu__en {
    display: flex;
    align-items: end;
    flex: 1 1 auto;
    gap: clamp(0px, -5.19px + 1.33vw, 8px);
    font-size: clamp(9px, 1.21px + 2vw, 21px);
    white-space: nowrap;
    line-height: 1;
  }
  .site-menu__en::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-color: rgba(101, 100, 100, 0.24);
  }
  .site-menu__visual {
    grid-column: 1/2;
    grid-row: 2/3;
    height: clamp(280px, 58vw, 520px);
    min-height: 0;
    margin: 0;
    --menu-main-bottom: 0;
    --menu-main-right: 28%;
    --menu-main-width: min(39vw, 220px);
    --menu-main-ratio: 280/370;
    --menu-sub-right: 7%;
    --menu-sub-bottom: 0;
    --menu-sub-width: min(24vw, 132px);
    --menu-sub-ratio: 185/270;
  }
  .site-menu__visual.is-home {
    --menu-main-right: 35%;
    --menu-main-bottom: 32.4%;
    --menu-main-width: 39%;
    --menu-sub-right: 9%;
    --menu-sub-bottom: 17%;
    --menu-sub-width: 22%;
  }
  .site-menu__visual.is-about {
    --menu-main-bottom: 48%;
    --menu-main-right: 61%;
    --menu-main-width: 23%;
    --menu-sub-right: 0;
    --menu-sub-bottom: 21%;
    --menu-sub-width: 55%;
  }
  .site-menu__visual.is-news {
    --menu-main-bottom: 30%;
    --menu-main-right: 8%;
    --menu-main-width: 39%;
    --menu-sub-right: 52%;
    --menu-sub-bottom: 20%;
    --menu-sub-width: 22%;
  }
  .site-menu__visual.is-case {
    --menu-main-bottom: 23.2%;
    --menu-main-right: 31.5%;
    --menu-main-width: 54%;
    --menu-sub-right: 0;
    --menu-sub-bottom: 53%;
    --menu-sub-width: 26%;
  }
  .site-menu__visual.is-repair {
    --menu-main-bottom: 36%;
    --menu-main-right: 0%;
    --menu-main-width: 46%;
    --menu-sub-right: 53%;
    --menu-sub-bottom: 24%;
    --menu-sub-width: 30%;
  }
  .site-menu__visual.is-progress {
    --menu-main-bottom: 45%;
    --menu-main-right: 42.8%;
    --menu-main-width: 39%;
    --menu-sub-right: 8%;
    --menu-sub-bottom: 22%;
    --menu-sub-width: 30%;
  }
  .site-menu__photo--main {
    bottom: var(--menu-main-bottom);
    right: var(--menu-main-right);
    width: var(--menu-main-width);
    aspect-ratio: var(--menu-main-ratio);
  }
  .site-menu__photo--sub {
    right: var(--menu-sub-right);
    bottom: var(--menu-sub-bottom);
    width: var(--menu-sub-width);
    aspect-ratio: var(--menu-sub-ratio);
  }
  .site-menu__footer {
    grid-column: 1/3;
    grid-row: 3/4;
    align-self: end;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 2rem;
    padding-left: 22.7vw;
    background-color: #f5f5f5;
  }
  .site-menu__contact {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 0.7rem;
  }
  .site-menu__contact a,
  .site-menu__contact p {
    font-size: clamp(10px, 0.92px + 2.33vw, 24px);
  }
  .site-menu__social {
    align-self: center;
    gap: 0.25rem;
  }
  .site-menu__social a {
    width: 7.2vw;
    height: 7.2vw;
  }
  .site-menu__social i {
    font-size: clamp(18px, 2.43px + 3.99vw, 42px);
  }
  .site-menu__social img {
    width: 5vw;
    height: 5vw;
  }
}
@media (max-width: 575.98px) {
  .site-menu {
    grid-template-columns: 14.7vw minmax(0, 1fr);
  }
  .site-menu__link {
    margin-left: 2.05rem;
  }
  .site-menu__footer {
    padding: 5vw 5vw 5vw 19.7vw;
  }
}
.page-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.page-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loading__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  transform: translateY(1vh);
  text-align: center;
}
.page-loading__logo {
  display: block;
  width: 16vw;
  height: auto;
}
.page-loading__tagline {
  margin: 1.4rem 0 0;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .page-loading {
    align-items: flex-start;
  }
  .page-loading__inner {
    width: 100%;
    height: 100%;
    justify-content: center;
    transform: none;
  }
  .page-loading__logo {
    width: 30vw;
  }
  .page-loading__tagline {
    margin-top: 0.8em;
    font-size: clamp(12px, -3.57px + 3.99vw, 36px);
    letter-spacing: 0.02em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loading {
    transition: none;
  }
}
.page-hero {
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 5rem 0;
  background-color: #f6f6f6;
}
.page-hero h1 {
  margin-bottom: 0;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

.page-article {
  padding: 5rem 0;
}
.page-article h1 {
  margin-bottom: 2rem;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.unit-title--vertical .unit-title__zh {
  margin-block: auto;
  writing-mode: vertical-rl;
}
.unit-title--vertical .unit-title__zh::after {
  display: inline-block;
}
.unit-title--horizontal .unit-title__zh {
  writing-mode: horizontal-tb;
}
.unit-title--horizontal .unit-title__zh::after {
  display: none;
}
.unit-title--plain {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.unit-title--plain .unit-title__en::before {
  content: "";
  display: block;
  width: 0.5px;
  height: clamp(20px, -1.38px + 2.16vw, 40px);
  margin: 0 auto 8px;
  background-color: #3e3a39;
}
.unit-title--card {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 24px;
  padding: 2em clamp(0.8rem, 1.2vw, 1.4rem);
  background-color: rgba(247, 247, 247, 0.9);
  backdrop-filter: blur(2px);
  width: 20vw;
}
.unit-title--card .unit-title__zh {
  margin: 0;
}
.unit-title--card .unit-title__en {
  margin: 0;
}
.unit-title--card .unit-title__en::before {
  content: "";
  display: inline-block;
  width: 1px;
  margin-inline: 0.5em;
  margin-top: 2em;
  height: clamp(12px, -0.83px + 1.29vw, 24px);
  background-color: #3e3a39;
}
.unit-title__en {
  margin-bottom: 2rem;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(10.6px, -1.99px + 3.23vw, 30px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .unit-title__en {
    font-size: clamp(10.85px, 1.09vw, 21px);
  }
}
.unit-title__en--vertical {
  margin-bottom: 0;
  text-align: left;
  writing-mode: vertical-rl;
}
.unit-title__zh {
  margin-block: 0;
  color: #202020;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(14px, -2.22px + 4.16vw, 39px);
  letter-spacing: 0.28em;
  line-height: 1.35;
}
@media (min-width: 992px) {
  .unit-title__zh {
    font-size: clamp(16.5px, -0.07px + 1.67vw, 32px);
  }
}

.img-wrap {
  position: relative;
}
.img-wrap a {
  display: block;
}
.img-wrap .img-ratio {
  position: relative;
  width: 100%;
  padding-top: 70%;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-wrap .img-ratio {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}
.img-wrap .img-ratio .img-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.img-wrap.img-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 23/5;
  background: linear-gradient(123deg, rgba(0, 0, 0, 0) 32.84%, rgb(0, 0, 0) 100%);
  mask: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: none;
}
.img-wrap.img-gradient .img-caption {
  z-index: 2;
}

.img-cover {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-cover {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}

.img-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 3px;
  color: #fff;
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
  text-align: right;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.68);
}

.map-embed iframe {
  display: block;
  width: 100% !important;
  height: clamp(300px, 50vh, 700px) !important;
  border: none;
}

.stage-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage,
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.article {
  width: 100%;
}

.article__header {
  padding-bottom: clamp(1rem, 1.5vw, 1.75rem);
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}
.article__header h1 {
  margin: clamp(0.9rem, 1.2vw, 1.3rem) 0 0;
  color: #333333;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(14px, -2.22px + 4.16vw, 39px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}
@media (min-width: 992px) {
  .article__header h1 {
    font-size: clamp(10.8px, -0.1px + 1.1vw, 21px);
  }
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(9.5px, -1.21px + 2.75vw, 26px);
  letter-spacing: 0.08em;
}
.article__meta time::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  margin-left: 0.9rem;
  vertical-align: middle;
  background-color: rgba(145, 128, 102, 0.3);
}
@media (min-width: 992px) {
  .article__meta {
    font-size: clamp(0.82rem, 0.82vw, 0.95rem);
  }
}

.article__content {
  padding-top: clamp(1.6rem, 2.2vw, 2.5rem);
  padding-bottom: clamp(1.6rem, 2.4vw, 2.75rem);
}
.article__content p {
  margin: 0;
  color: rgba(51, 51, 51, 0.78);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(10.4px, -1.17px + 2.97vw, 28.2px);
  letter-spacing: 0.05em;
  line-height: 2.05;
}
@media (min-width: 992px) {
  .article__content p {
    font-size: clamp(0.86rem, 0.86vw, 1rem);
  }
}
.article__content figure {
  width: 100%;
  aspect-ratio: 1.47;
  margin: clamp(1rem, 1.4vw, 1.6rem) 0 0;
  overflow: hidden;
}
.article__content p + figure {
  margin-top: clamp(1.6rem, 2.4vw, 2.75rem);
}
.article__content img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.article__content iframe {
  max-width: 100%;
}

.article__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 3.5vw, 4rem);
  padding-top: clamp(1.4rem, 2vw, 2.2rem);
  border-top: 1px solid rgba(51, 51, 51, 0.16);
}

.article__back {
  margin-top: 0;
}

@media (max-width: 991px) {
  .article__header h1 {
    line-height: 1.75;
  }
  .article__content p {
    line-height: 2.1;
  }
  .article__content figure {
    aspect-ratio: 1.39;
  }
  .article__footer {
    margin-top: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: clamp(2.5rem, 9vw, 4rem);
  }
}
.news-list {
  border-top: 1px solid rgba(51, 51, 51, 0.16);
}

.news-list__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(62px, 6.25vw, 120px);
  padding: clamp(22px, -3.66px + 2.59vw, 46px) 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}

.news-list__meta {
  flex: 0 0 auto;
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 0.5rem;
  color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(9.5px, -1.21px + 2.75vw, 26px);
  letter-spacing: 0.06em;
  text-align: right;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .news-list__meta {
    font-size: clamp(0.82rem, 0.82vw, 0.95rem);
  }
}

.news-list__body {
  flex: 1 1 auto;
  min-width: 0;
  color: #333333;
  text-decoration: none;
}
.news-list__body h2,
.news-list__body h3 {
  display: block;
  margin: 0 0 0.72rem;
  overflow: hidden;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(12.3px, -1.85px + 3.63vw, 30px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .news-list__body h2,
  .news-list__body h3 {
    font-size: clamp(10.8px, -0.1px + 1.1vw, 21px);
  }
}
.news-list__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(51, 51, 51, 0.72);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .news-list__item {
    gap: 4rem;
  }
  .news-list__body p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.slick-prev {
  left: 0;
  z-index: 10;
}
.slick-prev::before {
  content: "\f284";
}

.slick-next {
  right: 0;
}
.slick-next::before {
  content: "\f285";
}

.slick-next,
.slick-prev {
  width: auto;
  height: auto;
}

.slick-prev::before,
.slick-next::before {
  font-family: bootstrap-icons !important;
  font-size: 3rem;
}

.slick-dots li.slick-active button::before {
  color: #918066;
}

@media (min-width: 992px) {
  .slick-slider.is-multiple .slick-list {
    margin-inline: clamp(-13px, 0.45px - 0.7vw, -6.5px);
  }
  .slick-slider.is-multiple .slick-slide {
    padding-inline: clamp(6.5px, -0.45px + 0.7vw, 13px);
  }
}
.fancybox-navigation {
  height: 100vh;
}

.site-header {
  position: relative;
  z-index: 9999;
}

.site-footer {
  padding: 3% 0 1.5%;
  background-color: #f8f8f8;
  color: #333333;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.35fr) minmax(0, 0.38fr);
  align-items: center;
  column-gap: clamp(1.75rem, 4vw, 6.5rem);
  row-gap: clamp(12px, -0.83px + 1.29vw, 24px);
  width: min(88vw, 1640px);
  margin: 0 auto;
}

.site-footer__brand {
  display: grid;
  gap: clamp(1.1rem, 1.4vw, 1.8rem);
  min-width: 0;
}

.site-footer__mobile-info {
  display: grid;
  gap: clamp(1.1rem, 1.4vw, 1.8rem);
  min-width: 0;
}

.site-footer__logo {
  display: block;
  width: fit-content;
}
.site-footer__logo img {
  display: block;
  width: clamp(132px, 9.8vw, 190px);
  height: auto;
}

.site-footer__contact {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  font-size: clamp(8.2px, -0.14px + 0.84vw, 16px);
}

.site-footer__contact a,
.site-footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  margin: 0;
  color: #333333;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(0.95rem, 1.02vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer__contact span {
  min-width: 0;
  white-space: nowrap;
}

.site-footer__contact i {
  flex: 0 0 auto;
  color: #918066;
  font-size: 1.05em;
}

.site-footer__nav {
  min-width: 0;
}
.site-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 3.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__nav a {
  display: grid;
  gap: 0.1rem;
  color: #333333;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.site-footer__nav a:hover, .site-footer__nav a:focus {
  opacity: 0.65;
}

.site-footer__nav-en {
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(6.2px, 0.63vw, 12px);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__nav-zh {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(10.85px, 1.09vw, 21px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.site-footer__slogan {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 1.7vw, 2.25rem);
  margin: 0;
  color: #333333;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(8px, -0.55px + 0.86vw, 16px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.45;
  writing-mode: vertical-rl;
  min-width: 0;
}
.site-footer__slogan span {
  display: block;
}

.site-footer__divider {
  grid-column: 1/-1;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.24);
}

.site-footer__copyright {
  grid-column: 1/2;
  margin: 0;
  color: #333333;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(6.2px, 0.63vw, 12px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.site-footer__social {
  align-items: center;
  gap: clamp(1rem, 1.4vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  color: #918066;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.site-footer__social a:hover, .site-footer__social a:focus {
  opacity: 0.65;
}
.site-footer__social i {
  font-size: clamp(18px, 3.03px + 1.51vw, 32px);
  line-height: 1;
}

.site-footer__social--desktop {
  grid-column: 3/4;
  justify-self: end;
}

@media (max-width: 991px) {
  .site-footer {
    padding: clamp(42px, 8vw, 80px) 0 clamp(18px, 3vw, 30px);
  }
  .site-footer__inner {
    grid-template-columns: minmax(88px, 0.72fr) minmax(0, 1.65fr) minmax(86px, 0.78fr);
    align-items: center;
    column-gap: clamp(16px, 5vw, 58px);
    width: min(86.8vw, 920px);
  }
  .site-footer__brand {
    display: contents;
  }
  .site-footer__logo {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: center;
  }
  .site-footer__logo img {
    width: clamp(88px, 18vw, 190px);
  }
  .site-footer__mobile-info {
    grid-column: 2/3;
    grid-row: 1/2;
    gap: clamp(14px, 2.8vw, 32px);
  }
  .site-footer__contact {
    gap: clamp(10px, 2.2vw, 24px);
  }
  .site-footer__contact a,
  .site-footer__contact p {
    gap: clamp(10px, 2.5vw, 28px);
    font-size: clamp(9.4px, -1.37px + 2.76vw, 26px);
    letter-spacing: 0.05em;
  }
  .site-footer__social {
    gap: clamp(16px, 4vw, 56px);
  }
  .site-footer__social i {
    font-size: clamp(16px, -0.87px + 4.33vw, 42px);
  }
  .site-footer__slogan {
    grid-column: 3/4;
    grid-row: 1/2;
    justify-self: end;
    align-self: center;
    flex-direction: column;
    gap: clamp(12px, 3vw, 34px);
    font-size: clamp(8.2px, -1.21px + 2.41vw, 22.7px);
    letter-spacing: 0.16em;
    writing-mode: vertical-rl;
  }
  .site-footer__divider {
    grid-column: 1/-1;
    margin-top: 0;
  }
  .site-footer__copyright {
    grid-column: 1/-1;
    font-size: clamp(7px, -1.05px + 2.06vw, 19.4px);
    text-align: center;
  }
}
:root {
  --section-padding-px: clamp(25px, -0.31px + 6.49vw, 64px);
  --section-padding-py: clamp(25px, -0.31px + 6.49vw, 64px);
  --section-gutter-y: clamp(16px, 0.05px + 2.5vw, 28px);
  --section-gutter-x: clamp(16px, 0.1px + 2vw, 24px);
}

@media (min-width: 992px) {
  :root {
    --section-padding-px: clamp(64px, -4.41px + 6.9vw, 128px);
    --section-padding-py: clamp(56px, -3.86px + 6.03vw, 112px);
    --section-gutter-y: clamp(24px, 0.2px + 1.8vw, 36px);
    --section-gutter-x: clamp(32px, 0px + 3vw, 48px);
  }
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: unset;
    aspect-ratio: 16/9;
  }
}
.section-screen.is-fullscreen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen.is-fullscreen {
    min-height: 100svh;
    aspect-ratio: unset;
  }
}

.section-v-center {
  display: flex;
  align-items: center;
}

.section-v-between {
  display: flex;
  align-items: stretch;
}

.section-pad {
  padding-inline: var(--section-padding-px);
  padding-block: var(--section-padding-py);
}
.section-pad--px-0 {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .section-pad--px-0 {
    padding-inline: var(--section-padding-px);
  }
}
.section-pad--py-0 {
  padding-block: 0;
}
@media (min-width: 992px) {
  .section-pad--py-0 {
    padding-block: var(--section-padding-py);
  }
}
.section-pad--pt-0 {
  padding-top: 0;
}
@media (min-width: 992px) {
  .section-pad--pt-0 {
    padding-top: var(--section-padding-py);
  }
}
.section-pad--pb-0 {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .section-pad--pb-0 {
    padding-bottom: var(--section-padding-py);
  }
}
.section-pad--ps-0 {
  padding-left: 0;
}
@media (min-width: 992px) {
  .section-pad--ps-0 {
    padding-left: var(--section-padding-px);
  }
}
.section-pad--pe-0 {
  padding-right: 0;
}
@media (min-width: 992px) {
  .section-pad--pe-0 {
    padding-right: var(--section-padding-px);
  }
}

.section-gutter {
  --bs-gutter-y: var(--section-gutter-y);
  --bs-gutter-x: var(--section-gutter-x);
}

@media (max-width: 991px) {
  .px-mobile-section {
    padding-inline: var(--section-padding-px);
  }
}

.home-page {
  overflow: hidden;
}

.home-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero {
  display: flex;
  justify-content: end;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  aspect-ratio: 610/660;
}
@media (min-width: 992px) {
  .home-hero {
    aspect-ratio: 16/9;
    padding-right: 7.1vw;
  }
}
.home-hero__brand {
  position: absolute;
  left: 7.4%;
  top: 4.2%;
  width: 12vw;
}
@media (min-width: 992px) {
  .home-hero__brand {
    left: 7%;
    top: 10.8%;
    width: 8vw;
  }
}
.home-hero__brand p {
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  line-height: 1;
  padding-top: 25%;
  white-space: nowrap;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: clamp(8px, -2.38px + 2.66vw, 24px);
}
.home-hero__brand p span {
  display: block;
}
@media (min-width: 992px) {
  .home-hero__brand p {
    padding-block: 1.2em;
    font-size: clamp(7px, -2.62px + 0.97vw, 16px);
  }
}
.home-hero__copy {
  writing-mode: vertical-rl;
  width: 12.5vw;
  position: absolute;
  line-height: 2.1;
  top: 37%;
  left: 19%;
}
.home-hero__copy .home-hero__title {
  margin: 0;
}
.home-hero__copy .home-hero__title span {
  display: block;
  font-size: clamp(10px, 0.92px + 2.33vw, 24px);
  white-space: nowrap;
}
.home-hero__copy .home-hero__title span:last-child {
  padding-top: 2em;
}
@media (min-width: 992px) {
  .home-hero__copy {
    top: 24%;
    left: 41%;
    width: 9.5vw;
  }
  .home-hero__copy .home-hero__title span {
    font-size: clamp(10px, 0.92px + 2.33vw, 24px);
  }
  .home-hero__copy .home-hero__title span:last-child {
    padding-top: 20%;
  }
}
.home-hero .home-hero__en {
  color: #918066;
  font-size: clamp(6.5px, 2.46px + 1.16vw, 14px);
  padding-top: 7em;
  margin: 0;
}
@media (min-width: 992px) {
  .home-hero .home-hero__en {
    font-size: clamp(7px, -0.48px + 0.75vw, 14px);
    padding-top: 14em;
  }
  .home-hero .home-hero__en::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #3E3A39;
  }
}
.home-hero__image--main {
  aspect-ratio: 678/880;
  width: 53vw;
  position: absolute;
  bottom: 0;
  right: 7.3%;
}
@media (min-width: 992px) {
  .home-hero__image--main {
    width: 35vw;
  }
}
.home-hero__image--sub {
  aspect-ratio: 315/206;
  width: 26vw;
  position: absolute;
  bottom: 0;
  right: 61.8%;
}
@media (min-width: 992px) {
  .home-hero__image--sub {
    right: 43.2%;
    width: 16vw;
  }
}
.home-hero__image--left {
  aspect-ratio: 290/186;
  width: 15vw;
  position: absolute;
  left: 0;
  top: 65%;
}
@media (max-width: 991px) {
  .home-hero__image--left {
    display: none;
  }
}

.home-about {
  display: flex;
  aspect-ratio: 610/946;
}
@media (max-width: 991px) {
  .home-about {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .home-about {
    margin-block: 12.7vw;
    aspect-ratio: 16/9;
    justify-content: end;
  }
}
.home-about__image--main {
  aspect-ratio: 960/1080;
  width: 50%;
}
@media (min-width: 992px) {
  .home-about__image--main {
    position: absolute;
    width: 50vw;
    top: 0;
    right: 100%;
  }
}
.home-about__image--sub {
  position: absolute;
  aspect-ratio: 646/408;
  width: 35vw;
  top: 50%;
  right: 0;
}
@media (min-width: 992px) {
  .home-about__image--sub {
    width: 33.33vw;
    bottom: 0;
    top: auto;
    right: 8.3vw;
  }
}
.home-about__content {
  width: 100%;
}
@media (max-width: 991px) {
  .home-about__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .home-about__content {
    width: 50%;
    padding-inline: 8.3vw;
    padding-top: 1.6%;
  }
}
.home-about .article-title {
  width: 50%;
}
@media (min-width: 992px) {
  .home-about .article-title {
    width: 100%;
    margin-bottom: 2.5em;
  }
}
@media (max-width: 991px) {
  .home-about .article-title {
    padding-left: 1rem;
  }
}
.home-about .article-content a {
  text-decoration: none;
}
.home-about .article-zh-title {
  margin: 0;
}
@media (max-width: 991px) {
  .home-about .article-zh-title {
    font-size: clamp(10.6px, -1.47px + 3.09vw, 29.2px);
  }
}
.home-about .article-content {
  width: 100%;
}
@media (max-width: 991px) {
  .home-about .article-content {
    padding-top: 16%;
    padding-inline: 8vw;
  }
}

.home-projects {
  text-align: center;
}
@media (max-width: 991px) {
  .home-projects {
    padding-top: 10vw;
    padding-bottom: 20vw;
    padding-inline: 8vw;
  }
}
.home-projects .home-project-card a {
  display: block;
  gap: 1.4rem;
  color: #333333;
  text-decoration: none;
}
.home-projects .home-project-card img {
  aspect-ratio: 0.84;
  transition: opacity 0.25s ease;
}
.home-projects .home-project-card h3 {
  margin: 0;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 4;
}
.home-projects .home-project-card a:hover img,
.home-projects .home-project-card a:focus img {
  opacity: 0.82;
}

.home-news {
  padding: 4vw 8vw 10vw 0;
}
.home-news__image {
  width: min(100%, 420px);
  aspect-ratio: 0.78;
  margin-top: clamp(8rem, 12vw, 14rem);
}
.home-news__image figcaption {
  position: absolute;
  right: -1.6rem;
  bottom: 0;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(10.6px, -1.99px + 3.23vw, 30px);
  letter-spacing: 0.08em;
  line-height: 1;
  writing-mode: vertical-rl;
}
.home-news__image figcaption::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  height: clamp(23px, -3.61px + 6.82vw, 40px);
  margin: 8px auto;
  background-color: #3e3a39;
}
@media (min-width: 992px) {
  .home-news__image figcaption {
    font-size: clamp(10.85px, 1.09vw, 21px);
  }
}
.home-news__content {
  padding-top: clamp(3rem, 7vw, 8rem);
}
.home-news__title {
  margin-bottom: 1.5em;
}
@media (max-width: 991px) {
  .home-news {
    padding-right: 0;
  }
  .home-news__image {
    width: 50%;
    margin-top: 0;
  }
  .home-news__image figcaption {
    right: auto;
    left: 100%;
  }
  .home-news__content {
    padding-top: 3em;
    padding-inline: 8vw;
  }
  .home-news__title {
    margin-top: -2.6em;
    text-align: right;
  }
}

.about-page {
  overflow: hidden;
}
@media (min-width: 992px) {
  .about-page .container-lg {
    max-width: clamp(755px, 1.38px + 75.97vw, 1460px);
  }
}
.about-page img,
.about-page video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero {
  padding-top: clamp(4.5rem, 5.4vw, 6.5rem);
}
.about-hero .container-fluid {
  padding-inline: 0;
}

.about-hero__brand {
  width: 8vw;
  margin-inline: auto;
  color: #202020;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  text-align: center;
}
.about-hero__brand img {
  height: auto;
  margin-bottom: 1.2em;
  object-fit: contain;
}
.about-hero__brand p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  font-size: clamp(8px, 0.78vw, 13px);
  letter-spacing: 0.16em;
  line-height: 1.7;
  writing-mode: vertical-rl;
  justify-content: center;
}
.about-hero__brand p span {
  display: block;
}

.about-hero__image {
  aspect-ratio: 1240/700;
  border-right: 1px solid rgba(32, 32, 32, 0.8);
}
.about-hero__image figcaption {
  position: absolute;
  top: 26%;
  right: 9%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  color: rgba(32, 32, 32, 0.78);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(13px, 0.94vw, 18px);
  letter-spacing: 0.2em;
  line-height: 1.6;
  writing-mode: vertical-rl;
}

.about-hero__title {
  position: absolute;
  left: clamp(7rem, 10vw, 13rem);
  bottom: -1.5rem;
}

.about-intro {
  padding-top: clamp(8rem, 10vw, 13rem);
  padding-bottom: clamp(6rem, 9vw, 11rem);
}

.about-intro__copy {
  color: rgba(32, 32, 32, 0.74);
}
.about-intro__copy .article-zh-title {
  margin-bottom: clamp(2rem, 3vw, 3.2rem);
  color: rgba(32, 32, 32, 0.82);
}

.about-intro__en {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: clamp(2rem, 3vw, 3.2rem);
  color: rgba(145, 128, 102, 0.55);
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(11px, 0.8vw, 16px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.about-intro__en::before {
  content: "";
  width: clamp(24px, 2.5vw, 44px);
  height: 1px;
  background-color: rgba(145, 128, 102, 0.28);
}

.about-collage {
  aspect-ratio: 720/830;
  width: 100%;
  position: relative;
}

.about-collage__block,
.about-collage__image {
  position: absolute;
}

.about-collage__block {
  top: 0;
  right: 18%;
  width: 34%;
  aspect-ratio: 1.28;
  background-color: rgba(235, 231, 226, 0.68);
}

.about-collage__image {
  overflow: hidden;
}

.about-collage__image--item-1 {
  top: 0%;
  left: 36%;
  width: 46%;
  aspect-ratio: 356/241;
}

.about-collage__image--item-2 {
  top: 12%;
  left: 17%;
  width: 27%;
  aspect-ratio: 190/305;
}

.about-collage__image--item-3 {
  top: 44%;
  left: -4%;
  width: 29%;
  aspect-ratio: 205/132;
}

.about-collage__image--item-4 {
  top: 76%;
  left: 15%;
  width: 40%;
  aspect-ratio: 275/182;
}

.about-collage__image--item-5 {
  top: 32%;
  left: 50%;
  width: 46%;
  aspect-ratio: 324/510;
}

.about-values {
  padding-bottom: clamp(6rem, 9vw, 11rem);
}

.about-values__list {
  --bs-gutter-x: clamp(2rem, 4vw, 5rem);
  --bs-gutter-y: clamp(4rem, 6vw, 7rem);
}

.about-value-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-value-card__text {
  margin-bottom: auto;
}
.about-value-card__text h2 {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.18);
  color: rgba(32, 32, 32, 0.76);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.5;
}
.about-value-card__text p {
  margin-bottom: 0;
  color: rgba(32, 32, 32, 0.72);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(12px, 0.86vw, 16px);
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}
.about-value-card__text .more-link {
  margin-top: 0.5em;
}

.about-value-card__image {
  order: 2;
  aspect-ratio: 1;
  overflow: hidden;
  margin-top: 1em;
}

.about-value-modals {
  display: none;
}

.about-value-modal {
  display: none;
  width: min(45vw, 880px);
  padding: clamp(3rem, 5vw, 5.2rem) clamp(2rem, 5vw, 6rem) clamp(3rem, 5vw, 5.6rem);
  border-top: 6px solid #918066;
  border-radius: 0;
  background-color: #ffffff;
  color: rgba(32, 32, 32, 0.74);
}
.about-value-modal h2 {
  margin: 0 0 clamp(1.5rem, 2vw, 2.5rem);
  padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
  color: rgba(32, 32, 32, 0.78);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: center;
}

.about-value-modal__content p {
  margin-bottom: 1.35rem;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

.about-value-modal__image {
  margin-top: clamp(2rem, 3vw, 3.5rem);
  aspect-ratio: 1.24;
  overflow: hidden;
}

.fancybox-slide--html .about-value-modal {
  display: block;
}
.fancybox-slide--html .fancybox-close-small {
  top: clamp(1rem, 2vw, 1.8rem);
  right: clamp(1rem, 2vw, 1.8rem);
  color: rgba(145, 128, 102, 0.5);
}

@media (max-width: 991px) {
  .about-hero {
    padding-top: 4vw;
  }
  .about-hero__brand {
    width: 15vw;
    margin-right: auto;
    margin-left: 2em;
    margin-bottom: 2em;
  }
  .about-hero__brand p {
    gap: 1em;
  }
  .about-hero__image figcaption {
    top: 24%;
    right: 13%;
    font-size: clamp(10px, 2.6vw, 14px);
  }
  .about-hero__title {
    position: relative;
    left: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    margin-top: 10vw;
  }
  .about-intro {
    padding-top: 5vw;
    padding-bottom: clamp(4.5rem, 14vw, 7rem);
  }
  .about-collage {
    float: right;
    width: 94%;
  }
  .about-intro__copy {
    padding-top: 12vw;
    padding-inline: 4vw;
  }
  .about-values {
    padding-inline: 4vw;
    padding-bottom: 16vw;
  }
  .about-values__list {
    --bs-gutter-y: clamp(2.8rem, 10vw, 4.5rem);
  }
  .about-values__list > div {
    align-self: stretch;
  }
  .about-value-card {
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .about-value-card__image {
    aspect-ratio: 1.45;
  }
  .about-value-card__text h2 {
    font-size: clamp(15px, 3.6vw, 19px);
  }
  .about-value-card__text p {
    font-size: clamp(12px, 3vw, 15px);
  }
  .about-value-modal {
    width: calc(100vw - 48px);
    padding: clamp(2.8rem, 10vw, 4rem) clamp(1.5rem, 6vw, 2.5rem) clamp(2.5rem, 8vw, 3.5rem);
  }
  .about-value-modal h2 {
    font-size: clamp(19px, 4.6vw, 26px);
  }
  .about-value-modal__content p {
    font-size: clamp(14px, 3.4vw, 17px);
  }
}
.news-page {
  padding-block: 8vw;
}
.news-page img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-page__hero,
.news-page__list-section {
  padding-inline: 12vw;
}

.news-page__hero-image {
  width: 100%;
  aspect-ratio: 1435/807;
}

.news-page__hero-title {
  width: 8vw;
  margin-top: -6vw;
  margin-left: 8vw;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .news-page {
    padding-block: 14vw;
  }
  .news-page__hero {
    padding-inline: 0;
  }
  .news-page__list-section {
    padding-inline: 8vw;
  }
  .news-page__hero-title {
    width: 20vw;
    margin-top: -30vw;
  }
}
.news-detail-page {
  padding-top: clamp(7rem, 9vw, 11rem);
  padding-bottom: clamp(5rem, 8vw, 9rem);
}

@media (max-width: 991px) {
  .news-detail-page {
    padding-top: 14vw;
    padding-bottom: 0;
  }
}
.case-page {
  padding-bottom: 14vw;
}

.case-archive__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 7vw, 8rem);
}

.case-archive__title {
  width: auto;
  z-index: 10;
}
@media (max-width: 992px) {
  .case-archive__title {
    gap: 4px;
  }
}
@media (min-width: 992px) {
  .case-archive__title {
    padding-top: 8vw;
    padding-inline: 2rem;
  }
}

.case-archive__slogan {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  color: rgba(51, 51, 51, 0.62);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.2em;
  line-height: 1.9;
  writing-mode: vertical-rl;
}
.case-archive__slogan span:nth-child(1)::after {
  content: "";
  display: inline-block;
  margin-inline: 0.2rem;
  background-color: rgba(145, 128, 102, 0.35);
  width: 2em;
  height: 1px;
}
@media (min-width: 992px) {
  .case-archive__slogan span:nth-child(1)::after {
    width: 1px;
    height: 2em;
  }
}
.case-archive__slogan span:last-child {
  display: inline-block;
}
@media (max-width: 991px) {
  .case-archive__slogan span:last-child {
    padding-left: 2em;
  }
}
@media (min-width: 992px) {
  .case-archive__slogan span:last-child {
    padding-top: 2em;
  }
}

.case-archive__content {
  padding-top: 12vw;
}

.case-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2rem, 4.2vw, 5rem);
  padding-bottom: 1.2rem;
}
.case-tabs::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.16);
}
.case-tabs a {
  color: rgba(51, 51, 51, 0.72);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(13px, 1.05vw, 20px);
  letter-spacing: 0.16em;
  text-decoration: none;
}
.case-tabs a::after {
  content: "/";
  position: absolute;
  top: 50%;
  left: 100%;
  color: rgba(145, 128, 102, 0.6);
  transform: translateY(-50%);
}
.case-tabs a:last-child::after {
  display: none;
}
.case-tabs a.is-active, .case-tabs a:hover, .case-tabs a:focus {
  color: #918066;
}
@media (min-width: 992px) {
  .case-tabs a {
    padding-left: 3rem;
  }
  .case-tabs a::after {
    left: 133%;
  }
}

.case-list {
  padding-top: clamp(5rem, 6vw, 7rem);
  padding-left: 20%;
  padding-right: 10%;
}
.case-list .row {
  --bs-gutter-x: clamp(2rem, 4vw, 5rem);
  --bs-gutter-y: clamp(3rem, 4vw, 5rem);
}

.case-card a {
  display: block;
  color: #333333;
  text-align: center;
  text-decoration: none;
}
.case-card h2 {
  margin: clamp(1.2rem, 1.6vw, 1.8rem) 0 0;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(14px, 1.2vw, 23px);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.case-card__image {
  aspect-ratio: 0.78;
  overflow: visible;
  background-color: #eee;
  position: relative;
}
.case-card__image::before {
  content: "敬請期待";
  position: absolute;
  top: 50%;
  left: 52%;
  letter-spacing: 20px;
  width: 100%;
  color: #afafaf;
  transform: translate(-50%, -50%);
}
.case-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card__image figcaption {
  position: absolute;
  top: -0.9rem;
  right: -1.5rem;
  min-width: clamp(115px, 7vw, 135px);
  padding: 0.5rem 0.9rem;
  color: #ffffff;
  background-color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(10px, 0.72vw, 14px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 991px) {
  .case-page {
    padding-top: clamp(5rem, 16vw, 7rem);
    padding-bottom: 12vw;
    padding-inline: 4vw;
  }
  .case-archive__intro {
    flex-direction: row;
    align-items: center;
    gap: 12vw;
  }
  .case-archive__slogan {
    display: block;
    letter-spacing: 0.18em;
    line-height: 2.2;
    writing-mode: horizontal-tb;
  }
  .case-archive__slogan span {
    display: block;
    white-space: nowrap;
  }
  .case-archive__slogan::after {
    display: inline-block;
    width: clamp(36px, 8vw, 54px);
    height: 1px;
    margin-left: 1rem;
    vertical-align: middle;
  }
  .case-archive__content {
    padding-top: clamp(3rem, 10vw, 4.5rem);
  }
  .case-archive__layout::before {
    top: calc(clamp(3rem, 10vw, 4.5rem) + 3.15rem);
    right: clamp(40px, 6.5vw, 56px);
    left: clamp(40px, 6.5vw, 56px);
  }
  .case-tabs {
    justify-content: space-between;
    gap: 0;
    padding-bottom: clamp(1.2rem, 4vw, 1.8rem);
  }
  .case-tabs a {
    width: 100%;
    text-align: center;
  }
  .case-list {
    --bs-gutter-y: clamp(3rem, 10vw, 5rem);
    padding: 0;
    padding-top: 12%;
    padding-inline: 6vw;
  }
  .case-card h2 {
    margin-top: clamp(1.1rem, 3vw, 1.6rem);
    font-size: clamp(18px, 4vw, 24px);
  }
  .case-card__image {
    aspect-ratio: 0.82;
  }
  .case-card__image figcaption {
    top: -0.75rem;
    right: -1.2rem;
    min-width: clamp(115px, 23vw, 140px);
    font-size: clamp(12px, 2.5vw, 15px);
  }
}
.case-detail-page {
  overflow: hidden;
}
.case-detail-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 992px) {
  .case-detail-page .container-lg {
    width: clamp(768px, 60.34px + 71.34vw, 1430px);
  }
}

.case-detail {
  padding-top: clamp(5rem, 6vw, 7rem);
}

.case-detail-hero {
  padding-bottom: clamp(5rem, 7vw, 8rem);
}

.case-detail-hero__en {
  margin: 0 0 1.6rem;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(12px, 0.95vw, 17px);
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.case-detail-hero__image {
  aspect-ratio: 1430/724;
}
.case-detail-hero__image img {
  object-fit: contain;
  background-color: #eee;
}
.case-detail-hero__image--empty {
  display: grid;
  place-items: center;
  background-color: #eee;
  color: rgba(32, 32, 32, 0.48);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.16em;
}
.case-detail-hero__image figcaption {
  margin: 0;
}

.case-detail-hero__card {
  width: 35vw;
  margin-top: -6.5%;
  padding-block: clamp(2rem, 3.2vw, 3.8rem);
}
.case-detail-hero__card h1 {
  margin-bottom: 0.8rem;
  color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(22px, 1.65vw, 32px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.4;
}
.case-detail-hero__card::before {
  content: "";
  height: 100%;
  background-color: rgba(247, 247, 247, 0.96);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100vw;
}

.case-detail-hero__location {
  display: inline-block;
  margin-bottom: clamp(1.2rem, 1.6vw, 1.8rem);
  padding: 0.25rem 0.95rem;
  background-color: rgba(145, 128, 102, 0.72);
  color: #ffffff;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.12em;
}

.case-detail-hero__summary {
  margin: 0;
  color: rgba(32, 32, 32, 0.82);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.08em;
  line-height: 2;
}

.case-detail-hero__slogan {
  position: absolute;
  right: -4.5rem;
  top: 42%;
  margin: 0;
  color: rgba(32, 32, 32, 0.62);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(13px, 0.9vw, 17px);
  letter-spacing: 0.14em;
  line-height: 1.9;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
}
.case-detail-hero__slogan span {
  display: inline-block;
}
.case-detail-hero__slogan span:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: clamp(48px, 4vw, 72px);
  margin-inline: 0.9rem;
  background-color: rgba(145, 128, 102, 0.32);
}

.case-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: clamp(3rem, 4vw, 4.8rem);
}
.case-section-title span {
  width: clamp(52px, 5vw, 76px);
  height: 1px;
  background-color: rgba(145, 128, 102, 0.25);
}
.case-section-title h2 {
  margin: 0;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.case-section-title--center {
  padding-bottom: clamp(1.5rem, 2vw, 2.3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.case-section-title--plain {
  margin-bottom: clamp(2rem, 2.8vw, 3rem);
}

.case-info {
  padding-bottom: clamp(5.5rem, 7vw, 8.5rem);
}

.case-info__list {
  margin: 0;
}

.case-info__item {
  display: flex;
  gap: 0.35rem;
  margin: 0;
  padding: clamp(1rem, 1.3vw, 1.4rem) 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
  color: rgba(32, 32, 32, 0.78);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.case-info__item:last-child {
  width: 100%;
}
.case-info__item dt {
  flex: 0 0 auto;
  font-weight: 500;
}
.case-info__item dt::after {
  content: "|";
  margin-left: 0.35rem;
}
.case-info__item dd {
  margin: 0;
}

.case-gallery {
  padding: clamp(4rem, 5vw, 6rem) 0 clamp(3rem, 4vw, 4.5rem);
  background-color: #e9e5df;
}
.case-gallery .container-fluid {
  padding-inline: clamp(28px, 6vw, 96px);
}

.case-gallery__slider {
  width: min(100%, 1110px);
  margin-inline: auto;
}
@media (min-width: 992px) {
  .case-gallery__slider {
    overflow: hidden;
  }
}
.case-gallery__slider .slick-list {
  overflow: visible;
}
.case-gallery__slider .slick-slide {
  padding-inline: clamp(0.4rem, 0.8vw, 0.8rem);
}
.case-gallery__slider .slick-arrow {
  display: none !important;
}
.case-gallery__slider .case-gallery__slide img {
  object-fit: cover;
}

.case-gallery__slide {
  aspect-ratio: 375/281;
  overflow: hidden;
}
.case-gallery__slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.case-gallery__nav {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(2rem, 3vw, 3.5rem);
}

.case-gallery__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(145, 128, 102, 0.72);
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(12px, 0.9vw, 16px);
  letter-spacing: 0.08em;
  line-height: 1;
}
.case-gallery__arrow i {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(145, 128, 102, 0.24);
  border-radius: 50%;
  font-size: 0.85rem;
}
.case-gallery__arrow:hover, .case-gallery__arrow:focus {
  color: #918066;
}
.case-gallery__arrow:disabled {
  color: #b8b8b8;
  cursor: default;
}

.case-floor-guide {
  padding: clamp(5rem, 7vw, 8.5rem) 0 clamp(6rem, 8vw, 10rem);
  text-align: center;
}

.case-floor-guide__intro {
  margin-bottom: clamp(2rem, 2.8vw, 3rem);
}

.case-floor-guide__tabs-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 3.5vw, 4rem);
}

.case-floor-guide__tabs-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.case-floor-guide__tabs-wrap::-webkit-scrollbar {
  display: none;
}

.case-floor-guide__tabs-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.5vw, 52px);
  aspect-ratio: 1;
  border: 1px solid rgba(145, 128, 102, 0.58);
  border-radius: 50%;
  background-color: transparent;
  color: #918066;
  opacity: 0;
  pointer-events: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.case-floor-guide__tabs-arrow i {
  line-height: 1;
}
.case-floor-guide__tabs-arrow:hover, .case-floor-guide__tabs-arrow:focus {
  border-color: #918066;
  background-color: #918066;
  color: #ffffff;
}
.case-floor-guide__tabs-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}
.case-floor-guide__tabs-arrow:disabled:hover, .case-floor-guide__tabs-arrow:disabled:focus {
  border-color: rgba(145, 128, 102, 0.58);
  background-color: transparent;
  color: #918066;
}

.case-floor-guide__tabs-control.is-scrollable {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.case-floor-guide__tabs-control.is-scrollable .case-floor-guide__tabs-arrow {
  display: inline-flex;
  opacity: 1;
  pointer-events: auto;
}
.case-floor-guide__tabs-control.is-scrollable .case-floor-guide__tabs-arrow:disabled {
  pointer-events: none;
}

.case-floor-guide__tabs {
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-width: max-content;
  padding-bottom: 0.4rem;
}

.case-floor-guide__tab {
  min-width: clamp(170px, 13vw, 230px);
  padding: 0.8rem 2rem;
  border: 1px solid rgba(145, 128, 102, 0.58);
  background-color: transparent;
  color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.12em;
  line-height: 1.4;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.case-floor-guide__tab.active, .case-floor-guide__tab:hover, .case-floor-guide__tab:focus {
  border-color: #918066;
  background-color: #918066;
  color: #ffffff;
}

.case-floor-guide__slider-wrap {
  width: min(100%, 1020px);
  margin-inline: auto;
}

.case-floor-guide__slider-stage {
  display: grid;
  grid-template-columns: minmax(44px, 1fr) minmax(0, 80%) minmax(44px, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.case-floor-guide__slider {
  overflow: hidden;
  aspect-ratio: 1462/1080;
}
.case-floor-guide__slider .slick-list,
.case-floor-guide__slider .slick-track,
.case-floor-guide__slider .slick-slide,
.case-floor-guide__slider .slick-slide > div {
  height: 100%;
}

.case-floor-guide__image {
  width: 100%;
  aspect-ratio: 1462/1080;
}
.case-floor-guide__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-floor-guide__slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: clamp(42px, 5vw, 72px);
  aspect-ratio: 1;
  border: 0;
  background-color: transparent;
  color: #787878;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  transition: color 0.25s ease, opacity 0.25s ease;
}
.case-floor-guide__slider-arrow--prev {
  justify-self: start;
}
.case-floor-guide__slider-arrow--next {
  justify-self: end;
}
.case-floor-guide__slider-arrow:hover, .case-floor-guide__slider-arrow:focus {
  color: #918066;
}
.case-floor-guide__slider-arrow:disabled {
  color: #b8b8b8;
  cursor: default;
}

.case-floor-guide__slider-dots {
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
}
.case-floor-guide__slider-dots .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
}
.case-floor-guide__slider-dots .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.case-floor-guide__slider-dots .slick-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #918066;
  border-radius: 50%;
  background-color: transparent;
  font-size: 0;
  opacity: 0.45;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
.case-floor-guide__slider-dots .slick-dots button::before {
  display: none;
}
.case-floor-guide__slider-dots .slick-dots .slick-active button {
  background-color: #918066;
  opacity: 1;
}

.case-visuals {
  padding-top: clamp(3rem, 5vw, 6rem);
}

.case-visual-carousel + .case-visual-carousel {
  margin-top: clamp(3rem, 5vw, 6rem);
}

.case-visual-carousel__stage {
  overflow: hidden;
}

.case-visual-carousel__slider .slick-arrow {
  display: none !important;
}

.case-visual-carousel__slide {
  aspect-ratio: 1920/920;
  overflow: hidden;
  background-color: #555555;
}
.case-visual-carousel__slide::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.case-visual-carousel__caption {
  position: absolute;
  z-index: 1;
  left: clamp(2rem, 5vw, 5rem);
  bottom: clamp(4.2rem, 5vw, 6.2rem);
  margin: 0;
  color: #ffffff;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.case-visual-carousel__nav {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(2rem, 3vw, 3.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 3vw, 3rem);
  transform: translateX(-50%);
}

.case-visual-carousel__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Cormorant", "Times New Roman", serif;
  letter-spacing: 0.08em;
  line-height: 1;
}
.case-visual-carousel__arrow i {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .case-visual-carousel__arrow:hover, .case-visual-carousel__arrow:focus {
    color: #ffffff;
  }
}

.case-materials {
  padding-top: clamp(4rem, 6vw, 7rem);
}

.case-material + .case-material {
  margin-top: clamp(4rem, 6vw, 7rem);
}

.case-material__image {
  overflow: hidden;
}
.case-material__image img {
  height: auto;
}
.case-material__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 41.94%);
  pointer-events: none;
}

.case-material__content {
  position: absolute;
  z-index: 1;
  top: clamp(2rem, 4vw, 4.5rem);
  left: clamp(2rem, 5vw, 5rem);
  width: min(38vw, 420px);
  color: #ffffff;
}
.case-material__content .article-subtitle {
  margin: 0 0 clamp(1rem, 1.5vw, 1.5rem);
  color: currentColor;
  font-weight: 400;
}
.case-material__content .article-content {
  color: currentColor;
}
.case-material__content .article-content p {
  margin-bottom: 0;
}

.case-location {
  padding: clamp(6rem, 8vw, 10rem) 0 clamp(5rem, 7vw, 8rem);
}
.case-location .container-lg {
  max-width: min(100%, 1245px);
}
@media (min-width: 992px) {
  .case-location .container-lg {
    width: clamp(768px, 60.34px + 71.34vw, 1430px);
  }
}

.case-location__image {
  margin-inline: auto;
  overflow: hidden;
}
.case-location__image a {
  display: block;
}
.case-location__image img {
  height: auto;
}
.case-location__image iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 48vw, 640px);
  border: 0;
}

.case-location__back {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3rem, 4vw, 4.8rem);
}
.case-location__back .more-link {
  margin-top: 0;
  padding: 5%;
}

@media (max-width: 991px) {
  .case-detail {
    padding-top: clamp(4rem, 14vw, 6rem);
  }
  .case-detail-hero {
    padding-bottom: clamp(4rem, 12vw, 6rem);
  }
  .case-detail-hero__en {
    padding-inline: clamp(28px, 6vw, 42px);
    margin-bottom: 0.5em;
  }
  .case-detail-hero__image {
    aspect-ratio: 610/318;
  }
  .case-detail-hero__card {
    width: auto;
    margin: 0;
    padding: clamp(1.5rem, 6vw, 2.4rem) clamp(28px, 6vw, 42px) clamp(2rem, 8vw, 3rem);
  }
  .case-detail-hero__slogan {
    display: none;
  }
  .case-info {
    padding-bottom: clamp(3rem, 9vw, 4.5rem);
  }
  .case-section-title {
    margin-bottom: clamp(2.4rem, 8vw, 3.5rem);
  }
  .case-section-title h2 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .case-gallery {
    padding-top: clamp(3rem, 10vw, 4rem);
  }
  .case-gallery .container-fluid {
    padding-inline: 0;
  }
  .case-gallery__slider {
    width: 100%;
  }
  .case-gallery__nav {
    padding-inline: clamp(28px, 6vw, 42px);
  }
  .case-floor-guide {
    padding: clamp(4.5rem, 14vw, 7rem) 0 clamp(5rem, 14vw, 8rem);
  }
  .case-floor-guide__intro {
    padding-inline: clamp(28px, 6vw, 42px);
  }
  .case-floor-guide__tabs-control {
    width: 100%;
    display: grid;
  }
  .case-floor-guide__tabs-arrow {
    display: none;
  }
  .case-floor-guide__tabs {
    gap: clamp(0.8rem, 3vw, 1.2rem);
  }
  .case-floor-guide__tab {
    min-width: auto;
    padding-inline: clamp(1.1rem, 4vw, 1.6rem);
  }
  .case-floor-guide__slider-wrap {
    width: 100%;
    padding-inline: clamp(16px, 4vw, 28px);
  }
  .case-floor-guide__slider-stage {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: clamp(0.5rem, 2vw, 1rem);
  }
  .case-floor-guide__slider {
    aspect-ratio: 4/3;
  }
  .case-floor-guide__image {
    aspect-ratio: 4/3;
  }
  .case-floor-guide__slider-arrow {
    width: 34px;
    font-size: 1.4rem;
  }
  .case-visuals {
    padding-top: clamp(2rem, 8vw, 4rem);
  }
  .case-visual-carousel + .case-visual-carousel {
    margin-top: 0;
  }
  .case-visual-carousel__slide {
    aspect-ratio: 610/370;
  }
  .case-visual-carousel__caption {
    left: clamp(28px, 6vw, 42px);
    bottom: clamp(1.5rem, 5vw, 2.4rem);
    line-height: 1.8;
  }
  .case-visual-carousel__nav {
    position: relative;
    left: auto;
    bottom: auto;
    gap: clamp(1.5rem, 7vw, 3rem);
    padding: clamp(12px, -6.17px + 4.66vw, 40px) 0;
    background-color: #ffffff;
    transform: none;
  }
  .case-visual-carousel__arrow {
    color: #918066;
  }
  .case-visual-carousel__arrow i {
    width: clamp(25px, 8.78px + 4.16vw, 50px);
    height: clamp(25px, 8.78px + 4.16vw, 50px);
    border-color: rgba(145, 128, 102, 0.32);
  }
  .case-materials {
    padding-block: clamp(3.5rem, 12vw, 5.5rem);
  }
  .case-material {
    display: flex;
    flex-direction: column;
  }
  .case-material + .case-material {
    margin-top: clamp(3rem, 10vw, 5rem);
  }
  .case-material__image::after {
    display: none;
  }
  .case-material__content {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 2em clamp(32px, 7vw, 52px) 0;
    color: rgba(32, 32, 32, 0.72);
  }
  .case-material__content .article-subtitle {
    margin-bottom: 0.5em;
  }
  .case-location {
    padding: clamp(5rem, 15vw, 8rem) 0 clamp(4rem, 12vw, 6rem);
  }
  .case-location .container-lg {
    padding-inline: clamp(30px, 7vw, 52px);
  }
  .case-location__back {
    margin-top: clamp(2.5rem, 9vw, 4rem);
  }
}
.repair-page {
  padding-top: 3vw;
  padding-bottom: clamp(5rem, 8vw, 9rem);
}

@media (min-width: 992px) {
  .repair-service .container-lg {
    max-width: clamp(755px, 1.38px + 75.97vw, 1460px);
  }
}

.repair-service__wrap {
  padding-top: clamp(4.5rem, 5vw, 6rem);
}

.repair-service__title {
  width: 8vw;
  margin-left: 6em;
  margin-bottom: -13em;
  z-index: 10;
  gap: 10px;
}

.repair-service__tagline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  width: min(100%, 1000px);
  margin: 0 auto clamp(1.4rem, 2vw, 2.2rem);
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(12px, 0.98vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.repair-service__tagline span {
  display: block;
  width: clamp(18px, 1.4vw, 28px);
  height: 1px;
  background-color: rgba(145, 128, 102, 0.4);
}

.repair-service__panel {
  margin-inline: auto;
  padding: clamp(5.5rem, 6vw, 7.5rem) clamp(4rem, 6vw, 7.2rem) clamp(5rem, 6vw, 6.8rem);
  border-bottom: 8px solid #918066;
  background-color: rgba(244, 243, 241, 0.92);
}
.repair-service__panel h2 {
  margin-bottom: clamp(2.8rem, 4vw, 4.5rem);
  color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-align: center;
}

.repair-form {
  width: min(100%, 860px);
  margin-inline: auto;
}

.repair-form__field {
  display: flex;
  align-items: center;
  min-height: clamp(56px, 4.2vw, 74px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.24);
}
.repair-form__field label {
  flex: 0 0 auto;
  margin: 0;
  color: #202020;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.repair-form__field label::after {
  content: "|";
  margin-inline: 0.85em 0.6em;
  color: rgba(51, 51, 51, 0.8);
}
.repair-form__field .form-control,
.repair-form__field .form-select {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #202020;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: inherit;
  letter-spacing: 0.08em;
  box-shadow: none;
}
.repair-form__field .form-control:focus,
.repair-form__field .form-select:focus {
  box-shadow: none;
}
.repair-form__field .form-select {
  color: rgba(51, 51, 51, 0.32);
  background-image: none;
}

.repair-form__field--textarea {
  align-items: flex-start;
  padding-top: clamp(1.5rem, 1.8vw, 2rem);
}
.repair-form__field--textarea textarea {
  min-height: clamp(150px, 10vw, 200px);
  resize: vertical;
}

.repair-form__captcha {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(100%, 300px);
  min-height: 78px;
  margin-top: clamp(2rem, 3vw, 3.5rem);
  padding: 0.8rem 1rem;
  border: 1px solid rgba(51, 51, 51, 0.14);
  background-color: #ffffff;
  color: #202020;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.repair-form__checkbox {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(51, 51, 51, 0.65);
}

.repair-form__captcha-brand {
  margin-left: auto;
  color: #555555;
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: center;
}
.repair-form__captcha-brand::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 0.25rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #4e8df6, #8ab4f8);
}
.repair-form__captcha-brand small {
  font-size: 0.6rem;
}

.repair-form__submit {
  min-width: clamp(160px, 10vw, 210px);
  margin-top: clamp(3.2rem, 4vw, 4.8rem);
  padding: 0.85rem 2.5rem;
  border: 0;
  border-radius: 0;
  background-color: #918066;
  color: #ffffff;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: inherit;
  letter-spacing: 0.14em;
}
.repair-form__submit:hover, .repair-form__submit:focus {
  background-color: #756851;
  color: #ffffff;
}

@media (max-width: 991px) {
  .repair-page {
    padding-top: clamp(5.5rem, 17vw, 8rem);
    padding-bottom: 12vw;
  }
  .repair-service .container-lg {
    padding-inline: clamp(40px, 6.5vw, 58px);
  }
  .repair-service__wrap {
    padding-top: 0;
  }
  .repair-service__title {
    width: 20vw;
    margin-left: 3em;
    margin-bottom: -7em;
  }
  .repair-service__tagline {
    justify-content: flex-end;
    margin-bottom: 0.9rem;
    font-size: clamp(13px, 3vw, 18px);
    white-space: nowrap;
  }
  .repair-service__panel {
    padding: clamp(6.5rem, 18vw, 8.5rem) clamp(32px, 6vw, 52px) clamp(4.5rem, 12vw, 6rem);
    border-bottom-width: 6px;
  }
  .repair-service__panel h2 {
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
    font-size: clamp(14px, 7.51px + 1.66vw, 24px);
  }
  .repair-form__field {
    min-height: clamp(58px, 11vw, 72px);
  }
  .repair-form__field--textarea textarea {
    min-height: clamp(150px, 32vw, 220px);
  }
  .repair-form__captcha {
    margin-inline: auto;
  }
}
@media (max-width: 420px) {
  .repair-service .container-lg {
    padding-inline: 24px;
  }
  .repair-form__field label {
    letter-spacing: 0.08em;
  }
  .repair-form__field label::after {
    margin-inline: 0.45em 0.4em;
  }
}
.progress-page {
  padding-top: 6vw;
  padding-bottom: 4vw;
}
@media (min-width: 992px) {
  .progress-page .container-lg {
    max-width: clamp(755px, 1.38px + 75.97vw, 1460px);
  }
}

.progress-hero__title {
  padding-block: 2em;
  width: fit-content;
  padding-right: 4em;
}
.progress-hero__title .unit-title__en {
  text-align: left;
  margin-bottom: 0.5em;
}
.progress-hero__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300%;
  height: 100%;
  background-color: rgba(225, 221, 214, 0.769);
}

.progress-hero__copy {
  width: min(100%, 650px);
  margin-top: clamp(32px, -2.21px + 3.45vw, 64px);
}
.progress-hero__copy h2 {
  margin: 0 0 clamp(1.5rem, 2vw, 2.3rem);
  color: #333333;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.progress-hero__copy p {
  margin: 0;
  color: rgba(51, 51, 51, 0.78);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.06em;
  line-height: 2.05;
}
@media (min-width: 992px) {
  .progress-hero__copy p {
    white-space: nowrap;
  }
}

.progress-hero__en {
  margin: clamp(3rem, 4vw, 5rem) 0 0;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(12px, 1.05vw, 20px);
  letter-spacing: 0.06em;
  text-align: right;
}

.progress-hero__visual {
  height: 100%;
  margin-top: -4em;
}

.progress-hero__photo {
  position: absolute;
  overflow: hidden;
}
.progress-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.progress-hero__photo--top {
  top: -10%;
  right: 18%;
  width: 15.8vw;
  aspect-ratio: 0.78;
}

.progress-hero__photo--middle {
  top: 50%;
  right: 42%;
  width: min(54%, 360px);
  aspect-ratio: 1.2;
}

.progress-hero__photo--bottom {
  top: 62%;
  right: 0%;
  width: min(47%, 300px);
  aspect-ratio: 1;
}

.progress-archive__divider {
  height: 1px;
  background-color: rgba(51, 51, 51, 0.16);
  margin-block: clamp(56px, -12.41px + 6.9vw, 120px);
}

.progress-card a {
  display: block;
  color: #333333;
  text-align: center;
  text-decoration: none;
}
.progress-card p {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 4;
}

.progress-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}
.progress-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .progress-archive {
    padding-inline: 6vw;
  }
  .progress-page {
    padding-top: 15vw;
  }
  .progress-hero__title {
    padding-block: 1em;
  }
  .progress-hero__visual {
    aspect-ratio: 1/1;
    width: 100%;
    margin-top: 0;
  }
  .progress-hero__photo--top {
    top: 9%;
    right: 13%;
    width: 37.8vw;
  }
  .progress-hero__photo--bottom {
    top: 63%;
    right: -3%;
    width: 34vw;
  }
  .progress-hero__photo--middle {
    top: 54%;
    right: 37%;
  }
  .progress-hero__copy {
    width: 100%;
    margin-top: 3em;
  }
}
.progress-detail-page {
  padding-top: 7.5vw;
  padding-bottom: clamp(5rem, 8vw, 9rem);
}
@media (min-width: 992px) {
  .progress-detail-page .container-lg {
    max-width: clamp(755px, 1.38px + 75.97vw, 1460px);
  }
}

.progress-detail {
  overflow: hidden;
}

.progress-detail__header {
  display: flex;
  justify-content: center;
  min-height: 20vw;
}

.progress-detail__slogan {
  position: absolute;
  top: 18vw;
  left: 105%;
  margin: 0;
  color: rgba(51, 51, 51, 0.62);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(14px, 1vw, 19px);
  letter-spacing: 0.2em;
  line-height: 1.9;
  writing-mode: vertical-rl;
}
.progress-detail__slogan::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: clamp(70px, 6vw, 110px);
  margin-inline: 0.8rem;
  background-color: rgba(145, 128, 102, 0.35);
}

.progress-detail__en {
  position: absolute;
  right: 105%;
  bottom: 0;
  margin: 0;
  color: #918066;
  font-family: "Cormorant", "Times New Roman", serif;
  font-size: clamp(11px, 0.9vw, 17px);
  letter-spacing: 0.06em;
  line-height: 1;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.progress-detail__en::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: clamp(52px, 5vw, 90px);
  margin: 0 auto 1rem;
  background-color: rgba(145, 128, 102, 0.35);
}

.progress-month + .progress-month {
  margin-top: 4em;
}
.progress-month__title {
  margin: 0;
  margin-bottom: 2em;
  padding-bottom: 0.8em;
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
  color: #918066;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(10.5px, -0.72px + 1.13vw, 24px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.progress-month__title span {
  font-family: "Times New Roman", serif;
  font-size: clamp(18px, -1.24px + 1.94vw, 36px);
  letter-spacing: 0.08em;
}

.progress-photo-card a {
  display: block;
  color: #333333;
  text-decoration: none;
}
.progress-photo-card p {
  margin: clamp(1rem, 1.2vw, 1.4rem) 0 0.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
.progress-photo-card time {
  color: rgba(51, 51, 51, 0.48);
  font-family: "Times New Roman", serif;
  font-size: clamp(13px, 0.92vw, 17px);
  letter-spacing: 0.06em;
}

.progress-photo-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}
.progress-photo-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
a:hover .progress-photo-card__image img, a:focus .progress-photo-card__image img {
  opacity: 0.86;
  transform: scale(1.03);
}

.progress-detail__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(4rem, 6vw, 7rem);
}

.progress-detail__back {
  margin-top: 0;
}

@media (max-width: 991px) {
  .progress-detail-page {
    padding-top: 20vw;
    padding-bottom: 0;
  }
  .progress-detail__slogan,
  .progress-detail__en {
    display: none;
  }
  .progress-detail__months {
    padding-inline: clamp(36px, 6.5vw, 56px);
    padding-top: 12vw;
  }
  .progress-month + .progress-month {
    margin-top: clamp(4rem, 12vw, 6rem);
  }
  .progress-month__title span {
    font-size: clamp(18px, 14.11px + 1vw, 24px);
  }
  .progress-month__list {
    --bs-gutter-x: clamp(1.2rem, 4vw, 2rem);
    --bs-gutter-y: clamp(2.5rem, 8vw, 4rem);
  }
  .progress-photo-card h3 {
    font-size: clamp(15px, 3.2vw, 19px);
  }
  .progress-photo-card time {
    font-size: clamp(13px, 2.8vw, 16px);
  }
  .progress-detail__footer {
    margin-top: clamp(3.5rem, 12vw, 5rem);
    margin-bottom: clamp(2.5rem, 9vw, 4rem);
  }
}
body.is-draft-grid::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99999999;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.3333333333% - 1px), rgba(255, 0, 0, 0.45) calc(8.3333333333% - 1px), rgba(255, 0, 0, 0.45) 8.3333333333%);
}

body.is-draft-grid .container > .row {
  position: relative;
}
body.is-draft-grid .container > .row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  border: 1px solid rgb(0, 255, 51);
  background-size: 8.3333333333% 100%;
  background-image: linear-gradient(to right, rgba(123, 255, 0, 0.1) 0, rgba(123, 255, 0, 0.1) calc(100% - 1px), rgb(0, 255, 51) calc(100% - 1px), rgb(0, 255, 51) 100%);
}

* {
  position: relative;
  box-sizing: border-box;
  /*border: 1px solid red;*/
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.66;
  letter-spacing: 0.04em;
  color: #202020;
  font-size: clamp(9.4px, -1.37px + 2.76vw, 26px);
}
@media (min-width: 992px) {
  body {
    font-size: clamp(9.2px, -0.21px + 0.95vw, 18px);
  }
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/*文字樣式*/
a:focus,
button:focus {
  outline: none !important;
}

a:hover {
  color: #918066;
}

/*# sourceMappingURL=all.css.map */
