@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  --brand-color1: #8CC53E;
  --brand-color2: #548D73;
  --brand-color3: #349812;
  --brand-color4: #EDF7E0;
  --brand-color5: #009029;
  --text-primary: #000000;
  --text-secondary: #7A7F84;
  --surface-default:#F1F1F1;
  --gray-1:#2E2E2E;
  --gray-2:#898989;
  --gray-3:#B3B3B3;
  --gray-4:#DADADA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  --nav-vertical-padding: 16px;
  --nav-footer-padding-inline: clamp(20px, 12.5vw, 120px);
  --nav-padding: var(--nav-vertical-padding) var(--nav-footer-padding-inline);
  --main-horizon-padding: clamp(24px, 10.41vw, 200px);
  --main-padding-top: clamp(26px, 3.02vw, 58px);
  --main-padding-bottom: clamp(60px, 5.98vw, 115px);
  --sec-vertical-padding: clamp(24px, 3.33vw, 64px);
  --sec-inner-horizon-padding: calc(clamp(26px, 2.8vw, 33px) / 2);
  --sec-vertical-padding-sm: clamp(24px, 1.25vw, 34px);
  --pageWrapper-gap: 2vw;
}
@media (max-width: 1536px) {
  * {
    --nav-footer-padding-inline: clamp(20px, 1.25vw, 120px);
    --main-horizon-padding: clamp(28px, 1.25vw, 120px);
  }
}
@media (max-width: 990px) {
  * {
    --sec-inner-horizon-padding: 0;
  }
}
@media (max-width: 480px) {
  * {
    --main-horizon-padding: clamp(24px, 1.25vw, 120px);
  }
}
* {
  scrollbar-width: thin;
  /* thin = 窄, auto = 預設 */
  scrollbar-color: #d6d6d6 #f1f1f1;
  /* thumb 顏色 + track 顏色 */
  /* Chrome、Safari、Edge (WebKit) */
}
*::-webkit-scrollbar {
  width: 10px;
  /* 卷軸寬度 */
}
*::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 背景 (track) */
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  /* 滑塊 (thumb) */
  border-radius: 10px;
}

.cn-text {
  font-family: "Noto Sans SC", sans-serif;
}

.notification-success,
.notification-error,
.notification-warning {
  right: 20px !important;
  left: auto !important;
}

.htmlBox p {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.56vw, 30px);
  font-weight: 400;
}
.htmlBox .pics-wrapper {
  width: 100%;
  display: flex;
  --pics-gap: clamp(24px, 1.875vw, 36px);
  gap: var(--pics-gap);
  margin-bottom: var(--pics-gap);
}
@media (max-width: 768px) {
  .htmlBox .pics-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.htmlBox .pics-wrapper .img-box {
  min-width: 0;
  min-height: 0;
  width: calc(50% - var(--pics-gap) / 2);
  aspect-ratio: 6.4/4.26;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .htmlBox .pics-wrapper .img-box {
    width: 100%;
  }
}
.htmlBox .pics-wrapper .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.htmlBox img {
  max-width: 100%;
}
.htmlBox ul {
  padding-left: 24px;
}
.htmlBox .custom-gray-p {
  text-align: start;
  color: #555555;
  font-weight: 400;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.56vw, 30px);
}

.pageWrapper {
  min-height: 400px;
  padding: var(--main-padding-top) 0 var(--main-padding-bottom);
  display: flex;
  gap: var(--pageWrapper-gap);
  overflow-x: hidden;
  overflow-y: hidden;
}
.pageWrapper.pb-half {
  padding-bottom: calc(var(--main-padding-bottom) / 2);
}
@media (max-width: 990px) {
  .pageWrapper.pb-half {
    padding-bottom: var(--main-padding-bottom);
  }
}
.pageWrapper.no-pb {
  padding-bottom: 0;
}
.pageWrapper section {
  width: 100%;
  padding: var(--sec-vertical-padding) 0 var(--sec-vertical-padding) var(--sec-inner-horizon-padding);
}
.pageWrapper section.no-pb {
  padding-bottom: 0 !important;
}
.pageWrapper section.pt-half {
  padding: var(--sec-vertical-padding-sm) var(--sec-inner-horizon-padding) var(--sec-vertical-padding);
}
.pageWrapper section.no-px {
  padding-left: 0;
  padding-right: 0;
}
.pageWrapper section.bg-fill-left-right {
  position: relative;
}
.pageWrapper section.bg-fill-left-right.green {
  --fill-bg-color: var(--brand-color4);
}
.pageWrapper section.bg-fill-left-right.gray {
  --fill-bg-color: #F7F7F7;
}
.pageWrapper section.bg-fill-left-right:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translateX(-100%);
  background-color: var(--fill-bg-color);
  z-index: -1;
}
.pageWrapper section.bg-fill-left-right:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
  background-color: var(--fill-bg-color);
  z-index: -1;
}

aside {
  flex: 1;
  min-width: 200px;
  padding-left: var(--main-horizon-padding);
  z-index: 90;
}
@media (max-width: 990px) {
  aside {
    display: none;
  }
}
aside ul.layer-1 {
  width: 100%;
  list-style-type: none;
}
aside ul.layer-1 li {
  width: 100%;
}
aside ul.layer-1 li a,
aside ul.layer-1 li .role-a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 0;
  color: var(--gray-2);
  font-size: clamp(16px, 0.93vw, 18px);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-4);
  cursor: pointer;
  gap: 4px;
  transition: border 0.5s ease-in-out, background-color 0.5s ease-in-out, padding 0.5s ease-in-out;
  background-color: transparent;
  backdrop-filter: blur(10px);
}
aside ul.layer-1 li a button:hover,
aside ul.layer-1 li .role-a button:hover {
  transform: scale(1.2);
}
aside ul.layer-1 li a img,
aside ul.layer-1 li .role-a img {
  width: 14px;
  filter: brightness(0);
  opacity: 0.4;
  transition: all 0.5s ease-in-out;
}
aside ul.layer-1 li:hover a,
aside ul.layer-1 li:hover .role-a {
  color: var(--brand-color3);
}
aside ul.layer-1 li:hover a img,
aside ul.layer-1 li:hover .role-a img {
  filter: brightness(1);
  opacity: 1;
}
aside ul.layer-1 li.no-bb a,
aside ul.layer-1 li.no-bb .role-a {
  border-bottom: none;
}
aside ul.layer-1 li ul.layer-2 {
  width: 100%;
  list-style-type: none;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
aside ul.layer-1 li ul.layer-2 li {
  width: 100%;
}
aside ul.layer-1 li ul.layer-2 li a {
  padding: 10px 12px 10px 18px;
  font-size: clamp(16px, 0.93vw, 18px);
  text-decoration: none;
  color: var(--brand-color3);
  background-color: transparent;
  backdrop-filter: blur(10px);
  border-left: none;
  font-weight: 400;
  border-bottom: 1px solid var(--gray-4);
}
aside ul.layer-1 li ul.layer-2 li:hover a {
  color: #1c5e06;
}
aside ul.layer-1 li ul.layer-2 li.active a {
  position: relative;
  background-color: #F6FAEF;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}
aside ul.layer-1 li ul.layer-2 li.active a::before {
  content: "●";
  font-size: 10px;
  margin-right: 4px;
}
aside ul.layer-1 li.active a,
aside ul.layer-1 li.active .role-a {
  background-color: #EDF7E0;
  color: var(--brand-color3);
  font-weight: 700;
  padding: 10px 12px 10px 10px;
  border-left: 8px solid var(--brand-color3);
  border-bottom: none;
}
aside ul.layer-1 li.active a img,
aside ul.layer-1 li.active .role-a img {
  transform: scale(-1);
  filter: brightness(1);
  opacity: 1;
}
aside ul.layer-1 li.active ul.layer-2 {
  height: auto;
}

main {
  width: calc(100% - var(--pageWrapper-gap) - var(--main-horizon-padding) - 220px);
  padding-right: var(--main-horizon-padding);
  position: relative;
}
main.full-w {
  width: 100%;
  padding-left: var(--main-horizon-padding);
}
@media (max-width: 990px) {
  main {
    padding-left: var(--main-horizon-padding);
    width: 100%;
  }
}
main section {
  width: 100%;
}

.page-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: clamp(8px, 0.52vw, 10px) 0;
  border-bottom: 1px solid #8CC53E;
}
.page-title h2 {
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 700;
  color: var(--brand-color3);
  position: relative;
  margin-left: calc(clamp(26px, 2.8vw, 33px) / 2);
  z-index: 2;
}
.page-title h2::before {
  content: "";
  position: absolute;
  width: 2.13vw;
  min-width: 33px;
  aspect-ratio: 5.5/4;
  background-image: url("../images/logo/logo_sm_gray.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  transform: translate(-50%, -20%);
  z-index: -1;
}
@media (max-width: 768px) {
  .page-title h2::before {
    transform: translate(-25%, 0%);
  }
}
.page-title ul.breadcrumb {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  --bread-gap: 12px;
  gap: var(--bread-gap);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-title ul.breadcrumb {
    display: none;
  }
}
.page-title ul.breadcrumb li {
  color: var(--brand-color1);
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-title ul.breadcrumb li a,
.page-title ul.breadcrumb li span.a {
  font-size: clamp(16px, 0.93vw, 18px);
  text-decoration: none;
  color: var(--brand-color1);
}
.page-title ul.breadcrumb li a:hover {
  filter: brightness(0.8);
}
.page-title ul.breadcrumb li img {
  width: 18px;
}
.page-title ul.breadcrumb li::after {
  content: "/";
  margin-left: var(--bread-gap);
}
.page-title ul.breadcrumb li:nth-child(1) a {
  position: relative;
  display: flex;
  align-items: center;
}
.page-title ul.breadcrumb li:nth-child(1) a::before {
  display: inline-block;
  content: "";
  background-image: url("../images/icons/icon_home_green.png");
  width: clamp(20px, 1.25vw, 24px);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  margin-right: calc(var(--bread-gap) / 2);
}
.page-title ul.breadcrumb li:nth-last-child(1)::after {
  content: "";
  margin-left: 0;
}

.disabled {
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.search-box label {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.search-box label input {
  width: 100%;
  border: 1px solid var(--text-secondary);
  border-radius: 4.5px;
  outline: none;
  padding: 8px 12px;
  background-color: white;
  font-size: 16px;
  font-weight: 400;
  --placeHoder-color: #B3B3B3;
}
.search-box label input:focus {
  border: 1px solid var(--brand-color2);
}
.search-box label input::-moz-placeholder {
  color: var(--placeHoder-color);
}
.search-box label input::placeholder {
  color: var(--placeHoder-color);
}
.search-box label input::-webkit-input-placeholder {
  color: var(--placeHoder-color);
}
.search-box label input::-moz-placeholder {
  color: var(--placeHoder-color);
}
.search-box label input:-ms-input-placeholder {
  color: var(--placeHoder-color);
}
.search-box label input:-moz-placeholder {
  color: var(--placeHoder-color);
}
.search-box label button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: pointer;
}
.search-box label button img {
  width: 18px;
  filter: grayscale(1) opacity(0.8);
}
.search-box label button:hover {
  filter: brightness(0.8);
}
.search-box label button:hover img {
  filter: grayscale(0) opacity(1);
}

.xl-show {
  display: none;
}
@media (max-width: 1200px) {
  .xl-show {
    display: block;
  }
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
button.default a,
button.default .role-a {
  text-decoration: none;
  padding: 8px 20px;
  background-image: linear-gradient(to left, #5CAC26, #8CC53E);
  border-radius: 999px;
  color: white;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px var(--brand-color3);
}
button.default a:hover,
button.default .role-a:hover {
  background-image: none;
  background-color: var(--brand-color3);
}
button.default a img,
button.default .role-a img {
  width: 20px;
}
@media (max-width: 990px) {
  button.default a img,
  button.default .role-a img {
    width: 18px;
  }
}
button.default.type2 a,
button.default.type2 .role-a {
  padding: 8px 20px 10px;
  border: 2px solid #5CAC26;
  color: #5CAC26;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}
button.default.type2 a:hover,
button.default.type2 .role-a:hover {
  border: 2px solid #418a11;
  color: #418a11;
}
button.default.type2 a:hover img,
button.default.type2 .role-a:hover img {
  filter: brightness(0.9);
}
button.default.type3 a,
button.default.type3 .role-a {
  padding: 8px 20px 10px;
  border: 2px solid #F5B016;
  color: #F5B016;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}
button.default.type3 a:hover,
button.default.type3 .role-a:hover {
  background-color: #F5B016;
  border: 2px solid #F5B016;
  color: white;
}
button.default.type3 a:hover img,
button.default.type3 .role-a:hover img {
  filter: brightness(1000%);
}

h2.default {
  width: 50vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-left: auto;
  font-size: clamp(28px, 2.29vw, 44px);
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--brand-color2);
  margin-bottom: clamp(26px, 2.91vw, 56px);
  position: relative;
}
h2.default::after {
  content: var(--h2-text);
  font-family: "Noto Sans", sans-serif;
  color: #EDF7E0;
  font-weight: 900;
  font-size: clamp(56px, 7.29vw, 140px);
  font-style: italic;
  position: absolute;
  right: 50%;
  bottom: 0%;
  transform: translate(50%, 17%);
  z-index: 1;
  vertical-align: bottom;
}
h2.default.w-100 {
  width: 100%;
}
@media (max-width: 1200px) {
  h2.default.w-100 {
    width: 50%;
  }
}
@media (max-width: 768px) {
  h2.default.w-100 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  h2.default {
    width: 100%;
    padding-left: 24px;
    position: relative;
  }
}
h2.default img.deco {
  width: 9.5vw;
  min-width: 66px;
  transform: translateY(-5%);
}
@media (max-width: 768px) {
  h2.default img.deco {
    display: none;
  }
}
h2.default .h2-text {
  position: relative;
  z-index: 2;
}
h2.default .h2-text::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2.8vw;
  min-width: 33px;
  aspect-ratio: 5.5/4;
  background-image: url("../images/logo/logo_sm.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  transform: translate(-50%, -20%);
  z-index: -1;
}
h2.default.reverse {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
  justify-content: flex-end;
}
h2.default.reverse::after {
  right: 0%;
  bottom: 0%;
  transform: translate(-1%, 17%);
}
@media (max-width: 768px) {
  h2.default.reverse::after {
    right: 50%;
    transform: translate(50%, 17%);
  }
}
h2.default.reverse img.deco {
  transform: scale(-1);
}
h2.default.reverse .h2-text {
  margin-left: 4vw;
}
@media (max-width: 768px) {
  h2.default.reverse .h2-text {
    margin-left: 0;
  }
}
h2.default.white {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: clamp(28px, 2.29vw, 44px) 0;
}
h2.default.white .h2-text::before {
  display: none;
}
h2.default.white::after {
  content: var(--h2-text);
  font-family: "Noto Sans", sans-serif;
  color: #fbfbfb;
  font-weight: 900;
  font-size: clamp(54px, 7.29vw, 140px);
  font-style: italic;
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  z-index: 1;
  vertical-align: bottom;
}

h3.default {
  color: var(--brand-color2);
  font-weight: 700;
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: clamp(24px, 1.56vw, 30px);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
h3.default::before {
  content: "";
  display: inline-block;
  width: clamp(25px, 1.56vw, 30px);
  min-width: clamp(25px, 1.56vw, 30px);
  aspect-ratio: 3/2.2;
  background-image: url("../images/logo/logo_sm.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 2px;
}
@media (max-width: 768px) {
  h3.default {
    align-items: flex-start;
  }
}

ul.square-ul-default {
  list-style: none;
  --li-color: black;
  --square-color: #8CC53E;
}
ul.square-ul-default.red {
  --li-color: #EA1F25;
  --square-color: #EA1F25;
}
ul.square-ul-default li {
  position: relative;
  padding-left: clamp(24px, 1.67vw, 32px);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 400;
  line-height: clamp(24px, 1.67vw, 30px);
  /* 保留空間放自訂符號 */
  color: var(--li-color);
  text-align: start;
}
ul.square-ul-default li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--square-color);
}

.green-square-text {
  position: relative;
  color: var(--brand-color3);
  --squire-color: var(--brand-color1);
  font-size: clamp(18px, 1.05vw, 20px);
  line-height: clamp(30px, 2.08vw, 40px);
  padding-left: clamp(24px, 1.67vw, 28px);
  font-weight: 700;
}
.green-square-text::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--squire-color);
}

.desc {
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 400;
  line-height: clamp(24px, 1.56vw, 30px);
}

.box-type-1 {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  border-radius: 21.6px 0 21.6px 0;
  overflow: hidden;
}

.red-text {
  color: #EA1F25;
}

.orange-text {
  color: #FA990E;
  font-weight: 700;
}

table.default {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14.4px;
  overflow: hidden;
}
table.default tr {
  background-color: white;
  border: 1px solid #B3B3B3;
}
table.default tr th,
table.default tr td {
  padding: 12px;
  text-align: center;
  border: none;
  border: 1px solid #B3B3B3;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.56vw, 30px);
  font-weight: 400;
}
table.default tr th.same-width,
table.default tr td.same-width {
  width: clamp(76px, 8.3vw, 160px);
}
table.default tr th:nth-child(1),
table.default tr td:nth-child(1) {
  border-left: 1px solid #B3B3B3;
}
table.default tr th:nth-last-child(1),
table.default tr td:nth-last-child(1) {
  border-right: 1px solid #B3B3B3;
}
table.default tr th button,
table.default tr td button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
table.default tr th button img,
table.default tr td button img {
  width: 24px;
}
table.default tr th button:hover img,
table.default tr td button:hover img {
  filter: brightness(0.5);
}
table.default tr th.text-start,
table.default tr td.text-start {
  text-align: start;
}
table.default tr th.bottom-left,
table.default tr td.bottom-left {
  position: relative;
}
table.default tr th.bottom-left::before,
table.default tr td.bottom-left::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: -1px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  border-left: 1px solid #8a8a8a;
  border-bottom: 1px solid #B3B3B3;
  border-radius: 0 0 0 14.4px;
  opacity: 1;
  -webkit-mask-image: linear-gradient(45deg, black 1%, rgba(0, 0, 0, 0) 10%);
          mask-image: linear-gradient(45deg, black 1%, rgba(0, 0, 0, 0) 10%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
table.default tr th.bottom-right,
table.default tr td.bottom-right {
  position: relative;
}
table.default tr th.bottom-right::after,
table.default tr td.bottom-right::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: -1px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #8a8a8a;
  border-bottom: 1px solid #B3B3B3;
  border-radius: 0 0 14.4px 0;
  opacity: 1;
  -webkit-mask-image: linear-gradient(-45deg, black 1%, rgba(0, 0, 0, 0) 10%);
          mask-image: linear-gradient(-45deg, black 1%, rgba(0, 0, 0, 0) 10%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
table.default tr th.top-left,
table.default tr td.top-left {
  position: relative;
}
table.default tr th.top-left::before,
table.default tr td.top-left::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: -1px;
  top: -1px;
  width: 100%;
  height: 100%;
  border-left: 1px solid #8a8a8a;
  border-top: 1px solid #B3B3B3;
  border-radius: 14.4px 0 0 0;
  opacity: 1;
  -webkit-mask-image: linear-gradient(135deg, black 1%, rgba(0, 0, 0, 0) 10%);
          mask-image: linear-gradient(135deg, black 1%, rgba(0, 0, 0, 0) 10%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
table.default tr th.top-right,
table.default tr td.top-right {
  position: relative;
}
table.default tr th.top-right::after,
table.default tr td.top-right::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: -1px;
  top: -1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #8a8a8a;
  border-top: 1px solid #B3B3B3;
  border-radius: 0 14.4px 0 0;
  opacity: 1;
  -webkit-mask-image: linear-gradient(-135deg, black 1%, rgba(0, 0, 0, 0) 10%);
          mask-image: linear-gradient(-135deg, black 1%, rgba(0, 0, 0, 0) 10%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
table.default tr th.gray,
table.default tr td.gray {
  background-color: #F1F1F1;
}
table.default tr th.green,
table.default tr td.green {
  background-color: var(--brand-color4);
}
table.default tr th a,
table.default tr td a {
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-color2);
}
table.default tr th input,
table.default tr td input {
  text-align: center;
  width: 100%;
  padding-left: 8px;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.56vw, 30px);
  font-weight: 400;
}
table.default tr:nth-last-child(1) td {
  border-bottom: none;
}
table.default tr th {
  background-color: var(--brand-color2);
  color: white;
  border-right: 1px solid white;
  --th-font-size: clamp(18px, 1.04vw, 20px);
  font-size: var(--th-font-size);
  line-height: clamp(30px, 1.67vw, 32px);
  font-weight: 700;
  letter-spacing: calc(var(--th-font-size) * 0.03);
  padding: clamp(12px, 0.83vw, 16px);
}
table.default tr th:nth-last-child(1) {
  border-right: 1px solid #B3B3B3;
}
table.default ul.square-ul-default {
  display: inline-block;
  --square-color: hsl(from #548D73 h s l / 0.5);
}
@media (max-width: 1200px) {
  table.default.pc {
    display: none;
  }
}
table.default.mobile {
  display: none;
  table-layout: fixed;
  /* ⬅ 重點：固定布局，不讓內容影響表格寬度 */
}
table.default.mobile th {
  border-bottom: white 1px solid;
  border-right: 1px solid #B3B3B3;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.54px;
  width: 76px;
  min-width: 76px;
  padding: clamp(12px, 0.83vw, 16px) 6px;
}
table.default.mobile th:nth-last-child(1) {
  border-bottom: 1px solid #B3B3B3;
}
table.default.mobile tr td {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.48px;
  overflow-wrap: break-word;
  /* ⬅ 長字強制換行 */
  word-break: break-all;
  /* ⬅（可選）更強制的換行 */
}
table.default.mobile tr td ul.square-ul-default {
  width: 100%;
}
@media (max-width: 1200px) {
  table.default.mobile {
    display: table;
  }
}

div.line-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
  position: relative;
}
div.line-box .line {
  width: 6px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translateX(-24px);
}
@media (max-width: 990px) {
  div.line-box .line {
    position: relative;
    transform: none;
  }
}
div.line-box .line span {
  width: 100%;
  height: 90%;
  display: inline-block;
  background-color: #8CC53E;
}
div.line-box .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
div.line-box .content h3 {
  color: var(--brand-color3);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 700;
  line-height: clamp(30px, 1.88vw, 36px);
}
div.line-box .content P {
  color: #FA990E;
  font-size: clamp(18px, 1.04vw, 20px);
  font-weight: 700;
  line-height: clamp(30px, 1.88vw, 36px);
}

body {
  width: 100%;
  height: 100vh;
  --nav-height: clamp(calc(137px / 25.1 * 5.5 + var(--nav-vertical-padding) * 2), calc(13.07vw / 25.1 * 5.5 + var(--nav-vertical-padding) * 2), 86.98px);
  padding-top: var(--nav-height);
  overflow-y: auto;
  overflow-x: hidden;
}
body.opened {
  overflow: hidden;
}

Nav {
  padding: var(--nav-padding);
  width: 100vw;
  background: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  --nav-size: clamp(16px, 0.93vw, 18px);
  z-index: 99;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  gap: 1vw;
}
@media (max-width: 1200px) {
  Nav {
    justify-content: space-between;
  }
}
Nav a.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 25.1/5.5;
  width: 13.07vw;
  min-width: 137px;
  display: inline-block;
}
Nav a.logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
Nav ul.layer1 {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  flex: 1;
  align-self: stretch;
}
@media (max-width: 1200px) {
  Nav ul.layer1 {
    display: none;
  }
}
Nav ul.layer1 li {
  height: 100%;
  position: relative;
  --li-button-horizon-padding: 0.9vw;
  padding: 0 var(--li-button-horizon-padding);
}
Nav ul.layer1 li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background-color: var(--brand-color3);
  bottom: 0;
  left: var(--li-button-horizon-padding);
  transition: all 0.5s ease-in-out;
  transform-origin: left;
  transform: translateY(var(--nav-vertical-padding));
}
Nav ul.layer1 li::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--nav-vertical-padding);
  background-color: transparent;
}
Nav ul.layer1 li span.nav-button,
Nav ul.layer1 li a.nav-a {
  height: 100%;
  display: inline-block;
  font-size: var(--nav-size);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #474747;
  cursor: pointer;
  text-decoration: none;
}
Nav ul.layer1 li span.nav-button img,
Nav ul.layer1 li a.nav-a img {
  width: 12px;
  margin-top: 4px;
  filter: brightness(0);
  opacity: 0.8;
}
Nav ul.layer1 li.sm {
  padding: 0 calc(var(--li-button-horizon-padding) * 0.5);
}
Nav ul.layer1 li.sm .nav-button-icon,
Nav ul.layer1 li.sm .nav-a-icon {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100%;
}
Nav ul.layer1 li.sm .nav-button-icon img,
Nav ul.layer1 li.sm .nav-a-icon img {
  width: 1.25vw;
  height: 1.25vw;
  min-width: 18px;
  min-height: 18px;
}
Nav ul.layer1 li.sm::after {
  display: none;
}
Nav ul.layer1 li.sm:hover .nav-button-icon,
Nav ul.layer1 li.sm:hover .nav-a-icon {
  filter: brightness(0.8);
  transform: scale(1.2);
}
Nav ul.layer1 li .layer2-box {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  background-color: #F7F7F7;
  justify-content: center;
  align-items: center;
  gap: 5vw;
  padding: 2.9vw var(--nav-footer-padding-inline);
  z-index: 90;
  display: none;
}
Nav ul.layer1 li .layer2-box.active {
  display: flex;
}
Nav ul.layer1 li .layer2-box .layer2-title-box {
  position: relative;
}
Nav ul.layer1 li .layer2-box .layer2-title-box .title-en {
  font-size: clamp(14px, 0.92vw, 18px);
  color: var(--brand-color1);
  font-weight: 500;
  position: absolute;
  bottom: 100%;
  left: 0;
  word-break: keep-all;
  white-space: nowrap;
  word-break: keep-all;
  white-space: nowrap;
}
Nav ul.layer1 li .layer2-box .layer2-title-box .title {
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 700;
  color: var(--brand-color3);
  word-break: keep-all;
  white-space: nowrap;
}
Nav ul.layer1 li .layer2-box ul.layer2 {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.1vw;
}
Nav ul.layer1 li .layer2-box ul.layer2 li {
  display: inline-block;
  position: relative;
}
Nav ul.layer1 li .layer2-box ul.layer2 li::after {
  display: none;
}
Nav ul.layer1 li .layer2-box ul.layer2 li span.nav-button,
Nav ul.layer1 li .layer2-box ul.layer2 li a {
  display: inline-block;
  font-size: var(--nav-size);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  word-break: keep-all;
  white-space: nowrap;
  background-color: transparent;
  color: #474747;
  text-align: start;
  cursor: pointer;
  text-decoration: none;
  min-height: -moz-fit-content;
  min-height: fit-content;
  border-bottom: 1px solid var(--text-secondary);
  padding-bottom: 6px;
}
Nav ul.layer1 li .layer2-box ul.layer2 li span.nav-button img,
Nav ul.layer1 li .layer2-box ul.layer2 li a img {
  width: 18px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}
Nav ul.layer1 li .layer2-box ul.layer2 li span.nav-button:hover,
Nav ul.layer1 li .layer2-box ul.layer2 li a:hover {
  color: var(--brand-color3);
  border-bottom: 1px solid var(--brand-color3);
}
Nav ul.layer1 li .layer2-box ul.layer2 li span.nav-button:hover img,
Nav ul.layer1 li .layer2-box ul.layer2 li a:hover img {
  opacity: 1;
  transform: translateX(0%);
}
Nav ul.layer1 li:hover span.nav-button,
Nav ul.layer1 li:hover a {
  color: var(--brand-color3);
}
Nav ul.layer1 li:hover span.nav-button img,
Nav ul.layer1 li:hover a img {
  filter: none;
}
Nav ul.layer1 li:hover::after {
  width: calc(100% - var(--li-button-horizon-padding) * 2);
}
@media (max-width: 990px) {
  Nav ul.layer1 li:hover::after {
    width: 0%;
  }
}
Nav ul.layer1 li:hover .layer2-box {
  display: flex;
}
@media (max-width: 990px) {
  Nav ul.layer1 li.lg-hidden {
    display: none;
  }
}
Nav button.toggleMenu img {
  width: 24px;
  height: 24px;
}
Nav.active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--nav-height));
  max-height: calc(100vh - var(--nav-height));
  width: 100%;
  background-color: #F7F7F7;
  z-index: 98;
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  --mobile-menu-paddig: 24px;
}
.mobile-menu .search-box {
  padding: var(--mobile-menu-paddig);
  padding-right: calc(var(--mobile-menu-paddig) - 1px);
  padding-bottom: 0;
}
.mobile-menu a {
  text-decoration: none;
}
.mobile-menu .mobile-ul {
  width: 100%;
  list-style-type: none;
}
.mobile-menu .mobile-ul li {
  width: 100%;
  cursor: pointer;
}
.mobile-menu .mobile-ul li span.nav-button,
.mobile-menu .mobile-ul li a.nav-a {
  width: 100%;
  display: inline-block;
  color: #474747;
  padding: 12px var(--mobile-menu-paddig);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.mobile-menu .mobile-ul li span.nav-button::before,
.mobile-menu .mobile-ul li a.nav-a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% - var(--mobile-menu-paddig) * 2);
  left: var(--mobile-menu-paddig);
  right: var(--mobile-menu-paddig);
  bottom: 0;
  background-color: #DADADA;
}
.mobile-menu .mobile-ul li span.nav-button img,
.mobile-menu .mobile-ul li a.nav-a img {
  width: 12px;
  filter: brightness(0);
}
.mobile-menu .mobile-ul li span.nav-button span.green-icon,
.mobile-menu .mobile-ul li a.nav-a span.green-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.mobile-menu .mobile-ul li span.nav-button span.green-icon img,
.mobile-menu .mobile-ul li a.nav-a span.green-icon img {
  filter: none;
  width: 24px;
}
.mobile-menu .mobile-ul li span.nav-button:hover,
.mobile-menu .mobile-ul li a.nav-a:hover {
  color: var(--brand-color3);
}
.mobile-menu .mobile-ul li span.nav-button:hover img,
.mobile-menu .mobile-ul li a.nav-a:hover img {
  filter: brightness(1);
}
.mobile-menu .mobile-ul li:nth-child(1) span.nav-button,
.mobile-menu .mobile-ul li:nth-child(1) a.nav-a {
  padding-top: var(--mobile-menu-paddig);
}
.mobile-menu .mobile-ul li:nth-last-child(1) span.nav-button::before,
.mobile-menu .mobile-ul li:nth-last-child(1) a.nav-a::before {
  display: none;
}
.mobile-menu .mobile-ul li ul.layer2 {
  width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.mobile-menu .mobile-ul li ul.layer2 li {
  width: 100%;
}
.mobile-menu .mobile-ul li ul.layer2 li span.nav-button,
.mobile-menu .mobile-ul li ul.layer2 li a {
  padding: 9px var(--mobile-menu-paddig) 9px calc(var(--mobile-menu-paddig) + 12px);
  color: #474747;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mobile-ul li ul.layer2 li span.nav-button img,
.mobile-menu .mobile-ul li ul.layer2 li a img {
  width: 14px;
  filter: grayscale(1);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}
.mobile-menu .mobile-ul li ul.layer2 li span.nav-button:hover,
.mobile-menu .mobile-ul li ul.layer2 li a:hover {
  color: var(--brand-color3);
  font-weight: 500;
}
.mobile-menu .mobile-ul li ul.layer2 li span.nav-button:hover img,
.mobile-menu .mobile-ul li ul.layer2 li a:hover img {
  filter: none;
  opacity: 1;
  transform: translateX(0%);
}
.mobile-menu .mobile-ul li.active span.nav-button,
.mobile-menu .mobile-ul li.active a {
  color: var(--brand-color3);
}
.mobile-menu .mobile-ul li.active span.nav-button img,
.mobile-menu .mobile-ul li.active a img {
  transform: scale(-1);
  filter: brightness(1);
}
.mobile-menu .mobile-ul li.active ul.layer2 {
  height: auto;
  padding-top: 9px;
}
.mobile-menu.active {
  transform: translateX(0%);
}

footer {
  width: 100%;
  z-index: 2;
  position: relative;
}
footer .top {
  width: 100%;
  padding: var(--nav-vertical-padding) var(--nav-footer-padding-inline);
  background-color: #F7F7F7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  footer .top {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
footer .top a.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 25.1/5.5;
  width: 13.07vw;
  min-width: 137px;
  display: inline-block;
}
footer .top a.logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
footer .top ul.contact-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .top ul.contact-list li {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  line-height: clamp(24px, 1.56vw, 30px);
  gap: 8px;
  color: #7A7F84;
}
@media (max-width: 1200px) {
  footer .top ul.contact-list li {
    font-weight: 400;
  }
}
footer .top ul.contact-list li a {
  font-size: clamp(16px, 0.93vw, 18px);
  color: #7A7F84;
  text-decoration: none;
}
footer .top ul.contact-list li:hover {
  color: var(--brand-color3);
}
footer .top ul.contact-list li:hover a {
  color: var(--brand-color3);
}
footer .top .right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 16px;
}
footer .top .right ul.nav-list {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1200px) {
  footer .top .right ul.nav-list {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  footer .top .right ul.nav-list {
    display: none;
  }
}
footer .top .right ul.nav-list li a {
  color: var(--text-secondary);
  font-size: clamp(16px, 0.93vw, 18px);
  font-weight: 500;
  display: inline-block;
  padding: 0 0.625vw;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1200px) {
  footer .top .right ul.nav-list li a {
    font-weight: 400;
  }
}
footer .top .right ul.nav-list li a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: var(--text-secondary);
  display: inline-block;
  right: 0;
  top: 50%;
  transform: translateY(-46%);
}
footer .top .right ul.nav-list li a:hover {
  color: var(--brand-color3);
}
@media (max-width: 1200px) {
  footer .top .right ul.nav-list li:nth-child(1) a {
    padding-left: 0;
  }
}
footer .top .right ul.nav-list li:nth-last-child(1) a {
  padding-right: 0;
}
footer .top .right ul.nav-list li:nth-last-child(1) a::after {
  display: none;
}
footer .top .right .p-green {
  flex: 1;
  color: #8FC31F;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 500;
  letter-spacing: calc(clamp(14px, 1.25vw, 24px) * 0.05);
  text-align: end;
  line-height: 1.2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(6px, 0.83vw, 16px);
  flex-wrap: wrap;
}
footer .top .right .p-green a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .top .right .p-green a img {
  width: clamp(32px, 2.5vw, 48px);
}
footer .top .right .p-green a:hover {
  background-color: rgb(255, 255, 255);
  border-radius: 999px;
}
footer .top .right .p-green a:hover img {
  filter: brightness(0.8);
}
@media (max-width: 1200px) {
  footer .top .right .p-green {
    width: 100%;
    justify-content: flex-start;
    text-align: start;
  }
}
footer .bottom {
  width: 100%;
  background-color: var(--brand-color1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: var(--nav-footer-padding-inline);
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  footer .bottom {
    padding: 12px 12px;
  }
}
footer .bottom p {
  width: 100%;
  color: white;
  font-size: clamp(13px, 0.93vw, 18px);
  font-weight: 500;
}

.goTop {
  position: fixed;
  width: clamp(36px, 3.1vw, 60px);
  right: 36px;
  bottom: 36px;
  aspect-ratio: 1/1;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 10;
  display: block;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
.goTop.active {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}
.goTop.isBottom {
  bottom: 220px;
}
.goTop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 990px) {
  .goTop {
    right: 24px;
    bottom: 24px;
  }
}
.goTop:hover {
  filter: brightness(0.9);
}

header {
  width: 100%;
  aspect-ratio: 19.2/4;
  background-image: var(--heder-bg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  header {
    aspect-ratio: 3.75/1.5;
    background-size: cover;
  }
}
header .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1.04vw, 20px);
  width: 90%;
}
header .text-wrapper .en-text {
  color: white;
  font-weight: 500;
  font-size: clamp(14px, 1.04vw, 20px);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  --custom-pagination-gradient-width: 70px;
  --custom-pagination-gradient-height: 4px;
  --custom-pagination-gap-horizon: 6px;
  --pagination-color: white;
  background-color: transparent;
}
header .text-wrapper .en-text::after {
  content: "";
  position: absolute;
  width: var(--custom-pagination-gradient-width);
  height: var(--custom-pagination-gradient-height);
  background-color: var(--pagination-color);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-radius: 0 0 999px 999px;
  right: 100%;
  top: 50%;
  border-radius: 0 999px 999px 0;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  transform: translate(calc(var(--custom-pagination-gap-horizon) * -2), -50%);
}
header .text-wrapper .en-text::before {
  content: "";
  position: absolute;
  width: var(--custom-pagination-gradient-width);
  height: var(--custom-pagination-gradient-height);
  background-color: var(--pagination-color);
  left: 100%;
  top: 50%;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  transform: translate(calc(var(--custom-pagination-gap-horizon) * 2), -50%);
}
header .text-wrapper .gradient-bg-wrapper {
  width: 33%;
  position: relative;
  --bg-color: #8CC53E;
  --text-color: white;
}
@media (max-width: 768px) {
  header .text-wrapper .gradient-bg-wrapper {
    width: 85%;
  }
}
header .text-wrapper .gradient-bg-wrapper h1.main-text {
  --p-size-clamp: clamp(26px, 2.7vw, 52px);
  font-size: var(--p-size-clamp);
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: calc(var(--p-size-clamp) * 0.05);
  z-index: 3;
  text-align: center;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 3px 0 4px;
}
header .text-wrapper .gradient-bg-wrapper .gradient-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: var(--bg-color);
  mask: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0), rgba(0, 0, 0, 0));
  -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 1;
}

.pagination {
  width: 100%;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .pagination {
    padding-bottom: 36px;
  }
}
@media (max-width: 990px) {
  .pagination {
    padding-bottom: 70px;
  }
}
.pagination ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  --pagination-btn-width: clamp(20px, 1.25vw, 24px);
  gap: calc(var(--pagination-btn-width) / 2);
}
.pagination ul li a {
  display: inline-block;
  width: var(--pagination-btn-width);
  height: var(--pagination-btn-width);
  padding-bottom: 2px;
  color: var(--brand-color2);
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.pagination ul li a img {
  width: 10px;
  margin-top: 2px;
}
.pagination ul li a img.left {
  margin-right: 2px;
}
.pagination ul li a img.right {
  margin-left: 2px;
}
@media (max-width: 768px) {
  .pagination ul li a img {
    width: 8px;
  }
}
.pagination ul li:hover, .pagination ul li.active {
  background-color: var(--brand-color2);
  border-radius: 3.6px;
}
.pagination ul li:hover a, .pagination ul li.active a {
  color: white;
}
.pagination ul li:hover a img, .pagination ul li.active a img {
  filter: brightness(500%);
}
.pagination ul li.prev a, .pagination ul li.next a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  gap: 4px;
  font-size: clamp(14px, 0.84vw, 16px);
}
.pagination ul li.prev:hover, .pagination ul li.next:hover {
  background-color: transparent;
  border-radius: 0px;
  filter: brightness(0.7);
}
.pagination ul li.prev:hover a, .pagination ul li.next:hover a {
  color: var(--brand-color2);
}
.pagination ul li.prev:hover a img, .pagination ul li.next:hover a img {
  filter: brightness(0.7);
}/*# sourceMappingURL=global.css.map */