@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  --brand: #EB6796;
  --brand-2: #B8666A;
  --brand-color-1: #FAEEEE;
  --brand-color-2: #F3E4E1;
  --brand-color-3: #F9C7CA;
  --brand-color-4: #A2B0A3;
  --icon-default: #000000;
  --text-primary: #000000;
  --text-secondary: #7A7F84;
  --invert: #FFFFFF;
  --surface-default: #F3F2F0;
  --surface-default-2: #FEF9F3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  --global-padding-pc: 0 13.5% 84px;
  --global-padding-lg: 0 7vw 80px;
  --banner-padding-pc: 0 13.5%;
  --banner-padding-lg: 0 7vw;
  --header-pc-height: 144.48px;
  --header-pc-height-lg: 126.91px;
  --header-mobile-height: 57.88px;
}

.htmlBox p {
  font-family: "Noto Sans TC", sans-serif !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: black;
}
@media (max-width: 768px) {
  .htmlBox p {
    font-size: 18px;
    line-height: 30px;
  }
}
.htmlBox ul,
.htmlBox ol {
  padding-left: 20px;
}
.htmlBox .table-box {
  overflow-x: auto;
}
.htmlBox img {
  max-width: 100%;
}

body {
  width: 100%;
  height: 100vh;
  padding-top: var(--header-pc-height);
}
@media (max-width: 990px) {
  body {
    padding-top: var(--header-pc-height-lg);
  }
  body.openMenu {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: var(--header-mobile-height);
  }
}

main {
  background-image: linear-gradient(180deg, rgba(250, 238, 238, 0), rgb(250, 238, 238));
  padding: var(--global-padding-pc);
}
@media (max-width: 990px) {
  main {
    padding: var(--global-padding-lg);
  }
}
main.yellow {
  background-image: linear-gradient(180deg, rgba(255, 244, 215, 0), rgb(255, 244, 215));
}
main.green {
  background-image: linear-gradient(180deg, rgba(221, 233, 219, 0), rgb(221, 233, 219));
}
main.clear-bg {
  background-image: none;
}
main.noPadding {
  padding: 0 !important;
}

button,
input {
  outline: none;
  border: none;
}

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

Header {
  width: 100%;
  background-color: white;
  padding: 25px 13.5% 0;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  z-index: 10;
  position: fixed;
  top: 0;
}
@media (max-width: 990px) {
  Header {
    padding: 13px 6vw 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 768px) {
  Header {
    padding: 13px 20px;
  }
}
Header .top {
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  Header .top {
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
Header .top .logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
Header .top .logo-box a {
  display: flex;
  justify-content: center;
  align-items: center;
}
Header .top .logo-box a img {
  width: 202px;
}
@media (max-width: 768px) {
  Header .top .logo-box a img {
    width: 118.09px;
  }
}
@media (max-width: 768px) {
  Header .top .logo-box {
    gap: 8px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
Header .mobile-menu-toggle {
  display: none;
}
Header .mobile-menu-toggle img {
  width: 22.5px;
  margin-right: 4px;
}
@media (max-width: 768px) {
  Header .mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
}
Header Nav {
  width: 100%;
  color: var(--text-primary);
}
Header Nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500px;
}
@media (max-width: 1200px) {
  Header Nav ul {
    font-size: 18px;
  }
}
@media (max-width: 990px) {
  Header Nav ul {
    font-size: 16px;
  }
}
Header Nav ul li {
  position: relative;
}
Header Nav ul li span.a,
Header Nav ul li a {
  display: inline-block;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
Header Nav ul li span.a img,
Header Nav ul li a img {
  width: 12px;
  filter: brightness(0);
}
Header Nav ul li:hover span.a,
Header Nav ul li:hover a {
  color: var(--brand-2);
}
Header Nav ul li:hover span.a img,
Header Nav ul li:hover a img {
  filter: none;
}
Header Nav ul li:hover ul.second {
  display: flex;
}
Header Nav ul li ul.second {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}
Header Nav ul li ul.second li a {
  color: var(--text-primary);
  background-color: white;
  word-break: keep-all;
  white-space: nowrap;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
Header Nav ul li ul.second li:hover a {
  background-color: var(--brand-2);
  color: white;
}
@media (max-width: 768px) {
  Header Nav {
    display: none;
  }
}
Header .mobile-menu {
  position: fixed;
  display: block;
  transform: translateX(0%);
  width: 100%;
  top: var(--header-mobile-height);
  height: calc(100vh - var(--header-mobile-height));
  left: 100%;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  transition: all 0.6s ease-in-out;
  z-index: 99;
  background-color: white;
}
Header .mobile-menu ul {
  font-size: 16px;
  font-weight: 500;
  list-style-type: none;
}
Header .mobile-menu ul li span.a,
Header .mobile-menu ul li a {
  padding: 10px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
Header .mobile-menu ul li span.a img,
Header .mobile-menu ul li a img {
  filter: brightness(0%);
  transform: rotate(180deg);
  width: 13px;
}
Header .mobile-menu ul li.active span.a,
Header .mobile-menu ul li.active a, Header .mobile-menu ul li:hover span.a,
Header .mobile-menu ul li:hover a {
  background-color: var(--brand-2);
  color: white;
}
Header .mobile-menu ul li.active span.a img,
Header .mobile-menu ul li.active a img, Header .mobile-menu ul li:hover span.a img,
Header .mobile-menu ul li:hover a img {
  filter: brightness(100%);
}
Header .mobile-menu ul li.active ul.second {
  display: block;
}
Header .mobile-menu ul li.active span.a img,
Header .mobile-menu ul li.active a img {
  transform: none;
}
Header .mobile-menu ul li ul.second {
  display: none;
}
Header .mobile-menu ul li ul.second li span.a,
Header .mobile-menu ul li ul.second li a {
  padding: 10px 18px 10px 37px;
  color: var(--text-secondary);
  background-color: white;
}
Header .mobile-menu ul li ul.second li:hover span.a,
Header .mobile-menu ul li ul.second li:hover a {
  color: var(--brand-2);
  background-color: var(--brand-color-2);
  font-weight: 700;
}
@media (max-width: 768px) {
  Header .mobile-menu.active {
    left: 0;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.25);
  }
}

footer {
  width: 100%;
  aspect-ratio: 6.295/1;
  background-color: transparent;
  z-index: 2;
  position: relative;
}
footer .top {
  width: 100%;
  aspect-ratio: 7.529/1;
  position: relative;
  background-color: #FAEEEE;
  background-image: url("../images/bg/footer.png");
  background-size: cover;
}
@media (max-width: 1380px) {
  footer .top {
    aspect-ratio: 7.5/2.67;
    background-image: url("../images/bg/footer-middle.png");
    background-position: top center;
  }
}
@media (max-width: 990px) {
  footer .top {
    aspect-ratio: 7.5/4;
    background-image: url("../images/bg/footer-mobile.png");
    background-position: top center;
  }
}
footer .top .content {
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 119px 230px 39px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 1900px) {
  footer .top .content {
    padding: 109px 10px 20px;
    gap: 56px;
  }
}
@media (max-width: 1380px) {
  footer .top .content {
    padding: 109px 88px 49px;
    gap: calc(8px + 2vw);
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 990px) {
  footer .top .content {
    padding: 40px 30px 16px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  footer .top .content {
    padding: 36px 30px 10px;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  footer .top .content {
    padding: 36px 12px 10px;
    gap: 12px;
  }
}
footer .top .content a.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .top .content a.footer-logo img {
  width: 18.22vw;
  max-width: 350px;
}
@media (max-width: 1380px) {
  footer .top .content a.footer-logo img {
    width: 30vw;
  }
}
@media (max-width: 570px) {
  footer .top .content a.footer-logo img {
    width: 50%;
    min-width: 187px;
  }
}
@media (max-width: 768px) {
  footer .top .content a.footer-logo {
    justify-content: flex-start;
  }
}
footer .top .content ul {
  list-style-type: none;
  display: flex;
}
footer .top .content ul li {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
}
@media (max-width: 1900px) {
  footer .top .content ul li {
    font-size: 18px;
  }
}
@media (max-width: 1380px) {
  footer .top .content ul li {
    font-size: 20px;
  }
}
@media (max-width: 570px) {
  footer .top .content ul li {
    font-size: 16px;
  }
}
footer .top .content ul li span.mb-2 {
  margin-bottom: 2px;
}
footer .top .content ul li a {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
footer .top .content ul li a:hover {
  color: var(--brand-2);
}
@media (max-width: 1900px) {
  footer .top .content ul li a {
    font-size: 18px;
  }
}
@media (max-width: 1380px) {
  footer .top .content ul li a {
    font-size: 20px;
  }
}
@media (max-width: 570px) {
  footer .top .content ul li a {
    font-size: 16px;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  footer .top .content ul li a {
    font-size: 14px;
  }
}
footer .top .content ul.mid {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .top .content ul.mid li img {
  width: 24px;
}
footer .top .content ul.right {
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  footer .top .content ul.right {
    display: none;
  }
}
footer .top img.footer-flower {
  position: absolute;
  right: 6%;
  bottom: 48%;
  width: 120px;
  transform: rotate(6.93deg);
}
@media (max-width: 1380px) {
  footer .top img.footer-flower {
    right: 5%;
    bottom: 71%;
  }
}
@media (max-width: 990px) {
  footer .top img.footer-flower {
    width: 67px;
    right: 5%;
    bottom: 81%;
  }
}
@media (max-width: 768px) {
  footer .top img.footer-flower {
    bottom: 80%;
  }
}
footer .copyright {
  font-size: 18px;
  font-weight: 500;
  background-color: var(--brand-2);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 4px;
}
@media (max-width: 768px) {
  footer .copyright {
    font-size: 14px;
    gap: 2px;
    flex-wrap: wrap;
  }
}
footer.yellow .top {
  background-color: rgb(255, 244, 215);
}
footer.green .top {
  background-color: rgb(221, 233, 219);
}
footer.white-pink .top {
  background-color: #fff1f1;
}

.section-flower {
  position: absolute;
  width: 10vw;
  max-width: 200px;
  min-width: 80px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button.default {
  background-color: transparent;
  aspect-ratio: 3.04/1.24;
}
button.default a {
  color: white !important;
  background-image: url("../images/bg/button_bg.png");
  aspect-ratio: 3.04/1.24;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 25px;
  background-color: transparent;
  cursor: pointer;
}
button.default a img {
  width: 11px;
  margin-top: 1px;
}
@media (max-width: 1536px) {
  button.default a img {
    width: 10px;
  }
}
@media (max-width: 768px) {
  button.default a img {
    width: 9px;
  }
}
button.default a:hover {
  filter: brightness(0.9);
}
@media (max-width: 1536px) {
  button.default a {
    font-size: 18px;
    padding: 16px 20px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  button.default a {
    font-size: 16px;
    padding: 13px 10px;
  }
}

.news-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
}
.news-wrapper .card-wrapper {
  width: 33.3%;
  margin-bottom: 55px;
  cursor: pointer;
  --pc-gap: 38px;
}
.news-wrapper .card-wrapper:nth-child(3n+1) {
  padding: 0px calc(var(--pc-gap) / 3 * 2) 0px 0px;
}
.news-wrapper .card-wrapper:nth-child(3n+2) {
  padding: 0px calc(var(--pc-gap) / 3);
}
.news-wrapper .card-wrapper:nth-child(3n) {
  padding: 0px 0px 0px calc(var(--pc-gap) / 3 * 2);
}
@media (max-width: 1200px) {
  .news-wrapper .card-wrapper {
    margin-bottom: 36px;
    width: 50%;
  }
  .news-wrapper .card-wrapper:nth-child(2n+1) {
    padding: 0px 12px 0px 0px;
  }
  .news-wrapper .card-wrapper:nth-child(2n) {
    padding: 0px 0px 0px 12px;
  }
}
@media (max-width: 990px) {
  .news-wrapper .card-wrapper {
    width: 50%;
    margin-bottom: 28px;
  }
  .news-wrapper .card-wrapper:nth-child(2n+1) {
    padding: 0px 12px 0px 0px;
  }
  .news-wrapper .card-wrapper:nth-child(2n) {
    padding: 0px 0px 0px 12px;
  }
}
@media (max-width: 768px) {
  .news-wrapper .card-wrapper {
    width: 100%;
  }
  .news-wrapper .card-wrapper:nth-child(1n) {
    padding: 0px;
  }
}
.news-wrapper .card-wrapper .news-card {
  width: 100%;
  height: 100%;
  border-radius: 14.4px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  --card-gap: 16px;
  --car-padding: 26px;
}
@media (max-width: 768px) {
  .news-wrapper .card-wrapper .news-card {
    --card-gap: 12px;
    --car-padding: 18px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
}
.news-wrapper .card-wrapper .news-card a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: white;
  gap: 0px;
  padding-bottom: var(--car-padding);
}
.news-wrapper .card-wrapper .news-card a .img-box {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  margin-bottom: var(--card-gap);
}
.news-wrapper .card-wrapper .news-card a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-wrapper .card-wrapper .news-card a p.date {
  padding: 0px var(--car-padding);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  font-weight: 500;
  font-size: 20px;
  color: var(--brand-2);
  margin-bottom: var(--card-gap);
}
@media (max-width: 768px) {
  .news-wrapper .card-wrapper .news-card a p.date {
    font-size: 16px;
  }
}
.news-wrapper .card-wrapper .news-card a p.caption {
  padding: 0px var(--car-padding);
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  text-align: start;
  word-break: break-all;
  color: black;
  margin-bottom: var(--card-gap);
}
@media (max-width: 768px) {
  .news-wrapper .card-wrapper .news-card a p.caption {
    font-size: 18px;
  }
}
.news-wrapper .card-wrapper .news-card a p.description {
  padding: 0px var(--car-padding);
  font-size: 18px;
  font-weight: 400;
  color: #737373;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  /* 想顯示幾行，就改這個數字 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-wrapper .card-wrapper .news-card a p.description {
    font-size: 16px;
  }
}
.news-wrapper .card-wrapper .news-card a:hover .img-box img {
  filter: brightness(0.5);
}
.news-wrapper .card-wrapper .news-card a:hover p.caption {
  color: var(--blue-500);
}

.backToTop {
  position: fixed;
  width: 56px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
  right: 33px;
  bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 10;
}
.backToTop img {
  width: 100%;
}
.backToTop:hover {
  filter: brightness(0.9);
}
.backToTop.hidden {
  display: none;
}
@media (max-width: 570px) {
  .backToTop {
    width: 40px;
    bottom: 60px;
  }
}

.banner {
  width: 100%;
  aspect-ratio: 1/0.182;
  position: relative;
  padding: var(--banner-padding-pc);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 990px) {
  .banner {
    aspect-ratio: 3.75/1.3;
    padding: var(--banner-padding-lg);
  }
}
.banner .mask {
  position: absolute;
  inset: 0;
  background-image: var(--banner-img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* 遮罩圖片 */
  -webkit-mask: url("../images/mask/All-banner.png");
  mask: url("../images/mask/All-banner.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 990px) {
  .banner .mask {
    background-image: var(--banner-img-mobile);
    /* 遮罩圖片 */
    -webkit-mask: url("../images/mask/phone-banner.png");
    mask: url("../images/mask/phone-banner.png");
    /* 遮罩尺寸 */
    -webkit-mask-size: cover;
    mask-size: cover;
    /* 遮罩位置 */
    -webkit-mask-position: top center;
            mask-position: top center;
    /* 遮罩重複 */
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
.banner .text-box {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  transform: translateY(-2%);
}
@media (max-width: 1536px) {
  .banner .text-box {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .banner .text-box {
    gap: 4px;
  }
}
.banner .text-box h1 {
  font-size: 60px;
  font-weight: 700;
  color: white;
  filter: drop-shadow(4px 4px 0 #B8666A);
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 5%;
}
@media (max-width: 1536px) {
  .banner .text-box h1 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .banner .text-box h1 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .banner .text-box h1 {
    font-size: 28px;
  }
}
.banner .text-box ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .banner .text-box ul {
    display: none;
  }
}
.banner .text-box ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.banner .text-box ul li img {
  width: 26px;
}
.banner .text-box ul li a,
.banner .text-box ul li span.white {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 10%;
}
.banner .text-box ul li a::after,
.banner .text-box ul li span.white::after {
  content: "/";
}
@media (max-width: 1536px) {
  .banner .text-box ul li a,
  .banner .text-box ul li span.white {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .banner .text-box ul li a,
  .banner .text-box ul li span.white {
    font-size: 16px;
  }
}
.banner .text-box ul li a:hover {
  color: var(--brand-color-2);
}
.banner .text-box ul li a:hover::after {
  color: white;
}
.banner .text-box ul li:nth-last-child(1) a::after,
.banner .text-box ul li:nth-last-child(1) span.white::after {
  display: none;
}

h2.h2-title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-size: 36px;
  font-weight: 500;
  margin: 24px 0 58px;
  position: relative;
}
@media (max-width: 990px) {
  h2.h2-title {
    margin: 24px 0 40px;
  }
}
@media (max-width: 768px) {
  h2.h2-title {
    margin: 24px 0 30px;
    font-size: 24px;
    gap: 4px;
  }
}
h2.h2-title img {
  width: 37px;
  position: absolute;
  left: 0;
  top: auto;
  transform: translate(-100%, 3px);
}
@media (max-width: 768px) {
  h2.h2-title img {
    width: 28px;
    position: relative;
    transform: none;
  }
}
h2.h2-title.withPadding img {
  left: auto;
  top: auto;
}

.withPadding {
  padding: 0 13.5% 0;
}
@media (max-width: 990px) {
  .withPadding {
    padding: 0 7vw 0;
  }
}

.tab-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 23px;
}
.tab-btn-wrapper.red {
  --panel-mainColor: var(--brand-2);
  --not-activateColor: #D9AAAC;
  --not-activateBg: #FAEEEE;
}
.tab-btn-wrapper.green {
  --panel-mainColor: #587650;
  --not-activateColor: #A2B0A3;
  --not-activateBg: #E5EFE4;
}
@media (max-width: 768px) {
  .tab-btn-wrapper {
    justify-content: center;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.tab-btn-wrapper button.tab-btn {
  background-color: white;
  font-size: 24px;
  font-weight: 700;
  color: var(--panel-mainColor);
  border-radius: 14.4px 14.4px 0 0;
  padding: calc(20px + var(--line-gap)) 80px 20px;
  border: none;
  filter: drop-shadow(0px -2.2px 2px rgba(0, 0, 0, 0.15));
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  --line-gap: 6px;
  z-index: 3;
}
@media (max-width: 1200px) {
  .tab-btn-wrapper button.tab-btn {
    --line-gap: 9px;
    font-size: 20px;
    font-weight: 500;
    padding: calc(10px + var(--line-gap)) 40px 10px;
  }
}
@media (max-width: 768px) {
  .tab-btn-wrapper button.tab-btn {
    width: 50%;
    padding: calc(10px + var(--line-gap)) 0px 10px;
  }
}
.tab-btn-wrapper button.tab-btn::after {
  border-radius: 14.4px 14.4px 0 0;
  display: inline-block;
  position: absolute;
  content: "";
  width: 100%;
  height: 14px;
  background-color: var(--panel-mainColor);
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.tab-btn-wrapper button.tab-btn::before {
  border-radius: 14.4px 14.4px 0 0;
  display: inline-block;
  position: absolute;
  content: "";
  width: 100%;
  height: 14px;
  background-color: white;
  top: calc(14px - var(--line-gap));
  left: 0;
  right: 0;
  z-index: 1;
}
.tab-btn-wrapper button.tab-btn.not-activate {
  font-weight: 400;
  color: var(--not-activateColor);
  background-color: var(--not-activateBg);
  filter: none;
  z-index: 1;
}
.tab-btn-wrapper button.tab-btn.not-activate::after, .tab-btn-wrapper button.tab-btn.not-activate::before {
  background-color: var(--not-activateBg);
}

.shadow-w100 {
  width: 100%;
  z-index: 2;
  box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.25);
  padding-top: 40px;
  padding-bottom: 84px;
  min-height: 400px;
}
.shadow-w100.pink {
  background-image: linear-gradient(180deg, rgba(250, 238, 238, 0), rgb(250, 238, 238));
}
.shadow-w100.green {
  background-image: linear-gradient(180deg, rgba(221, 233, 219, 0), rgb(221, 233, 219));
}

.not-activate {
  display: none;
}

.pagination {
  width: 100%;
}
@media (max-width: 990px) {
  .pagination {
    margin-top: 37px;
  }
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 37px;
  }
}
.pagination ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.pagination ul li a {
  display: inline-block;
  width: 34px;
  height: 34px;
  padding-bottom: 2px;
  color: var(--brand-2);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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;
}
.pagination ul li:hover, .pagination ul li.active {
  background-color: var(--brand-2);
  border-radius: 50%;
}
.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%);
}

.img-wrapper {
  margin: 0 auto;
  width: var(--img-pc-width);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2vw;
  position: relative;
}
@media (max-width: 768px) {
  .img-wrapper {
    width: 100%;
  }
}
.img-wrapper .main-pic-box {
  width: 100%;
  border: 1px solid #cbcbcb;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.15);
  padding: 10px 5px 5px;
  background: white;
  margin-top: 15px;
}
.img-wrapper .main-pic-box a {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2.6;
  display: inline-block;
}
.img-wrapper .main-pic-box a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
}
.img-wrapper .pic-list-box {
  width: 100%;
  position: relative;
}
.img-wrapper .pic-list-box .pic-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  gap: 5%;
}
.img-wrapper .pic-list-box .pic-wrapper .img-box {
  width: 30%;
  min-width: 30%;
  height: 100%;
  aspect-ratio: 1.47/1;
  opacity: 0.5;
  transition: margin 0.5s ease-in-out;
}
.img-wrapper .pic-list-box .pic-wrapper .img-box img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #7e4b4b;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.img-wrapper .pic-list-box .pic-wrapper .img-box.active {
  opacity: 1;
}
.img-wrapper .pic-list-box button.fixed {
  position: absolute;
  border: none;
  background-color: transparent;
  outline: none;
  top: 50%;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin-top: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-wrapper .pic-list-box button.fixed img {
  width: 20px;
}
.img-wrapper .pic-list-box button.fixed.leftBtn {
  left: 0;
  transform: translate(-40px, -50%);
}
.img-wrapper .pic-list-box button.fixed.rightBtn {
  right: 0;
  transform: translate(40px, -50%);
}
.img-wrapper .pic-list-box button.fixed:hover {
  filter: brightness(0.9);
}
.img-wrapper .pic-list-box button.fixed.hidden {
  pointer-events: none;
  filter: grayscale(100%);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .img-wrapper .pic-list-box button.fixed img {
    width: 12px;
  }
  .img-wrapper .pic-list-box button.fixed.leftBtn {
    transform: translate(-22px, -50%);
  }
  .img-wrapper .pic-list-box button.fixed.rightBtn {
    transform: translate(22px, -50%);
  }
}
.img-wrapper .progress-bar {
  width: 0%;
  height: 5px;
  background-color: var(--brand-2);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, 100%);
  transition: margin 0.5s ease-in-out;
}
.img-wrapper .progress-bar.run {
  transform-origin: left;
  animation: 5s linear 0s infinite progress;
  opacity: 0.8;
}
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 30%;
  }
}

.green-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 5%;
  background-color: #587650;
  padding: 15px 20px;
  border-radius: 7.2px 7.2px 7.2px 0;
  display: flex;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transform: translate(calc(var(--box-padding) * -1 - var(--label-triangle-width)), calc(var(--box-padding) * -1 - var(--label-height) / 2));
  margin-bottom: calc(var(--label-height) / -2);
}
@media (max-width: 1380px) {
  .green-label {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 22px;
  }
}
.green-label img.sannkaku {
  position: absolute;
  left: 0;
  top: 100%;
  width: var(--label-triangle-width);
}

ul.mission-ul {
  list-style: none;
  /* 移除預設圓點 */
  padding: 0 20px;
}
ul.mission-ul li {
  position: relative;
  padding-left: 1.4em;
  font-size: 22px;
  font-weight: 400;
  line-height: 36px;
  /* 保留空間放自訂符號 */
}
@media (max-width: 1900px) {
  ul.mission-ul li {
    font-size: 18px;
    line-height: 30px;
  }
}
ul.mission-ul li::before {
  content: "◆";
  /* 想要顯示的文字或符號，例如：✓、→、自訂文字 */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mission-color);
  /* 符號顏色 */
  font-size: 16px;
  font-weight: 400;
  /* 細調大小 */
}

table.green {
  width: 100%;
  border-collapse: collapse;
  border-radius: 7.2px;
  overflow: hidden;
  min-width: 261.5px;
}
table.green tr {
  background-color: white;
}
table.green tr th,
table.green tr td {
  padding: 10px 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #B4BFA8;
}
@media (max-width: 1200px) {
  table.green tr th,
  table.green tr td {
    font-size: 18px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  table.green tr th,
  table.green tr td {
    font-size: 18px;
    padding: 10px 6px;
  }
}
table.green tr th {
  background-color: #87AD70;
  color: white;
  border-right: 2px solid white;
  font-weight: 700;
}
table.green tr th:nth-last-child(1) {
  border-right: 2px solid #B4BFA8;
}
table.green tr:nth-child(even) {
  background-color: #F8F7F4;
}
table.green tr:nth-last-child(1) td:nth-child(1) {
  position: relative;
}
table.green tr:nth-last-child(1) td:nth-child(1)::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 3px;
  background-color: #B4BFA8;
  left: 0;
  bottom: 0;
  transform: rotate(45deg) translate(-1px, 2px);
}
table.green tr:nth-last-child(1) td:nth-last-child(1) {
  position: relative;
}
table.green tr:nth-last-child(1) td:nth-last-child(1)::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 3px;
  background-color: #B4BFA8;
  right: 0;
  bottom: 0;
  transform: rotate(-45deg) translate(1px, 2px);
}
table.green tr .flex-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  table.green tr .flex-box {
    flex-direction: column;
  }
}

ul.green {
  width: 100%;
  list-style-type: none;
  margin-bottom: var(--box-padding);
  padding-left: 0 !important;
}
ul.green li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  color: #000000;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  ul.green li {
    font-size: 18px;
    line-height: 30px;
  }
}
ul.green li span.green {
  color: #87AD70;
}/*# sourceMappingURL=global.css.map */