@charset "UTF-8";
/* 主色系（可自定變數） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  position: relative;
  height: 100%;
}

main {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.title {
  text-align: center;
  margin-bottom: 6em;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.title h3 {
  display: inline-block;
  position: relative;
  font-size: 2em;
  color: #333;
  padding: 0 1em;
  background-color: #fff;
  z-index: 1;
}
.title h3::before, .title h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9999px;
  height: 1px;
  background-color: #00532a;
}
.title h3::before {
  right: 100%;
  margin-right: 20px;
}
.title h3::after {
  left: 100%;
  margin-left: 20px;
}

h4 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #00532a;
}

h5 {
  font-size: 1.2em;
  margin: 0.3em auto;
  color: #00532a;
}

.hidden {
  display: none;
}

.topdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 76px;
  background-color: #00324b;
}
.topdiv a {
  display: flex;
}
.topdiv img {
  height: 40px;
}

.tab-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: calc(100% - 5rem);
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 0.6rem, black calc(100% - 0.6rem), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 0.6rem, black calc(100% - 0.6rem), transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.tab-scroll-div {
  height: 46px;
}

.tab-scroll-wrapper.visible {
  opacity: 1;
}

.tab-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.tab-scroll-inner {
  width: 100%;
  display: flex;
  position: relative;
  justify-self: center;
  gap: 0.5em;
  transition: justify-content 0.3s;
  will-change: justify-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: auto;
  margin-bottom: -5px;
  padding: 0 16px;
}
.tab-scroll-inner::after {
  content: "";
  position: absolute;
  background: #52953f;
  bottom: 0;
  width: 100%;
  height: 5px;
  right: 0;
  left: 0;
}

@media (max-width: 767px) {
  .topdiv {
    height: 50px;
  }
  .topdiv img {
    height: 35px;
  }
}
.news_pic {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.news_pic img {
  width: 100%;
}
.news_pic .news_terms,
.news_pic .news_date {
  position: absolute;
  margin: 10px;
}
.news_pic .news_date {
  top: 0;
  background: #fff;
  border-radius: 50%;
  width: 4em;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.news_pic .news_date .news_day,
.news_pic .news_date .news_month {
  line-height: 1;
}
.news_pic .news_date .news_day {
  font-size: 2em;
}
.news_pic .news_terms {
  bottom: 0;
}
.news_pic .news_terms .news_categories {
  font-size: 90%;
}
.news_pic .news_terms .news_categories span,
.news_pic .news_terms .news_categories a {
  color: #00532a;
}

.news_date.inside {
  font-size: 0.8rem;
  color: #666;
}

.news_p {
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

body {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.6;
  color: #333;
}

/*  */
.home .section1,
.home .section2 {
  color: #52953f;
}
.home .section1 p,
.home .section2 p {
  font-size: 1.5em;
}
.home .section1 {
  width: 100%;
  overflow: hidden;
  height: calc(100vh - 140px);
  background: #fff url("../img/home/in_pic1.png") no-repeat 18% center/64%;
}
.home .section1 .highlight_box {
  height: 100%;
}
.home .section1 .highlight-block {
  position: absolute;
  height: 80%;
  min-height: 450px;
  aspect-ratio: 1/1;
  background-color: rgba(227, 232, 210, 0.8);
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin: 2% 0%;
  right: 8%;
  font-size: 80%;
  top: 50%;
  margin: auto;
  transform: translateY(-50%);
}
.home .section1 .highlight-block .content {
  z-index: 2;
  display: flex;
  justify-content: center;
}
.home .section1 .highlight-block .content h1,
.home .section1 .highlight-block .content p {
  width: 80%;
  text-align: center;
}
.home .section1 .highlight-block .content h1 {
  font-size: 3em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
}
.home .section1 .highlight-block .content p {
  margin: 0 0 -3em;
  padding: 10px 0;
}
.home .section1 .highlight-block .divider-line {
  height: 1px;
  background-color: rgba(82, 149, 63, 0.5);
  width: calc(100% + 160px);
  position: relative;
  margin: 10px 0;
}
.home .section1 .highlight-block .divider-line::after {
  content: "";
  position: absolute;
  left: calc(100% - 150px);
  top: 50%;
  transform: translateY(-50%);
  /* width: 60px;
  height: 3px; */
  background-color: #52953f;
  border-radius: 50%;
  padding: 10px;
}
.home .section2 {
  min-height: calc(100vh - 0px);
}
.home .section2 .origin-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9em;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}
.home .section2 .origin-wrapper .origin-left {
  position: relative;
  flex: 0 0 auto;
  padding: 0 4em 0 2em;
  z-index: 1;
}
.home .section2 .origin-wrapper .origin-left h2 {
  margin: 0;
  font-size: 2.6em;
  color: #fff;
  position: relative;
  z-index: 2;
}
.home .section2 .origin-wrapper .origin-left h2::after {
  content: "";
  position: absolute;
  left: 2.2em;
  top: 0%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  border: solid 10px #27542d;
  border-radius: 50%;
  z-index: -1;
  animation: orbit2 8s linear infinite;
}
.home .section2 .origin-wrapper .origin-left .circle-bg {
  position: absolute;
  left: -9em;
  top: 50%;
  transform: translateY(-50%);
  background-color: #52953f;
  border-radius: 50%;
  width: 18em;
  height: 18em;
  z-index: 1;
}
.home .section2 .origin-wrapper .origin-center {
  flex: 1 1 auto;
  z-index: 1;
}
.home .section2 .origin-wrapper .origin-center p {
  margin: 0;
  line-height: 1.6;
}
.home .section2 .origin-wrapper .origin-right {
  flex: 0 0 auto;
  z-index: 1;
  position: relative;
  width: 30%;
  margin-right: 5em;
}
.home .section2 .origin-wrapper .origin-right .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.home .section2 .origin-wrapper .origin-right .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 50%;
}
.home .section2 .origin-wrapper .origin-right .circle-deco {
  position: absolute;
  right: -10em;
  top: 50%;
  transform: translateY(-50%);
  width: 20em;
  height: 20em;
  background-color: #27542d;
  border-radius: 50%;
  z-index: -1;
}
.home .section2 .intro {
  text-align: center;
  margin-bottom: 3em;
  position: relative;
  margin-top: -10vh;
}
.home .section2 .intro p {
  max-width: 800px;
  margin: 7em auto 10em auto;
  color: #00532a;
  font-size: 1.5em;
  line-height: 1.8;
}
.home .section4,
.home .section3 {
  padding: 4em 1em 6em;
  max-width: 1200px;
  margin: 0 auto;
}
.home .section4 .features .feature,
.home .section3 .features .feature {
  text-align: center;
}
.home .section4 .features .feature a,
.home .section3 .features .feature a {
  display: block;
  max-width: 380px;
  margin: 0 auto;
}
.home .section4 .features .feature img,
.home .section3 .features .feature img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
  padding: 0 10%;
}
.home .section4 .features .feature p,
.home .section3 .features .feature p {
  font-size: 1.3em;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 768px) {
  .home .section4 .features .intro h3,
  .home .section3 .features .intro h3 {
    font-size: 1.5em;
  }
  .home .section4 .features .intro h3::before, .home .section4 .features .intro h3::after,
  .home .section3 .features .intro h3::before,
  .home .section3 .features .intro h3::after {
    width: 80px;
  }
  .home .section4 .features .intro h3::before,
  .home .section3 .features .intro h3::before {
    left: -90px;
  }
  .home .section4 .features .intro h3::after,
  .home .section3 .features .intro h3::after {
    right: -90px;
  }
}

.school .section1 .container {
  flex-direction: column;
  text-align: center;
}
.school .section1 .container h2 {
  color: #333;
}
.school .section-actions .swiper-wrapper {
  cursor: auto;
}
.school .section-actions .swiper {
  max-width: 1440px;
  margin: 0 auto;
}
.school .section-actions .swiper-slide {
  box-shadow: unset;
  padding: 0 18px;
}
.school .section-actions .action-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 2rem 0rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
}
.school .section-actions .action-card .icon {
  width: 80%;
  height: auto;
  margin-bottom: 1rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.school .section-actions .action-card h3 {
  font-size: 1.2rem;
  color: #00532a;
}
.school .section-actions .action-card .more {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}
.school .section-actions .action-card:hover {
  transform: translateY(-5%);
}
.school .section-actions .action-card.light {
  background-color: #f5f2ed;
}
.school .section-actions .action-card.white {
  background-color: #fff;
}
.school .section-actions .action-card .hover-info {
  position: absolute;
  background-color: #fff;
  padding: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.6;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.school .section-actions .action-card .hover-info p {
  font-size: 1.5rem;
}
.school .section-actions .action-card .hover-info.left {
  top: 0;
  left: 0;
  transform: translateX(100%);
}
.school .section-actions .action-card .hover-info.bottom {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.school .section-actions .action-card .hover-info.right {
  top: 0;
  right: 0;
  transform: translateX(-100%);
}
.school .section-actions .action-card:hover .hover-info.left, .school .section-actions .action-card:hover .hover-info.bottom, .school .section-actions .action-card:hover .hover-info.right {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .school .section-actions {
    overflow-x: scroll;
  }
  .school .section-actions::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .school .section-actions .action-card.white {
    background-color: #f5f2ed;
  }
  .school .section-actions .action-card .more {
    pointer-events: none;
  }
}
@media (min-width: 769px) {
  .school .section-actions .action-card .more {
    pointer-events: auto;
  }
}
.school .support-system {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0rem 1rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.school .support-system .oval {
  width: 100%;
  min-height: 260px;
  border: 3px solid #fff;
  border-radius: 100%;
  position: relative;
  background: #e4f0e4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -20px 0;
  flex-direction: column;
}
.school .support-system .oval.center {
  z-index: 3;
  background: #d2e7d2;
}
.school .support-system .oval.center .inner-circle {
  min-height: 100px;
  width: 200px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  position: relative;
  flex: 0 0 auto;
}
.school .support-system .oval.center .inner-circle h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #4a8f34;
}
.school .support-system .oval.center .around-text {
  position: absolute;
  text-align: center;
  font-size: 0.9rem;
}
.school .support-system .oval.center .around-text h4 {
  margin: 0.3em 0 0.1em;
  font-size: 1rem;
  color: #222222;
}
.school .support-system .oval.center .around-text p {
  font-size: 0.85rem;
  color: #555;
}
.school .support-system .oval.center .around-text.top, .school .support-system .oval.center .around-text.bottom {
  position: relative;
  padding: 0.5em;
}
.school .support-system .oval.center .around-text.left {
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
}
.school .support-system .oval.center .around-text.right {
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}
.school .support-system .oval.top, .school .support-system .oval.bottom {
  z-index: 1;
}
.school .support-system .oval.top .text-cloud, .school .support-system .oval.bottom .text-cloud {
  position: absolute;
  width: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
  border: 2px solid #ccc;
}
.school .support-system .oval.top .text-cloud h4, .school .support-system .oval.bottom .text-cloud h4 {
  margin: 0;
  font-size: 1rem;
  color: #222222;
}
.school .support-system .oval.top .text-cloud p, .school .support-system .oval.bottom .text-cloud p {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3em;
}
.school .support-system .oval.top .text-cloud.left, .school .support-system .oval.bottom .text-cloud.left {
  left: 10%;
}
.school .support-system .oval.top .text-cloud.right, .school .support-system .oval.bottom .text-cloud.right {
  right: 10%;
}
.school #text-oval {
  position: relative;
  max-width: 728px;
  width: 100%;
  height: 260px;
  margin: auto;
  border-radius: 50%;
  background: #e6f4e6;
  border: 2px solid #fff;
  overflow: hidden;
}
.school .text-block {
  max-width: 120px;
  padding: 0.5em;
  background: transparent;
  font-size: 0.9rem;
  position: absolute;
  text-align: center;
}
.school .text-block h4 {
  font-size: 1rem;
  margin: 0.2em 0;
}
.school .text-block p {
  font-size: 0.8rem;
  margin: 0;
}
.school .ellipse-wrap {
  display: flex;
  justify-content: center;
  padding: 3em 1em;
}
.school .ellipse-shape {
  width: 728px;
  min-height: 260px;
  background-color: #f0f7f2;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.school .ellipse-shape .ellipse-content {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
  justify-content: center;
  align-items: flex-start;
  max-width: 90%;
  max-height: 70%;
}
.school .ellipse-shape .ellipse-item {
  background: transparent;
  text-align: center;
  padding: 0.5em 0.8em;
}
.school .ellipse-shape .ellipse-item h4 {
  font-size: 1rem;
  margin: 0 0 0.3em;
  color: #1a3d1a;
  word-break: break-word;
}
.school .ellipse-shape .ellipse-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #444;
  line-height: 1.4;
  word-break: break-word;
}

.school_logo {
  border-radius: 50%;
  overflow: hidden;
  width: 8em;
  height: 8em;
  margin: 2em auto 1em;
}
.school_logo img {
  width: 100%;
  height: auto;
}

.syllabus .section2 .text-content {
  max-width: 800px;
  margin: auto;
}
.syllabus .section2 .text-content p {
  padding: 1em;
}
.syllabus .timeline_box {
  z-index: 1;
  position: relative;
  /* 綠色圓點 */
  /* 中央橫線 */
  /* 進度條 */
  /* 滾動條樣式 */
}
.syllabus .timeline_box .timeline-wrapper {
  position: relative;
  margin: -2em auto 6em;
}
.syllabus .timeline_box .timeline-section {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 30px 0;
  scroll-behavior: smooth;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.syllabus .timeline_box .timeline-section::-webkit-scrollbar {
  display: none;
}
.syllabus .timeline_box .timeline-item {
  display: flex;
  min-width: 340px;
  max-width: 600px;
  margin: 0 40px;
  padding: 20px;
  position: relative;
  vertical-align: top;
  z-index: 1001;
  gap: 90px;
}
.syllabus .timeline_box .timeline-item:nth-child(odd) {
  flex-direction: column;
}
.syllabus .timeline_box .timeline-item:nth-child(odd) .timeline-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.syllabus .timeline_box .timeline-item:nth-child(odd) .timeline-content h1 {
  bottom: -115px;
}
.syllabus .timeline_box .timeline-item:nth-child(odd) .timeline-content .dot {
  bottom: -53px;
}
.syllabus .timeline_box .timeline-item:nth-child(even) {
  flex-direction: column-reverse;
}
.syllabus .timeline_box .timeline-item:nth-child(even) .timeline-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.syllabus .timeline_box .timeline-item:nth-child(even) .timeline-content h1 {
  top: -115px;
}
.syllabus .timeline_box .timeline-item:nth-child(even) .timeline-content .dot {
  top: -53px;
}
.syllabus .timeline_box .timeline-item .timeline-content {
  position: relative;
  flex-grow: 1;
}
.syllabus .timeline_box .timeline-item .timeline-content:nth-child(2) {
  opacity: 0;
}
.syllabus .timeline_box .timeline-item h1 {
  position: absolute;
  color: #52953f;
  font-family: "Courier New", Courier, monospace;
}
.syllabus .timeline_box .timeline-item h3 {
  color: #0a303a;
  margin: 0 0 10px;
  font-size: 1.5em;
}
.syllabus .timeline_box .timeline-item p {
  margin: 0;
  color: #333;
  font-size: 15px;
  white-space: normal;
}
.syllabus .timeline_box .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #52953f;
  border-radius: 50%;
  z-index: 1001;
}
.syllabus .timeline_box .timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #ccc 0 5px, transparent 5px 10px);
  z-index: 999;
  transform: translateY(-50%);
}
.syllabus .timeline_box .timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: #52953f;
  width: 0;
  transition: width 0.3s ease-out;
  z-index: 1000;
  transform: translateY(-50%);
}
.syllabus .timeline_box .timeline-section::-webkit-scrollbar {
  height: 8px;
}
.syllabus .timeline_box .timeline-section::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.syllabus .timeline_box .scroll-prompt-container {
  position: absolute;
  width: 120px;
  height: 20px;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  background: #ffffff;
  padding: 2px auto;
  border-radius: 5px;
  overflow: hidden;
}
.syllabus .timeline_box .scroll-prompt-container .scroll-prompt-icon {
  width: 30px;
  height: 30px;
  border-right: 5px solid #52953f;
  border-bottom: 5px solid #52953f;
  transform: translateY(-50%) rotate(-45deg);
  animation: scroll-hint 3s infinite;
  position: absolute;
  top: 50%;
}
.syllabus .timeline_box .scroll-prompt-container .scroll-prompt-text {
  width: 100%;
  text-align: center;
}
@keyframes scroll-hint {
  0% {
    transform: translateX(-45px) translateY(-50%) rotate(-45deg);
  }
  100% {
    transform: translateX(110px) translateY(-50%) rotate(-45deg);
  }
}
.syllabus .support-system h4 {
  font-size: 1.4em;
  margin-bottom: 0;
}
.syllabus .support-system img {
  max-width: 100%;
  height: auto;
}
.syllabus .support-system .oval .text-swiper {
  position: relative;
  width: 320px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  border: 0px solid #ccc;
  margin-bottom: 3em;
}
.syllabus .support-system .oval.text_2 {
  flex-direction: row;
}
.syllabus .support-system .oval.text_2 .text-swiper {
  margin-bottom: 3em;
  margin-top: 2em;
}
.syllabus .support-system .oval.text_2 .swiper-pagination {
  display: none;
}
.syllabus .support-system .oval.bottom.oval_bottom {
  z-index: 3;
}
.syllabus .support-system .swiper {
  padding: 0 3em;
}
.syllabus .support-system .swiper .swiper-button-next:after,
.syllabus .support-system .swiper .swiper-button-prev:after {
  font-size: 100%;
}
.syllabus .support-system .swiper-slide {
  background: transparent;
  box-shadow: none;
  padding-bottom: 0px;
}
.syllabus .support-system .swiper-slide::before {
  display: none;
}
.syllabus .swiper {
  padding: 80px 10px;
}
.syllabus .swiper-wrapper-container {
  max-width: 1024px;
  margin: 0 auto;
}
.syllabus .swiper-slide {
  position: relative;
  background: white;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 4px;
  padding-bottom: 20px;
  text-align: center;
}
.syllabus .icon-circle {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  z-index: 1;
}
.syllabus .year {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #333;
  font-weight: bold;
}
.syllabus .image {
  width: 100%;
  height: 100px;
  /* background: #ccc; */
  border-radius: 0;
  margin-bottom: 10px;
}
.syllabus .image img {
  width: auto;
  height: 100%;
}
.syllabus .swiper-slide h3 {
  font-size: 16px;
  margin: 0 0 5px;
}
.syllabus .swiper-slide p {
  font-size: 16px;
  color: #555;
  padding: 0 10px;
}
.syllabus .swiper-button-next,
.syllabus .swiper-button-prev {
  color: #333;
}
.syllabus .swiper-pagination {
  margin-top: 10px;
}
.syllabus .section6 table {
  max-width: 100%;
  table-layout: fixed;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: "Arial", "Microsoft JhengHei", sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.syllabus .section6 th,
.syllabus .section6 td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
  vertical-align: top;
}
.syllabus .section6 th:nth-child(1), .syllabus .section6 th:nth-child(2),
.syllabus .section6 td:nth-child(1),
.syllabus .section6 td:nth-child(2) {
  width: 130px;
}
.syllabus .section6 th {
  background-color: #4d9336;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.syllabus .section6 td {
  font-size: 16px;
  color: #333;
}
.syllabus .section6 tr:nth-child(even) {
  background-color: #f9f9f9;
}
.syllabus .section6 tr:hover {
  background-color: #e8f5e9;
  transition: background-color 0.3s;
}
.syllabus .section6 h3 {
  margin: 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .syllabus .section6 table {
    font-size: 14px;
  }
  .syllabus .section6 table th,
  .syllabus .section6 table td {
    padding: 10px;
    padding: 15px;
    text-align: center;
  }
  .syllabus .section6 table th:last-child,
  .syllabus .section6 table td:last-child {
    text-align: unset;
  }
  .syllabus .section6 table th:nth-child(1), .syllabus .section6 table th:nth-child(2),
  .syllabus .section6 table td:nth-child(1),
  .syllabus .section6 table td:nth-child(2) {
    width: 4em;
  }
  .syllabus .section6 table th {
    font-size: 16px;
  }
  .syllabus .section6 table td {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .syllabus .swiper {
    padding: 40px 10px;
  }
  .syllabus .support-system .oval.text_2 {
    background: transparent;
  }
  .syllabus .support-system .oval.text_2::before {
    content: "";
    display: block;
    width: 150%;
    height: 150%;
    background: #e4f0e4;
    border-radius: 50%;
    position: absolute;
    top: -10%;
  }
  .syllabus .support-system .oval.text_2 .text-swiper {
    width: 50%;
  }
  .syllabus .support-system .oval.text_2 .swiper {
    padding: 0;
  }
  .syllabus .support-system .oval.text_2 .swiper-button-prev,
  .syllabus .support-system .oval.text_2 .swiper-button-next {
    display: none;
  }
  .syllabus .support-system .oval.text_2 .swiper-pagination {
    display: block;
  }
}

.top_banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 2em;
  margin: auto;
  max-width: 100%;
}
.top_banner .text-content,
.top_banner .image-content {
  flex: 1;
}
.top_banner .text-content {
  font-size: 18px;
}
.top_banner .text-content h1 {
  font-size: 22px;
  color: #26532b;
  font-size: 190%;
  margin-right: 0.5em;
}
.top_banner .text-content h2 {
  font-size: 22px;
  font-weight: 500;
}
.top_banner .text-content img {
  max-width: 100%;
  max-height: 20em;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}
.top_banner .image-content img {
  max-width: 100%;
  max-height: 20em;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .top_banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .top_banner .text-content,
  .top_banner .image-content {
    width: 100%;
  }
  .top_banner .text-content h1,
  .top_banner .text-content h2 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .resource.detail .top_banner .text-content.resource-detail-box {
    text-align: left;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
}
.resource.detail .resource-detail-box b {
  position: relative;
  padding: 0.5em 0 0.5em 0.5em;
  color: #26532b;
}
.resource.detail .resource-detail-box b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  border-radius: 2px;
  width: 4px;
  height: 1.2em;
  background-color: #306937;
}
.resource.detail .section3 {
  /* Swiper Slide */
  /* 標題 */
  /* 內文區塊 */
  /* 圖片區 */
  /* 作者區 */
  /* 分頁按鈕（文字樣式） */
  /* RWD */
}
.resource.detail .section3 .swiper-slide {
  padding: 4em 10em;
  background: #fff;
  box-sizing: border-box;
}
.resource.detail .section3 .swiper-slide .swiper-slide-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #26532b;
  text-align: center;
  margin-bottom: 1em;
}
.resource.detail .section3 .swiper-slide .section {
  padding-bottom: 40px;
}
.resource.detail .section3 .section-title {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.8em;
  font-weight: bold;
  color: #26532b;
}
.resource.detail .section3 .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  border-radius: 4px;
  width: 4px;
  height: 1.2em;
  background-color: #26532b;
}
.resource.detail .section3 .section-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.resource.detail .section3 .section-inner .text {
  flex: 1;
}
.resource.detail .section3 .section-inner .text p {
  margin: 0.5em 0;
}
.resource.detail .section3 .pic_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}
.resource.detail .section3 .pic_box img {
  max-width: 80%;
  max-height: 40em;
  width: auto;
  height: auto;
}
.resource.detail .section3 .author-list {
  display: flex;
  gap: 1em;
  flex-direction: column;
  align-items: center;
  margin-top: 1em;
}
.resource.detail .section3 .author-list .tag {
  text-align: center;
  border-radius: 10px;
  background: #f5f1eb;
  padding: 0.5em 1em;
  margin-top: 1em;
  font-size: 14px;
}
.resource.detail .section3 .author-list .author_box {
  display: flex;
  gap: 1.4em;
}
.resource.detail .section3 .author-list .author_box .author {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.resource.detail .section3 .author-list .author_box .author img {
  width: 5em;
  height: 5em;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5em;
}
.resource.detail .section3 .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 20px;
  top: auto;
  bottom: auto;
  position: relative;
  margin-bottom: -4px;
  border-bottom: #52953f solid 5px;
}
.resource.detail .section3 .swiper-pagination.fixed-top {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 100;
  width: auto;
  height: 75px;
  max-width: 992px;
  margin: 0 max((100% - 992px) / 2, 1em);
  border-bottom: none;
}
@media (max-width: 1024px) {
  .resource.detail .section3 .swiper-pagination.fixed-top {
    top: 50px;
  }
}
.resource.detail .section3 .swiper-pagination.fixed-top::before {
  content: "";
  position: sticky;
  background: #ffffff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin-bottom: -66px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .resource.detail .section3 .swiper-pagination.fixed-top::before {
    margin-bottom: -63px;
  }
}
.resource.detail .section3 .swiper-pagination.fixed-top .tab-scroll-inner {
  padding: 11px 1vw 20px;
}
@media (max-width: 1024px) {
  .resource.detail .section3 .swiper-pagination.fixed-top .tab-scroll-inner {
    padding: 11px 10px 20px;
  }
}
.resource.detail .section3 .swiper-pagination.fixed-top .tab-scroll-inner::after {
  bottom: 20px;
}
.resource.detail .section3 .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background: #00532a;
  color: #fff;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 9px 18px 13px 18px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, filter 0.3s;
  opacity: 1;
  font-size: 1em;
  width: auto;
  height: auto;
}
.resource.detail .section3 .swiper-pagination .swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
  filter: brightness(1.3);
}
.resource.detail .section3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #52953f;
  color: #fff;
}
@media (max-width: 767px) {
  .resource.detail .section3 .swiper-slide {
    padding: 4em 2em;
  }
  .resource.detail .section3 .section-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.file-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  font-size: 0.95rem;
}
.file-table thead {
  background: #f5f1eb;
}
.file-table th,
.file-table td {
  border: 1px solid #ddd;
  padding: 0.6em 1em;
  text-align: left;
}
.file-table th {
  font-weight: bold;
  color: #26532b;
}
.file-table tbody tr {
  transition: background 0.2s;
}
.file-table tbody tr:hover {
  background: #f9f9f9;
}
.file-table a {
  text-decoration: none;
  color: #52953f;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.file-table a:hover {
  color: rgb(62.2735849057, 113.1556603774, 47.8443396226);
}

.resource_box {
  display: flex;
  gap: 11%;
  margin-top: 40px;
}
.resource_box .title-dark {
  font-size: 1.5rem;
}
.resource_box .resource_box_left {
  flex: 1 1 30%;
  min-width: 25em;
  padding-left: 3em;
}
@media (max-width: 1024px) {
  .resource_box .resource_box_left {
    padding-left: 0;
    min-width: auto;
  }
}
.resource_box .resource_box_left .theme-grid_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.resource_box .resource_box_left .theme-grid {
  background: #faf8f5;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .resource_box .resource_box_left .theme-grid {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.resource_box .resource_box_left .theme-grid .theme-left {
  flex: 1;
  background: #f5f1ec;
  border-radius: 12px;
  text-align: center;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.resource_box .resource_box_left .theme-grid .theme-left div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding: 1.5em 1em;
  color: #0a303a;
}
.resource_box .resource_box_left .theme-grid .theme-left div img {
  width: 100%;
}
.resource_box .resource_box_left .theme-grid .theme-right {
  flex: 1;
  display: flex;
  gap: 0.4em;
  gap: 0.8em;
  flex-wrap: nowrap;
  align-content: center;
  flex-direction: column;
  font-size: 18px;
}
.resource_box .resource_box_left .theme-grid .theme-right a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  flex-basis: 45%;
  padding: 0.4em 0;
}
.resource_box .resource_box_left .theme-grid .theme-right a svg,
.resource_box .resource_box_left .theme-grid .theme-right a img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  fill: #4d9336;
}
.resource_box .resource_box_left .theme-grid .theme-right a:hover {
  color: #ea5903;
}
.resource_box .resource_box_left .theme-grid .theme-right a:hover svg {
  fill: #ea5903;
}
.resource_box .resource_box_right {
  flex: 1 1 45%;
  min-width: 300px;
}
.resource_box .resource_box_right .crop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5em;
  padding-bottom: 2.5em;
  justify-items: center;
  align-items: center;
}
.resource_box .resource_box_right .crop-grid .crop-item {
  text-align: center;
  margin: 1em;
}
@media (max-width: 1024px) {
  .resource_box .resource_box_right .crop-grid .crop-item {
    max-width: 130px;
  }
}
.resource_box .resource_box_right .crop-grid .crop-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.resource_box .resource_box_right .crop-grid .crop-item a img {
  width: 126px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
}
.resource_box .resource_box_right .crop-grid .crop-item a:hover {
  color: #8c6214;
}
@media (max-width: 1024px) {
  .resource_box {
    flex-direction: column;
  }
  .resource_box .resource_box_left .theme-grid_box {
    margin-bottom: 5em;
  }
  .resource_box .resource_box_left .theme-grid .theme-right {
    gap: 1em;
    align-content: center;
    text-wrap-mode: nowrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .resource_box .resource_box_left .theme-grid .theme-right {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}
@media (max-width: 1024px) {
  .resource_box .resource_box_left,
  .resource_box .resource_box_right {
    flex: 1 1 100%;
    margin-left: 0;
  }
  .resource_box .resource_box_left .theme-grid .theme-left {
    flex: 0 0 6em;
  }
  .resource_box .resource_box_right .crop-grid .crop-item a img {
    width: 90%;
    aspect-ratio: 1;
  }
}

.swiper-a,
.swiper-b {
  cursor: pointer;
}
.swiper-a .swiper-pagination,
.swiper-b .swiper-pagination {
  position: static;
  margin-top: 1em;
  text-align: center;
}
.swiper-a .swiper-pagination-bullet,
.swiper-b .swiper-pagination-bullet {
  background: #00532a;
  opacity: 0.3;
}
.swiper-a .swiper-pagination-bullet-active,
.swiper-b .swiper-pagination-bullet-active {
  opacity: 1;
}

.syllabus .section2 .contact-section,
.contacts .section2 .contact-section {
  padding: 60px 20px;
  background: #fff;
}
.syllabus .section2 .contact-section .contact-container,
.contacts .section2 .contact-section .contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.syllabus .section2 .contact-section .contact-container .contact-left,
.contacts .section2 .contact-section .contact-container .contact-left {
  flex: 1.5;
  min-width: 280px;
}
.syllabus .section2 .contact-section .contact-container .contact-left img,
.contacts .section2 .contact-section .contact-container .contact-left img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-top: -40px;
}
.syllabus .section2 .contact-section .contact-container .contact-left h2,
.contacts .section2 .contact-section .contact-container .contact-left h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}
.syllabus .section2 .contact-section .contact-container .contact-left .contact-info,
.contacts .section2 .contact-section .contact-container .contact-left .contact-info {
  list-style: none;
  padding: 0;
}
.syllabus .section2 .contact-section .contact-container .contact-left .contact-info li,
.contacts .section2 .contact-section .contact-container .contact-left .contact-info li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}
.syllabus .section2 .contact-section .contact-container .contact-left .contact-info li i,
.contacts .section2 .contact-section .contact-container .contact-left .contact-info li i {
  margin-right: 10px;
  background: #4d9336;
  padding: 0.5em;
}
.syllabus .section2 .contact-section .contact-container .contact-left .contact-info li i.fa-map-marker-alt,
.contacts .section2 .contact-section .contact-container .contact-left .contact-info li i.fa-map-marker-alt {
  background: url(../img/contacts/fa-map-marker-alt.svg) no-repeat center/90%;
}
.syllabus .section2 .contact-section .contact-container .contact-left .contact-info li i.fa-clock,
.contacts .section2 .contact-section .contact-container .contact-left .contact-info li i.fa-clock {
  background: url(../img/contacts/fa-clock.svg) no-repeat center/90%;
}
.syllabus .section2 .contact-section .contact-container .contact-left .contact-info li i.fa-phone,
.contacts .section2 .contact-section .contact-container .contact-left .contact-info li i.fa-phone {
  background: url(../img/contacts/fa-phone.svg) no-repeat center/90%;
}
.syllabus .section2 .contact-section .contact-container .contact-right,
.contacts .section2 .contact-section .contact-container .contact-right {
  flex: 1;
  min-width: 280px;
}
.syllabus .section2 .contact-section .contact-container .contact-right h2,
.contacts .section2 .contact-section .contact-container .contact-right h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}
.syllabus .section2 .contact-section .contact-container .contact-right .intro,
.contacts .section2 .contact-section .contact-container .contact-right .intro {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666;
}
.syllabus .section2 .contact-section .contact-container .contact-right .contact-form,
.contacts .section2 .contact-section .contact-container .contact-right .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.syllabus .section2 .contact-section .contact-container .contact-right .contact-form input,
.syllabus .section2 .contact-section .contact-container .contact-right .contact-form textarea,
.contacts .section2 .contact-section .contact-container .contact-right .contact-form input,
.contacts .section2 .contact-section .contact-container .contact-right .contact-form textarea {
  padding: 12px 15px;
  background: #f5f1ec;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
}
.syllabus .section2 .contact-section .contact-container .contact-right .contact-form button,
.contacts .section2 .contact-section .contact-container .contact-right .contact-form button {
  background: #4d9336;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.syllabus .section2 .contact-section .contact-container .contact-right .contact-form button:hover,
.contacts .section2 .contact-section .contact-container .contact-right .contact-form button:hover {
  background: rgb(67.2313432836, 128.3507462687, 47.1492537313);
}
@media (max-width: 767px) {
  .syllabus .section1.title-banner .container,
  .contacts .section1.title-banner .container {
    min-height: 10em;
  }
  .syllabus .section1.title-banner .container h2,
  .contacts .section1.title-banner .container h2 {
    margin-top: 1em;
    font-size: 220%;
  }
  .syllabus .contact-section .contact-container,
  .contacts .contact-section .contact-container {
    flex-direction: column;
  }
}

.news .news-card {
  display: block;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  background-color: #fff;
}
.news .news-card:hover {
  transform: translateY(-4px);
}
.news .swiper-none .swiper-wrapper {
  flex-wrap: wrap;
  row-gap: 3em;
  -moz-column-gap: 4%;
       column-gap: 4%;
  margin-bottom: 4em;
}
.news .swiper-none .swiper-wrapper .swiper-slide {
  width: 30.6666666667%;
}
@media (max-width: 767px) {
  .news .section1.title-banner .container {
    min-height: 16em;
  }
  .news .section1.title-banner .container h2 {
    font-size: 240%;
  }
  .news .swiper-none .swiper-wrapper {
    flex-wrap: wrap;
  }
  .news .swiper-none .swiper-wrapper .swiper-slide {
    width: 48%;
    margin: auto;
  }
}
@media (max-width: 512px) {
  .news .swiper-none .swiper-wrapper .swiper-slide {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (min-width: 1025px) {
  .news .section1.title-banner {
    background-attachment: fixed;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem auto;
  flex-wrap: wrap;
  height: 36px;
  max-width: 550px;
}
.pagination .page {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  border-radius: 6px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}
.pagination .page:hover {
  background-color: #52953f;
  color: #fff;
  border-color: #52953f;
}
.pagination .page.active {
  background-color: #52953f;
  color: #fff;
  border-color: #52953f;
  pointer-events: none;
}
.pagination .page.ellipsis {
  background: none;
  border: none;
  cursor: default;
  color: #999;
  width: auto;
  display: inline-flex !important;
  font-weight: 600;
  width: 25px;
}
.pagination .page.hidden {
  display: none;
}
.pagination .page.prev, .pagination .page.next {
  font-weight: bold;
  font-size: 16px;
}

.single-news .news-detail {
  padding: 2rem 0;
}
.single-news .news-detail .news-article {
  max-width: 800px;
  margin: 0 auto;
}
.single-news .news-detail .news-article .meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}
.single-news .news-detail .news-article .meta .category {
  padding: 3px 8px 0;
  font-size: 12px;
  border-radius: 4px;
  background-color: #d4e9d2;
  color: #00532a;
}
.single-news .news-detail .news-article .news-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: bold;
}
.single-news .news-detail .news-article .cover-image {
  margin-bottom: 2rem;
}
.single-news .news-detail .news-article .cover-image img {
  width: 100%;
  border-radius: 12px;
}
.single-news .news-detail .news-article .content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
}
.single-news .news-detail .news-article .content p {
  margin-bottom: 1.5rem;
}
.single-news .news-detail .news-article .share {
  margin-top: 3rem;
  font-size: 0.9rem;
}
.single-news .news-detail .news-article .share a {
  margin-left: 10px;
  color: #00532a;
  text-decoration: underline;
}
.single-news .news-detail .news-article .share a.fb:hover {
  color: #3b5998;
}
.single-news .news-detail .news-article .share a.line:hover {
  color: #00c300;
}

.news-navigation {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.news-navigation a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border-radius: 8px;
  background-color: #f3f3f3;
  color: #00532a;
  transition: background-color 0.2s ease;
}
.news-navigation a:hover {
  background-color: #dcebd2;
}
.news-navigation a.back {
  margin: 0 auto;
}
.news-navigation a.disable, .news-navigation a[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.syllabus .section1.banner {
  background: #f5f2ed;
}
.syllabus .section1.banner .top_banner {
  flex-direction: row-reverse;
  min-height: 32vw;
  margin: 0 10vw;
}
.syllabus .section1.banner .top_banner .text-content {
  flex: 4;
}
.syllabus .section1.banner .top_banner .image-content {
  flex: 6;
}
@media screen and (max-width: 1200px) {
  .syllabus .section1.banner .top_banner .text-content {
    flex: 5;
  }
  .syllabus .section1.banner .top_banner .image-content {
    flex: 5;
  }
}
@media screen and (max-width: 991px) {
  .syllabus .section1.banner .top_banner {
    flex-direction: column;
    text-align: center;
  }
  .syllabus .section1.banner .top_banner .text-content {
    max-width: 540px;
    margin: auto;
  }
}
@media screen and (max-width: 551px) {
  .syllabus .section1.banner .top_banner {
    gap: 0;
    margin: 0 3vw;
    padding: 10px;
  }
}
.syllabus h2 {
  color: #00532a;
}
.syllabus .title-banner h2 {
  color: #333;
}
.syllabus main {
  min-height: auto;
}
.syllabus .text-switch {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.syllabus .text-switch.fade-out {
  opacity: 0;
}
.syllabus .edu-section .edu-image_box {
  background-size: 50%;
  background-position: right;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: background-position 0.3s ease-out;
}
.syllabus .edu-section .edu-image_box:nth-child(even) {
  flex-direction: row-reverse;
}
.syllabus .edu-section .edu-image_box:nth-child(even) .edu-row {
  flex-direction: row-reverse;
}
.syllabus .edu-section .edu-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 40vw;
  max-width: 1024px;
  margin: 0 auto;
}
.syllabus .edu-section .edu-row .edu-text {
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.syllabus .edu-section .edu-row .edu-image,
.syllabus .edu-section .edu-row .edu-text {
  flex: 1 1 50%;
  max-width: 640px;
  padding: 40px;
  box-sizing: border-box;
}
.syllabus .edu-section .edu-row .edu-image h3,
.syllabus .edu-section .edu-row .edu-text h3 {
  font-size: 1.5rem;
  color: #00532a;
}
.syllabus .edu-section .edu-row .edu-image p,
.syllabus .edu-section .edu-row .edu-text p {
  font-size: 1rem;
  line-height: 1.6;
}
.syllabus .syllabus_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 9em 0;
}
.syllabus .syllabus_btn a {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #52953f;
  border: none;
  border-radius: 8px;
  padding: 0.5em 1em;
  margin: 2em 0;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s;
}
.syllabus .syllabus_btn a::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00532a;
  transition: top 0.3s;
  z-index: -1;
}
.syllabus .syllabus_btn a:hover::before {
  top: 0;
}
.syllabus .syllabus_btn a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .syllabus .edu-section .edu-row {
    flex-direction: column;
  }
  .syllabus .edu-section .edu-image_box {
    background-size: 100%;
  }
  .syllabus .edu-section .edu-image_box:nth-child(even) {
    flex-direction: column;
  }
  .syllabus .edu-section .edu-image_box:nth-child(even) .edu-row {
    flex-direction: column;
  }
  .syllabus .edu-section .edu-image_box .edu-row {
    justify-content: center;
  }
  .syllabus .edu-section .edu-image_box .edu-row .edu-image {
    display: none;
  }
  .syllabus .edu-section .edu-image_box .edu-row .edu-image,
  .syllabus .edu-section .edu-image_box .edu-row .edu-text {
    margin: 40px;
    flex: 0;
    padding: 2em 1em;
  }
  .syllabus .edu-section .edu-image_box .edu-row .edu-text h3 {
    min-height: 3em;
  }
}

.flower-info {
  margin-top: 15px;
}
.flower-info p {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 8px;
}
.flower-info p span {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
}
.flower-info p span img {
  width: 40px;
}

.search main {
  min-height: calc(100vh - 450px);
}

.search-page {
  display: flex;
  gap: 30px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}
.search-page .search-sidebar {
  width: 240px;
  flex-shrink: 0;
}
.search-page .search-sidebar .search-box {
  position: relative;
  margin-bottom: 20px;
}
.search-page .search-sidebar .search-box input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: none;
  border-radius: 30px;
  background-color: #f3f3f3;
  font-size: 16px;
}
.search-page .search-sidebar .search-box button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.search-page .search-sidebar .search-box button img {
  width: 20px;
  height: 20px;
}
.search-page .search-sidebar .filter-group {
  margin-bottom: 20px;
}
.search-page .search-sidebar .filter-group h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.search-page .search-sidebar .filter-group .custom-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
}
.search-page .search-sidebar .filter-group .custom-checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-right: 10px;
  position: relative;
  background-color: #fff;
}
.search-page .search-sidebar .filter-group .custom-checkbox input[type=checkbox]:checked {
  background-color: #00532a;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}
.search-page .search-sidebar .filter-group .custom-checkbox span {
  font-size: 16px;
}
.search-page .search-sidebar .clear-btn {
  margin-top: 20px;
  padding: 8px 15px;
  background-color: #ccc;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .search-page .search-sidebar .clear-btn {
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
}
.search-page .search-results {
  flex: 1;
}
.search-page .search-results .result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.search-page .search-results .result-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-page .search-results .result-card img {
  width: auto;
  height: auto;
  display: block;
  max-height: 150px;
  max-width: 100%;
  padding: 1em;
}
.search-page .search-results .result-card .result-info {
  padding: 15px;
  width: 100%;
}
.search-page .search-results .result-card .result-info h5 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}
@media (max-width: 1024px) {
  .search-page .search-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search-page {
    flex-direction: column;
  }
  .search-page .search-sidebar .filter-group {
    margin-bottom: 10px;
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
    min-width: 240px;
  }
  .search-page .search-sidebar .filter-group h4 {
    margin-bottom: 0;
  }
  .search-page .search-sidebar .filter-group .custom-checkbox {
    margin: 0;
    margin-right: 15px;
  }
  .search-page .search-sidebar {
    width: 100%;
  }
  .search-page .search-results {
    grid-template-columns: 1fr;
  }
}

.tag {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333;
}
.tag.reports {
  background-color: #d4e9d2;
  color: #00532a;
}
.tag.type {
  background-color: #d4e9d2;
  color: #00532a;
}
.tag.category {
  background-color: #e7d4d2;
  color: #993322;
}
.tag.label {
  background-color: #d2e2f2;
  color: #114477;
}

/* 共用容器 */
.title-dark {
  color: #222222;
  font-size: 1.8rem;
  margin-bottom: 1em;
  text-align: center;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2em 1em;
}

.resource-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 2em 1em;
}

.section1.banner, .section1.title-banner {
  font-size: 135%;
  font-size: clamp(106%, 1.2vw, 135%);
  background: #f5f2ed;
}
.section1.banner::after, .section1.title-banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background: url(../img/top_banner_dow.svg) no-repeat center/100%;
  transform: translateY(2px) rotate(180deg);
  margin-top: -2em;
}
.section1.banner .container, .section1.title-banner .container {
  padding: 0 0 3em;
}
.section1.title-banner .container {
  justify-content: center;
  min-height: 11em;
  padding: 0 0 2em;
}
.section1.title-banner .container h2 {
  font-size: 200%;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section1 .container {
  display: flex;
  align-items: center;
}

.circle-container {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.line-dot {
  border-radius: 50%;
  z-index: 1;
  padding: 105px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  animation: orbit 8s linear infinite;
}

/* === Header 區 === */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  color: #222222;
  width: 100%;
  position: relative;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.site-header.fixed {
  position: fixed;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .logo img {
  height: 40px;
  width: auto;
  display: block;
}
.site-header .logo span {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}
.site-header .main-nav {
  display: flex;
  justify-content: flex-end;
  flex-basis: 60%;
}
.site-header .main-nav ul {
  display: flex;
  list-style: none;
  margin-right: 1em;
}
.site-header .main-nav ul li a {
  padding: 5px 10px;
  position: relative;
}
.site-header .main-nav ul li a::after {
  content: "";
  position: absolute;
  right: 1px;
  top: -3px;
  background: url(../img/nav_icon.svg) no-repeat center/100%;
  height: 0.7em;
  width: 0.7em;
  display: block;
  opacity: 0;
  transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
  .site-header .main-nav ul li a::after {
    right: -5px;
    top: -9px;
  }
}
.site-header .main-nav ul li a.active, .site-header .main-nav ul li a:hover {
  color: #4d9336;
}
.site-header .main-nav ul li a.active::after, .site-header .main-nav ul li a:hover::after {
  display: block;
  opacity: 1;
  animation: fadeIn 0.4s linear, zoomIn 0.4s linear;
}
.site-header .header-buttons {
  display: flex;
  gap: 10px;
  font-size: 90%;
}
.site-header .header-buttons .btn {
  padding: 4px 12px;
  background: #52953f;
  color: #fff;
  border: 1px solid #52953f;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}
.site-header .header-buttons .btn.btn-outline {
  background: #e44d32;
  border: 1px solid white;
  color: white;
}
.site-header .menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  margin-left: auto;
  padding-right: 10px;
  position: relative;
}
.site-header .menu-toggle span::before,
.site-header .menu-toggle span::after {
  margin-left: -2px;
}
.site-header .menu-toggle span,
.site-header .menu-toggle span::before,
.site-header .menu-toggle span::after {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #4a8f34;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  content: "";
}
.site-header .menu-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.site-header .menu-toggle span::before {
  top: -8px;
}
.site-header .menu-toggle span::after {
  top: 8px;
}
.site-header .menu-toggle.active span {
  background-color: transparent;
}
.site-header .menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header .menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* === Footer 區 === */
.footer {
  background: #f5f2ed url("../img/footer-bg.svg") no-repeat top center/auto;
  margin-top: 6em;
}
.footer .logo {
  position: absolute;
  text-align: center;
}
.footer .logo a {
  width: 45%;
  display: inline-block;
}
.footer .logo a img {
  width: 100%;
}
.footer .footer_bg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-family: "Microsoft JhengHei", sans-serif;
  flex-wrap: wrap;
  max-width: 1000px;
  min-height: 450px;
  margin: auto;
  position: relative;
}
.footer .footer-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer .footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer-left p {
  margin: 0;
  font-size: 14px;
}
.footer .footer-left img {
  padding-top: 2px;
  margin-right: -55px;
}
.footer .footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.footer .footer-center ul li a {
  color: #74716e;
  font-size: 14px;
}
.footer .footer-center ul li a:hover {
  color: #4d9336;
}
.footer .footer-right {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-direction: column;
  width: 100%;
  padding-bottom: 100px;
}
.footer .footer-right .line-btn {
  background-color: #59ac21;
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 0;
}
.footer .footer-right .social-icons {
  display: flex;
  gap: 12px;
}
.footer .footer-right .social-icons a.icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* filter: brightness(0) invert(1); */
  cursor: pointer;
  border-radius: 50%;
  padding: 5px;
}
.footer .footer-right .social-icons a.icon.fb {
  background: url("../img/icon_fb.svg") no-repeat center/50%, #3b5998;
}
.footer .footer-right .social-icons a.icon.ig {
  background: url("../img/icon_ig.svg") no-repeat center/50%, #000;
}

#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: -60px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}
#goTopBtn.show {
  right: 30px;
  opacity: 1;
}
#goTopBtn:focus {
  outline: 2px solid #26532b;
  outline-offset: 2px;
}
#goTopBtn .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
#goTopBtn .progress-ring__circle {
  transition: stroke-dashoffset 0.1s ease;
  transform-origin: 50% 50%;
}
#goTopBtn .arrow-up {
  position: relative;
  z-index: 2;
}

#goTopFeedback {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 9999;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
}
#goTopFeedback img {
  width: 100%;
}

@media (max-width: 1024px) {
  .site-header .logo {
    width: 100%;
  }
  .site-header .logo img {
    height: 30px;
  }
  .site-header .main-nav {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    height: 100vh;
  }
  .site-header .main-nav.show {
    display: flex;
    justify-content: center;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 2em;
    padding: 3em 1em;
    font-size: 160%;
    margin: 0;
  }
  .site-header .menu-toggle {
    display: block;
    width: 30px;
  }
  .site-header .header-buttons {
    display: flex;
    width: 20%;
    justify-content: flex-end;
    padding-right: 20px;
  }
  .site-header .header-buttons .btn {
    font-size: 0;
    padding: 6px;
    border-radius: 50%;
    background: #4a8f34;
    border: none;
  }
  .site-header .header-buttons .btn.search_btn::before {
    content: "";
    display: inline-block;
    padding: 8px;
    background: url(../img/icon_search.svg) no-repeat center/100%;
    filter: brightness(100);
  }
  .site-header .header-buttons .btn.btn-outline {
    display: none;
  }
}
/* === RWD 響應式 === */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  body.plans {
    background: url("../img/plans_bg-m.png") no-repeat top/100%;
    height: 200%;
  }
  body.school {
    background: url("../img/school_bg-m.png") no-repeat top/100%;
    height: 200%;
  }
  .footer {
    background: #f5f2ed url("../img/footer-bg.svg") no-repeat bottom center/cover;
  }
  .footer .logo a {
    width: 90%;
  }
  .footer .footer-box {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-center ul {
    gap: 40px;
  }
  .footer .footer-left p,
  .footer .footer-left img {
    margin: 0 0 3em;
  }
  .footer .footer-left img {
    padding-top: 4px;
  }
  .footer .footer-right {
    align-items: center;
  }
  .footer .footer-right .social-icons {
    justify-content: flex-start;
  }
  .footer .footer-right .social-icons a.icon {
    width: 44px;
    height: 44px;
  }
  .footer .footer-right .line-btn {
    padding: 16px 36px;
  }
  .home .section1 {
    background-size: 100%;
    background-position-y: bottom;
    height: auto;
    aspect-ratio: 6/5;
  }
  .home .section1 .highlight-block {
    top: 114px;
    min-height: auto;
    height: -moz-min-content;
    height: min-content;
    right: 0;
    position: relative;
    width: 100%;
    background: unset;
    border-radius: unset;
    aspect-ratio: unset;
  }
  .home .section1 .highlight-block .divider-line {
    width: 100%;
  }
  .home .section1 .highlight-block .divider-line::after {
    left: 83%;
  }
  .home .section1 .highlight-block .content {
    font-size: 90%;
  }
  .home .section1 .highlight-block .content h1 {
    font-size: 3.5em;
    margin-bottom: 0;
  }
  .home .section2 {
    min-height: auto;
  }
  .home .section2 .origin-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3em;
    padding: 1em 1.5em;
    margin-top: 5em;
    min-height: auto;
  }
  .home .section2 .origin-wrapper::before {
    display: none;
  }
  .home .section2 .origin-wrapper .origin-left {
    padding: 0;
    text-align: center;
  }
  .home .section2 .origin-wrapper .origin-left h2 {
    color: #52953f;
    font-size: 2em;
  }
  .home .section2 .origin-wrapper .origin-left h2::after {
    left: 50%;
    transform: translate(-50%, -200%);
    width: 0.5em;
    height: 0.5em;
    border: solid 5px #27542d;
    opacity: 0.2;
  }
  .home .section2 .origin-wrapper .origin-left .circle-bg {
    width: 15em;
    height: 15em;
    left: 50%;
    transform: translate(-50%, -85%);
    background: #fff;
  }
  .home .section2 .origin-wrapper .origin-center {
    transform: none;
    text-align: center;
  }
  .home .section2 .origin-wrapper .origin-center p {
    font-size: 1.1em;
  }
  .home .section2 .origin-wrapper .origin-right {
    width: 100%;
    margin-right: 0;
  }
  .home .section2 .origin-wrapper .origin-right .img-wrapper {
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
  }
  .home .section2 .origin-wrapper .origin-right .circle-deco {
    top: 75%;
    right: 3em;
    width: 5em;
    height: 5em;
  }
  .home .section2 .intro {
    padding: 0 1.5em;
    margin-top: 2em;
  }
  .home .section2 .intro p {
    font-size: 1.2em;
  }
  .home .swiper-slide a {
    display: block;
    max-width: 380px;
    margin: 0 auto;
  }
  .home .news_pic img {
    padding: 0 10%;
  }
}
@media (max-width: 620px) {
  .home .section1 {
    aspect-ratio: 10/9;
  }
}
@media (max-width: 500px) {
  .home .section1 {
    aspect-ratio: 1;
  }
}
@media (max-width: 434px) {
  .home .section1 {
    aspect-ratio: 10/11;
  }
  .home .section1 .highlight-block .content h1 {
    font-size: 3em;
  }
}
@media (max-width: 371px) {
  .home .section1 {
    aspect-ratio: 10/12;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .site-header .logo img {
    height: 30px;
  }
  .footer .footer_bg {
    max-width: 92%;
  }
  .footer .footer-center ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer .social-icons {
    justify-content: center;
  }
  .footer .footer-left p {
    font-size: 15px;
  }
  body.school {
    background: url("../img/school_bg-p.png") no-repeat top/100%;
    height: 200%;
  }
  .home .section1 .highlight-block {
    right: 50%;
    transform: translate(50%, -50%);
  }
  .home .section2 .origin-wrapper .origin-right {
    margin-right: 1em;
  }
}
.editor-content {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.editor-content h3 {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.8em;
  font-weight: bold;
  color: #26532b;
}
.editor-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  border-radius: 4px;
  width: 4px;
  height: 1.2em;
  background-color: #26532b;
}
.editor-content p {
  margin: 0.5em 0;
}
.editor-content img,
.editor-content iframe {
  max-width: 100%;
  max-height: 40em;
  width: 80%;
  height: auto;
  display: block;
  margin: auto;
}
.editor-content td {
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .home .section1,
  .home .section2 {
    height: auto;
    min-height: auto;
    background-position-y: bottom;
  }
  .home .section2 .intro p {
    margin: 7em auto 6em auto;
  }
  .home .section2 .origin-wrapper {
    min-height: 50vh;
    margin-bottom: -10vh;
  }
  .home .section1 {
    background-size: 100%;
    background-position-y: bottom;
    height: auto;
    aspect-ratio: 4/3;
    background-size: 100%;
  }
  .home .section1 .highlight-block {
    top: 114px;
    min-height: auto;
    height: -moz-min-content;
    height: min-content;
    right: 0;
    transform: translate(0%, -50%);
    position: relative;
    width: 100%;
    background: unset;
    border-radius: unset;
    aspect-ratio: unset;
  }
  .home .section1 .highlight-block .highlight-content {
    width: 100%;
  }
  .home .section1 .highlight-block .divider-line {
    width: 100%;
  }
  .home .section1 .highlight-block .divider-line::after {
    left: 83%;
  }
  .home .section1 .highlight-block .content {
    font-size: 90%;
  }
  .home .section1 .highlight-block .content h1 {
    font-size: 3.5em;
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .footer .footer-center ul {
    flex-direction: row;
    justify-content: center;
  }
  .footer .social-icons {
    justify-content: flex-end;
  }
}
@media (max-width: 1199px) {
  .topnav {
    height: 50px;
  }
  .topnav img {
    height: 35px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.4);
  }
  to {
    transform: scale(1);
  }
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes orbit2 {
  from {
    transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}/*# sourceMappingURL=style.css.map */