:root {
  --cMain: #3a4d4b;
  --cSub: #1f827a;
  --cBannerText: #e7ffd1;
  --cLight: #91B55E;
  --cBorder: #D6D6D6;
  --cMainLighten: #6d948e;
  --cSubDarken: #1f756d;
}

* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-weight: normal;
  margin: 0;
  letter-spacing: 1px;
}

a {
  text-decoration: none !important;
}
a:hover {
  cursor: pointer;
}

p {
  margin: 0;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none !important;
}

.bannerContainer {
  width: 100%;
  height: 210px;
  position: relative;
  background-size: cover;
  background-position: center bottom;
  z-index: 2;
}
@media only screen and (max-width: 865px) {
  .bannerContainer {
    height: 180px;
  }
}
.bannerContainer .banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .bannerContainer .banner {
    padding: 1.5rem 1rem;
  }
}
@media only screen and (max-width: 400px) {
  .bannerContainer .banner {
    padding: 1rem 0.5rem;
  }
}
.bannerContainer .banner .topNaverbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.bannerContainer .banner .topNaverbar .logo {
  height: 50px;
}
@media only screen and (max-width: 576px) {
  .bannerContainer .banner .topNaverbar .logo {
    height: 40px;
  }
}
@media only screen and (max-width: 400px) {
  .bannerContainer .banner .topNaverbar .logo {
    height: 35px;
  }
}
.bannerContainer .banner .topNaverbar .goBtn {
  color: #e4e4e4;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 0 0 #000;
  display: flex;
  align-items: center;
  position: relative;
}
.bannerContainer .banner .topNaverbar .goBtn .arrIcon {
  font-size: 20px;
  margin-left: 3px;
  transition: 0.3s all;
}
.bannerContainer .banner .topNaverbar .goBtn:hover .arrIcon {
  transform: translateX(5px);
}
.bannerContainer .banner .title {
  font-size: 44px;
  color: var(--cBannerText);
  font-family: jf-openhuninn;
  font-weight: lighter;
  text-shadow: 0 0 10px #114112;
  text-align: center;
  margin-top: 1rem;
}
@media only screen and (max-width: 865px) {
  .bannerContainer .banner .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 400px) {
  .bannerContainer .banner .title {
    font-size: 28px;
  }
}

.navbarContainer {
  height: 80px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: relative;
}
.navbarContainer .navbar {
  display: flex;
  width: 860px;
  padding: 0 2rem;
  font-family: "TaipeiSansTCBeta";
}
.navbarContainer .navbar .pagination {
  position: absolute;
  width: 100%;
}
.navbarContainer .navbar .pagination .prevButton, .navbarContainer .navbar .pagination .nextButton {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}
.navbarContainer .navbar .pagination .prevButton {
  left: -25px;
  top: 1.5px;
}
.navbarContainer .navbar .pagination .nextButton {
  right: 40px;
  top: 1.5px;
}
.navbarContainer .navbar .linkBorder {
  border-left: 1px solid #000;
  display: flex;
  justify-content: center;
}
.navbarContainer .navbar .linkBorder:last-child {
  border-right: 1px solid #000;
}
@media only screen and (max-width: 865px) {
  .navbarContainer .navbar .linkBorder {
    border: none !important;
  }
}
.navbarContainer .navbar .linkBorder .link {
  font-weight: bold;
  color: var(--cMain);
  background: #ffffff;
  padding: 0.1rem 1rem;
  transition: 0.3s all;
  font-size: 16px;
}
.navbarContainer .navbar .linkBorder .link:hover {
  color: var(--cSub);
}
.navbarContainer .navbar .linkBorder .link.linkActive {
  background: var(--cBannerText);
  color: var(--cSub);
}
.navbarContainer .navbar .linkBorder .link .icon {
  font-weight: bold !important;
  margin-right: 3px;
}
.navbarContainer .navbar .bi::before, .navbarContainer .navbar [class*=" bi-"]::before, .navbarContainer .navbar [class^=bi-]::before {
  font-weight: bold !important;
}

.contentContainer {
  background-size: cover;
  background-position: top center;
  padding: 1.5rem 2rem;
  padding-bottom: 12rem;
  position: relative;
  min-height: calc(100vh - 290px);
}
@media only screen and (max-width: 1024px) {
  .contentContainer {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 576px) {
  .contentContainer {
    padding-bottom: 6rem;
  }
}
@media only screen and (max-width: 400px) {
  .contentContainer {
    padding: 1.5rem 1rem;
    padding-bottom: 4rem;
  }
}
.contentContainer .lineDecoration {
  position: absolute;
  z-index: 0;
  width: 100%;
  bottom: 2rem;
  left: 0;
}

.footer {
  background: var(--cMain);
}
.footer .footerBg {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
@media only screen and (max-width: 865px) {
  .footer .footerBg {
    padding: 1.5rem 1rem;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 865px) {
  .footer .footerBg .contact {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.0705882353);
  }
}
.footer .footerBg p {
  margin: 0.2rem 0;
  line-height: 1.7;
}
.footer .footerBg .date {
  margin-left: 0.5rem;
}

.tabelPagination {
  margin: 0 auto;
  margin-top: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5rem;
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px;
}
.tabelPagination .pageLink {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 0.35rem 0.5rem;
  margin: 0 0.5rem;
  color: var(--cMain);
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s all;
  font-family: "TaipeiSansTCBeta";
}
@media only screen and (max-width: 576px) {
  .tabelPagination .pageLink {
    font-size: 12px;
  }
}
.tabelPagination .pageLink:first-child {
  margin-right: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .tabelPagination .pageLink:first-child {
    margin: 0 0.5rem;
  }
}
.tabelPagination .pageLink:last-child {
  margin-left: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .tabelPagination .pageLink:last-child {
    margin: 0 0.5rem;
  }
}
.tabelPagination .pageLink:hover {
  color: var(--cMainLighten);
}
.tabelPagination .pageLink.active {
  background: var(--cMain);
  color: #fff;
}
.tabelPagination .pageLink .icon {
  font-size: 20px;
}
@media only screen and (max-width: 400px) {
  .tabelPagination .pageLink .icon {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */