@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 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 1440px;
  width: 100%;
  padding: 0 40px;
}
section.titleArea .titleBox {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 30vw;
  min-width: 380px;
}
@media (max-width: 768px) {
  section.titleArea .titleBox {
    min-width: 330px;
  }
}
section.titleArea .titleBox .inner {
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
}
section.titleArea .titleBox .inner p {
  font-size: 40px;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  color: #2c4c47;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  section.titleArea .titleBox .inner p {
    font-size: 22px;
  }
}
section.titleArea .titleBox .deco {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2px;
}
@media (max-width: 768px) {
  section.titleArea .titleBox .deco {
    width: 70%;
  }
}
section.titleArea .titleBox .deco .line-1 {
  left: 0;
  width: 80%;
  height: 1px;
  background-color: #2c4c47;
}
section.titleArea .titleBox .deco .dot {
  width: 28px;
  height: 10px;
  position: relative;
}
section.titleArea .titleBox .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.titleArea .titleBox .deco .line-2 {
  right: 0;
  width: 20%;
  height: 1px;
  background-color: #2c4c47;
}
section.titleArea .titleBox .icon {
  /* margin-left: 10px;
  margin-right: 2.6vw; */
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}
section.titleArea .titleBox .icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  section.titleArea .titleBox .icon {
    width: 40px;
    height: 46px;
  }
}
section.titleArea .imgBox {
  margin: 0 auto;
  width: 100%;
  max-width: 1210px;
  height: 620px;
  border-radius: 0px 100px 0px 0px;
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 768px) {
  section.titleArea .imgBox {
    margin-top: 30px;
    height: 185px;
    border-radius: 0px 50px 0px 0px;
  }
}
section.titleArea .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
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;
  }
}

section.contentArea {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  max-width: 1250px;
  padding: 0 40px;
  padding-top: 65px;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.contentArea {
    padding-top: 33px;
  }
}
section.contentArea .wrap {
  display: flex;
  flex-direction: column;
}
section.contentArea .itemBox {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
section.contentArea .itemBox .title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c4c47;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 768px) {
  section.contentArea .itemBox .title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
section.contentArea .itemBox .title::before {
  content: "";
  display: flex;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #2c4c47;
}
section.contentArea .itemBox .intro {
  line-height: 30px;
  text-align: justify;
  font-size: 18px;
  margin-left: 2px;
}
@media (max-width: 768px) {
  section.contentArea .itemBox .intro {
    font-size: 14px;
  }
}
section.contentArea .itemBox .public_expense {
  font-family: "Cormorant", "Noto Serif TC", serif;
  font-size: 18px;
  line-height: 30px;
}
section.contentArea .itemBox .people {
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 768px) {
  section.contentArea .itemBox .people {
    font-size: 14px;
  }
}
section.contentArea .deco {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2px;
  margin-top: 30px;
}
section.contentArea .deco .line-1 {
  left: 0;
  width: 20%;
  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: 80%;
  height: 1px;
  background-color: #2c4c47;
}
section.contentArea .accordionTable {
  font-family: "Noto Serif TC", serif;
  width: 100%;
  font-size: 14px;
  overflow-x: auto;
}
section.contentArea .accordionTable .wrap {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
}
section.contentArea .accordionTable .accordionTitle {
  display: flex;
  width: 100%;
  background-color: rgba(44, 76, 71, 0.8);
  color: #fff;
  position: relative;
}
section.contentArea .accordionTable .accordionTitle::after {
  position: absolute;
  width: 10px;
  height: 10px;
  display: flex;
  background-color: red;
  z-index: 2;
  top: 0;
}
section.contentArea .accordionTable .accordionTitle span {
  width: 60%;
  padding: 10px 15px;
  position: relative;
}
section.contentArea .accordionTable .accordionTitle span:nth-of-type(1) {
  width: 45%;
  border-right: 0.5px solid #dcd9d2;
}
section.contentArea .accordionTable .accordionBox {
  width: 100%;
  margin: 0 0 10px;
}
section.contentArea .accordionTable .accordionBox .Q {
  background-color: #dcd9d2;
  color: #2c4c47;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
section.contentArea .accordionTable .accordionBox .Q.turnicon .icon img {
  transform: rotate(-90deg);
}
section.contentArea .accordionTable .accordionBox .Q .icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 60%;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .Q .icon img {
  position: absolute;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  transition: transform 0.3s ease-in-out;
}
section.contentArea .accordionTable .accordionBox .Q span {
  width: 45%;
  padding: 10px 15px;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .Q span:nth-of-type(1) {
  width: 45%;
  position: relative;
  border-bottom: 0.5px solid #2c4c47;
}
section.contentArea .accordionTable .accordionBox .Q span:nth-of-type(1)::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #dcd9d2;
  display: flex;
  right: -5px;
  bottom: -1px;
  z-index: 1;
}
section.contentArea .accordionTable .accordionBox .Q span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  display: flex;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #2c4c47;
  bottom: -2px;
  right: -1.25px;
  z-index: 2;
}
section.contentArea .accordionTable .accordionBox .Q span:nth-of-type(2) {
  width: 60%;
  height: 15px;
  border-bottom: 0.5px solid #2c4c47;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .Q .deco {
  display: flex;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -1px;
}
section.contentArea .accordionTable .accordionBox .Q .deco .line-1 {
  left: 0;
  width: 45%;
  height: 0.5px;
  background-color: #2c4c47;
}
section.contentArea .accordionTable .accordionBox .Q .deco .dot {
  z-index: 99;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #2c4c47;
  bottom: -0.5px;
}
section.contentArea .accordionTable .accordionBox .Q .deco .line-2 {
  position: absolute;
  right: 0;
  width: 55%;
  height: 0.5px;
  background-color: #2c4c47;
}
section.contentArea .accordionTable .accordionBox .A {
  color: #2c4c47;
  display: none;
}
section.contentArea .accordionTable .accordionBox .A .block {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .A .block .inner {
  display: flex;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span {
  width: 60%;
  padding: 10px 15px;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span:nth-of-type(1) {
  width: 45%;
  position: relative;
  border-right: 0.5px solid #2c4c47;
  border-bottom: 0.5px solid #2c4c47;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  display: flex;
  width: 10px;
  height: 10px;
  background-color: #fff;
  right: -5px;
  bottom: -5px;
  z-index: 1;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span:nth-of-type(1)::before {
  content: "";
  position: absolute;
  display: flex;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #2c4c47;
  bottom: -2px;
  right: -1.55px;
  z-index: 2;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span:nth-of-type(2) {
  width: 60%;
  border-bottom: 0.5px solid #2c4c47;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span:nth-of-type(2)::after {
  content: "";
  position: absolute;
  display: flex;
  width: 10px;
  height: 10px;
  background-color: #fff;
  left: -5px;
  top: -5px;
  z-index: 1;
}
section.contentArea .accordionTable .accordionBox .A .block .inner span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  display: flex;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #2c4c47;
  left: -2px;
  top: -1.25px;
  z-index: 2;
}
section.contentArea .accordionTable .accordionBox .A .block .item1 {
  display: flex;
  align-items: center;
  width: 42%;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .A .block .item2 {
  width: 52%;
  position: relative;
}
section.contentArea .accordionTable .accordionBox .A .block p {
  padding: 5px 20px;
}

.inner {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
table th,
table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 768px) {
  table th,
  table td {
    font-size: 14px;
  }
}
table th {
  background-color: #2c4c47;
  color: white;
}
table th.program {
  text-align: center;
  color: black;
}
table th.program.td-color-1 {
  background-color: #c4d69a;
}
table th.program.td-color-2 {
  background-color: #eababd;
}
table th.program.td-color-3 {
  background-color: #bbcbe6;
}
table th.program.td-color-4 {
  background-color: #c4d69a;
}
table th.program.td-color-5 {
  background-color: #eababd;
}
table th.program.td-color-6 {
  background-color: #bbcbe6;
}
table th.program.td-color-7 {
  background-color: #c4d69a;
}
table th.program.td-color-8 {
  background-color: #eababd;
}
table th.program.td-color-9 {
  background-color: #bbcbe6;
}
table th.program.td-color-10 {
  background-color: #c4d69a;
}
table th.program.td-color-11 {
  background-color: #eababd;
}
table th.program.td-color-12 {
  background-color: #bbcbe6;
}
table th.program.td-color-13 {
  background-color: #c4d69a;
}
table th.program.td-color-14 {
  background-color: #eababd;
}
table th.program.td-color-15 {
  background-color: #bbcbe6;
}
table th.program.td-color-16 {
  background-color: #c4d69a;
}
table th.program.td-color-17 {
  background-color: #eababd;
}
table th.program.td-color-18 {
  background-color: #bbcbe6;
}
table th.program.td-color-19 {
  background-color: #c4d69a;
}
table th.program.td-color-20 {
  background-color: #eababd;
}
table .dot {
  text-align: center;
  font-size: 10px;
  color: #333;
}
table .dot.td-color-1 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-2 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .dot.td-color-3 {
  background-color: rgba(187, 203, 230, 0.4);
}
table .dot.td-color-4 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-5 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .dot.td-color-6 {
  background-color: rgba(187, 203, 230, 0.4);
}
table .dot.td-color-7 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-8 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .dot.td-color-9 {
  background-color: rgba(187, 203, 230, 0.4);
}
table .dot.td-color-10 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-11 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .dot.td-color-12 {
  background-color: rgba(187, 203, 230, 0.4);
}
table .dot.td-color-13 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-14 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .dot.td-color-15 {
  background-color: rgba(187, 203, 230, 0.4);
}
table .dot.td-color-16 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-17 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .dot.td-color-18 {
  background-color: rgba(187, 203, 230, 0.4);
}
table .dot.td-color-19 {
  background-color: rgba(196, 214, 154, 0.4);
}
table .dot.td-color-20 {
  background-color: rgba(234, 186, 189, 0.4);
}
table .category {
  background-color: #2c4c47;
  color: #fff;
}
table tr:nth-child(even) td.td-color-1 {
  background-color: rgba(204, 204, 204, 0.3);
}
table tr:nth-child(even) td.td-color-2 {
  background-color: rgba(204, 204, 204, 0.3);
}
table tr:nth-child(even) td.td-color-3 {
  background-color: rgba(204, 204, 204, 0.3);
}
table tr:nth-child(even) td.td-color-4 {
  background-color: rgba(204, 204, 204, 0.3);
}
table tr:nth-child(even) td.td-color-5 {
  background-color: rgba(204, 204, 204, 0.3);
}
table tr:nth-child(even) td.td-color-6 {
  background-color: rgba(204, 204, 204, 0.3);
}

.downloadBox {
  display: flex;
  justify-content: center;
  margin-top: 95px;
}
@media (max-width: 768px) {
  .downloadBox {
    margin-top: 60px;
  }
}
.downloadBox .wrap {
  gap: 65px;
  display: flex;
}
@media (max-width: 768px) {
  .downloadBox .wrap {
    gap: 20px;
  }
}
.downloadBox .downloadBtn,
.downloadBox .reserveBtn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 65px;
  background-color: #2c4c47;
  color: #dcd9d2;
  border-radius: 0 20px 0 0;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .downloadBox .downloadBtn,
  .downloadBox .reserveBtn {
    width: 96px;
    height: 42px;
  }
}
.downloadBox .downloadBtn:hover,
.downloadBox .reserveBtn:hover {
  background-color: #dcd9d2;
  color: #2c4c47;
}
.downloadBox .downloadBtn:hover span::before,
.downloadBox .reserveBtn:hover span::before {
  width: 100%;
  background-color: #2c4c47;
}
.downloadBox .downloadBtn span,
.downloadBox .reserveBtn span {
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .downloadBox .downloadBtn span,
  .downloadBox .reserveBtn span {
    font-size: 13px;
  }
}
.downloadBox .downloadBtn span::before,
.downloadBox .reserveBtn span::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #dcd9d2;
  position: absolute;
  top: -10px;
  left: 0;
  transition: width 0.5s ease-in-out;
}

.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;
  margin-bottom: 160px;
}
.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%;
}