@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Noto+Serif+TC:wght@200..900&display=swap");
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #DEDBD4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader .loader {
  width: 48px;
  height: 48px;
  border: 3px solid #7A9283;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.font-deco {
  font-family: "Cormorant", "Noto Serif TC", serif;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

body {
  background-color: rgba(225, 220, 214, 0.5);
}

section.bannerArea {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 1024px) {
  section.bannerArea {
    display: none;
  }
}
section.bannerArea .wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  position: relative;
}
section.bannerArea .titleBox {
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif TC", "Cormorant", serif;
  color: #2c4c47;
  gap: 20px;
  margin-top: 110px;
  margin-bottom: 100px;
}
section.bannerArea .titleBox span {
  font-size: clamp(70px, 6vw, 100px);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
section.bannerArea .titleBox .inner {
  display: flex;
  align-items: center;
}
section.bannerArea .titleBox h1 {
  font-size: 40px;
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 30px;
}
section.bannerArea .titleBox .lineDot {
  display: flex;
  align-items: center;
  width: 105px;
  height: 1px;
  background-color: #2c4c47;
  position: relative;
}
section.bannerArea .titleBox .lineDot::after {
  content: "";
  display: block;
  position: absolute;
  right: -25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2c4c47;
}
@media (max-width: 1024px) {
  section.bannerArea .titleBox {
    margin-top: 30px;
    margin-bottom: 65px;
  }
  section.bannerArea .titleBox span {
    font-size: 17px;
    order: 2;
  }
  section.bannerArea .titleBox .inner {
    order: 1;
  }
  section.bannerArea .titleBox h1 {
    margin-right: 10px;
  }
  section.bannerArea .titleBox .lineDot {
    width: 40px;
  }
  section.bannerArea .titleBox .lineDot::after {
    right: -10px;
    width: 4px;
    height: 4px;
  }
}
section.bannerArea .maskArea {
  width: 100%;
  min-height: 200px;
  font-family: "Cormorant", "Noto Serif TC", serif;
  line-height: 1;
  position: relative;
  font-size: clamp(62px, 6.25vw, 120px);
  font-weight: bold;
  color: #c6b999;
  overflow: hidden;
  z-index: 3;
}
section.bannerArea .maskArea .reveal-text {
  font-size: clamp(26px, 5.2vw, 40px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #2c4c47;
  width: 100%;
  height: 100%;
  text-align: left;
  z-index: 1;
  pointer-events: none;
  clip-path: circle(85px at var(--x) var(--y));
  transition: clip-path 0.1s;
}
@media (max-width: 1440px) {
  section.bannerArea .maskArea .reveal-text {
    clip-path: circle(70px at var(--x) var(--y));
  }
}
section.bannerArea .maskArea .reveal-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  clip-path: circle(85px at var(--x) var(--y));
  transition: clip-path 0.1s;
  z-index: -1;
}
section.bannerArea .maskArea .reveal-text p {
  line-height: 1.5;
  position: absolute;
  right: 30%;
  top: 40%;
}
@media (max-width: 1024px) {
  section.bannerArea {
    padding-top: 58px;
  }
}

section.bannerArea-mb {
  padding-top: 58px;
  display: none;
  border-bottom: 1px solid #2c4c47;
}
@media (max-width: 1024px) {
  section.bannerArea-mb {
    display: block;
  }
}
section.bannerArea-mb .maskArea {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 350px;
  font-family: "Cormorant", "Noto Serif TC", serif;
  line-height: 1;
  position: relative;
  font-size: clamp(88px, 10.7vw, 110px);
  font-weight: bold;
  color: #c6b999;
  overflow: hidden;
  z-index: 3;
  letter-spacing: 2px;
  padding: 0 40px;
  margin-top: 70px;
}
section.bannerArea-mb .maskArea span {
  font-size: clamp(60px, 7.3vw, 75px);
}
section.bannerArea-mb .maskArea .reveal-text {
  font-size: clamp(30px, 5.2vw, 40px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #2c4c47;
  width: 100%;
  height: 100%;
  text-align: left;
  z-index: 1;
  pointer-events: none;
  clip-path: circle(60px at var(--x) var(--y));
  transition: clip-path 0.1s;
}
section.bannerArea-mb .maskArea .reveal-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  clip-path: circle(85px at var(--x) var(--y));
  transition: clip-path 0.1s;
  z-index: -1;
}
section.bannerArea-mb .maskArea .reveal-text p {
  line-height: 1.5;
  position: absolute;
  right: 0;
  top: 30%;
}
section.bannerArea-mb .titleBox {
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif TC", "Cormorant", serif;
  color: #2c4c47;
  gap: 10px;
  margin: 70px 0;
  padding: 0 40px;
}
section.bannerArea-mb .titleBox span {
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  order: 2;
}
section.bannerArea-mb .titleBox .inner {
  display: flex;
  align-items: center;
  order: 1;
}
section.bannerArea-mb .titleBox h1 {
  font-size: 40px;
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 10px;
}
section.bannerArea-mb .titleBox .lineDot {
  display: flex;
  align-items: center;
  width: 40px;
  height: 1px;
  background-color: #2c4c47;
  position: relative;
}
section.bannerArea-mb .titleBox .lineDot::after {
  content: "";
  display: block;
  position: absolute;
  right: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #2c4c47;
}

section.listArea {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 75px;
}
section.listArea .wrap {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 40px;
}
section.listArea .listBox {
  display: flex;
  flex-wrap: wrap;
}
section.listArea .listName {
  display: flex;
  justify-content: center;
  padding-right: 25px;
  margin-bottom: 34px;
  font-size: 18px;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 2px;
  position: relative;
  font-weight: 600;
}
section.listArea .listName a {
  color: #2c4c47;
  text-decoration: none;
}
section.listArea .listName .inner::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #2c4c47;
  position: absolute;
  top: -8px;
  transition: width 0.3s ease-in-out;
}
section.listArea .listName .inner:hover::before {
  width: calc(100% - 30px);
}
@media (max-width: 768px) {
  section.listArea .listName {
    font-size: 14px;
  }
}

section.cardArea {
  margin-top: 10.4vw;
  margin-bottom: 6.5vw;
}
section.cardArea .wrap {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
section.cardArea .cardBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  row-gap: 85px;
  max-width: 1250px;
}
section.cardArea .cardItem {
  width: 100%;
  position: relative;
}
section.cardArea .cardItem .imgBox {
  width: 100%;
  height: 250px;
  border-radius: 0px 40px 0px 0px;
  overflow: hidden;
}
section.cardArea .cardItem .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
section.cardArea .cardItem:hover .imgBox img {
  transform: scale(1.05);
  opacity: 0.8;
}
@media (max-width: 1180px) {
  section.cardArea {
    margin-top: 100px;
  }
  section.cardArea .cardBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    row-gap: 40px;
  }
}
@media (max-width: 575px) {
  section.cardArea {
    margin-top: 60px;
  }
  section.cardArea .cardBox {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    row-gap: 30px;
  }
}
section.cardArea .contentBox {
  display: flex;
  margin-top: 18px;
}
section.cardArea .contentBox .icon {
  margin-right: 25px;
  margin-top: 12px;
  flex-shrink: 0;
  max-width: 80px;
  height: 80px;
}
section.cardArea .contentBox .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.cardArea .contentBox .textBox {
  color: #2c4c47;
  width: 100%;
}
section.cardArea .contentBox .textBox .upper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 25px 0 0;
}
section.cardArea .contentBox .textBox .title {
  display: flex;
  align-items: flex-end;
}
section.cardArea .contentBox .textBox .title p {
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
section.cardArea .contentBox .textBox .price {
  font-weight: 600;
  line-height: 36px;
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Cormorant", "Noto Serif TC", serif;
}
section.cardArea .contentBox .textBox .line {
  position: absolute;
  width: calc(100% - 30px);
  height: 1px;
  background-color: #2c4c47;
  bottom: -5px;
}
section.cardArea .contentBox .textBox .line::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background-color: #2c4c47;
  right: -11px;
  top: -1.5px;
  border-radius: 50%;
}
section.cardArea .contentBox .textBox .line::after {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 1px;
  background-color: #2c4c47;
  right: -45px;
}
section.cardArea .contentBox .textBox .des {
  font-family: "Noto Serif TC", serif;
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  margin-right: 20px;
  line-height: 1.6;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.cardArea .contentBox .textBox a {
  color: #2c4c47;
  text-decoration: none;
}
@media (max-width: 768px) {
  section.cardArea .contentBox .icon {
    max-width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  section.cardArea .contentBox .textBox {
    width: 100%;
  }
  section.cardArea .contentBox .textBox .upper {
    margin-right: 15px;
  }
  section.cardArea .contentBox .textBox .line::after {
    right: -40px;
    width: 20px;
  }
}
@media (max-width: 575px) {
  section.cardArea .contentBox .icon {
    margin-top: 15px;
  }
  section.cardArea .contentBox .textBox {
    width: 100%;
  }
  section.cardArea .contentBox .textBox .upper .title p {
    font-size: 18px;
    line-height: 28px;
  }
  section.cardArea .contentBox .textBox .des {
    font-size: 16px;
    margin-top: 15px;
    margin-right: 10px;
    line-height: 1.5;
  }
}

section.pageBox {
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
}
section.pageBox ul {
  display: flex;
  gap: 70px;
}
section.pageBox li {
  position: relative;
  transition: opacity 0.3s;
}
section.pageBox li:hover #page-effect {
  opacity: 1;
}
section.pageBox li:hover a {
  transform: scale(1.2);
}
section.pageBox #page-effect {
  position: absolute;
  transform: translate(-25%, -10%);
  opacity: 0;
}
section.pageBox a {
  display: inline-block;
  font-size: 22px;
  position: relative;
  color: #2c4c47;
  font-family: "Cormorant", "Noto Serif TC", serif;
  text-decoration: none;
  transition: transform 0.3s;
  will-change: transform;
}
@media (max-width: 768px) {
  section.pageBox {
    margin-top: 65px;
    margin-bottom: 100px;
  }
  section.pageBox ul {
    gap: 30px;
  }
  section.pageBox #page-effect {
    transform: translate(-30%, -15%);
  }
  section.pageBox a {
    font-size: 18px;
  }
}