:root {
  --theme-menu-main: white;
  --theme-menu-main-fontcolor: black;
  --theme-menu-main-mobile: #00b390;
  --theme-green: #33ae9c;
  --news-green: #29a389;
  --news-hover: #ffa800;
  --index-more-btn: #1d9d84;
  --index-more-btn-hover: #ffba00;
  --album-hover: #ffba00;
  --active-menu-underline: #00b390;
  --backBtn-hover-bg: #00b390;
  --theme-orange: #ff7b05;
  --mobile-menu-selected: #29a389;
  --mobile-lv2-menu-selected: #ff7b05;
  --side-menu-lv2-menu-font: #29a389;
  --side-menu-active-bg: #29a389;
  --side-menu-hover-bg: #ff7b05 ;
  --theme-breadcrumb: #666;
  --theme-breadcrumb-hover: #29a389;
  --lv4-active-bg: #29a389;
  --news-hr-line: #cecccc;
  --recent-news-font: #ffa800;
  --recent-news-hover: #33ae9c;
  --news-index-hover-bg: #faf3e6;
  --news-index-title-color: #33ae9c;
  --year-button: #29a389;
  --index-album-title-color: #33ae9c;
  --index-album-title-color-hover: #ffa800;
  --video-title: #29a389;
  --page-color: #007c54;
  --page-color-hover: #ff7b05;
  --subject-color: #ff7b05;
  --link-color: #007c54;
}

body a {
  color: var(--font-blue);
}
body a:hover {
  color: var(--font-highlighted);
}
body p {
  margin-top: unset;
  margin-bottom: 0.5rem;
}
body h1 {
  color: #1e8449;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: bold;
}

#page table {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@font-face {
  font-family: "NotoSerif";
  font-weight: 600;
  src: url("../fonts/NotoSerifTC-VariableFont_wght.ttf") format("truetype");
}
@media (min-width: 1200px) {
  .container {
    max-width: 1370px;
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .container-news {
    max-width: 900px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 960px) {
  .container-lg {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .container-xl {
    max-width: 100%;
  }
}

.fade-in {
  animation: fade-in 1.5s forwards;
}

.animation-fadeIn {
  opacity: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a:hover {
  cursor: pointer;
}

.btn {
  border-radius: unset;
}

#desktop-menu {
  background: var(--theme-menu-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #00b390;
}
#desktop-menu a {
  color: white;
}

#desktop-menu.SmallTopBar {
  position: absolute;
  left: 0;
  right: 0;
}

.mobile_logo_container {
  background-image: url("../images/sppcs/header_bg.png");
  background-position: center;
}

.mobile_topLinkBar {
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
}
.mobile_topLinkBar svg {
  width: 35px;
  height: 35px;
  fill: white;
  margin-left: 1rem;
}

#mainmenu {
  flex: 1;
}
#mainmenu > ul {
  align-items: center;
  justify-content: space-between;
}
#mainmenu .menu-item-category {
  line-height: 1.25;
  position: relative;
  font-size: 1.1rem;
}
#mainmenu .menu-item-category .menu-item-label {
  padding: 20px 10px 20px;
}
#mainmenu .menu-item-category > :before {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  border-right: 1px dotted black;
  height: 60%;
}

#header_mobile {
  position: fixed;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  background: var(--theme-menu-main-mobile);
  padding: 10px;
}

#header_mobile img {
  max-width: 25px;
}

.main-slider {
  border-bottom: 10px solid #329d83;
  box-shadow: 0 13px 0px 0px #1c8269;
}
@media (min-width: 1200px) {
  .main-slider {
    margin-top: 0;
  }
}
.main-slider .image {
  padding-top: 34.11%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.main-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main-slider .slick-dots li button:before {
  font-size: 2vw;
}
@media (min-width: 960px) {
  .main-slider .slick-dots li button:before {
    font-size: 0.8rem;
  }
}
.main-slider .slick-dots {
  bottom: 2%;
  width: 95%;
}
.main-slider .slick-dots li.slick-active button:before {
  color: var(--theme-green);
}
.main-slider .banner-description-bg {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  width: 30%;
  background-position: top right;
  z-index: 1;
}
.main-slider .banner-info {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  font-weight: bolder;
  text-shadow: black 1px 1px 3px;
  z-index: 2;
}
@media (min-width: 960px) {
  .main-slider .banner-info {
    top: 60%;
    right: 5%;
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
  }
}
.main-slider .banner-info .banner-description {
  padding-left: 2.5rem;
}

.mainSliderPrev img, .mainSliderNext img {
  width: 5vw;
}
@media (min-width: 960px) {
  .mainSliderPrev img, .mainSliderNext img {
    width: 45px;
  }
}
.mainSliderPrev:hover, .mainSliderNext:hover {
  cursor: pointer;
  opacity: 0.8;
}

.mainSliderPrev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;
}

.mainSliderNext {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9;
}

@keyframes auto-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.decoration-page-background {
  background-image: url("../images/sppcs/inner_bg.png");
}

.themedBreadcrumbBar {
  font-size: 0.8rem;
  padding: 0.7rem 0.5rem 1rem;
  color: var(--theme-breadcrumb);
  border-bottom: 1px dotted #ddd;
  margin-bottom: 15px;
}
.themedBreadcrumbBar a:not(:first-child), .themedBreadcrumbBar span {
  color: var(--theme-breadcrumb);
  padding: 0 0.7rem;
}
.themedBreadcrumbBar a:hover {
  color: var(--theme-breadcrumb-hover);
}

.breadcrumbs {
  position: relative;
}
.breadcrumbs img {
  padding-bottom: 4px;
  padding-right: 10px;
}

.pageSectionContent {
  padding: 0.3rem 0.7rem;
}

.groupActivityTitle svg {
  fill: white;
  margin-right: 0.3rem;
  width: 30px;
}

.pageGroupActivityImage {
  width: 100%;
  padding-top: 75%;
  display: block;
  background-size: cover;
  background-position: center;
}

.pageGroupButton {
  display: inline-block;
  font-weight: bold;
  border: 1px solid #ff8356;
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 1s ease;
  padding: 0.5rem;
  text-align: center;
  background: white;
  color: #ff8356 !important;
}
.pageGroupButton.active {
  background: #ff8356;
  background-size: 200% 100%;
  color: white !important;
}
.pageGroupButton.active:hover {
  background: #ff8356;
}
.pageGroupButton:not(.active):hover {
  background: #ff8356;
  color: white !important;
}

.mfp-arrow {
  background: transparent;
}

#header_sclNameAndLangBtn {
  background-image: url("../images/sppcs/header_bg.png");
  background-repeat: no-repeat;
}

.header_socialMedia {
  background-image: url("../images/sppcs/top_bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  top: 0;
  right: 3rem;
  width: 200px;
  color: white;
  font-weight: bolder;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.header_socialMedia svg {
  fill: white;
  width: 30px;
  height: 30px;
}

#news-section {
  background-image: url("../images/sppcs/news_bg_update.png");
  background-position: center top;
  background-repeat: no-repeat;
}
#news-section .index_title_news {
  background-image: url("../images/sppcs/title_news.png");
  background-repeat: no-repeat;
  height: 88px;
  width: 256px;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  color: white;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  #news-section .index_title_news {
    font-size: 1.7rem;
  }
}
#news-section .news-box {
  background: #defff9;
  border-radius: 8px;
  border: 3px solid #1c8269;
}
#news-section .news-box-bg {
  background: white;
  border-radius: 8px;
}
#news-section .news-date {
  color: #666;
}
#news-section .news-title {
  color: var(--news-green);
}
#news-section .news-title:hover {
  color: var(--news-hover);
}

.index-more-btn {
  background: var(--index-more-btn);
  color: white !important;
  padding: 0.3rem 1.8rem;
  right: 5px;
  top: -1.2rem;
  transition: 0.3s ease-in-out;
}
.index-more-btn:hover {
  background: var(--index-more-btn-hover);
}

#album_and_video_container {
  background-image: url("../images/sppcs/event.png");
  background-size: cover;
  background-position: center;
}
#album_and_video_container .index_title_album_bar {
  display: flex;
  justify-content: center;
  align-items: center;
}
#album_and_video_container .index_title_album_bar .index_title_album {
  color: white;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  #album_and_video_container .index_title_album_bar .index_title_album {
    font-size: 1.7rem;
  }
}
#album_and_video_container .index_title_album_bar .line {
  border-top: 1px solid white;
  flex-grow: 10;
}
#album_and_video_container .album_slider_item:hover .album_image {
  border: 2px solid var(--album-hover);
}
#album_and_video_container .album_image {
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid white;
}
#album_and_video_container .album-date, #album_and_video_container .album-title {
  color: white;
  font-weight: bold;
}
#album_and_video_container .videoSliderItem {
  padding-top: 75%;
  position: relative;
}
#album_and_video_container .videoSliderItem .videoBox {
  position: absolute;
  width: 100% !important;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
}
#album_and_video_container .sliderPrev, #album_and_video_container .sliderNext {
  top: calc(50% - 35px);
  z-index: 2;
  height: 70px;
}
#album_and_video_container .sliderPrev:hover, #album_and_video_container .sliderNext:hover {
  opacity: 0.8;
  cursor: pointer;
}
#album_and_video_container .sliderPrev {
  left: 0;
}
#album_and_video_container .sliderNext {
  right: 0;
}

#slogan_and_links_container {
  padding: 60px 0;
  background-image: url("../images/sppcs/bg_tree.jpg");
}
#slogan_and_links_container .slogan {
  right: 0;
  background: white;
  bottom: 20%;
  font-size: 1.7rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  #slogan_and_links_container .slogan {
    position: absolute;
  }
}
#slogan_and_links_container .featureButton {
  height: 181px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
#slogan_and_links_container .featureButton:hover .featureButton_icon {
  background-color: white;
  transform: scale(1.05);
}
#slogan_and_links_container .featureButton:hover .featureButton_title {
  transform: scale(1.05);
}
#slogan_and_links_container .featureButton_icon {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.6rem;
  width: 80px;
  margin-bottom: 5px;
  transition: 0.3s ease-in-out;
}
#slogan_and_links_container .featureButton_title {
  color: white;
  font-size: 1.3rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  #slogan_and_links_container .featureButton_title {
    font-size: 1.7rem;
  }
}

#footer {
  background-image: url("../images/sppcs/bg_footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
#footer .footer_logo img {
  max-width: 90%;
}
@media (min-width: 768px) {
  #footer .footer_logo img {
    max-width: 100%;
  }
}
#footer .footer_school_contact {
  color: white;
}
@media (min-width: 768px) {
  #footer .footer_school_contact {
    height: 100%;
    align-content: center;
  }
  #footer .footer_school_contact div {
    padding-top: 8px;
    padding-bottom: 5px;
  }
}
#footer .footer_school_contact img {
  padding-bottom: 5px;
}
#footer #toTop {
  position: absolute;
  right: 1rem;
  bottom: 10px;
  width: 60px;
  height: 60px;
  background-color: #fac217;
  border: 2px white solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #footer #toTop {
    right: 1rem;
    top: -50px;
  }
}
#footer #toTop:hover {
  background-color: #e86256;
  cursor: pointer;
}
#footer #toTop svg {
  width: 20px;
  height: 20px;
}

.copyright {
  font-size: 0.8rem;
}
.copyright a.sitemap_wordings {
  color: #00785d;
}
.copyright a.sitemap_wordings:hover {
  color: #e86256;
}

.backButton {
  background-color: grey;
  color: white;
  padding: 0.5rem 2.5rem;
}
.backButton:hover {
  background-color: var(--backBtn-hover-bg);
  color: white;
}

.themed-content-container {
  position: relative;
  margin-top: -160px;
  z-index: 1;
  background-color: white;
  min-height: 600px;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 960px) {
  .themed-content-container {
    margin-top: -120px;
  }
}

.video_page_item .video_box {
  padding-top: 75%;
  background-color: black;
}
.video_page_item .video_youtubeBlock, .video_page_item .video_mp4Block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.video_page_item .album-label {
  color: var(--video-title);
}

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