@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nuosu+SIL&display=swap");
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

video,
img,
canvas {
  display: block;
}

img {
  width: 100%;
}

input,
textarea {
  font-family: "Microsoft JhengHei";
}

.pc {
  display: block;
}
@media all and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.ph {
  display: none;
}
@media all and (max-width: 1024px) {
  .ph {
    display: block;
  }
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pause {
  animation-play-state: paused;
}

#footer {
  position: relative;
  width: 100%;
  background-color: #736357;
  letter-spacing: 0.2rem;
  font-size: 0.8vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
  font-weight: 300;
  margin-top: 8%;
}
#footer .flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  #footer .flex_box {
    flex-direction: column;
  }
}
#footer .flex_box span {
  color: #fff;
  font-family: "Microsoft JhengHei";
  text-decoration: none;
  pointer-events: none;
}
#footer .flex_box a {
  color: #fff;
  font-family: "Microsoft JhengHei";
  text-decoration: none;
  pointer-events: none;
}
#footer .a_box {
  text-align: center;
  margin-top: 10px;
  opacity: 0.5;
}
@media all and (max-width: 1024px) {
  #footer .a_box {
    margin-top: 0px;
  }
}
#footer .a_box a {
  color: #fff;
  font-family: "Microsoft JhengHei";
  text-decoration: none;
  font-size: 13px;
}
@media all and (max-width: 1024px) {
  #footer .a_box a {
    font-size: 12px;
  }
}
@media all and (max-width: 1600px) {
  #footer {
    margin-top: 5%;
  }
}
@media all and (max-width: 1024px) {
  #footer {
    font-size: 2vw;
    line-height: 2;
    padding-top: 2vw;
    padding-bottom: 2vw;
    margin-top: 15%;
  }
  #footer > :nth-child(1) {
    order: 3;
  }
  #footer > :nth-child(2) {
    order: 2;
  }
  #footer > :nth-child(3) {
    order: 1;
  }
}
@media all and (max-width: 500px) {
  #footer {
    font-size: 3vw;
    line-height: 2;
    padding-top: 3vw;
    padding-bottom: 3vw;
    margin-top: 15%;
  }
  #footer > :nth-child(1) {
    order: 3;
  }
  #footer > :nth-child(2) {
    order: 2;
  }
  #footer > :nth-child(3) {
    order: 1;
  }
}

#nav {
  position: fixed;
  z-index: 100;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.805) 0%, rgba(0, 0, 0, 0.629) 5%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1vw 3vw;
}
@media all and (max-width: 1024px) {
  #nav {
    background-image: none;
    padding: 2vw;
    padding-right: 6vw;
    padding-left: 6vw;
    background-color: #534741;
  }
  #nav .nav-icon {
    width: 15vw;
  }
}
@media all and (max-width: 500px) {
  #nav {
    background-image: none;
    padding: 4vw;
    padding-right: 7vw;
    padding-left: 7vw;
    background-color: #534741;
  }
  #nav .nav-icon {
    width: 30vw;
  }
}

.nav-icon {
  z-index: 99;
  position: relative;
}
.nav-icon > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.nav-icon img {
  width: 10vw;
}
@media all and (max-width: 1024px) {
  .nav-icon img {
    width: 100%;
  }
}

.nav-hamb-icon {
  display: none;
}

@media all and (max-width: 1024px) {
  .nav-hamb-icon {
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border: none;
    background-color: transparent;
    pointer-events: auto;
  }
  .nav-hamb-icon > span {
    width: 100%;
    height: 1px;
    background-color: white;
  }
}
@media all and (max-width: 500px) {
  .nav-hamb-icon {
    width: 5vw;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border: none;
    background-color: transparent;
    pointer-events: auto;
  }
  .nav-hamb-icon > span {
    width: 100%;
    height: 1px;
    background-color: white;
  }
}
.nav-list {
  display: flex;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .nav-list {
    width: 100%;
  }
}

.nav-list-show {
  display: flex;
}

.nav-list-ul {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-list-ul > div {
  display: flex;
  align-items: center;
}
.nav-list-ul a {
  color: white;
  text-decoration: none;
}
.nav-list-ul li {
  color: white;
  font-size: 0.9vw;
  font-family: "Noto Serif TC", serif;
  font-weight: 400;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  letter-spacing: 0.4rem;
  cursor: pointer;
  pointer-events: auto;
}
.nav-list-ul li:nth-child(1),
.nav-list-ul li:nth-child(2),
.nav-list-ul li:nth-child(3),
.nav-list-ul li:nth-child(4) {
  position: relative;
}
.nav-list-ul li:nth-child(1)::after,
.nav-list-ul li:nth-child(2)::after,
.nav-list-ul li:nth-child(3)::after,
.nav-list-ul li:nth-child(4)::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 1px;
  height: 60%;
  bottom: 15%;
  right: 0;
}
@media all and (max-width: 1024px) {
  .nav-list-ul li:nth-child(1)::after,
  .nav-list-ul li:nth-child(2)::after,
  .nav-list-ul li:nth-child(3)::after,
  .nav-list-ul li:nth-child(4)::after {
    content: "";
    width: 0px;
  }
}
@media all and (max-width: 1024px) {
  .nav-list-ul {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    pointer-events: none;
  }
  .nav-list-ul li {
    font-size: 3vw;
    padding: 2.5rem;
  }
  .nav-list-ul > div {
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
}
@media all and (max-width: 500px) {
  .nav-list-ul {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    pointer-events: none;
  }
  .nav-list-ul li {
    font-size: 4vw;
    padding: 2.5rem;
  }
  .nav-list-ul > div {
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
}

.loading-page {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #534741;
  background-repeat: repeat;
  background-size: 100%;
  transition: opacity 0.6s;
  pointer-events: none;
  overflow: hidden;
}
.loading-page .box-para {
  font-size: 1.5vw;
  margin-top: 1vw;
}
@media all and (max-width: 1024px) {
  .loading-page .box-para {
    font-size: 6vw;
    margin-top: 3vw;
  }
}

.speaker {
  width: 1.5vw;
  position: fixed;
  right: 2vw;
  bottom: 1.5vw;
  cursor: pointer;
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .speaker {
    width: 5vw;
    bottom: 2vw;
  }
}
@media all and (max-width: 500px) {
  .speaker {
    width: 6.5vw;
    right: 3vw;
    bottom: 3vw;
  }
}
.speaker img {
  display: none;
  width: 100%;
  pointer-events: none;
}
.speaker .active {
  display: block;
  width: 100%;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5vw;
  position: relative;
}
@media all and (max-width: 1024px) {
  .box {
    width: 100%;
  }
}

@media all and (max-width: 1024px) {
  .box-img {
    width: 25vw;
  }
}
@media all and (max-width: 500px) {
  .box-img {
    width: 40vw;
  }
}

.box-para {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25vw;
  letter-spacing: 2px;
  color: #aa9784;
}
@media all and (max-width: 1024px) {
  .box-para {
    font-size: 6vw;
  }
}
@media all and (max-width: 500px) {
  .box-para {
    font-size: 8vw;
  }
}

.first-cut {
  position: relative;
  width: 100%;
  clip-path: ellipse(61% 81% at 50% 19%);
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .first-cut {
    clip-path: ellipse(117% 55% at 50% 44%);
    height: 50vh;
  }
}

.first-cut-img-container {
  height: 100%;
}
.first-cut-img-container img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoom 15s linear infinite;
}

.caseTitle {
  margin-top: 3%;
}
.caseTitle .first-cut-h1 {
  text-align: center;
  color: #65534b;
  font-weight: 600;
  font-size: 2vw;
  font-family: "Noto Serif TC", serif;
}
@media all and (max-width: 1024px) {
  .caseTitle .first-cut-h1 {
    font-size: 7vw;
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.previous {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #736357;
  padding: 0.75vw 2vw;
  border-radius: 30px;
  gap: 0.5vw;
  width: 11vw;
  margin: 0 auto;
  margin-top: 5%;
  margin-bottom: 5%;
  cursor: pointer;
}
.previous > p {
  font-size: 1vw;
  font-family: "Microsoft JhengHei";
  letter-spacing: 3px;
  color: white;
}
.previous > img {
  width: 1vw;
}
@media all and (max-width: 1024px) {
  .previous {
    padding: 2vw 6vw;
    width: 34vw;
  }
  .previous > p {
    font-size: 3vw;
  }
  .previous > img {
    width: 3vw;
  }
}
@media all and (max-width: 500px) {
  .previous {
    padding: 2vw 6vw;
    width: 38vw;
  }
  .previous > p {
    font-size: 4vw;
  }
  .previous > img {
    width: 4vw;
  }
}

.second-cut {
  position: relative;
  margin-top: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .second-cut {
    margin-top: 8%;
  }
}

.second-cut-container {
  width: 86%;
  height: 37vw;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 1024px) {
  .second-cut-container {
    height: auto;
    flex-direction: column;
  }
}

.second-cut-images {
  width: 60vw;
  overflow: hidden;
  position: relative;
  margin-right: 2%;
}
.second-cut-images .swiper-slide > :nth-child(1) {
  height: 100%;
  border-radius: 22px;
}
@media all and (max-width: 500px) {
  .second-cut-images .swiper-slide > :nth-child(1) {
    border-radius: 10px;
  }
}
.second-cut-images > .swiper-button {
  position: absolute;
}
@media all and (max-width: 1024px) {
  .second-cut-images {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 3%;
  }
}

.swiper-button-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.second-cut-col {
  position: relative;
  width: 18vw;
  overflow: hidden;
}
.second-cut-col .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
}
.second-cut-col .swiper-slide > img {
  border-radius: 20px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.second-cut-col .thumbs-active {
  opacity: 1;
}
@media all and (max-width: 1024px) {
  .second-cut-col {
    width: 100%;
  }
  .second-cut-col .swiper-slide > img {
    border-radius: 8px;
  }
}

.swiper-button {
  width: 2vw;
}
@media all and (max-width: 1024px) {
  .swiper-button {
    width: 6vw;
  }
}

.swiper-button-next {
  transform-origin: left center;
  transform: rotate(90deg);
  left: 50%;
  top: 91%;
}
@media all and (max-width: 1024px) {
  .swiper-button-next {
    top: 50%;
    left: 93%;
    transform: translate(-50%, -50%);
    transform-origin: unset;
    margin-top: 0 !important;
  }
}

.swiper-button-prev {
  left: 50%;
  top: 2%;
  transform: rotate(90deg);
  transform-origin: left center;
}
@media all and (max-width: 1024px) {
  .swiper-button-prev {
    top: 50%;
    left: 7%;
    transform: translate(-50%, -50%);
    transform-origin: unset;
    margin-top: 0 !important;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: unset;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: unset;
}

.text-rotate {
  position: absolute;
  width: 8vw;
  animation: textRotate 10s linear infinite;
  margin-top: -7%;
  filter: brightness(0.5);
}

@keyframes textRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.third-cut {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.third-cut-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 86%;
}

.third-cut-title {
  color: #65534b;
  font-family: "Noto Serif TC", serif;
  font-size: 1.4vw;
  font-weight: 500;
  margin-top: 5%;
  margin-bottom: 2%;
}
@media all and (max-width: 1024px) {
  .third-cut-title {
    font-size: 4.5vw;
  }
}
@media all and (max-width: 500px) {
  .third-cut-title {
    font-size: 5.5vw;
  }
}

.third-cut-para {
  color: #1c1c1c;
  font-family: "Microsoft JhengHei";
  font-size: 0.9vw;
  letter-spacing: 2px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 4%;
}
@media all and (max-width: 1024px) {
  .third-cut-para {
    font-size: 2.75vw;
    margin-bottom: 8%;
  }
}
@media all and (max-width: 500px) {
  .third-cut-para {
    margin-bottom: 8%;
    font-size: 3.75vw;
  }
}

.third-cut-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media all and (max-width: 1024px) {
  .third-cut-bottom {
    justify-content: center;
    flex-direction: column;
    margin: 4vw 0;
  }
}

.third-cut-bottom-intr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media all and (max-width: 1024px) {
  .third-cut-bottom-intr {
    width: 100%;
  }
}

.third-cut-bottom-intr-in {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1vw;
  flex: 0 1 33.3%;
  padding: 0 2vw;
}
@media all and (max-width: 1024px) {
  .third-cut-bottom-intr-in {
    flex: 1 1 100%;
    margin-bottom: 4vw;
    padding: 0;
  }
}

.third-cut-bottom-content {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 4%;
}
.third-cut-bottom-content > :nth-child(1) {
  color: #65534b;
  font-family: "Noto Serif TC", serif;
  font-size: 1vw;
  font-weight: 400;
  flex: 0 1 4vw;
}
@media all and (max-width: 500px) {
  .third-cut-bottom-content > :nth-child(1) {
    flex: 0 1 70px;
  }
}
.third-cut-bottom-content > :nth-child(2) {
  color: #1c1c1c;
  font-family: "Microsoft JhengHei";
  font-size: 0.9vw;
  margin-left: 8%;
  font-weight: 400;
  letter-spacing: 2px;
  flex: 1 1;
}
@media all and (max-width: 1024px) {
  .third-cut-bottom-content > :nth-child(1) {
    font-size: 3.2vw;
    flex: 1 1 20%;
  }
  .third-cut-bottom-content > :nth-child(2) {
    font-size: 3vw;
    flex: 1 1 80%;
  }
}
@media all and (max-width: 500px) {
  .third-cut-bottom-content > :nth-child(1) {
    font-size: 4.2vw;
    flex: 1 1 25%;
  }
  .third-cut-bottom-content > :nth-child(2) {
    font-size: 4vw;
  }
}

.third-cut-bottom-line {
  width: 100%;
  height: 1px;
  background-color: #65534b;
}

.fourth-cut {
  position: relative;
  display: flex;
  justify-content: center;
}

.fourth-cut-container {
  width: 86%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .fourth-cut-container {
    margin-top: 1%;
  }
}

.fourth-cut-title {
  font-size: 1.4vw;
  color: #65534b;
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .fourth-cut-title {
    font-size: 4.5vw;
  }
}
@media all and (max-width: 500px) {
  .fourth-cut-title {
    font-size: 5.5vw;
  }
}

.fourth-cut-map {
  display: flex;
  justify-content: center;
  gap: 3vw;
  width: 100%;
  margin-top: 3%;
}
@media all and (max-width: 1024px) {
  .fourth-cut-map {
    flex-direction: column;
    justify-content: center;
    margin-top: 6%;
  }
}

.fourth-cut-map-img {
  flex: 1 1 47%;
  height: 430px;
}
@media all and (max-width: 1024px) {
  .fourth-cut-map-img {
    flex: 1 1 100%;
    height: 60vw;
  }
}
.fourth-cut-map-img > iframe {
  width: 100%;
  height: 100%;
}

.fourth-cut-form {
  flex: 1 1 47%;
}
@media all and (max-width: 1024px) {
  .fourth-cut-form {
    flex: 1 1 47%;
    margin-top: 5%;
  }
}

.form-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 3%;
}
@media all and (max-width: 1024px) {
  .form-item {
    margin-top: 3%;
    margin-bottom: 0%;
    align-items: flex-end;
  }
}

.form-line {
  width: 100%;
  height: 1px;
  background-color: #736357;
}
@media all and (max-width: 1024px) {
  .form-line {
    width: 77%;
  }
}

input[type=text],
textarea {
  background-color: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  -webkit-transition: background-color 0s 600000s, color 0s 600000s;
  transition: background-color 0s 600000s, color 0s 600000s;
}

.form-item-content {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 3%;
}
.form-item-content label {
  color: #333333;
  font-size: 1vw;
  width: 10%;
  gap: 50%;
  display: flex;
  font-weight: 500;
  font-family: "Noto Serif TC", serif;
}
.form-item-content input {
  color: black;
  font-size: 1vw;
  border: none;
  background-color: transparent;
  margin-left: 3%;
  width: 80%;
}
.form-item-content textarea {
  font-size: 1vw;
  border: none;
  background-color: transparent;
  resize: none;
  margin-top: 1%;
  width: 100%;
  height: 3vw;
}
@media all and (max-width: 1024px) {
  .form-item-content {
    margin-bottom: 5%;
  }
  .form-item-content label {
    font-size: 3.2vw;
    width: 22%;
    line-height: 1;
  }
  .form-item-content input {
    font-size: 3.2vw;
  }
  .form-item-content textarea {
    font-size: 3.2vw;
    height: 15vw;
    margin-left: 3%;
    margin-top: 0;
    width: 80%;
  }
}
@media all and (max-width: 500px) {
  .form-item-content {
    margin-bottom: 5%;
  }
  .form-item-content label {
    font-size: 4.2vw;
    width: 22%;
    line-height: 1;
  }
  .form-item-content input {
    font-size: 4.2vw;
  }
  .form-item-content textarea {
    font-size: 4.2vw;
    height: 15vw;
    margin-left: 3%;
    margin-top: 0;
    width: 80%;
  }
}

.error {
  color: red;
  font-size: 0.8vw;
  width: 100%;
  display: flex;
  font-weight: 500;
  font-family: "Noto Serif TC", serif;
}
@media all and (max-width: 1024px) {
  .error {
    font-size: 2vw;
  }
}
@media all and (max-width: 500px) {
  .error {
    font-size: 3vw;
  }
}

.form-textarea {
  flex-direction: column;
  align-items: flex-start;
}
@media all and (max-width: 1024px) {
  .form-textarea {
    flex-direction: row;
  }
}

.form-button {
  width: 100%;
  text-align: center;
  margin-top: 6%;
}
.form-button > button {
  border: none;
  background-color: #736357;
  color: white;
  padding: 0.75vw 6vw;
  border-radius: 30px;
  font-size: 1vw;
  cursor: pointer;
  letter-spacing: 2px;
}
@media all and (max-width: 1024px) {
  .form-button > button {
    padding: 1.5vw 10vw;
    font-size: 2.8vw;
  }
}
@media all and (max-width: 500px) {
  .form-button > button {
    padding: 2vw 12vw;
    font-size: 3.8vw;
  }
}