@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");
.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;
  }
}

.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: #f7f8f8;
}

.newsArea {
  padding-top: 100px;
  width: 100%;
  overflow: hidden;
}
.newsArea section.bannerArea {
  display: flex;
  flex-direction: column;
  background-color: #e1dcd6;
  width: 100%;
  pointer-events: none;
}
.newsArea section.bannerArea .wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.newsArea section.bannerArea .titleBox {
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif TC", "Cormorant", serif;
  color: #2c4c47;
  gap: 20px;
  margin-top: 5.7vw;
}
@media (max-width: 992px) {
  .newsArea section.bannerArea .titleBox {
    margin-top: 80px;
    margin-bottom: 0px;
  }
}
.newsArea section.bannerArea .titleBox span {
  font-size: clamp(70px, 6vw, 100px);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  order: 1;
}
@media (max-width: 992px) {
  .newsArea section.bannerArea .titleBox span {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .newsArea section.bannerArea .titleBox span {
    order: 2;
  }
}
.newsArea section.bannerArea .titleBox .inner {
  display: flex;
  align-items: center;
  order: 2;
}
@media (max-width: 768px) {
  .newsArea section.bannerArea .titleBox .inner {
    order: 1;
  }
}
.newsArea section.bannerArea .titleBox .inner span {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 40px;
}
@media (max-width: 992px) {
  .newsArea section.bannerArea .titleBox .inner span {
    font-size: 24px;
    margin-left: 25px;
  }
}
.newsArea section.bannerArea .titleBox h1 {
  font-size: 40px;
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .newsArea section.bannerArea .titleBox h1 {
    font-size: 24px;
    margin-right: 10px;
  }
}
.newsArea section.bannerArea .titleBox .lineDot {
  display: flex;
  align-items: center;
  width: 105px;
  height: 1px;
  background-color: #2c4c47;
  position: relative;
}
.newsArea section.bannerArea .titleBox .lineDot::after {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2c4c47;
}
@media (max-width: 992px) {
  .newsArea section.bannerArea .titleBox .lineDot {
    width: 40px;
  }
  .newsArea section.bannerArea .titleBox .lineDot::after {
    width: 4px;
    height: 4px;
    right: -10px;
  }
}
.newsArea section.bannerArea .waveBox {
  pointer-events: none;
  min-width: 375px;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  background-color: transparent;
  margin-top: -3vw;
}
@media (max-width: 992px) {
  .newsArea section.bannerArea .waveBox {
    margin-top: 65px;
  }
}
.newsArea section.bannerArea .waveBox img {
  width: 100%;
  height: 100%;
}
.newsArea section.bannerArea .waveBox .deco {
  position: absolute;
  top: 0;
  right: 140px;
}
.newsArea section.bannerArea .waveBox .deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsArea section.bannerArea .waveBox .lineDot {
  width: 40px;
}
.newsArea section.listArea {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: -3.8vw;
}
.newsArea section.listArea .wrap {
  max-width: 1440px;
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .newsArea section.listArea .wrap {
    padding: 0 20px;
  }
}
.newsArea section.listArea .listBox {
  display: flex;
  flex-wrap: wrap;
}
.newsArea section.listArea .listName {
  display: flex;
  justify-content: center;
  padding-right: 45px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 2px;
  position: relative;
  transition: opacity 0.3s;
}
.newsArea section.listArea .listName a {
  color: #2c4c47;
  text-decoration: none;
}
.newsArea 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;
}
.newsArea section.listArea .listName .inner:hover {
  opacity: 1;
}
.newsArea section.listArea .listName .inner:hover::before {
  width: calc(100% - 50px);
}
@media (max-width: 768px) {
  .newsArea section.listArea .wrap {
    margin-left: 50px;
  }
  .newsArea section.listArea .listName {
    padding-right: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    padding-bottom: 25px;
  }
}
.newsArea section.cardArea {
  margin-top: 160px;
  margin-bottom: 8vw;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .newsArea section.cardArea {
    margin-top: 65px;
  }
}
.newsArea section.cardArea .wrap {
  max-width: 1210px;
  margin: 0 auto;
  width: 100%;
}
.newsArea section.cardArea .cardBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 40px;
  gap: 30px;
  row-gap: 160px;
  justify-content: center;
}
@media (max-width: 1180px) {
  .newsArea section.cardArea .cardBox {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardBox {
    row-gap: 85px;
    grid-template-columns: 1fr;
  }
}
.newsArea section.cardArea .cardItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.newsArea section.cardArea .cardItem:hover .imgBox img {
  transition: transform 0.3s, opacity 0.3s;
  transform: scale(1.05);
  opacity: 0.8;
}
.newsArea section.cardArea .cardItem.main-card {
  grid-column: 1/-1;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}
.newsArea section.cardArea .cardItem.main-card .imgBox {
  width: 570px;
  min-width: 305px;
  height: 376px;
  border-radius: 0 50px 0 0;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardItem.main-card .imgBox {
    width: 306px;
    height: 185px;
  }
}
.newsArea section.cardArea .cardItem.main-card .textBox {
  max-width: 445px;
  width: 100%;
  height: 376px;
  border-radius: 0 50px 0 0;
  margin-bottom: 0px;
}
.newsArea section.cardArea .cardItem.main-card .textBox .title {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardItem.main-card .textBox .title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.newsArea section.cardArea .cardItem .imgBox {
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  border-radius: 0 30px 0 0;
  overflow: hidden;
}
.newsArea section.cardArea .cardItem .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsArea section.cardArea .cardItem .textBox {
  max-width: 445px;
  min-width: 305px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.newsArea section.cardArea .cardItem .textBox a {
  color: #2c4c47;
  margin-top: 8px;
}
.newsArea section.cardArea .cardItem .textBox .catalog {
  font-weight: 600;
  font-size: 16px;
  color: #2c4c47;
  letter-spacing: 1px;
  border: 1px solid #2c4c47;
  padding: 2px 15px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardItem .textBox .catalog {
    font-size: 14px;
  }
}
.newsArea section.cardArea .cardItem .textBox .catalog::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2c4c47;
  position: absolute;
  right: 6px;
  bottom: -1px;
  transition: width 0.3s ease-in-out;
  z-index: 3;
}
.newsArea section.cardArea .cardItem .textBox .catalog::after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-color: #f7f8f8;
  position: absolute;
  right: 0px;
  bottom: -3px;
  transition: width 0.3s ease-in-out;
  z-index: 2;
}
.newsArea section.cardArea .cardItem .textBox .title {
  font-size: 24px;
  font-weight: 600;
  color: #2c4c47;
  text-align: justify;
  margin-top: 25px;
  line-height: 36px;
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardItem .textBox .title {
    font-size: 16px;
    line-height: 24px;
  }
}
.newsArea section.cardArea .cardItem .textBox .des {
  color: #241512;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 110px;
  text-align: justify;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardItem .textBox .des {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 55px;
  }
}
.newsArea section.cardArea .cardItem .moreBtn {
  margin-top: -55px;
}
@media (max-width: 768px) {
  .newsArea section.cardArea .cardItem .moreBtn {
    margin-top: -35px;
  }
}
.newsArea section.cardArea .cardItem .cardDeco {
  display: flex;
  align-items: center;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #2c4c47;
  position: absolute;
  bottom: 0;
}
.newsArea section.cardArea .cardItem .cardDeco::after {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #2c4c47;
}
@media (max-width: 1180px) {
  .newsArea section.cardArea .cardItem.main-card {
    width: 100%;
    max-width: 760px;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .newsArea section.cardArea .cardItem.main-card .imgBox {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
  }
  .newsArea section.cardArea .cardItem.main-card .textBox {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    height: auto;
  }
}
.newsArea section.pageBox {
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
}
.newsArea section.pageBox ul {
  display: flex;
  gap: 70px;
}
.newsArea section.pageBox li {
  position: relative;
  transition: opacity 0.3s;
}
.newsArea section.pageBox li:hover #page-effect {
  opacity: 1;
}
.newsArea section.pageBox li:hover a {
  transform: scale(1.2);
}
.newsArea section.pageBox #page-effect {
  position: absolute;
  transform: translate(-25%, -10%);
  opacity: 0;
}
.newsArea 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) {
  .newsArea section.pageBox {
    margin-top: 65px;
    margin-bottom: 120px;
  }
  .newsArea section.pageBox ul {
    gap: 30px;
  }
  .newsArea section.pageBox #page-effect {
    transform: translate(-30%, -15%);
  }
  .newsArea section.pageBox a {
    font-size: 18px;
  }
}
.newsArea .decoBox {
  width: 103%;
  height: 100%;
  overflow: hidden;
  position: relative;
  font-size: 0;
  background-color: #dcd9d2;
  margin-left: -5px;
  pointer-events: none;
}
.newsArea .decoBox img:nth-of-type(1) {
  width: 92%;
  position: absolute;
  top: 2.75px;
  left: -10px;
  font-size: 0;
}
.newsArea .decoBox img:nth-of-type(2) {
  width: 100%;
  height: 100%;
  font-size: 0;
}

@media (max-width: 1024px) {
  .newsArea {
    padding-top: 58px;
  }
}
footer.footerArea {
  margin-top: 0 !important;
}