@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cormorant+Upright:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@500;600;700&family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  margin: 0;
  padding: 0;
}

picture {
  display: flex;
}

.d-none {
  display: none !important;
}

.loading-screen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999999;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media all and (max-width: 500px) {
  .loading-screen {
    height: calc(var(--loadingvh, 1vh) * 99);
  }
}
.loading-screen .loading-text {
  display: flex;
  justify-content: center;
  font-family: "Noto Serif TC";
  align-items: center;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1vw;
  font-style: italic;
  padding-left: 0vw;
  color: #555757;
  margin-top: 0.5vw;
}
@media all and (max-width: 1440px) {
  .loading-screen .loading-text {
    font-size: 1.1vw;
  }
}
@media all and (max-width: 1024px) {
  .loading-screen .loading-text {
    font-size: 3.2vw;
  }
}
@media all and (max-width: 500px) {
  .loading-screen .loading-text {
    font-size: 5vw;
    margin-bottom: 15vw;
  }
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 200;
  background-color: #172c42;
  transition: background-color 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  height: 4vw;
}
@media all and (max-width: 1440px) {
  header {
    height: 4.7vw;
  }
}
@media all and (max-width: 1024px) {
  header {
    height: auto;
    padding-top: 3vw;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-bottom: 3vw;
  }
}
header .header-box {
  display: flex;
  width: 80%;
  padding-top: 1vw;
  padding-bottom: 1vw;
  justify-content: space-between;
}
@media all and (max-width: 1440px) {
  header .header-box {
    width: 85%;
  }
}
@media all and (max-width: 1024px) {
  header .header-box {
    width: 100%;
  }
}
header .header-box .logo-box {
  display: flex;
  flex-direction: column;
  width: 8vw;
  align-items: center;
  align-self: center;
}
@media all and (max-width: 1440px) {
  header .header-box .logo-box {
    width: 12vw;
  }
}
@media all and (max-width: 1024px) {
  header .header-box .logo-box {
    width: 35vw;
  }
}
header .header-box .logo-box img {
  width: 100%;
}
header .header-box .link-box {
  display: flex;
  width: 70%;
  justify-content: right;
}
@media all and (max-width: 1024px) {
  header .header-box .link-box {
    display: none;
  }
}
header .header-box .link-box a {
  display: flex;
  color: #fac88c;
  margin-left: 3vw;
  font-family: "Noto Serif TC";
  font-weight: 500;
  font-size: 0.95vw;
  letter-spacing: 0.35em;
  position: relative;
  align-self: center;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1440px) {
  header .header-box .link-box a {
    font-size: 1.25vw;
  }
}
header .header-box .link-box a::after {
  content: "";
  position: absolute;
  left: 0%;
  right: 50%;
  bottom: -25%;
  height: 1px;
  width: 0%;
  background-color: rgb(255, 255, 255);
  transition: 0.3s ease-in-out;
}
header .header-box .link-box a:hover {
  color: rgb(255, 255, 255);
}
header .header-box .link-box a:hover::after {
  left: 1%;
  right: 0%;
  width: 96%;
}
header .header-box .link-box .active {
  color: rgb(255, 255, 255);
}
header .header-box .link-box .active::after {
  content: "";
  position: absolute;
  bottom: -25%;
  height: 1px;
  left: 1%;
  right: 0%;
  width: 96%;
  background-color: rgb(255, 255, 255);
}
header .header-box .mobile-menu {
  display: none;
}
@media all and (max-width: 1024px) {
  header .header-box .mobile-menu {
    display: flex;
    flex-direction: column;
    width: 9vw;
    justify-content: center;
  }
}
header .header-box .mobile-menu img {
  width: 100%;
}
header .menu-icon {
  display: none;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .menu-icon {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 14vw;
    margin-right: -1vw;
  }
}
header .menu-icon .close-menu {
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 77% !important;
  opacity: 0;
  display: none;
}

header.transparent {
  background-color: rgba(74, 91, 109, 0.7607843137);
}

.footer {
  position: absolute;
  bottom: 0px;
  display: flex;
  z-index: 10;
  background-color: #ffffff;
  width: 100%;
  align-items: center;
  padding-bottom: 1vw;
  padding-top: 1vw;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .footer {
    padding-bottom: 3.5vw;
    padding-top: 5vw;
  }
}
.footer .footer-box {
  display: flex;
  justify-content: space-between;
  width: 60%;
  color: #383734;
  font-weight: 500;
  font-size: 0.75vw;
  align-self: center;
  font-family: "微軟正黑體";
  letter-spacing: 0.2em;
}
@media all and (max-width: 1024px) {
  .footer .footer-box {
    flex-direction: column;
    width: 100%;
    font-size: 3.2vw;
  }
}
.footer .footer-box div {
  align-self: center;
}
.footer .footer-box div a {
  color: #383734;
}
@media all and (max-width: 1024px) {
  .footer .footer-box div {
    margin-bottom: 2vw;
  }
}
.footer .footer-box div span {
  font-weight: bold;
}

.menu-box {
  max-width: 1024px;
  background-color: #f7f7f5;
  height: 0vh;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  overflow: hidden;
  display: none;
}
@media all and (max-width: 1024px) {
  .menu-box {
    display: block;
  }
}
.menu-box .menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100svh;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.menu-box .menu .item-box {
  display: flex;
  flex-direction: column;
  margin-top: -10vw;
  width: 100%;
  text-align: center;
}
.menu-box .menu .item-box .item {
  padding: 4vw 0vw;
}
.menu-box .menu .item-box .item a {
  color: #aa7e4f;
  font-family: "noto Serif TC";
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 5vw;
  padding: 4vw 6vw;
}

.index-body {
  display: flex;
  flex-direction: column;
  position: relative;
}
.index-body .card1 {
  width: 100%;
  height: 99svh;
  background-color: #f7f7f5;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .index-body .card1 {
    height: 99svh;
  }
}
.index-body .card1 .center-box {
  z-index: 10;
  position: relative;
}
.index-body .card1 .center-box .mask-box {
  display: flex;
  z-index: 10;
  width: 100vw;
  top: 0vw;
  left: 0vw;
  position: absolute;
}
@media all and (max-width: 1680px) {
  .index-body .card1 .center-box .mask-box {
    top: 8vw;
    left: 7vw;
    width: 96vw;
    scale: 1.5;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .center-box .mask-box {
    scale: 1;
    width: 101vw;
    top: -14vw;
    left: 0vw;
  }
}
@media all and (max-width: 500px) {
  .index-body .card1 .center-box .mask-box {
    top: 5vw;
    width: 107vw;
    left: -2vw;
  }
}
.index-body .card1 .center-box .mask-box img {
  width: 101vw;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}
@media all and (max-width: 1680px) {
  .index-body .card1 .center-box .mask-box img {
    width: 90vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .center-box .mask-box img {
    width: 100vw;
  }
}
@media all and (max-width: 500px) {
  .index-body .card1 .center-box .mask-box img {
    width: 104vw;
  }
}
.index-body .card1 .center-box .bg-video {
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  top: -8vw;
  right: 0px;
  bottom: 0vw;
  left: 0vw;
}
@media all and (max-width: 1680px) {
  .index-body .card1 .center-box .bg-video {
    width: 100%;
    top: 6vw;
    right: 0px;
    bottom: 0px;
    left: 0vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .center-box .bg-video {
    width: 280vw;
  }
}
.index-body .card1 .left-text1 {
  position: absolute;
  z-index: 20;
  font-family: "Jost";
  font-size: 2.2vw;
  color: #383734;
  font-weight: 300;
  letter-spacing: 0.03em;
  top: 20vw;
  left: 43vw;
}
@media all and (max-width: 1024px) {
  .index-body .card1 .left-text1 {
    font-size: 5.2vw;
    left: 38vw;
    top: 68vw;
  }
}
.index-body .card1 .left-text1 .split-content-clip-text div div:first-child {
  font-weight: 500; /* 設定粗體 */
}
.index-body .card1 .left-text2 {
  position: absolute;
  z-index: 20;
  font-family: "Jost";
  color: #383734;
  bottom: 7vw;
  left: 10.5vw;
}
@media all and (max-width: 1680px) {
  .index-body .card1 .left-text2 {
    left: 8vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .left-text2 {
    bottom: 5vw;
    left: 6vw;
  }
}
.index-body .card1 .left-text2 .name {
  font-size: 1.25vw;
  font-weight: 500;
  margin-bottom: 0.8vw;
}
@media all and (max-width: 1680px) {
  .index-body .card1 .left-text2 .name {
    font-size: 1.6vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .left-text2 .name {
    font-size: 5.8vw;
    margin-bottom: 1.5vw;
  }
}
.index-body .card1 .left-text2 .slogan {
  font-size: 1.15vw;
  width: 75%;
  font-weight: 300;
  line-height: 1.7;
}
@media all and (max-width: 1680px) {
  .index-body .card1 .left-text2 .slogan {
    font-size: 1.5vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .left-text2 .slogan {
    font-size: 4.1vw;
  }
}
.index-body .card1 .right-text {
  position: absolute;
  z-index: 20;
  font-family: "Noto Serif TC";
  color: #555757;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.2vw;
  top: 16vw;
  right: 18vw;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media all and (max-width: 1920px) {
  .index-body .card1 .right-text {
    font-size: 1.3vw;
  }
}
@media all and (max-width: 1680px) {
  .index-body .card1 .right-text {
    top: 17vw;
    right: 12vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card1 .right-text {
    font-size: 3.9vw;
    top: 32vw;
    right: 7vw;
  }
}
.index-body .card1 .right-text .first {
  border-right: 1px solid #d8d8d8;
  padding-left: 1vw;
  padding-right: 1vw;
}
@media all and (max-width: 1024px) {
  .index-body .card1 .right-text .first {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
.index-body .card1 .right-text .two {
  border-right: 1px solid #d8d8d8;
  padding-right: 1vw;
  padding-left: 1vw;
}
@media all and (max-width: 1024px) {
  .index-body .card1 .right-text .two {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
.index-body .card2-card3 {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.index-body .card2-card3 .card2 {
  width: 100%;
  background-image: url(../images/index/c2_bg.webp);
  background-size: cover;
  background-position: center;
  justify-content: space-between;
  display: flex;
  position: relative;
  padding: 8vw 10vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 {
    flex-direction: column;
    padding: 10vw 5vw;
  }
}
.index-body .card2-card3 .card2 .left-box {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  color: #fff;
  margin-bottom: 16vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box {
    flex-direction: column;
    margin-bottom: 8vw;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box {
  font-family: "Noto Serif TC";
  font-weight: bold;
  font-size: 1.7vw;
  letter-spacing: 0.1em;
  display: flex;
  margin-left: 4vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .title-box {
    font-size: 6.5vw;
    margin-left: 0vw;
    justify-content: center;
    font-weight: 500;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box .left-line-box {
  width: 0.6vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .title-box .left-line-box {
    width: 2.3vw;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box .left-line-box img {
  width: 100%;
}
.index-body .card2-card3 .card2 .left-box .title-box .title {
  display: flex;
  flex-direction: column;
  margin-left: 1vw;
  margin-right: 1vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .title-box .title {
    margin-left: 5vw;
    margin-right: 2.5vw;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box .title .top,
.index-body .card2-card3 .card2 .left-box .title-box .title .bottom {
  display: flex;
}
.index-body .card2-card3 .card2 .left-box .title-box .title .top .text,
.index-body .card2-card3 .card2 .left-box .title-box .title .bottom .text {
  letter-spacing: 0.2em;
}
.index-body .card2-card3 .card2 .left-box .title-box .title .top .img,
.index-body .card2-card3 .card2 .left-box .title-box .title .bottom .img {
  display: flex;
  align-self: center;
  flex-direction: column;
}
.index-body .card2-card3 .card2 .left-box .title-box .title .top .img img,
.index-body .card2-card3 .card2 .left-box .title-box .title .bottom .img img {
  width: 100%;
}
.index-body .card2-card3 .card2 .left-box .title-box .title .top .img {
  width: 2.3vw;
  margin-left: 0.5vw;
  margin-top: -1vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .title-box .title .top .img {
    width: 10vw;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box .title .bottom .img {
  width: 2.3vw;
  margin-right: 0.5vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .title-box .title .bottom .img {
    width: 11.7vw;
    margin-right: 2.5vw;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box .right-line-box {
  width: 0.57vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .title-box .right-line-box {
    width: 2.25vw;
  }
}
.index-body .card2-card3 .card2 .left-box .title-box .right-line-box img {
  width: 100%;
}
.index-body .card2-card3 .card2 .left-box .content {
  font-family: "微軟正黑體";
  font-size: 0.95vw;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  line-height: 1.8;
  margin-left: 1vw;
  text-orientation: upright;
  margin-top: 3.2vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .content {
    margin-left: 0vw;
    font-size: 3.9vw;
    writing-mode: initial;
    text-align: center;
    margin-top: 6.5vw;
  }
}
.index-body .card2-card3 .card2 .left-box .content div {
  color: #f9d28c;
  font-weight: 600;
  font-size: 1.2vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.15em;
  margin-left: 1.5vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .content div {
    margin-left: 0vw;
    font-size: 4.6vw;
    margin-bottom: 6vw;
  }
}
.index-body .card2-card3 .card2 .left-box .more-a {
  color: #f9d28c;
  font-family: "Cormorant Garamond";
  font-size: 1.7vw;
  letter-spacing: 0.1em;
  font-style: italic;
  writing-mode: sideways-rl;
  position: absolute;
  top: 16%;
  left: -4%;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .more-a {
    writing-mode: initial;
    text-align: center;
    font-size: 6vw;
    margin-top: 5vw;
    margin-right: 10vw;
    transition: none;
    position: relative;
    top: 0;
    left: 0;
  }
}
.index-body .card2-card3 .card2 .left-box .more-a::after {
  content: "";
  position: absolute;
  background-color: #f9d28c;
  width: 1px;
  height: 70%;
  left: 43%;
  top: 110%;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .more-a::after {
    width: 12vw;
    height: 1px;
    left: 48vw;
    top: 4.3vw;
  }
}
.index-body .card2-card3 .card2 .left-box .more-a:hover {
  color: #ffffff;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .more-a:hover {
    color: #fac88c;
  }
}
.index-body .card2-card3 .card2 .left-box .more-a:hover::after {
  background-color: #fff;
  height: 80%;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .left-box .more-a:hover::after {
    height: 14%;
    background-color: #fac88c;
  }
}
.index-body .card2-card3 .card2 .right-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 3vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .right-box {
    margin-right: 0vw;
  }
}
.index-body .card2-card3 .card2 .right-box .img-box {
  position: relative;
  width: 25vw;
  height: 16.5vw;
  overflow: hidden;
  margin-left: 4vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .right-box .img-box {
    margin-left: 0vw;
    width: 100%;
    align-self: center;
    height: auto;
  }
}
.index-body .card2-card3 .card2 .right-box .img-box img {
  width: 28vw;
  margin-left: -10%;
  margin-top: -4%;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .right-box .img-box img {
    width: 100%;
    margin-left: 0%;
    margin-top: 0%;
  }
}
.index-body .card2-card3 .card2 .right-box .img-box2 {
  position: relative;
  width: 11vw;
  height: 8vw;
  overflow: hidden;
  z-index: 3;
  margin-top: -3.5vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .right-box .img-box2 {
    display: none;
  }
}
.index-body .card2-card3 .card2 .right-box .img-box2 img {
  width: 17vw;
  margin-left: -2%;
  margin-top: -5%;
}
.index-body .card2-card3 .card2 .img-box3 {
  position: absolute;
  left: 23vw;
  bottom: 7vw;
  width: 19vw;
  height: 14vw;
  overflow: hidden;
  z-index: 3;
  margin-top: -6vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .img-box3 {
    margin-top: 4vw;
    position: initial;
    left: initial;
    align-self: center;
    width: 100%;
    bottom: initial;
    margin-left: 0vw;
    height: auto;
  }
}
.index-body .card2-card3 .card2 .img-box3 img {
  width: 22vw;
  margin-left: -13%;
  margin-top: -1%;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2 .img-box3 img {
    width: 100%;
    margin-left: 0%;
    margin-top: 0%;
  }
}
.index-body .card2-card3 .card2-left-box {
  position: absolute;
  image-rendering: -webkit-optimize-contrast;
  background-position: left top;
  background-repeat: no-repeat;
  width: 18vw;
  height: 27em;
  bottom: 36vw;
  right: 20vw;
  background-size: contain;
  z-index: 10;
}
@media all and (max-width: 1920px) {
  .index-body .card2-card3 .card2-left-box {
    width: 18vw;
    height: 25em;
    bottom: 33vw;
  }
}
@media all and (max-width: 1440px) {
  .index-body .card2-card3 .card2-left-box {
    width: 19vw;
    height: 16em;
    bottom: 36vw;
    right: 20vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card2-left-box {
    display: none;
  }
}
.index-body .card2-card3 .card2-left-box .card2-left {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
}
.index-body .card2-card3 .delay-1 {
  animation-delay: 0.1s;
}
.index-body .card2-card3 .animated.infinite {
  animation-iteration-count: infinite;
}
.index-body .card2-card3 .animated.hinge {
  animation-duration: 6s;
}
.index-body .card2-card3 .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.index-body .card2-card3 .card2-left-box div:nth-child(1) {
  background-image: url(../images/index/middle_leaf/leaf_1.png);
  animation-delay: 0.1s;
}
.index-body .card2-card3 .card2-left-box div:nth-child(2) {
  background-image: url(../images/index/middle_leaf/leaf_2.png);
  animation-delay: 0.3s;
}
.index-body .card2-card3 .card2-left-box div:nth-child(3) {
  animation-delay: 0.65s;
  background-image: url(../images/index/middle_leaf/leaf_3.png);
}
@keyframes moveRightUP {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  20% {
    opacity: 1;
    transform: translate3d(-5px, -5px, 0);
  }
  80% {
    opacity: 0.8;
    transform: translate3d(-35px, -35px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(-40px, -40px, 0);
  }
}
.index-body .card2-card3 .moveRightUP {
  animation-name: moveRightUP;
}
.index-body .card2-card3 .card3 {
  width: 100%;
  display: flex;
  position: relative;
  background-color: #4a5b6d;
  padding-top: 8vw;
  padding: 8vw 10vw;
  padding-bottom: 12vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 {
    flex-direction: column-reverse;
    padding: 10vw 5vw;
    padding-bottom: 50vw;
  }
}
.index-body .card2-card3 .card3 .c3-left2 {
  position: absolute;
  bottom: 13vw;
  right: 16vw;
  width: 5vw;
}
.index-body .card2-card3 .card3 .left-box {
  width: 60%;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .left-box {
    width: 100%;
    margin-top: 8vw;
  }
}
.index-body .card2-card3 .card3 .left-box .swiper-box {
  width: 100%;
  display: flex;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .left-box .swiper-box {
    position: relative;
  }
}
.index-body .card2-card3 .card3 .left-box .swiper-box img {
  width: 100%;
}
.index-body .card2-card3 .card3 .left-box .swiper-box .swiper-pagination {
  align-self: center;
  display: flex;
  position: relative;
  flex-direction: column;
  margin-left: 1vw;
  right: 0px;
  width: initial;
  bottom: initial;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .left-box .swiper-box .swiper-pagination {
    position: absolute;
    bottom: -5vw;
    flex-direction: row;
    margin-left: 0vw;
    justify-content: center;
  }
}
.index-body .card2-card3 .card3 .left-box .swiper-box .swiper-pagination .swiper-pagination-bullet {
  background: #383734;
  opacity: 1;
  align-items: center;
  align-self: center;
  margin-bottom: 0.5vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .left-box .swiper-box .swiper-pagination .swiper-pagination-bullet {
    background: #172c42;
    margin-bottom: 0vw;
    width: 2vw;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px);
    height: 2vw;
  }
}
.index-body .card2-card3 .card3 .left-box .swiper-box .swiper-pagination .swiper-pagination-bullet-active {
  background: #f9d28c;
  justify-content: center;
  width: 10px;
  height: 10px;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .left-box .swiper-box .swiper-pagination .swiper-pagination-bullet-active {
    width: 2.3vw;
    height: 2.3vw;
  }
}
.index-body .card2-card3 .card3 .left-box .swiper-box .swiper {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .left-box .swiper-box .swiper {
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
}
.index-body .card2-card3 .card3 .right-box {
  color: white;
  width: 40%;
  display: flex;
  flex-direction: row-reverse;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box {
    width: 100%;
    justify-content: center;
    flex-direction: row;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box {
  font-family: "Noto Serif TC";
  font-weight: bold;
  font-size: 1.7vw;
  letter-spacing: 0.1em;
  display: flex;
  margin-left: 4vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box {
    font-size: 6.5vw;
    margin-left: 0vw;
    font-weight: 500;
    justify-content: center;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .left-line-box {
  width: 0.6vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .left-line-box {
    width: 2.3vw;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .left-line-box img {
  width: 100%;
  height: 4.8vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .left-line-box img {
    height: auto;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .title {
  display: flex;
  flex-direction: column;
  margin-left: 1vw;
  margin-right: 1vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .title {
    margin-left: 5vw;
    margin-right: 2.5vw;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .title .top,
.index-body .card2-card3 .card3 .right-box .title-box .title .bottom {
  display: flex;
}
.index-body .card2-card3 .card3 .right-box .title-box .title .top .text,
.index-body .card2-card3 .card3 .right-box .title-box .title .bottom .text {
  letter-spacing: 0.2em;
}
.index-body .card2-card3 .card3 .right-box .title-box .title .top .img,
.index-body .card2-card3 .card3 .right-box .title-box .title .bottom .img {
  display: flex;
  align-self: center;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .title .top .img,
  .index-body .card2-card3 .card3 .right-box .title-box .title .bottom .img {
    width: 10vw;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .title .top .img img,
.index-body .card2-card3 .card3 .right-box .title-box .title .bottom .img img {
  width: 100%;
}
.index-body .card2-card3 .card3 .right-box .title-box .title .top .img {
  width: 2.8vw;
  margin-left: 0.5vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .title .top .img {
    width: 11.7vw;
    margin-right: 2.5vw;
    margin-top: 1vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .title .bottom {
    justify-content: right;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .title .bottom .img {
  width: 1.7vw;
  margin-left: 1vw;
  margin-right: 1vw;
  margin-bottom: -1vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .title .bottom .img {
    justify-content: right;
    width: 7.7vw;
    margin-right: 4vw;
    margin-left: 0vw;
    margin-bottom: -4vw;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .right-line-box {
  width: 0.57vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .right-line-box {
    width: 2.3vw;
  }
}
.index-body .card2-card3 .card3 .right-box .title-box .right-line-box img {
  width: 100%;
  height: 4.8vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .title-box .right-line-box img {
    height: auto;
  }
}
.index-body .card2-card3 .card3 .right-box .content {
  font-family: "微軟正黑體";
  font-size: 0.95vw;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  line-height: 1.8;
  text-orientation: upright;
  position: relative;
  width: 27%;
  margin-left: 1vw;
  margin-top: 3.2vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .content {
    display: none;
  }
}
.index-body .card2-card3 .card3 .right-box .content .slide_txt {
  font-family: "微軟正黑體";
  font-size: 0.95vw;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  line-height: 1.8;
  text-orientation: upright;
  font-weight: 500;
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: 15;
  opacity: 0;
}
.index-body .card2-card3 .card3 .right-box .content .slide_txt.show {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
  transition-delay: 0.3s;
}
.index-body .card2-card3 .card3 .right-box .content div {
  font-weight: 600;
  font-size: 1.2vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.15em;
  margin-left: 1.5vw;
}
.index-body .card2-card3 .card3 .right-box .more-a {
  color: #f9d28c;
  font-family: "Cormorant Garamond";
  font-size: 1.7vw;
  letter-spacing: 0.1em;
  font-style: italic;
  writing-mode: sideways-rl;
  position: absolute;
  top: 0%;
  left: -40%;
  z-index: 15;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .more-a {
    display: none;
  }
}
.index-body .card2-card3 .card3 .right-box .more-a::after {
  content: "";
  position: absolute;
  background-color: #f9d28c;
  width: 1px;
  height: 70%;
  left: 43%;
  top: 110%;
  transition: 0.3s ease-in-out;
}
.index-body .card2-card3 .card3 .right-box .more-a:hover {
  color: #ffffff;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .more-a:hover {
    color: #fac88c;
  }
}
.index-body .card2-card3 .card3 .right-box .more-a:hover::after {
  background-color: #fff;
  height: 80%;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .right-box .more-a:hover::after {
    height: 9%;
    background-color: #fac88c;
  }
}
.index-body .card2-card3 .card3 .bottom-img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .bottom-img {
    bottom: 33vw;
    width: 98vw;
  }
}
.index-body .card2-card3 .card3 .mobile-leaf1 {
  display: none;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .mobile-leaf1 {
    display: block;
    width: 17vw;
    top: -6vw;
    left: 6vw;
    position: absolute;
  }
}
.index-body .card2-card3 .card3 .mobile-leaf2 {
  display: none;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .mobile-leaf2 {
    display: block;
    width: 15vw;
    top: 91vw;
    right: 6vw;
    position: absolute;
  }
}
.index-body .card2-card3 .card3 .mobile-leaf3 {
  display: none;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .mobile-leaf3 {
    display: flex;
    width: 38vw;
    align-self: center;
    margin-top: -7vw;
  }
}
.index-body .card2-card3 .card3 .content-mobile {
  display: none;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .content-mobile {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-top: 12vw;
    position: relative;
    height: 30vw;
  }
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .content-mobile .slide_txt {
    position: absolute;
    top: 0%;
    left: 0%;
    opacity: 0;
  }
  .index-body .card2-card3 .card3 .content-mobile .slide_txt.show {
    transform: translateY(0%);
    opacity: 1;
    transition-delay: 0.3s;
  }
}
.index-body .card2-card3 .card3 .content-mobile .title {
  font-weight: 600;
  font-family: "Noto Serif TC";
  letter-spacing: 0.15em;
  font-size: 4.6vw;
  margin-bottom: 5vw;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .content-mobile .content {
    font-size: 3.9vw;
    font-family: "微軟正黑體";
    letter-spacing: 0.2em;
    line-height: 1.8;
    text-align: justify;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 2;
  }
}
.index-body .card2-card3 .card3 .more-a-mobile {
  display: none;
}
@media all and (max-width: 1024px) {
  .index-body .card2-card3 .card3 .more-a-mobile {
    display: flex;
    position: absolute;
    margin-top: 3.2vw;
    letter-spacing: 0.1em;
    font-style: italic;
    color: #f9d28c;
    font-family: "Cormorant Garamond";
    writing-mode: initial;
    text-align: center;
    font-size: 6vw;
    margin-right: 10vw;
    bottom: -25%;
  }
}
.index-body .card2-card3 .card3 .more-a-mobile::after {
  content: "";
  position: absolute;
  background-color: #f9d28c;
  width: 12vw;
  height: 1px;
  left: 15vw;
  top: 4.3vw;
}

.about-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
  background-color: #172c42;
}
@media all and (max-width: 500px) {
  .about-body .banner-box {
    margin-top: 15vw;
  }
}
.about-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.about-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
.about-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.7vw;
}
@media all and (max-width: 1024px) {
  .about-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .about-body .banner-box .title-box .zh {
    padding-left: 1.7vw;
  }
}
.about-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .about-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .about-body .banner-box .title-box .en {
    margin-left: -1vw;
  }
}
.about-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 5.7vw;
  bottom: 0vw;
  width: 2.5vw;
}
@media all and (max-width: 1024px) {
  .about-body .banner-box .title-box .title-icon {
    left: 27vw;
    bottom: 5vw;
    width: 10vw;
  }
}
.about-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
  padding-top: 3vw;
  padding-bottom: 3vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container {
    padding-top: 7vw;
  }
}
.about-body .page-container .nav-box {
  display: flex;
  justify-content: center;
}
.about-body .page-container .nav-box a {
  color: white;
  font-family: "Noto Serif TC";
  font-size: 1vw;
  letter-spacing: 0.15em;
  position: relative;
  align-items: center;
  font-weight: 600;
  margin-right: 3vw;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .nav-box a {
    font-size: 4.1vw;
    margin-right: 7vw;
  }
}
.about-body .page-container .nav-box a .img-active {
  position: absolute;
  bottom: -0.5vw;
  left: 0vw;
  width: 4.5vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .nav-box a .img-active {
    width: 18vw;
    bottom: -1vw;
  }
}
.about-body .page-container .nav-box a:hover {
  color: #fac88c;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .nav-box a:hover {
    color: white;
  }
}
.about-body .page-container .nav-box a:last-child {
  margin-right: 0vw;
}
.about-body .page-container .nav-fixed {
  position: fixed;
  z-index: 30;
  width: 100%;
  opacity: 0.9;
  padding-top: 1.5vw;
  background-color: rgba(247, 247, 245, 0.7882352941);
  padding-bottom: 2vw;
}
.about-body .page-container .nav-fixed a {
  color: #383734;
}
.about-body .page-container .card1 {
  width: 100%;
  display: flex;
  padding-top: 11vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 19vw;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 {
    padding-top: 13vw;
    padding-bottom: 0vw;
  }
}
.about-body .page-container .card1 .leaf1 {
  position: absolute;
  left: 20vw;
  bottom: -8vw;
  width: 13vw;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 .leaf1 {
    display: none;
  }
}
.about-body .page-container .card1 .mobile-img {
  display: none;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 .mobile-img {
    display: flex;
    width: 88%;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    margin-top: 3vw;
  }
}
.about-body .page-container .card1 .mobile-leaf1 {
  display: none;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 .mobile-leaf1 {
    display: flex;
    width: 28%;
    margin-top: 10vw;
  }
}
.about-body .page-container .card1 .content-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.about-body .page-container .card1 .content-box .title {
  font-family: "Noto Serif TC";
  font-size: 1.2vw;
  color: #fac88c;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1.5vw;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 .content-box .title {
    font-size: 4.6vw;
    margin-bottom: 5vw;
  }
}
.about-body .page-container .card1 .content-box .content {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 .content-box .content {
    font-size: 3.9vw;
  }
}
.about-body .page-container .card1 .content-box .content div {
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card1 .content-box .content div {
    margin-bottom: 5vw;
  }
}
.about-body .page-container .card1 .left-img-item {
  position: absolute;
  left: 9vw;
  top: 10vw;
  overflow: hidden;
  width: 18vw;
  height: 14vw;
  z-index: 3;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card1 .left-img-item {
    display: none;
  }
}
.about-body .page-container .card1 .left-img-item img {
  width: 22vw;
  margin-left: -13%;
  margin-top: -1%;
}
.about-body .page-container .card1 .right-img-item {
  position: absolute;
  right: 25vw;
  top: 3.5vw;
  overflow: hidden;
  width: 9vw;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card1 .right-img-item {
    display: none;
  }
}
.about-body .page-container .card1 .right-img-item img {
  width: 100%;
}
.about-body .page-container .card1 .right-img-item2 {
  position: absolute;
  right: 0vw;
  top: 12vw;
  overflow: hidden;
  width: 13vw;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card1 .right-img-item2 {
    display: none;
  }
}
.about-body .page-container .card1 .right-img-item2 img {
  width: 100%;
}
.about-body .page-container .card1 .bottom-img-item {
  position: absolute;
  right: 38vw;
  bottom: 0vw;
  overflow: hidden;
  width: 23vw;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card1 .bottom-img-item {
    display: none;
  }
}
.about-body .page-container .card1 .bottom-img-item img {
  width: 100%;
}
.about-body .page-container .card2 {
  width: 100%;
  display: flex;
  padding-top: 11vw;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 11vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 {
    padding-top: 10vw;
    flex-direction: column;
    padding-bottom: 50vw;
  }
}
.about-body .page-container .card2 .leaf2 {
  position: absolute;
  left: 42vw;
  bottom: 4vw;
  width: 10vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .leaf2 {
    display: none;
  }
}
.about-body .page-container .card2 .left-box {
  display: flex;
  flex-direction: column;
}
.about-body .page-container .card2 .left-box .content-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .left-box .content-box {
    text-align: center;
  }
}
.about-body .page-container .card2 .left-box .content-box .title {
  font-family: "Noto Serif TC";
  font-size: 1.2vw;
  color: #fac88c;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1.5vw;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card2 .left-box .content-box .title {
    font-size: 4.6vw;
    margin-bottom: 5vw;
  }
}
.about-body .page-container .card2 .left-box .content-box .content {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card2 .left-box .content-box .content {
    font-size: 3.9vw;
  }
}
.about-body .page-container .card2 .left-box .content-box .content div {
  margin-bottom: 1vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .left-box .content-box .content div {
    margin-bottom: 5vw;
  }
}
.about-body .page-container .card2 .center-box {
  font-family: "Cormorant Garamond";
  font-size: 3.2vw;
  color: #ffffff;
  opacity: 0.2;
  margin-left: 7vw;
  margin-right: 7vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .center-box {
    font-size: 8.2vw;
    margin-left: 0vw;
    margin-right: 0vw;
  }
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .right-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.about-body .page-container .card2 .right-box .mobile-leaf2 {
  display: none;
}
@media all and (max-width: 1024px) {
  .about-body .page-container .card2 .right-box .mobile-leaf2 {
    display: flex;
    width: 28%;
    margin-top: 12vw;
  }
}
.about-body .page-container .card2 .right-box .c2-right-img-item {
  width: 24vw;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .right-box .c2-right-img-item {
    display: none;
  }
}
.about-body .page-container .card2 .right-box img {
  width: 100%;
}
.about-body .page-container .card2 .right-box .mobile-img2 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .right-box .mobile-img2 {
    display: block;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    width: 88%;
    margin-top: 8vw;
  }
}
.about-body .page-container .card2 .bg {
  position: absolute;
  bottom: 0vw;
  right: 0vw;
  width: 35vw;
}
@media screen and (max-width: 1024px) {
  .about-body .page-container .card2 .bg {
    bottom: 30vw;
    width: 96vw;
  }
}

.about-future-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about-future-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
  background-color: #f7f7f5;
}
@media all and (max-width: 500px) {
  .about-future-body .banner-box {
    margin-top: 15vw;
  }
}
.about-future-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.about-future-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-future-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
.about-future-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.7vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .about-future-body .banner-box .title-box .zh {
    padding-left: 1.7vw;
  }
}
.about-future-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .about-future-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .about-future-body .banner-box .title-box .en {
    margin-left: -1vw;
  }
}
.about-future-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 5.7vw;
  bottom: 0vw;
  width: 2.5vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .banner-box .title-box .title-icon {
    left: 27vw;
    bottom: 5vw;
    width: 10vw;
  }
}
.about-future-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 3vw;
  padding-bottom: 3vw;
  background-color: #f7f7f5;
}
@media screen and (max-width: 1024px) {
  .about-future-body .page-container {
    padding-top: 7vw;
  }
}
.about-future-body .page-container .nav-box {
  display: flex;
  justify-content: center;
}
.about-future-body .page-container .nav-box a {
  color: #383734;
  font-family: "Noto Serif TC";
  font-size: 1vw;
  letter-spacing: 0.15em;
  position: relative;
  align-items: center;
  font-weight: 600;
  margin-right: 3vw;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .about-future-body .page-container .nav-box a {
    font-size: 4.1vw;
    margin-right: 7vw;
  }
}
.about-future-body .page-container .nav-box a .img-active {
  position: absolute;
  bottom: -0.5vw;
  left: 0vw;
  width: 4.5vw;
}
@media screen and (max-width: 1024px) {
  .about-future-body .page-container .nav-box a .img-active {
    width: 18vw;
    bottom: -1vw;
  }
}
.about-future-body .page-container .nav-box a:hover {
  color: #fac88c;
}
@media screen and (max-width: 1024px) {
  .about-future-body .page-container .nav-box a:hover {
    color: #383734;
  }
}
.about-future-body .page-container .nav-box a:last-child {
  margin-right: 0vw;
}
.about-future-body .page-container .nav-fixed {
  position: fixed;
  z-index: 30;
  width: 100%;
  opacity: 0.9;
  padding-top: 1.5vw;
  background-color: rgba(247, 247, 245, 0.7882352941);
  padding-bottom: 2vw;
}
.about-future-body .page-container .nav-fixed a {
  color: #383734;
}
.about-future-body .page-container .card1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 5vw;
  position: relative;
  padding-bottom: 6vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 {
    padding-top: 8vw;
    padding-bottom: 18vw;
  }
}
.about-future-body .page-container .card1 .content-box {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.about-future-body .page-container .card1 .content-box .title {
  font-family: "Noto Serif TC";
  font-size: 1.7vw;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1.5vw;
  color: #c69a42;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .content-box .title {
    font-size: 4.6vw;
    margin-bottom: 5vw;
  }
}
.about-future-body .page-container .card1 .content-box .content {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  text-align: center;
  color: #383734;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .content-box .content {
    font-size: 3.9vw;
  }
}
.about-future-body .page-container .card1 .content-box .content div {
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .content-box .content div {
    margin-bottom: 5vw;
  }
}
.about-future-body .page-container .card1 .c1-leaf {
  align-self: center;
  width: 5vw;
  margin-top: 3vw;
  margin-bottom: 3vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .c1-leaf {
    width: 15vw;
    margin-top: 5vw;
    margin-bottom: 7vw;
  }
}
.about-future-body .page-container .card1 .bg-box {
  width: 80vw;
  align-self: center;
  height: 25vw;
  background-image: url(../images/about/2_1.webp);
  background-attachment: fixed;
  background-size: cover;
  margin-bottom: 4vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .bg-box {
    background-attachment: initial;
    width: 88%;
    align-self: center;
    height: 79vw;
    background-position: bottom;
    margin-bottom: 13vw;
  }
}
.about-future-body .page-container .card1 .bg-box .c1-leaf2 {
  position: absolute;
  width: 11vw;
  bottom: -9vw;
  right: 7vw;
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .bg-box .c1-leaf2 {
    width: 29vw;
  }
}
.about-future-body .page-container .card1 .grid-img-box {
  display: flex;
  width: 55%;
  overflow: hidden;
  align-self: center;
  margin-top: 3vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box {
    width: 88%;
    justify-content: center;
    margin-top: 7vw;
    flex-direction: column;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box,
.about-future-body .page-container .card1 .grid-img-box .right-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box,
  .about-future-body .page-container .card1 .grid-img-box .right-box {
    width: 100%;
    position: relative;
    z-index: 10;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box .img-box,
.about-future-body .page-container .card1 .grid-img-box .right-box .img-box {
  width: 100%;
  height: 18vw;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box .img-box,
  .about-future-body .page-container .card1 .grid-img-box .right-box .img-box {
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
    width: 100%;
    height: 59vw;
    overflow: hidden;
    background-size: 115%;
    background-position-y: 35%;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box .text-box,
.about-future-body .page-container .card1 .grid-img-box .right-box .text-box {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  align-self: center;
  justify-content: center;
  color: white;
}
.about-future-body .page-container .card1 .grid-img-box .left-box .text-box .title,
.about-future-body .page-container .card1 .grid-img-box .right-box .text-box .title {
  font-family: "Noto Serif TC";
  font-size: 1.4vw;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box .text-box .title,
  .about-future-body .page-container .card1 .grid-img-box .right-box .text-box .title {
    font-size: 5.2vw;
    margin-bottom: 4vw;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box .text-box .line,
.about-future-body .page-container .card1 .grid-img-box .right-box .text-box .line {
  width: 6.5vw;
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box .text-box .line,
  .about-future-body .page-container .card1 .grid-img-box .right-box .text-box .line {
    width: 22.5vw;
    margin-bottom: 3vw;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box .text-box .content,
.about-future-body .page-container .card1 .grid-img-box .right-box .text-box .content {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box .text-box .content,
  .about-future-body .page-container .card1 .grid-img-box .right-box .text-box .content {
    font-size: 3.9vw;
  }
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box .text-box .content,
  .about-future-body .page-container .card1 .grid-img-box .right-box .text-box .content {
    line-height: 1.7;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box .bottom-en,
.about-future-body .page-container .card1 .grid-img-box .right-box .bottom-en {
  position: absolute;
  bottom: -0.85vw;
  align-items: center;
  align-self: center;
  justify-content: center;
  color: white;
  font-family: "Cormorant Garamond";
  opacity: 0.3;
  font-size: 3.2vw;
  letter-spacing: 0.07em;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .grid-img-box .left-box .bottom-en,
  .about-future-body .page-container .card1 .grid-img-box .right-box .bottom-en {
    bottom: -3vw;
    font-size: 10.2vw;
  }
}
.about-future-body .page-container .card1 .grid-img-box .left-box .img-box {
  background-image: url(../images/about/2_2.webp);
}
.about-future-body .page-container .card1 .grid-img-box .right-box .img-box {
  background-image: url(../images/about/2_3.webp);
}
.about-future-body .page-container .card1 .c1-bg {
  position: absolute;
  bottom: 0vw;
  left: 0vw;
  width: 35vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card1 .c1-bg {
    width: 97vw;
  }
}
.about-future-body .page-container .card2 {
  display: flex;
  width: 100%;
  position: relative;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 6vw;
  padding-bottom: 12vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 {
    padding-top: 14vw;
    padding-bottom: 30vw;
    overflow: hidden;
  }
}
.about-future-body .page-container .card2 .en-box {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: "Jost";
  font-weight: 300;
  font-size: 7.3vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .en-box {
    font-size: 10.7vw;
  }
}
.about-future-body .page-container .card2 .en-box .split-en-clip-text div {
  display: flex !important;
}
.about-future-body .page-container .card2 .en-box .split-en-clip-text div div div {
  overflow: hidden;
}
.about-future-body .page-container .card2 .en-box .top-box {
  display: flex;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .en-box .top-box {
    margin-bottom: 2vw;
  }
}
.about-future-body .page-container .card2 .en-box .top-box .feng {
  margin-right: 1.5vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .en-box .top-box .feng {
    margin-right: 3.5vw;
  }
}
.about-future-body .page-container .card2 .en-box .top-box .he {
  margin-left: 1.5vw;
  margin-right: 1.5vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .en-box .top-box .he {
    margin-left: 3.5vw;
    margin-right: 3.5vw;
  }
}
.about-future-body .page-container .card2 .en-box .top-box .img-box {
  width: 12.4vw;
  align-self: center;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .en-box .top-box .img-box {
    width: 19vw;
  }
}
.about-future-body .page-container .card2 .en-box .top-box .img-box img {
  width: 100%;
  display: block;
}
.about-future-body .page-container .card2 .en-box .bottom-box {
  letter-spacing: 0.06em;
}
.about-future-body .page-container .card2 .small-en-box {
  font-weight: 300;
  color: white;
  font-family: "Jost";
  font-size: 1.1vw;
  letter-spacing: 0.03em;
  margin-top: 4vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .small-en-box {
    font-size: 3.4vw;
    margin-top: 6vw;
  }
}
.about-future-body .page-container .card2 .c3-bg {
  position: absolute;
  right: 0vw;
  bottom: 0vw;
  width: 35vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .c3-bg {
    width: 100vw;
    position: relative;
    margin-top: 24vw;
  }
}
.about-future-body .page-container .card2 .c2-leaf {
  position: absolute;
  left: 23.5vw;
  bottom: 3.5vw;
  width: 9vw;
}
@media all and (max-width: 1024px) {
  .about-future-body .page-container .card2 .c2-leaf {
    left: 38.5vw;
    bottom: 49vw;
    width: 23vw;
  }
}

.about-team-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about-team-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
  background-color: #4a5b6d;
}
@media all and (max-width: 500px) {
  .about-team-body .banner-box {
    margin-top: 15vw;
  }
}
.about-team-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.about-team-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-team-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
.about-team-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.7vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .about-team-body .banner-box .title-box .zh {
    padding-left: 1.7vw;
  }
}
.about-team-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .about-team-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .about-team-body .banner-box .title-box .en {
    margin-left: -1vw;
  }
}
.about-team-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 5.7vw;
  bottom: 0vw;
  width: 2.5vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .banner-box .title-box .title-icon {
    left: 27vw;
    bottom: 5vw;
    width: 10vw;
  }
}
.about-team-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #4a5b6d;
  padding-top: 3vw;
  padding-bottom: 3vw;
}
@media screen and (max-width: 1024px) {
  .about-team-body .page-container {
    padding-top: 7vw;
  }
}
.about-team-body .page-container .nav-box {
  display: flex;
  justify-content: center;
}
.about-team-body .page-container .nav-box a {
  color: white;
  font-family: "Noto Serif TC";
  font-size: 1vw;
  letter-spacing: 0.15em;
  position: relative;
  align-items: center;
  font-weight: 600;
  margin-right: 3vw;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .about-team-body .page-container .nav-box a {
    font-size: 4.1vw;
    margin-right: 7vw;
  }
}
.about-team-body .page-container .nav-box a .img-active {
  position: absolute;
  bottom: -0.5vw;
  left: 0vw;
  width: 4.5vw;
}
@media screen and (max-width: 1024px) {
  .about-team-body .page-container .nav-box a .img-active {
    width: 18vw;
    bottom: -1vw;
  }
}
.about-team-body .page-container .nav-box a:hover {
  color: #fac88c;
}
@media screen and (max-width: 1024px) {
  .about-team-body .page-container .nav-box a:hover {
    color: white;
  }
}
.about-team-body .page-container .nav-box a:last-child {
  margin-right: 0vw;
}
.about-team-body .page-container .nav-fixed {
  position: fixed;
  z-index: 30;
  width: 100%;
  opacity: 0.9;
  padding-top: 1.5vw;
  background-color: rgba(247, 247, 245, 0.7882352941);
  padding-bottom: 2vw;
}
.about-team-body .page-container .nav-fixed a {
  color: #383734;
}
.about-team-body .page-container .card1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 10vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 {
    padding-top: 8vw;
    padding-bottom: 18vw;
  }
}
.about-team-body .page-container .card1 .content-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-self: center;
  margin-top: 5vw;
  margin-bottom: 3vw;
}
.about-team-body .page-container .card1 .content-box .title {
  font-family: "Noto Serif TC";
  font-size: 1.2vw;
  color: #fac88c;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1.5vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .content-box .title {
    font-size: 4.6vw;
    margin-bottom: 5vw;
  }
}
.about-team-body .page-container .card1 .content-box .content {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .content-box .content {
    font-size: 3.9vw;
  }
}
.about-team-body .page-container .card1 .content-box .content div {
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .content-box .content div {
    margin-bottom: 8vw;
  }
}
.about-team-body .page-container .card1 .circle-box {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .circle-box {
    flex-wrap: wrap;
    gap: 1vw;
  }
}
.about-team-body .page-container .card1 .circle-box .item {
  width: 13vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .circle-box .item {
    flex: 0 1 calc(50% - 6vw);
  }
}
.about-team-body .page-container .card1 .circle-box .item img {
  width: 100%;
}
.about-team-body .page-container .card1 .circle-box .item1,
.about-team-body .page-container .card1 .circle-box .item2,
.about-team-body .page-container .card1 .circle-box .item3 {
  margin-right: -1.8vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .circle-box .item1,
  .about-team-body .page-container .card1 .circle-box .item2,
  .about-team-body .page-container .card1 .circle-box .item3 {
    margin-right: 0vw;
  }
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .circle-box .item1,
  .about-team-body .page-container .card1 .circle-box .item3 {
    margin-right: -7vw;
  }
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card1 .circle-box .item3,
  .about-team-body .page-container .card1 .circle-box .item4 {
    margin-top: -7vw;
  }
}
.about-team-body .page-container .card2 {
  display: flex;
  width: 100%;
  position: relative;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding-top: 7vw;
  padding-bottom: 8vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 {
    flex-direction: column;
    padding-top: 19vw;
    padding-bottom: 50vw;
  }
}
.about-team-body .page-container .card2 .leaf {
  position: absolute;
  top: -7vw;
  left: 41vw;
  width: 11vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 .leaf {
    top: -14vw;
    left: 39vw;
    width: 24vw;
  }
}
.about-team-body .page-container .card2 .left-box {
  color: white;
  margin-right: 6vw;
  padding-top: 5vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 .left-box {
    margin-right: 0vw;
    margin-bottom: 5vw;
  }
}
.about-team-body .page-container .card2 .left-box .content-box {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 .left-box .content-box {
    font-size: 3.9vw;
  }
}
.about-team-body .page-container .card2 .right-box {
  display: flex;
}
.about-team-body .page-container .card2 .right-box .img-box {
  width: 15vw;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 .right-box .img-box {
    width: 41vw;
  }
}
.about-team-body .page-container .card2 .right-box .img-box img {
  width: 100%;
}
.about-team-body .page-container .card2 .right-box .item1 {
  margin-right: 2vw;
  margin-top: 5vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 .right-box .item1 {
    margin-right: 4vw;
    margin-top: 25vw;
  }
}
.about-team-body .page-container .card2 .right-box .item2 {
  margin-right: 2vw;
}
@media all and (max-width: 1024px) {
  .about-team-body .page-container .card2 .right-box .item2 {
    display: none;
  }
}
.about-team-body .page-container .card2 .right-box .item3 {
  margin-top: 5vw;
}

.popular-project-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
}
.popular-project-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
}
.popular-project-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.popular-project-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-project-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .popular-project-body .banner-box .title-box {
    margin-top: 15vw;
  }
}
.popular-project-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.7vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .popular-project-body .banner-box .title-box .zh {
    padding-left: 2vw;
  }
}
.popular-project-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .popular-project-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
.popular-project-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 6.5vw;
  bottom: 1vw;
  width: 2.5vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .banner-box .title-box .title-icon {
    left: 28.5vw;
    bottom: 8vw;
    width: 8vw;
  }
}
.popular-project-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container {
    padding-bottom: 62vw;
  }
}
.popular-project-body .page-container .leaf1 {
  position: absolute;
  top: -5vw;
  left: 35vw;
  width: 9vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .leaf1 {
    top: -13vw;
    left: 13vw;
    width: 15vw;
  }
}
.popular-project-body .page-container .leaf2 {
  position: absolute;
  bottom: 8vw;
  left: 36vw;
  width: 5vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .leaf2 {
    bottom: 51vw;
    width: 13vw;
  }
}
.popular-project-body .page-container .bottom-bg {
  position: absolute;
  bottom: 3vw;
  right: 0vw;
  width: 35vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .bottom-bg {
    bottom: 33vw;
    width: 99vw;
  }
}
.popular-project-body .page-container .project-item {
  display: flex;
  margin: 0 auto;
  margin-bottom: 8vw;
  width: 77%;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item {
    width: 88%;
    flex-direction: column;
    margin-bottom: 13vw;
  }
}
.popular-project-body .page-container .project-item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item:nth-child(odd) {
    flex-direction: column;
  }
}
.popular-project-body .page-container .project-item .img-box {
  width: 52%;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .img-box {
    width: 100%;
  }
}
.popular-project-body .page-container .project-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-project-body .page-container .project-item .img-box .sold-out {
  position: absolute;
  top: 0px;
  right: 0px;
}
.popular-project-body .page-container .project-item .img-box .sold-out img {
  width: 12vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .img-box .sold-out img {
    width: 33vw;
  }
}
.popular-project-body .page-container .project-item .img-box .sold-out .text {
  font-family: "Noto Serif TC";
  font-weight: 500;
  color: white;
  font-size: 1.1vw;
  position: absolute;
  top: 0.7vw;
  right: 1vw;
  letter-spacing: 0.15em;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .img-box .sold-out .text {
    font-size: 3.5vw;
    top: 1.2vw;
    right: 1.5vw;
  }
}
.popular-project-body .page-container .project-item .content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 43%;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box {
    width: 100%;
  }
}
.popular-project-body .page-container .project-item .content-box .name {
  font-family: "Noto Serif TC";
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 1.25vw;
  margin-bottom: 1vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .name {
    font-size: 4.6vw;
    margin-bottom: 3vw;
    margin-top: 6vw;
    letter-spacing: 0.18em;
  }
}
.popular-project-body .page-container .project-item .content-box .location {
  font-family: "微軟正黑體";
  color: #fac88c;
  letter-spacing: 0.1em;
  font-size: 0.95vw;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .location {
    font-size: 3.9vw;
    margin-bottom: 5vw;
  }
}
.popular-project-body .page-container .project-item .content-box .content {
  font-family: "微軟正黑體";
  color: #ffffff;
  font-size: 0.95vw;
  letter-spacing: 0.07em;
  line-height: 2;
  margin-bottom: 2.5vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .content {
    font-size: 3.9vw;
    margin-bottom: 2vw;
  }
}
.popular-project-body .page-container .project-item .content-box .more {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 1.6vw;
  position: relative;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .more {
    font-size: 5.5vw;
  }
}
.popular-project-body .page-container .project-item .content-box .more:hover {
  color: #fac88c;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .more:hover {
    color: #ffffff;
  }
}
.popular-project-body .page-container .project-item .content-box .more:hover::after {
  background-color: #fac88c;
  width: 5vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .more:hover::after {
    width: 3vw;
    background-color: #fff;
  }
}
.popular-project-body .page-container .project-item .content-box .more::after {
  content: "";
  transition: 0.5s ease-in-out;
  background-color: #fff;
  width: 3vw;
  height: 1px;
  position: absolute;
  left: 4vw;
  top: 1.2vw;
}
@media all and (max-width: 1024px) {
  .popular-project-body .page-container .project-item .content-box .more::after {
    width: 10vw;
    left: 14.5vw;
    top: 4vw;
  }
}

.project-content-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f7f7f5;
}
.project-content-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 6vw;
  padding-bottom: 10vw;
  align-self: center;
  position: relative;
}
@media all and (max-width: 1920px) {
  .project-content-body .page-container {
    padding-top: 7vw;
  }
}
@media all and (max-width: 1440px) {
  .project-content-body .page-container {
    padding-top: 7.5vw;
  }
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container {
    padding-top: 23vw;
    padding-bottom: 46vw;
  }
}
@media all and (max-width: 500px) {
  .project-content-body .page-container {
    padding-top: 25vw;
  }
}
.project-content-body .page-container .top-img-box {
  width: 70%;
  display: flex;
  align-self: center;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .top-img-box {
    width: 88%;
  }
}
.project-content-body .page-container .top-img-box img {
  width: 100%;
}
.project-content-body .page-container .project-content-box {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-self: center;
  color: #383838;
  margin-top: 3.5vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box {
    width: 88%;
    margin-top: 5vw;
  }
}
.project-content-body .page-container .project-content-box .project-info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1vw;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info {
    flex-direction: column;
    padding-bottom: 2vw;
    margin-bottom: 3vw;
  }
}
.project-content-body .page-container .project-content-box .project-info .name-loaction {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-content-body .page-container .project-content-box .project-info .name-loaction .name {
  font-family: "Noto Serif TC";
  font-size: 1.7vw;
  font-weight: 600;
  margin-bottom: 0.3vw;
  letter-spacing: 0.2em;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .name-loaction .name {
    flex-direction: column;
    margin-bottom: 2vw;
    font-size: 4.6vw;
  }
}
.project-content-body .page-container .project-content-box .project-info .name-loaction .address-box {
  display: flex;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .name-loaction .address-box {
    margin-bottom: 3vw;
  }
}
.project-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: #c69a42;
  transition: 0.3s ease-in-out;
  max-width: 18vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address {
    font-size: 3.5vw;
    max-width: 100%;
  }
}
.project-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address:hover {
  color: #383838;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address:hover {
    color: #c69a42;
  }
}
.project-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon {
  align-self: center;
  margin-right: 0.4vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon {
    width: 3.5vw;
    align-self: center;
    margin-right: 2vw;
  }
}
.project-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon img {
  width: 75%;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon img {
    width: 100%;
  }
}
.project-content-body .page-container .project-content-box .project-info .info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .info {
    flex-direction: row;
    justify-content: left;
    margin-bottom: 3vw;
  }
}
.project-content-body .page-container .project-content-box .project-info .info .title {
  font-family: "Noto Serif TC";
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .info .title {
    font-size: 3.9vw;
    margin-right: 6vw;
  }
}
.project-content-body .page-container .project-content-box .project-info .info .content {
  font-family: "微軟正黑體";
  letter-spacing: 0.15em;
  font-size: 0.95vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .project-info .info .content {
    font-size: 3.9vw;
    align-self: center;
  }
}
.project-content-body .page-container .project-content-box .content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.project-content-body .page-container .project-content-box .content-box p {
  text-align: justify;
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  color: #383734;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .content-box p {
    font-size: 3.9vw;
  }
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .content-box p {
    padding-bottom: 3.5vw;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 5vw;
  }
}
@media all and (max-width: 500px) {
  .project-content-body .page-container .project-content-box .content-box p {
    margin-bottom: 8vw;
  }
}
.project-content-body .page-container .project-content-box .content-box img {
  width: 48%;
  flex: 0 1 calc(50% - 0.5vw);
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .content-box img {
    width: 100%;
    margin-bottom: 2vw;
    flex: initial;
  }
}
.project-content-body .page-container .project-content-box .reservation-box {
  display: flex;
  align-self: center;
  width: 98%;
  flex-direction: column;
  margin-top: 5vw;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box {
    margin-top: 7vw;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .title-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 4vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .title-box {
    margin-bottom: 7vw;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.7vw;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #383734;
  margin-bottom: 0.5vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .title-box .zh {
    font-size: 5.2vw;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.7vw;
  letter-spacing: 0.02em;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .title-box .en {
    font-size: 4.6vw;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .map-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.project-content-body .page-container .project-content-box .reservation-box .map-box img {
  width: 100%;
}
.project-content-body .page-container .project-content-box .reservation-box .map-box iframe {
  width: 100%;
  filter: grayscale(1);
}
@media (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .map-box iframe {
    height: 300px;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box {
  display: flex;
  width: 55%;
  flex-direction: column;
  padding-top: 2.5vw;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box {
    width: 100%;
    padding-top: 3vw;
    margin-bottom: 5vw;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box form {
  width: 100%;
}
.project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 1.2vw;
  padding-bottom: 1.2vw;
  border-bottom: 2px solid #d9d9d9;
}
@media screen and (max-width: 1440px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box {
    border-bottom: 1px solid #d9d9d9;
  }
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box {
    padding-top: 4vw;
    padding-bottom: 4vw;
    border-bottom: 1px solid #aaaaaa;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box .title {
  color: #383734;
  font-size: 1.1vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.3em;
  font-weight: 500;
  width: 19%;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box .title {
    font-size: 3.75vw;
    width: 24.5%;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box input {
  color: #383734;
  font-size: 1.1vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.15em;
  font-weight: 500;
  width: 80%;
  border: none;
  background: none;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box input {
    font-size: 3.75vw;
    width: 72%;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box textarea {
  width: 100%;
  background: none;
  resize: none;
  border: none;
  color: #333333;
  font-size: 1.1vw;
  font-family: "Noto Sans TC Regular";
  margin-top: 1vw;
  letter-spacing: 0.15em;
  font-weight: 500;
  outline: none;
  height: 5vw;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box form .input-box textarea {
    height: 18vw;
    width: 100%;
    margin-top: 3vw;
    font-size: 3.75vw;
    padding-left: 0vw;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box form .textarea-box {
  display: flex;
  flex-direction: column;
}
.project-content-body .page-container .project-content-box .reservation-box .form-box .button-box {
  cursor: pointer;
  display: flex;
  justify-content: center;
  z-index: 30;
  position: relative;
  padding-top: 0.85vw;
  padding-bottom: 0.85vw;
  background-color: #c69a42;
  border-radius: 0.35vw;
  margin-top: 3vw;
  transition: 0.4s ease-in-out;
  width: 40%;
  align-self: center;
  color: white;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box .button-box {
    border-radius: 1vw;
    margin-top: 9vw;
    margin-bottom: 10vw;
    width: 100%;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box .button-box:hover {
  background-color: rgba(74, 91, 109, 0.7607843137);
}
.project-content-body .page-container .project-content-box .reservation-box .form-box .button-box:hover button {
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box .button-box:hover button {
    background-color: #c69a42;
  }
}
.project-content-body .page-container .project-content-box .reservation-box .form-box .button-box button {
  background: none;
  color: white;
  font-family: "微軟正黑體";
  font-size: 1.1vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .project-content-box .reservation-box .form-box .button-box button {
    font-size: 3.75vw;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
    width: 100%;
    height: 100%;
  }
}
.project-content-body .page-container .back-btn {
  display: flex;
  align-self: center;
  width: 2.6vw;
  margin-top: 6vw;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .back-btn {
    width: 7.3vw;
    margin-top: 0vw;
  }
}
@media all and (max-width: 500px) {
  .project-content-body .page-container .back-btn {
    width: 10vw;
  }
}
.project-content-body .page-container .back-btn:hover {
  scale: 1.07;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .back-btn:hover {
    scale: 1;
  }
}
.project-content-body .page-container .back-btn img {
  width: 100%;
}
.project-content-body .page-container .mobile-bg {
  display: none;
}
@media all and (max-width: 1024px) {
  .project-content-body .page-container .mobile-bg {
    display: block;
    width: 54vw;
    position: absolute;
    bottom: 32vw;
    pointer-events: none;
    right: 0vw;
  }
}

.contact-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
}
.contact-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
}
.contact-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.contact-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .contact-body .banner-box .title-box {
    margin-top: 15vw;
  }
}
.contact-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.1vw;
}
@media all and (max-width: 1024px) {
  .contact-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .contact-body .banner-box .title-box .zh {
    padding-left: 2vw;
    text-shadow: 0px 0px 2vw #535353;
  }
}
.contact-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .contact-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .contact-body .banner-box .title-box .en {
    text-align: center;
  }
}
.contact-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 5vw;
  bottom: 1.5vw;
  width: 2.5vw;
}
@media all and (max-width: 1024px) {
  .contact-body .banner-box .title-box .title-icon {
    left: 24.5vw;
    bottom: 10vw;
    width: 10vw;
  }
}
.contact-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 15vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container {
    padding-top: 5vw;
    padding-bottom: 50vw;
  }
}
.contact-body .page-container .leaf {
  position: absolute;
  bottom: 6vw;
  left: 51vw;
  width: 8vw;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .leaf {
    position: relative;
    bottom: -8vw;
    left: 38vw;
    width: 21vw;
  }
}
.contact-body .page-container .contact-content {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content {
    flex-direction: column-reverse;
  }
}
.contact-body .page-container .contact-content .map-box {
  margin-top: 5vw;
  width: 37vw;
  margin-right: 11vw;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .map-box {
    margin-right: 0vw;
    width: 88vw;
    margin-top: 4vw;
    align-self: center;
  }
}
.contact-body .page-container .contact-content .map-box img {
  width: 100%;
}
.contact-body .page-container .contact-content .map-box iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  opacity: 0.9;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .map-box iframe {
    height: 300px;
  }
}
.contact-body .page-container .contact-content .reservation-box {
  display: flex;
  margin-top: 4vw;
  flex-direction: column;
  width: 30vw;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box {
    width: 88vw;
    justify-content: center;
    margin: 0 auto;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-top: 1vw;
  justify-content: space-between;
}
.contact-body .page-container .contact-content .reservation-box .form-box form .input-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 1.2vw;
  padding-bottom: 1.2vw;
  border-bottom: 1px solid #d9d9d9;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box form .input-box {
    padding-top: 4vw;
    padding-bottom: 4vw;
    border-bottom: 1px solid #aaaaaa;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box form .input-box .title {
  color: #fff;
  font-size: 1.1vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.3em;
  font-weight: 500;
  width: 10%;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box form .input-box .title {
    font-size: 3.75vw;
    width: 14%;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box form .input-box input {
  color: #fff;
  font-size: 1.1vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.15em;
  font-weight: 500;
  width: 87%;
  border: none;
  background: none;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box form .input-box input {
    font-size: 3.75vw;
    width: 86%;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box form .input-box textarea {
  width: 100%;
  background: none;
  resize: none;
  border: none;
  color: #fff;
  font-size: 1.1vw;
  font-family: "Noto Serif TC";
  margin-top: 1vw;
  letter-spacing: 0.15em;
  font-weight: 500;
  outline: none;
  height: 4vw;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box form .input-box textarea {
    height: 15vw;
    margin-top: 2vw;
    font-size: 3.75vw;
    padding-left: 1vw;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box form .textarea-box {
  display: flex;
  flex-direction: column;
}
.contact-body .page-container .contact-content .reservation-box .form-box .button-box {
  cursor: pointer;
  display: flex;
  justify-content: center;
  z-index: 30;
  align-self: center;
  padding-top: 0.7vw;
  position: relative;
  padding-bottom: 0.7vw;
  border-radius: 0.3vw;
  width: 50%;
  margin-top: 2vw;
  background-color: #fac88c;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box .button-box {
    border-radius: 1vw;
    margin-top: 9vw;
    width: 100%;
    margin-bottom: 5vw;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box .button-box:hover button {
  color: white;
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box .button-box:hover button {
    color: #383734;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box .button-box:hover::after {
  left: 0%;
  right: 0%;
  height: 100%;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box .button-box:hover::after {
    left: 0%;
    right: 0%;
    height: 100%;
  }
}
.contact-body .page-container .contact-content .reservation-box .form-box .button-box a {
  z-index: 10;
  position: relative;
}
.contact-body .page-container .contact-content .reservation-box .form-box .button-box button {
  color: #383734;
  font-family: "微軟正黑體";
  font-size: 1.1vw;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: none;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .contact-body .page-container .contact-content .reservation-box .form-box .button-box button {
    font-size: 3.75vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}

.classic-history-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
}
.classic-history-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
}
.classic-history-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.classic-history-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.classic-history-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .classic-history-body .banner-box .title-box {
    margin-top: 15vw;
  }
}
.classic-history-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.1vw;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .classic-history-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .classic-history-body .banner-box .title-box .zh {
    padding-left: 2vw;
  }
}
.classic-history-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .classic-history-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
.classic-history-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 6.5vw;
  bottom: 1vw;
  width: 3.2vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .banner-box .title-box .title-icon {
    left: 28.5vw;
    bottom: 9vw;
    width: 11vw;
  }
}
.classic-history-body .page-container {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  padding-top: 3vw;
  padding-bottom: 15vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container {
    padding-top: 10vw;
    padding-bottom: 75vw;
  }
}
.classic-history-body .page-container .item {
  display: flex;
  flex-direction: column;
  width: 30vw;
  margin-bottom: 5vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .item {
    width: 88vw;
    margin-bottom: 18vw;
  }
}
.classic-history-body .page-container .item .img-box {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.classic-history-body .page-container .item .img-box:hover img {
  scale: 1.1;
}
@media screen and (max-width: 1024px) {
  .classic-history-body .page-container .item .img-box:hover img {
    scale: 1;
  }
}
.classic-history-body .page-container .item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease-in-out;
}
.classic-history-body .page-container .item .item-info {
  display: flex;
  justify-content: space-between;
  padding-top: 0.8vw;
  padding-bottom: 0.15vw;
  border-bottom: 1px solid #d8d8d8;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .item .item-info {
    flex-direction: column-reverse;
    padding-bottom: 3vw;
    margin-top: 1.5vw;
  }
}
.classic-history-body .page-container .item .item-info .left {
  display: flex;
  align-items: center;
  color: white;
}
.classic-history-body .page-container .item .item-info .left .name {
  font-family: "Noto Serif TC";
  font-weight: 500;
  font-size: 1.25vw;
  letter-spacing: 0.15em;
  margin-right: 1vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .item .item-info .left .name {
    font-size: 4.6vw;
  }
}
.classic-history-body .page-container .item .item-info .left .location {
  font-family: "微軟正黑體";
  font-weight: 500;
  font-size: 0.8vw;
  letter-spacing: 0.08em;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .item .item-info .left .location {
    font-size: 3.9vw;
    margin-top: 0.5vw;
  }
}
.classic-history-body .page-container .item .item-info .year {
  font-family: "Jost";
  font-size: 2.35vw;
  letter-spacing: 0.08em;
  color: #fac88c;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .item .item-info .year {
    font-size: 7vw;
    margin-bottom: 0.5vw;
  }
}
.classic-history-body .page-container .line1 {
  position: absolute;
  left: 12vw;
  top: 6vw;
  width: 3vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .line1 {
    display: none;
  }
}
.classic-history-body .page-container .line2 {
  position: absolute;
  left: 27vw;
  top: 28vw;
  width: 2vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .line2 {
    display: none;
  }
}
.classic-history-body .page-container .line3 {
  position: absolute;
  right: 10vw;
  top: 20vw;
  width: 1.5vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .line3 {
    display: none;
  }
}
.classic-history-body .page-container .leaf1 {
  position: absolute;
  right: 6vw;
  top: -9vw;
  width: 14vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .leaf1 {
    right: 8vw;
    top: -15vw;
    width: 18vw;
  }
}
.classic-history-body .page-container .leaf2 {
  position: absolute;
  right: 25vw;
  bottom: 10vw;
  width: 9vw;
}
@media all and (max-width: 1024px) {
  .classic-history-body .page-container .leaf2 {
    right: 43vw;
    bottom: 42vw;
    width: 26vw;
  }
}

.classic-history-content-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f7f7f5;
}
.classic-history-content-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 6vw;
  padding-bottom: 10vw;
  align-self: center;
  position: relative;
}
@media all and (max-width: 1920px) {
  .classic-history-content-body .page-container {
    padding-top: 7vw;
  }
}
@media all and (max-width: 1440px) {
  .classic-history-content-body .page-container {
    padding-top: 7.5vw;
  }
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container {
    padding-top: 23vw;
    padding-bottom: 46vw;
  }
}
@media all and (max-width: 500px) {
  .classic-history-content-body .page-container {
    padding-top: 25vw;
  }
}
.classic-history-content-body .page-container .top-img-box {
  width: 70%;
  display: flex;
  align-self: center;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .top-img-box {
    width: 88%;
  }
}
.classic-history-content-body .page-container .top-img-box img {
  width: 100%;
}
.classic-history-content-body .page-container .project-content-box {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-self: center;
  color: #383734;
  margin-top: 3.5vw;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box {
    width: 88%;
    margin-top: 5vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1vw;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info {
    flex-direction: column;
    padding-bottom: 2vw;
    margin-bottom: 3vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction .name {
  font-family: "Noto Serif TC";
  font-size: 1.7vw;
  font-weight: 600;
  margin-bottom: 0.3vw;
  letter-spacing: 0.2em;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .name-loaction .name {
    flex-direction: column;
    margin-bottom: 2vw;
    font-size: 4.6vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box {
  display: flex;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box {
    margin-bottom: 3vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address {
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: #c69a42;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address {
    font-size: 3.5vw;
    max-width: 100%;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address:hover {
  color: #383734;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box a.address:hover {
    color: #c69a42;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon {
  align-self: center;
  margin-right: 0.4vw;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon {
    width: 3.5vw;
    align-self: center;
    margin-right: 2vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon img {
  width: 1.1vw;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .name-loaction .address-box .icon img {
    width: 100%;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .info {
    flex-direction: row;
    justify-content: left;
    margin-bottom: 3vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .info .title {
  font-family: "Noto Serif TC";
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .info .title {
    font-size: 3.9vw;
    margin-right: 6vw;
  }
}
.classic-history-content-body .page-container .project-content-box .project-info .info .content {
  font-family: "微軟正黑體";
  letter-spacing: 0.15em;
  font-size: 0.95vw;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .project-info .info .content {
    font-size: 3.9vw;
    align-self: center;
  }
}
.classic-history-content-body .page-container .project-content-box .content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.classic-history-content-body .page-container .project-content-box .content-box p {
  text-align: justify;
  font-family: "微軟正黑體";
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 0.95vw;
  color: white;
  color: #383734;
  margin-bottom: 2vw;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .content-box p {
    font-size: 3.9vw;
  }
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .content-box p {
    padding-bottom: 3.5vw;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 5vw;
  }
}
@media all and (max-width: 500px) {
  .classic-history-content-body .page-container .project-content-box .content-box p {
    margin-bottom: 8vw;
  }
}
.classic-history-content-body .page-container .project-content-box .content-box img {
  width: 48%;
  flex: 0 1 calc(50% - 0.5vw);
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .project-content-box .content-box img {
    width: 100%;
    margin-bottom: 2vw;
    flex: initial;
  }
}
.classic-history-content-body .page-container .back-btn {
  display: flex;
  align-self: center;
  width: 2.6vw;
  margin-top: 6vw;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .back-btn {
    width: 7.3vw;
    margin-top: 11vw;
  }
}
@media all and (max-width: 500px) {
  .classic-history-content-body .page-container .back-btn {
    width: 10vw;
  }
}
.classic-history-content-body .page-container .back-btn:hover {
  scale: 1.07;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .back-btn:hover {
    scale: 1;
  }
}
.classic-history-content-body .page-container .back-btn img {
  width: 100%;
}
.classic-history-content-body .page-container .mobile-bg {
  display: none;
}
@media all and (max-width: 1024px) {
  .classic-history-content-body .page-container .mobile-bg {
    display: block;
    width: 54vw;
    position: absolute;
    bottom: 32vw;
    pointer-events: none;
    right: 0vw;
  }
}

.construction-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-image: url(../images/about/bg.webp);
  background-size: cover;
}
.construction-body .banner-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: center;
  align-items: center;
}
.construction-body .banner-box .img-box {
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.construction-body .banner-box .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.construction-body .banner-box .title-box {
  position: absolute;
  z-index: 30;
  display: flex;
  color: white;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .construction-body .banner-box .title-box {
    margin-top: 15vw;
  }
}
.construction-body .banner-box .title-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.8vw;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding-left: 0.3vw;
}
@media all and (max-width: 1024px) {
  .construction-body .banner-box .title-box .zh {
    font-size: 9.3vw;
    text-shadow: 0px 0px 2vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .construction-body .banner-box .title-box .zh {
    padding-left: 2vw;
  }
}
.construction-body .banner-box .title-box .en {
  font-family: "Cormorant Garamond";
  font-size: 1.05vw;
  letter-spacing: 0.02em;
  font-style: italic;
}
@media all and (max-width: 1024px) {
  .construction-body .banner-box .title-box .en {
    font-size: 4.6vw;
    font-weight: 500;
    text-shadow: 0px 0px 1vw #000000;
  }
}
@media all and (max-width: 1024px) {
  .construction-body .banner-box .title-box .en {
    text-align: center;
  }
}
.construction-body .banner-box .title-box .title-icon {
  position: absolute;
  left: 5.8vw;
  bottom: 0.5vw;
  width: 1.8vw;
}
@media all and (max-width: 1024px) {
  .construction-body .banner-box .title-box .title-icon {
    left: 26.5vw;
    bottom: 8vw;
    width: 6vw;
  }
}
.construction-body .page-container {
  padding-top: 4vw;
  padding-bottom: 14vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container {
    padding-bottom: 29vw;
    padding-top: 10vw;
  }
}
.construction-body .page-container .bg {
  position: absolute;
  bottom: 3vw;
  right: 0vw;
  width: 35vw;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .bg {
    position: relative;
    width: 100%;
    margin-top: 10vw;
  }
}
.construction-body .page-container .title-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2vw;
}
.construction-body .page-container .title-box .zh {
  font-family: "Noto Serif TC";
  font-weight: 500;
  font-size: 1.7vw;
  color: #f7f7f5;
  letter-spacing: 0.15em;
  margin-bottom: 0.5vw;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .title-box .zh {
    font-size: 5.2vw;
  }
}
.construction-body .page-container .title-box .en {
  font-family: "Cormorant Garamond";
  color: #fac88c;
  font-size: 1.7vw;
  letter-spacing: 0.07em;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .title-box .en {
    font-size: 3.9vw;
  }
}
.construction-body .page-container .form-box {
  width: 27%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box {
    width: 87%;
  }
}
.construction-body .page-container .form-box form {
  z-index: 30;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box form {
    margin-bottom: 8vw;
  }
}
.construction-body .page-container .form-box form .input-box {
  display: flex;
  width: 100%;
  justify-content: left;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  border-bottom: 1px solid #d8d8d8;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box form .input-box {
    padding-top: 3.8vw;
    padding-bottom: 3.8vw;
    border-bottom: 1px solid #aaaaaa;
  }
}
.construction-body .page-container .form-box form .input-box .title {
  color: #f7f7f5;
  font-family: "Noto Serif TC";
  font-size: 1.1vw;
  text-align: center;
  letter-spacing: 0.3em;
  font-weight: 500;
  margin-right: 1vw;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box form .input-box .title {
    font-size: 3.75vw;
  }
}
.construction-body .page-container .form-box form .input-box select {
  width: 40%;
  border: none;
  background: none;
  color: #f7f7f5;
  font-family: "Noto Serif TC";
  font-size: 1.1vw;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-left: 2vw;
  cursor: pointer;
  background: url("../images/construction/select_arrow.svg") no-repeat right center;
  background-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: 80% center;
}
@media all and (max-width: 1440px) {
  .construction-body .page-container .form-box form .input-box select {
    background-size: 12px;
  }
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box form .input-box select {
    font-size: 3.75vw;
    background-size: 3vw;
    margin-left: 9vw;
    padding: 0 9vw 0 4vw;
    border-left: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    background-size: 3.5vw;
    background-position: 90% center;
  }
}
.construction-body .page-container .form-box form .input-box select option {
  background-color: #fff !important;
  color: black;
  font-family: "Noto Serif TC";
  font-size: 1.1vw;
}
@media screen and (max-width: 1024px) {
  .construction-body .page-container .form-box form .input-box select option {
    font-size: 4.1vw;
  }
}
.construction-body .page-container .form-box form .input-box input {
  color: #f7f7f5;
  font-family: "Noto Serif TC";
  font-size: 1.1vw;
  letter-spacing: 0.15em;
  font-weight: 500;
  border: none;
  background: none;
  width: 60%;
  margin-left: 2vw;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box form .input-box input {
    font-size: 3.75vw;
    margin-left: 7vw;
  }
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .form-box form .input-box {
    font-size: 3.75vw;
  }
}
.construction-body .page-container .form-box .select-box {
  position: relative;
}
.construction-body .page-container .button-box {
  cursor: pointer;
  display: flex;
  justify-content: center;
  z-index: 30;
  align-self: center;
  padding-top: 0.7vw;
  position: relative;
  padding-bottom: 0.7vw;
  border-radius: 0.3vw;
  width: 55%;
  margin-top: 3vw;
  background-color: #fac88c;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .button-box {
    border: 1px solid #aaaaaa;
    width: 100%;
    border-radius: 1vw;
    margin-top: 0vw;
    margin-bottom: 5vw;
  }
}
.construction-body .page-container .button-box:hover button {
  color: white;
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .button-box:hover button {
    color: #383734;
  }
}
.construction-body .page-container .button-box:hover::after {
  left: 0%;
  right: 0%;
  height: 100%;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .button-box:hover::after {
    left: 0%;
    right: 0%;
    height: 100%;
  }
}
.construction-body .page-container .button-box a {
  z-index: 10;
  position: relative;
}
.construction-body .page-container .button-box button {
  color: #383734;
  font-family: "微軟正黑體";
  font-size: 1.1vw;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: none;
  transition: 0.4s ease-in-out;
}
@media all and (max-width: 1024px) {
  .construction-body .page-container .button-box button {
    font-size: 3.75vw;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
  }
}

.construction-content-body {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #f7f7f5;
}
@media screen and (max-width: 1024px) {
  .construction-content-body {
    padding-bottom: 35vw;
  }
}
.construction-content-body .top-title-box {
  width: 100%;
  padding-top: 8vw;
  position: relative;
  display: flex;
  padding-bottom: 3.5vw;
  color: #333333;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .top-title-box {
    margin-top: 20vw;
    padding-bottom: 8vw;
    padding-top: 4vw;
    overflow: hidden;
    margin-bottom: 0vw;
  }
}
@media screen and (max-width: 500px) {
  .construction-content-body .top-title-box {
    height: auto;
  }
}
.construction-content-body .top-title-box .top-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.construction-content-body .top-title-box .top-title .name {
  font-size: 1.7vw;
  letter-spacing: 0.15em;
  font-family: "Noto Serif TC";
  padding-bottom: 1vw;
  margin-bottom: 1vw;
  position: relative;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .top-title-box .top-title .name {
    font-size: 5.8vw;
    padding-bottom: 3vw;
    margin-bottom: 3vw;
  }
}
.construction-content-body .top-title-box .top-title .zh-title {
  font-family: "Noto Serif TC";
  font-size: 1.7vw;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 0.8vw;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .top-title-box .top-title .zh-title {
    font-size: 5.8vw;
  }
}
.construction-content-body .top-title-box .top-title .en-title {
  font-family: "Cormorant Garamond";
  font-size: 1.7vw;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .top-title-box .top-title .en-title {
    font-size: 3.9vw;
  }
}
.construction-content-body .bg1 {
  position: absolute;
  right: 0vw;
  width: 17vw;
  top: 7vw;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .bg1 {
    width: 41vw;
    top: 46vw;
  }
}
.construction-content-body .bg2 {
  position: absolute;
  left: 0vw;
  width: 16vw;
  bottom: 2vw;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .bg2 {
    width: 32vw;
    bottom: 30vw;
  }
}
.construction-content-body .name-box {
  display: flex;
  align-self: center;
  margin-bottom: 5vw;
  width: 79%;
  border-top: 1px solid #d8d8d8;
  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 2vw;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .name-box {
    width: 88%;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
.construction-content-body .name-box .zh {
  font-family: "Noto Serif TC";
  font-size: 1.25vw;
  color: #383734;
  font-weight: 600;
  margin-right: 2vw;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .name-box .zh {
    font-size: 5vw;
    margin-right: 4vw;
  }
}
.construction-content-body .name-box .en {
  color: #c69a42;
  font-family: "Cormorant Garamond";
  font-size: 1.4vw;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .name-box .en {
    font-size: 4.1vw;
    align-self: center;
  }
}
.construction-content-body .page-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  align-items: center;
  margin-bottom: 10vw;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container {
    padding-top: 8vw;
    margin-bottom: 15vw;
  }
}
.construction-content-body .page-container .item-box {
  width: 75%;
  display: flex;
  flex-direction: column;
  margin-bottom: 4vw;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box {
    margin-bottom: 12vw;
    width: 85%;
  }
}
.construction-content-body .page-container .item-box .date-title-box {
  display: flex;
  align-items: center;
  margin-bottom: 2vw;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box {
    align-items: flex-start;
    margin-bottom: 6vw;
  }
}
.construction-content-body .page-container .item-box .date-title-box .bg {
  display: flex;
  z-index: 10;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box .bg {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.construction-content-body .page-container .item-box .date-title-box .bg .title {
  font-size: 1.1vw;
  font-family: "Noto Serif TC";
  letter-spacing: 0.18em;
  color: #383734;
  margin-right: 1.5vw;
  font-weight: 600;
  position: relative;
  padding-left: 1vw;
  padding-right: 1vw;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box .bg .title {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
.construction-content-body .page-container .item-box .date-title-box .bg .title::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0.3vw;
  background-color: #c69a42;
  width: 0.2vw;
  height: 72%;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box .bg .title::after {
    top: 1vw;
    width: 0.7vw;
  }
}
.construction-content-body .page-container .item-box .date-title-box .bg .title::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0.3vw;
  background-color: #c69a42;
  width: 0.2vw;
  height: 72%;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box .bg .title::before {
    top: 1vw;
    width: 0.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box .bg .title {
    font-size: 3.9vw;
  }
}
.construction-content-body .page-container .item-box .date-title-box .bg .date {
  font-size: 0.8vw;
  font-family: "微軟正黑體";
  letter-spacing: 0.15em;
  color: #606060;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .construction-content-body .page-container .item-box .date-title-box .bg .date {
    font-size: 1.05vw;
  }
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .date-title-box .bg .date {
    font-size: 3.6vw;
    margin-bottom: 3.5vw;
    letter-spacing: 0.08em;
  }
}
.construction-content-body .page-container .item-box .img-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .img-list {
    flex-direction: column;
    width: 100%;
  }
}
.construction-content-body .page-container .item-box .img-list .img-box {
  width: 23vw;
  height: 17vw;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .img-list .img-box {
    display: none;
  }
}
.construction-content-body .page-container .item-box .img-list .img-box:first-child a {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .img-list .img-box:first-child {
    display: flex !important;
    width: 100%;
    height: auto;
  }
}
.construction-content-body .page-container .item-box .img-list .img-box:hover img {
  scale: 1.1;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .item-box .img-list .img-box:hover img {
    scale: 1;
  }
}
.construction-content-body .page-container .item-box .img-list .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease-in-out;
}
.construction-content-body .page-container .back-btn {
  display: flex;
  align-self: center;
  width: 2.6vw;
  margin-top: 2vw;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .back-btn {
    width: 7vw;
  }
}
@media all and (max-width: 500px) {
  .construction-content-body .page-container .back-btn {
    width: 10vw;
  }
}
.construction-content-body .page-container .back-btn:hover {
  scale: 1.07;
}
@media screen and (max-width: 1024px) {
  .construction-content-body .page-container .back-btn:hover {
    scale: 1;
  }
}
.construction-content-body .page-container .back-btn img {
  width: 100%;
}