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

section.titleArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 12.7vw;
  width: 100%;
  font-family: "Noto Serif TC", "Cormorant", serif;
  background-color: rgba(225, 220, 214, 0.5);
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  section.titleArea {
    padding-top: 100px;
  }
}
section.titleArea .wrap {
  max-width: 1440px;
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
section.titleArea .titleBox {
  display: flex;
  flex-direction: column;
  position: relative;
}
section.titleArea .titleBox .inner {
  margin-bottom: 10px;
}
section.titleArea .titleBox .title {
  font-size: 40px;
  font-weight: 600;
  color: #2c4c47;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  section.titleArea .titleBox .title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
section.titleArea .titleBox .date,
section.titleArea .titleBox .doctor {
  font-weight: 600;
  font-size: 18px;
  color: #2c4c47;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  section.titleArea .titleBox .date,
  section.titleArea .titleBox .doctor {
    font-size: 16px;
  }
}
section.titleArea .titleBox .date::after {
  content: "｜";
}
section.titleArea .imgBox {
  width: 100%;
  height: 620px;
  border-radius: 0px 100px 0px 0px;
  overflow: hidden;
  margin-top: 60px;
}
section.titleArea .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  section.titleArea .imgBox {
    margin-top: 30px;
    height: 185px;
    border-radius: 0px 50px 0px 0px;
  }
}
section.titleArea .maskBox {
  width: calc(100% + 2px);
  position: absolute;
  right: 0;
  bottom: -70px;
  z-index: -1;
}
@media (max-width: 768px) {
  section.titleArea .maskBox {
    bottom: -5px;
  }
}

.deco {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2px;
}
.deco .line-1 {
  left: 0;
  width: 20%;
  height: 1px;
  background-color: #2c4c47;
}
.deco .dot {
  width: 28px;
  height: 10px;
  position: relative;
}
.deco .dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: flex;
  background-color: #2c4c47;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.deco .line-2 {
  right: 0;
  width: 80%;
  height: 1px;
  background-color: #2c4c47;
}

section.contentArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 85px;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.contentArea {
    padding-top: 33px;
  }
}
section.contentArea .wrap {
  width: 100%;
  max-width: 1440px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.contentArea .itemBox {
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-weight: 500;
  line-height: 1.65;
  text-align: justify;
  font-size: 18px;
  margin-left: 2px;
}
section.contentArea .itemBox .title {
  display: flex;
  align-items: center;
  font-size: 24px;
  gap: 12px;
  font-weight: 500;
  color: #2c4c47;
  margin-bottom: 30px;
}
section.contentArea .itemBox .title::before {
  content: "";
  display: flex;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #2c4c47;
}
@media (max-width: 768px) {
  section.contentArea .itemBox .title::before {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 768px) {
  section.contentArea .itemBox .title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  section.contentArea .itemBox {
    font-size: 14px;
  }
}
section.contentArea .itemBox .imgBox {
  width: 100%;
  border-radius: 0px 0px 140px 0px;
  min-width: 306px;
  height: auto;
  overflow: hidden;
  margin-top: 50px;
}
section.contentArea .itemBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  section.contentArea .itemBox .imgBox {
    border-radius: 0px 0px 50px 0px;
    margin-top: 25px;
  }
}
section.contentArea .deco {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  section.contentArea .deco {
    margin-top: 30px;
  }
}
section.contentArea .deco .line-1 {
  left: 0;
  width: 10%;
  height: 1px;
  background-color: #2c4c47;
}
section.contentArea .deco .dot {
  width: 28px;
  height: 10px;
  position: relative;
}
section.contentArea .deco .dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: flex;
  background-color: #2c4c47;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
section.contentArea .deco .line-2 {
  right: 0;
  width: 90%;
  height: 1px;
  background-color: #2c4c47;
}

.shareBox {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .shareBox {
    margin-top: 120px;
  }
}
.shareBox .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.shareBox a {
  width: 36px;
  height: 36px;
  transition: transform 0.3s;
}
.shareBox a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .shareBox a {
    width: 34px;
    height: 34px;
  }
}

.backBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 65px;
}
.backBtn a {
  color: #2c4c47;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  font-family: "Cormorant", "Noto Serif TC", serif;
}
@media (max-width: 768px) {
  .backBtn a {
    font-size: 16px;
  }
}
.backBtn a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #2c4c47;
  position: absolute;
  top: -8px;
  left: 0;
  transition: width 0.3s ease-in-out;
}
.backBtn a:hover::before {
  width: 100%;
}

.searchBox {
  margin-top: 70px;
  margin-bottom: 10.4vw;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .searchBox {
    margin-top: 130px;
  }
}
.searchBox .wrap {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.searchBox ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 768px) {
  .searchBox ul {
    column-gap: 10px;
    row-gap: 15px;
  }
}
.searchBox li {
  color: #2c4c47;
  font-weight: 600;
  padding: 7px 25px;
  border: 1px solid #2c4c47;
  border-radius: 20px;
  font-size: 16px;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .searchBox li {
    padding: 5px 8px;
  }
}
@media (max-width: 575px) {
  .searchBox li {
    font-size: 14px;
  }
}
.searchBox li:hover {
  transform: translateY(-3px);
  transition: transform 0.3s;
}
.searchBox li::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;
}
@media (max-width: 768px) {
  .searchBox li::before {
    width: 4px;
    height: 4px;
  }
}
.searchBox li::after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  right: 0px;
  bottom: -3px;
  transition: width 0.3s ease-in-out;
  z-index: 2;
}
@media (max-width: 768px) {
  .searchBox li::after {
    bottom: -6px;
  }
}