@charset "UTF-8";
@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");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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);
  }
}
.moreBtn {
  position: absolute;
}
.moreBtn a {
  color: #2c4c47;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 1px;
  font-family: "Cormorant", "Noto Serif TC", serif;
  font-weight: 700;
}
.moreBtn::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #2c4c47;
  position: absolute;
  top: -5px;
  left: 0;
  transition: width 0.3s ease-in-out;
}
.moreBtn:hover::before {
  width: 100%;
}
@media (max-width: 768px) {
  .moreBtn a {
    font-size: 18px;
  }
}

.font-deco {
  font-family: "Cormorant", "Noto Serif TC", serif;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.homeArea {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background-color: #e3dfdb;
}
@media (max-width: 1024px) {
  .homeArea {
    padding-top: 50px;
  }
}
.homeArea .section1 {
  margin-bottom: 130px;
}
.homeArea .section1 .wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.homeArea .section1 .imgBox {
  width: 100%;
  height: 990px;
  position: relative;
  z-index: 1;
  border-radius: 0 0 0 140px;
  overflow: hidden;
}
.homeArea .section1 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.homeArea .section1 .imgBox::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(63, 27, 0, 0.43);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.homeArea .section1 .textBox {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 60px;
  width: 100%;
  position: absolute;
  z-index: 2;
  margin-top: 6.77vw;
}
@media (max-width: 768px) {
  .homeArea .section1 .textBox {
    gap: 0px;
    margin-top: 26.77vw;
  }
}
.homeArea .section1 .textBox p {
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
}
.homeArea .section1 .textBox p:nth-of-type(2) {
  font-family: "Cormorant", "Noto Serif TC", serif;
}
.homeArea .section1 .textBox .cataBtn {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .homeArea .section1 .textBox .cataBtn {
    margin-top: 50px;
  }
}
.homeArea .section1 .textBox .cataBtn svg {
  transform: scale(1.2);
  margin-right: 30px;
}
@media (max-width: 768px) {
  .homeArea .section1 .textBox .cataBtn svg {
    transform: scale(1);
    margin-right: 20px;
  }
}
.homeArea .section1 .textBox .cataBtn svg g:hover .hover-effect {
  opacity: 0.7;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .homeArea .section1 {
    margin-bottom: 60px;
  }
  .homeArea .section1 .imgBox {
    width: 100%;
    height: 667px;
    border-radius: 0 0 0 50px;
  }
  .homeArea .section1 .textBox p {
    font-size: 16px;
  }
  .homeArea .section1 .textBox p:nth-of-type(2) {
    font-size: 14px;
  }
}
.homeArea .section2 {
  padding-top: 240px;
  padding-bottom: 15.625vw;
  position: relative;
  width: 100%;
}
.homeArea .section2 .wrap {
  max-width: 1920px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.homeArea .section2 .topDeco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  max-width: 520px;
}
.homeArea .section2 .topDeco img {
  width: 100%;
  height: auto;
  display: block;
}
.homeArea .section2 .bottomDeco {
  position: absolute;
  bottom: -40px;
  left: 700px;
  z-index: 4;
  width: 100%;
  max-width: 280px;
}
.homeArea .section2 .bottomDeco img {
  width: 100%;
  height: auto;
  display: block;
}
.homeArea .section2 .inner {
  width: 710px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.homeArea .section2 .about {
  font-family: "Cormorant", "Noto Serif TC", serif;
  font-size: 26px;
  font-weight: 600;
  color: #2c4c47;
  margin-bottom: 35px;
}
.homeArea .section2 .about::before {
  content: "( ";
}
.homeArea .section2 .about::after {
  content: " )";
}
.homeArea .section2 .logoBox {
  margin-bottom: 50px;
}
.homeArea .section2 .textBox {
  margin-bottom: 100px;
  color: #241512;
  letter-spacing: 1px;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.homeArea .section2 .moreBtn {
  position: relative;
  transition: transform 0.3s ease;
}
.homeArea .section2 .moreBtn svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -55%);
}
.homeArea .section2 .moreBtn::before {
  top: -10px;
  transition: width 0.75s ease-in-out;
  width: 100%;
}
.homeArea .section2 .moreBtn:hover {
  transform: scale(1.2);
}
.homeArea .section2 .decoRightBox {
  width: 18.5vw;
  height: 400px;
  border-radius: 0 0 0 70px;
  overflow: hidden;
  position: absolute;
  top: 240px;
  right: 0;
}
.homeArea .section2 .decoRightBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.homeArea .section2 .decoLeftBox {
  width: 100%;
  height: 385px;
}
.homeArea .section2 .decoLeftBox .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.homeArea .section2 .decoLeftBox .swiper .swiper-slide {
  width: 100%;
  max-width: 943px;
  border-radius: 70px;
  overflow: hidden;
}
.homeArea .section2 .decoLeftBox .swiper .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 20px;
  gap: 25px;
  z-index: 2;
  bottom: -30px;
}
.homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 1px;
  bottom: 0;
  background-color: #2c4c47;
  opacity: 1;
  border-radius: 0;
  position: relative;
  margin: 0;
}
.homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet .progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c4c47;
  transition: width 0.6s ease-in-out;
}
.homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  right: -18px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid #2c4c47;
}
.homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  transform: translateY(-1px);
}
.homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
  background-color: #2c4c47;
}
.homeArea .section2 .decoLeftBox .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.homeArea .section2 .decoLeftBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .homeArea .section2 .decoRightBox {
    display: none;
  }
}
@media (max-width: 992px) {
  .homeArea .section2 {
    padding-top: 135px;
    padding-bottom: 135px;
  }
  .homeArea .section2 .about {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .homeArea .section2 .logoBox {
    margin-bottom: 25px;
    transform: scale(0.5);
  }
  .homeArea .section2 .textBox {
    font-size: 16px;
    margin-bottom: 45px;
  }
  .homeArea .section2 .topDeco {
    max-width: 74vw;
    left: -60px;
    transform: scale(0.6);
  }
  .homeArea .section2 .bottomDeco {
    position: absolute;
    bottom: 5px;
    right: 0;
    left: auto;
    width: 37vw;
    max-width: 100%;
  }
  .homeArea .section2 .decoLeftBox {
    width: 293px;
    height: 200px;
  }
  .homeArea .section2 .decoLeftBox .swiper .swiper-pagination {
    gap: 20px;
  }
  .homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 35px;
  }
  .homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet::after {
    width: 6px;
    height: 6px;
    right: -15px;
  }
  .homeArea .section2 .decoLeftBox .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress {
    height: 3px;
  }
}
.homeArea .album {
  width: 100%;
}
.homeArea .album .swiper .swiper-slide {
  display: inline-flex;
}
@media (max-width: 768px) {
  .homeArea .album .swiper .swiper-slide {
    width: 33.3333333333%;
  }
}
.homeArea .album .swiper .swiper-slide .imgBox {
  width: 100%;
  max-width: 943px;
}
.homeArea .album .swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 70px;
}
@media (max-width: 768px) {
  .homeArea .album .swiper .swiper-slide .imgBox img {
    margin-right: 0;
    width: 460px;
    height: auto;
    min-width: initial;
    min-height: initial;
    border-radius: 25px;
  }
}
@media (max-width: 576px) {
  .homeArea .album .swiper .swiper-slide .imgBox img {
    margin-right: 0;
    width: 300px;
    height: 165px;
    min-width: initial;
    min-height: initial;
  }
}
.homeArea .album .swiper .swiper-button-prev,
.homeArea .album .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
}
.homeArea .album .swiper .swiper-button-prev svg,
.homeArea .album .swiper .swiper-button-next svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(0.5);
}
@media (max-width: 768px) {
  .homeArea .album .swiper .swiper-button-prev,
  .homeArea .album .swiper .swiper-button-next {
    width: 38px;
    height: 38px;
  }
}
.homeArea .album .swiper .swiper-button-prev:after,
.homeArea .album .swiper .swiper-button-next:after {
  display: none;
}
.homeArea .section3 {
  padding-top: 360px;
  padding-bottom: 230px;
  position: relative;
}
@media (max-width: 992px) {
  .homeArea .section3 {
    padding-top: 150px;
    padding-bottom: 140px;
  }
}
.homeArea .section3 .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.homeArea .section3 .titleBox {
  position: absolute;
  top: 265px;
  right: 0;
  max-width: 42vw;
  width: 100%;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.homeArea .section3 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
}
.homeArea .section3 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.homeArea .section3 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 992px) {
  .homeArea .section3 .titleBox {
    left: 0;
    top: 150px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .homeArea .section3 .titleBox .title {
    font-size: 32px;
  }
  .homeArea .section3 .titleBox span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .homeArea .section3 .titleBox .title {
    font-size: 26px;
  }
  .homeArea .section3 .titleBox span {
    font-size: 18px;
  }
}
.homeArea .section3 .programCard {
  display: flex;
  margin-top: 130px;
  margin-bottom: 190px;
  width: 100%;
  max-width: 2000px;
  position: relative;
  height: 600px;
}
.homeArea .section3 .programCard .swiper {
  width: 100%;
  height: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.homeArea .section3 .programCard .swiper-wrapper {
  width: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
}
.homeArea .section3 .programCard .swiper-slide {
  opacity: 0.4;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1) !important;
  height: 418px;
  position: relative;
}
.homeArea .section3 .programCard .swiper-slide .cardDeco {
  position: absolute;
  bottom: -60px;
  left: -75px;
  opacity: 0;
}
.homeArea .section3 .programCard .swiper-slide .item {
  width: 290px;
  height: 290px;
  transition: all 0.5s ease;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 2;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active .item {
  width: 560px;
  height: 560px;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active .cata {
  font-size: 28px;
  margin-bottom: 55px;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active .name {
  font-size: 45px;
  margin-bottom: 35px;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active .price {
  font-family: "Cormorant", "Noto Serif TC", serif;
  font-size: 75px;
  margin-bottom: 80px;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active .btn {
  text-decoration: none;
  color: #2c4c47;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-active .cardDeco {
  opacity: 1;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-prev, .homeArea .section3 .programCard .swiper-slide.swiper-slide-next {
  opacity: 0.7;
  transform: scale(1) !important;
  z-index: 1;
}
.homeArea .section3 .programCard .swiper-slide.swiper-slide-prev .item, .homeArea .section3 .programCard .swiper-slide.swiper-slide-next .item {
  width: 400px;
  height: 400px;
}
.homeArea .section3 .programCard .swiper-button-next,
.homeArea .section3 .programCard .swiper-button-prev {
  color: #2c4c47;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  margin-top: 0;
  z-index: 10;
}
.homeArea .section3 .programCard .swiper-button-next::after,
.homeArea .section3 .programCard .swiper-button-prev::after {
  display: none;
}
.homeArea .section3 .programCard .swiper-button-prev {
  left: calc(50% - 390px);
}
.homeArea .section3 .programCard .swiper-button-next {
  right: calc(50% - 390px);
}
.homeArea .section3 .programCard .item {
  position: relative;
  cursor: pointer;
}
.homeArea .section3 .programCard .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: 98%;
  background: #fff;
  flex-shrink: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.homeArea .section3 .programCard .item:hover::after {
  opacity: 0.3;
}
.homeArea .section3 .programCard .item .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.homeArea .section3 .programCard .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.homeArea .section3 .programCard .item .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif TC", "Cormorant", serif;
  color: #2c4c47;
  z-index: 2;
  transition: transform 0.3s ease;
}
.homeArea .section3 .programCard .item:hover .inner {
  transform: scale(1.05);
}
.homeArea .section3 .programCard .item .cata {
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 25px;
}
.homeArea .section3 .programCard .item .name {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 5px;
}
.homeArea .section3 .programCard .item .price {
  font-family: "Cormorant", "Noto Serif TC", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 50px;
}
.homeArea .section3 .programCard .item .btn {
  text-decoration: none;
  color: #2c4c47;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .homeArea .section3 .programCard {
    margin-bottom: 20px;
    margin-top: 130px;
    height: 330px;
  }
  .homeArea .section3 .programCard .swiper {
    height: 270px;
  }
  .homeArea .section3 .programCard .swiper-slide {
    height: 418px;
  }
  .homeArea .section3 .programCard .swiper-slide.swiper-slide-active .item {
    width: 260px;
    height: 260px;
  }
  .homeArea .section3 .programCard .swiper-slide.swiper-slide-active .cata {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .homeArea .section3 .programCard .swiper-slide.swiper-slide-active .name {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .homeArea .section3 .programCard .swiper-slide.swiper-slide-active .price {
    font-family: "Cormorant", "Noto Serif TC", serif;
    font-size: 34px;
    margin-bottom: 30px;
  }
  .homeArea .section3 .programCard .swiper-slide.swiper-slide-active .btn {
    gap: 15px;
    font-size: 14px;
  }
  .homeArea .section3 .programCard .swiper-slide.swiper-slide-active .cardDeco {
    transform: scale(0.5);
    bottom: -40px;
  }
  .homeArea .section3 .programCard .swiper-button-prev {
    transform: scale(0.5);
    left: calc(50% - 180px);
    top: 45%;
  }
  .homeArea .section3 .programCard .swiper-button-next {
    transform: scale(0.5);
    right: calc(50% - 180px);
    top: 45%;
  }
}
.homeArea .section3 .iconCard {
  margin-bottom: 210px;
  padding: 0 50px;
}
.homeArea .section3 .iconCard .inner {
  display: flex;
  row-gap: 100px;
  flex-wrap: wrap;
  max-width: 745px;
}
.homeArea .section3 .iconCard .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3333333333%;
}
.homeArea .section3 .iconCard .item:hover svg g {
  animation: arrowMove 1s ease-in-out infinite;
}
.homeArea .section3 .iconCard .item .number {
  font-size: 34px;
  font-weight: 600;
  font-family: "Cormorant", "Noto Serif TC", serif;
  position: relative;
  color: #2c4c47;
}
.homeArea .section3 .iconCard .item .number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
  bottom: -15px;
  left: 0;
}
.homeArea .section3 .iconCard .item .iconBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 140px;
  margin-top: 50px;
  position: relative;
}
.homeArea .section3 .iconCard .item .iconBox .iconHover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: shine 1.5s ease-in-out infinite;
}
@keyframes shine {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.homeArea .section3 .iconCard .item .iconBox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
  bottom: -35px;
  left: 0;
}
.homeArea .section3 .iconCard .item .title {
  width: 165px;
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-top: 70px;
  margin-bottom: 40px;
  text-align: center;
  color: #2c4c47;
}
.homeArea .section3 .iconCard .item .title,
.homeArea .section3 .iconCard .item .more {
  cursor: pointer;
}
.homeArea .section3 .iconCard .item .more svg g {
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .homeArea .section3 .iconCard {
    margin-bottom: 120px;
  }
  .homeArea .section3 .iconCard .inner {
    row-gap: 55px;
  }
}
@media (max-width: 768px) {
  .homeArea .section3 .iconCard .item {
    width: 50%;
  }
  .homeArea .section3 .iconCard .item .number {
    font-size: 24px;
  }
  .homeArea .section3 .iconCard .item .number::after {
    bottom: -10px;
  }
  .homeArea .section3 .iconCard .item .iconBox {
    width: 90px;
    height: 90px;
    margin-top: 30px;
  }
  .homeArea .section3 .iconCard .item .iconBox::after {
    bottom: -28px;
  }
  .homeArea .section3 .iconCard .item .title {
    font-size: 16px;
    line-height: 23px;
    margin-top: 40px;
    margin-bottom: 22px;
  }
  .homeArea .section3 .iconCard .item .more {
    transform: scale(0.8);
  }
}
.homeArea .section3 .moreBtn {
  position: relative;
  font-weight: 400;
  margin-bottom: 100px;
  cursor: pointer;
}
.homeArea .section3 .moreBtn svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -55%);
}
.homeArea .section3 .moreBtn::before {
  top: -20px;
  transition: width 0.75s ease-in-out;
  width: 100%;
}
.homeArea .decoBox {
  position: absolute;
  bottom: -15px;
  right: -2px;
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .homeArea .decoBox {
    transform: scale(0.8);
    right: -85px;
    bottom: -90px;
  }
}
@media (max-width: 768px) {
  .homeArea .decoBox {
    bottom: -50px;
  }
}

.middleContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  color: #1f4945;
}
.middleContent .title {
  letter-spacing: 3px;
  margin: 80px 0 35px 0;
}
@media (max-width: 768px) {
  .middleContent .title {
    font-size: 20px;
    margin: 60px 0 25px 0;
  }
}
.middleContent .subtitle {
  letter-spacing: 3px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .middleContent .subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
}
.middleContent .content {
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .middleContent .content {
    font-size: 13px;
    margin-bottom: 60px;
  }
}
.middleContent .content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  margin-left: 70px;
}
@media (max-width: 768px) {
  .middleContent .content ul {
    margin-left: 40px;
  }
}
.middleContent a {
  color: #2c4c47;
  text-decoration: none;
}

.pic-04 {
  margin-bottom: 80px;
}

.section4 {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section4 {
    margin-top: -40px;
  }
}
.section4 .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
}
.section4 .wrap .imgBox {
  width: 100%;
  height: 990px;
}
.section4 .wrap .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section4 .wrap .imgBox .overlay {
  position: absolute;
  top: -1px;
  left: 0;
  height: 101%;
  width: 101%;
  max-width: 1920px;
  z-index: 1;
}
.section4 .wrap .imgBox .overlay img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(99%) sepia(94%) saturate(102%) hue-rotate(304deg) brightness(95%) contrast(87%);
}
@media (max-width: 992px) {
  .section4 .wrap .imgBox {
    height: 700px;
  }
}
.section4 .wrap .textBox {
  padding: 0 20px;
  position: absolute;
  z-index: 3;
  color: #fff;
  font-size: 42px;
  line-height: 30px;
  font-weight: 600;
  font-family: "Cormorant", "Noto Serif TC", serif;
  text-align: center;
}
.section4 .wrap .textBox .desktop {
  display: block;
}
.section4 .wrap .textBox .mobile {
  display: none;
  font-size: 36px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .section4 .wrap .textBox .desktop {
    display: none;
  }
  .section4 .wrap .textBox .mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .section4 .wrap .textBox .mobile {
    font-size: 24px;
    line-height: 34px;
  }
}

.section5 {
  padding-top: 240px;
  padding-bottom: 240px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .section5 {
    padding-top: 112px;
    padding-bottom: 150px;
  }
}
.section5 .wrap {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .section5 .wrap {
    align-items: flex-end;
  }
}
.section5 .bottomDeco {
  position: absolute;
  bottom: -150px;
  left: 0;
  z-index: -1;
  width: 100%;
}
.section5 .bottomDeco img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  .section5 .bottomDeco {
    bottom: -90px;
  }
}
.section5 .titleBox {
  position: absolute;
  top: 265px;
  right: 0;
  max-width: 46vw;
  width: 100%;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.section5 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
}
.section5 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.section5 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.section5 .titleBox .moreBtn {
  margin-top: 80px;
  transition: transform 0.3s ease;
}
.section5 .titleBox .moreBtn::before {
  width: 100%;
  top: -10px;
}
.section5 .titleBox .moreBtn:hover {
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .section5 .titleBox {
    left: 0;
    top: 120px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .section5 .titleBox .title {
    font-size: 32px;
  }
  .section5 .titleBox span {
    font-size: 22px;
  }
  .section5 .titleBox .moreBtn {
    display: none;
  }
}
@media (max-width: 575px) {
  .section5 .titleBox .title {
    font-size: 26px;
  }
  .section5 .titleBox span {
    font-size: 18px;
  }
}
.section5 .textBox {
  width: 518px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 30px;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.section5 .textBox .moreBtn {
  display: none;
}
@media (max-width: 992px) {
  .section5 .textBox {
    width: 38vw;
    font-size: 16px;
  }
  .section5 .textBox .moreBtn {
    display: flex;
    margin-top: 45px;
  }
}
.section5 .cardBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.6vw;
  row-gap: 4vw;
  padding-top: 250px;
}
@media (max-width: 1024px) {
  .section5 .cardBox {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section5 .cardBox {
    grid-template-columns: 1fr;
    padding: 0 20px;
    padding-top: 150px;
    row-gap: 30px;
  }
}
.section5 .cardBox .cardItem {
  cursor: pointer;
  position: relative;
  padding: 2.3vw 1.6vw 1.8vw 2.6vw;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .section5 .cardBox .cardItem {
    padding: 25px 15px 17.5px 30px;
  }
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem {
    padding: 25px 15px 17.5px 30px;
  }
}
.section5 .cardBox .cardItem:hover {
  background-color: #fff;
  transition: background-color 0.3s;
}
.section5 .cardBox .cardItem:hover .deco .dot {
  background-color: transparent;
}
.section5 .cardBox .cardItem:hover .more {
  background-color: transparent;
}
.section5 .cardBox .cardItem .noteBox {
  position: absolute;
  left: 16px;
}
.section5 .cardBox .cardItem .noteBox .dot {
  width: 15px;
  height: 15px;
  background-color: #e3dfdb;
  border-radius: 50%;
  margin-bottom: 23px;
}
@media (max-width: 1280px) {
  .section5 .cardBox .cardItem .noteBox {
    left: 10px;
  }
}
@media (max-width: 1024px) {
  .section5 .cardBox .cardItem .noteBox {
    left: 8px;
  }
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem .noteBox {
    top: 30px;
    left: 8px;
  }
  .section5 .cardBox .cardItem .noteBox .dot {
    width: 10px;
    height: 10px;
    margin-bottom: 16px;
  }
}
.section5 .cardBox .cardItem a {
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 20px;
  font-weight: 600;
}
.section5 .cardBox .cardItem .rank {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem .rank {
    gap: 3px;
  }
  .section5 .cardBox .cardItem .rank img {
    transform: scale(0.8);
  }
}
.section5 .cardBox .cardItem .author {
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #2c4c47;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem .author {
    font-size: 16px;
    line-height: 20px;
  }
}
.section5 .cardBox .cardItem .deco {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2px;
  margin-bottom: 15px;
}
.section5 .cardBox .cardItem .deco .line-1 {
  width: 85%;
  height: 1px;
  background-color: #2c4c47;
}
.section5 .cardBox .cardItem .deco .dot {
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: relative;
}
.section5 .cardBox .cardItem .deco .dot::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #2c4c47;
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem .deco .dot {
    width: 10px;
    height: 10px;
  }
  .section5 .cardBox .cardItem .deco .dot::after {
    width: 4px;
    height: 4px;
  }
}
.section5 .cardBox .cardItem .deco .line-2 {
  width: 15%;
  height: 1px;
  background-color: #2c4c47;
}
.section5 .cardBox .cardItem .comment {
  position: relative;
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 18px;
  line-height: 30px;
  color: #2c4c47;
  font-weight: 600;
  padding-right: 40px;
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section5 .cardBox .cardItem .comment p {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem .comment {
    font-size: 16px;
    line-height: 24px;
    padding-right: 35px;
  }
}
.section5 .cardBox .cardItem .more {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 18px;
  background-color: #fff;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .section5 .cardBox .cardItem .more {
    font-size: 16px;
  }
}

.section6 {
  padding-top: 360px;
  position: relative;
  background-color: #fff;
}
@media (max-width: 992px) {
  .section6 {
    padding-top: 125px;
  }
}
.section6 .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section6 .titleBox {
  position: absolute;
  top: 265px;
  right: 0;
  max-width: 46vw;
  width: 100%;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.section6 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
}
.section6 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.section6 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.section6 .titleBox .moreBtn {
  display: flex;
  margin-top: 80px;
  transition: transform 0.3s ease;
}
.section6 .titleBox .moreBtn::before {
  width: 100%;
  top: -10px;
}
.section6 .titleBox .moreBtn:hover {
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .section6 .titleBox .moreBtn {
    display: none;
  }
}
@media (max-width: 992px) {
  .section6 .titleBox {
    left: 0;
    top: 150px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .section6 .titleBox .title {
    font-size: 32px;
  }
  .section6 .titleBox span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .section6 .titleBox .title {
    font-size: 26px;
  }
  .section6 .titleBox span {
    font-size: 18px;
  }
}
.section6 .newsBox {
  margin-top: 135px;
  margin-left: 15.1vw;
  margin-right: 10vw;
}
.section6 .newsBox .wrap {
  max-width: 1120px;
  width: 100%;
}
.section6 .newsBox .newsItem {
  width: 100%;
  height: 80px;
  padding-bottom: 20px;
  margin-bottom: 75px;
  color: #2c4c47;
  border-bottom: 1px solid #2c4c47;
  position: relative;
}
.section6 .newsBox .newsItem:hover svg g {
  animation: arrowMove 1s ease-in-out infinite;
}
.section6 .newsBox .newsItem:hover::before {
  width: 50%;
}
.section6 .newsBox .newsItem::before {
  content: "";
  position: absolute;
  width: 18%;
  height: 3px;
  background-color: #2c4c47;
  bottom: -2px;
  border-radius: 10px;
  transition: width 0.5s ease;
}
.section6 .newsBox .newsItem .date {
  font-family: "Cormorant", "Noto Serif TC", serif;
  font-size: 26px;
  font-weight: 600;
}
.section6 .newsBox .newsItem .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2c4c47;
}
.section6 .newsBox .newsItem .inner .title {
  margin-top: 5px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
@media (max-width: 1160px) {
  .section6 .newsBox .newsItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
  }
  .section6 .newsBox .newsItem:nth-last-of-type(1) {
    margin-bottom: 80px;
  }
  .section6 .newsBox .newsItem .inner .title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .section6 .newsBox .newsItem .inner .more {
    display: none;
  }
}
.section6 .newsBox .moreBtn {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translateX(50%);
  display: none;
}
@media (max-width: 992px) {
  .section6 .newsBox .moreBtn {
    display: block;
  }
}
@media (max-width: 1024px) {
  .section6 .newsBox {
    width: 100%;
    margin-left: 0;
  }
  .section6 .newsBox .wrap {
    padding: 0 30px 0 50px;
  }
}

.section7 {
  padding-top: 240px;
  position: relative;
  background-color: #fff;
  z-index: 4;
}
@media (max-width: 992px) {
  .section7 {
    padding-top: 140px;
  }
}
.section7 .wrap {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .section7 .wrap {
    align-items: flex-end;
  }
}
.section7 .titleBox {
  position: absolute;
  top: 265px;
  right: 0;
  max-width: 46vw;
  width: 100%;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.section7 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
}
.section7 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.section7 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 992px) {
  .section7 .titleBox {
    left: 0;
    top: 150px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .section7 .titleBox .title {
    font-size: 32px;
  }
  .section7 .titleBox span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .section7 .titleBox .title {
    font-size: 26px;
  }
  .section7 .titleBox span {
    font-size: 15px;
  }
}
.section7 .moreBtn {
  margin-top: 80px;
  transition: transform 0.3s ease;
}
.section7 .moreBtn::before {
  width: 100%;
  top: -10px;
}
.section7 .moreBtn:hover {
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .section7 .moreBtn {
    display: none;
  }
}
.section7 .textBox {
  width: 518px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 30px;
  font-family: "Noto Serif TC", "Cormorant", serif;
  text-align: justify;
}
.section7 .textBox .moreBtn {
  display: none;
}
@media (max-width: 992px) {
  .section7 .textBox {
    width: 38vw;
    font-size: 16px;
  }
  .section7 .textBox .moreBtn {
    display: flex;
    margin-top: 45px;
  }
}
.section7 .imgBox {
  margin: 0 auto;
  margin-top: 210px;
  max-width: 1440px;
  width: 100%;
}
.section7 .imgBox svg {
  width: 100%;
}
.section7 .imgBox #bk-mb {
  display: none;
}
@media (max-width: 1024px) {
  .section7 .imgBox {
    margin-top: 80px;
  }
  .section7 .imgBox #bk-mb {
    display: flex;
  }
  .section7 .imgBox #bk {
    display: none;
  }
}

.section8 {
  position: relative;
  margin-top: -300px;
  z-index: 1;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .section8 {
    margin-top: 0;
  }
}
.section8 .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section8 .wrap .imgBox {
  width: 100%;
  height: 100%;
}
.section8 .wrap .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section8 .wrap .imgBox .overlay {
  position: absolute;
  top: -5px;
  left: 0;
  height: 101%;
  width: 101%;
  z-index: 1;
}
.section8 .wrap .imgBox .overlay img {
  width: 100%;
  height: 100%;
}

footer.footerAreaPC {
  margin-top: -150px;
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes iconFlash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.intro-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.1s ease;
  opacity: 1;
}

.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-video.fade-out {
  opacity: 0;
  pointer-events: none;
}

#index-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pic-01,
.pic-02,
.pic-03,
.pic-04 {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pic-02,
.pic-03 {
  margin-top: 50px;
}

.p01,
.p02,
.p03,
.p04 {
  border-radius: 50px;
}

.video-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/filter_video.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* 讓滑鼠穿透 */
}

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