@charset "UTF-8";
.aboutArea .item .Txt .title, .aboutArea .item .iconBox img, .aboutArea .item .iconBox, .aboutArea .item, .newsArea .newsItemTitle, .newsArea .newsItem::after, .catalogArea .catalogItem .title, .catalogArea .catalogItem .item, .catalogArea .classCatalogBox .classLink .classTrigger, .bannerArea .bannerItem .Txt .bannerProgress .bannerProgressBar, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.5s ease-in-out;
}

.popWindowArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  /*以防有不支援dvh的瀏覽器*/
  height: 100dvh;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWindowArea .popWindowMask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWindowArea .popWindowBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  height: 100%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWindowArea .popWindowContent {
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}
.popWindowArea img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWindowArea .Txt {
  padding: 30px;
}
.popWindowArea .Txt .popTitle {
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  background-color: #07BEB8;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWindowArea .close::before, .popWindowArea .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWindowArea .close::before {
  transform: rotate(45deg);
}
.popWindowArea .close::after {
  transform: rotate(-45deg);
}
@media (min-width: 1181px) {
  .popWindowArea .close:hover {
    background-color: #07BEB8;
  }
  .popWindowArea .close:hover::before {
    transform: rotate(-30deg);
  }
  .popWindowArea .close:hover::after {
    transform: rotate(30deg);
  }
}
.popWindowArea.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWindowArea.show .popWindowMask,
.popWindowArea.show .popWindowBox {
  opacity: 1;
}
.popWindowArea.show .popWindowBox {
  transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .popWindowArea .popWindowContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea::after {
  bottom: calc(-1 * clamp(0px, 6vw, 128px));
}
@media (max-width: 640px) {
  .bannerArea::after {
    bottom: calc(-1 * clamp(0px, 3.4vw, 22px));
  }
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerSwiper {
  overflow: hidden;
}
.bannerArea .bannerSwiper:not(.swiper-initialized) .bannerItem:not(:first-child) {
  display: none;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Img {
    height: 640px;
  }
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .Img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}
.bannerArea .bannerItem .Txt {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: clamp(50px, 10px + 6.25vw, 130px);
  padding-bottom: clamp(50px, 10px + 6.25vw, 130px);
  align-items: flex-end;
  text-align: left;
}
@media (max-width: 820px) {
  .bannerArea .bannerItem .Txt {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: clamp(100px, 43px + 17.86vw, 180px);
  }
}
.bannerArea .bannerItem .Txt .TxtWrap {
  width: 50%;
  max-width: 630px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 3px + 1.17vw, 25px);
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .TxtWrap {
    width: 100%;
  }
}
.bannerArea .bannerItem .Txt .TxtWrap {
  opacity: 0;
  transform: translateY(10px);
}
.bannerArea .bannerItem .Txt .logoBox {
  height: clamp(40px, 29px + 1.8vw, 63px);
}
.bannerArea .bannerItem .Txt .logoBox img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  width: auto;
  height: 100%;
}
.bannerArea .bannerItem .Txt .bottomBox {
  margin-top: clamp(10px, 3px + 0.87vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(10px, 3px + 1.17vw, 25px);
  width: 100%;
  max-width: 540px;
}
.bannerArea .bannerItem .Txt .bottomBox .btnBox {
  margin: 0;
}
.bannerArea .bannerItem .Txt .bannerPagination {
  display: flex;
  align-items: center;
  gap: clamp(10px, 7px + 0.47vw, 16px);
  flex: 1 1 auto;
  max-width: 300px;
  margin-left: auto;
}
.bannerArea .bannerItem .Txt .bannerProgress {
  flex: 1 1 auto;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  overflow: hidden;
}
.bannerArea .bannerItem .Txt .bannerProgress .bannerProgressBar {
  height: 150%;
  background-color: #07BEB8;
  border-radius: inherit;
}
.bannerArea .bannerItem .Txt .bannerProgressNum {
  flex-shrink: 0;
  margin-left: clamp(0px, -10px + 1.3vw, 15px);
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  display: flex;
  align-items: center;
  gap: clamp(4px, 1px + 0.35vw, 8px);
  font-size: clamp(18px, 17px + 0.17vw, 20px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.bannerArea .bannerItem .Txt .bannerProgressNum .current {
  color: #07BEB8;
  font-size: clamp(20px, 16px + 0.52vw, 26px);
}
.bannerArea .bannerItem .Txt .bannerProgressNum .total {
  color: #fff;
}
.bannerArea .swiperNav {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1890px;
  margin: 0 auto;
  height: fit-content;
  z-index: 1;
  padding-right: 50px;
  padding-left: 50px;
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .swiperNav {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .bannerArea .swiperNav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    top: auto;
    bottom: clamp(50px, 0px + 15.63vw, 120px);
    transform: translate(-50%, 0);
  }
}
@media (max-width: 640px) {
  .bannerArea .swiperNav {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.editorArea {
  padding: clamp(30px, 7px + 3.04vw, 65px) 0;
}
.catalogArea {
  padding: clamp(30px, 7px + 3.04vw, 65px) 0;
  overflow-x: clip;
}
.catalogArea .unClick {
  pointer-events: none;
}
.catalogArea .catalogHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .catalogArea .catalogHead {
    align-items: flex-end;
  }
}
.catalogArea .catalogHead .titleBox {
  flex-shrink: 0;
}
.catalogArea .classCatalogBox {
  position: relative;
  z-index: 10;
}
.catalogArea .classCatalogBox .classCurrent {
  cursor: pointer;
  border-radius: 10px 0 10px 10px;
  background-color: #07BEB8;
  color: #fff;
  font-weight: 600;
  font-size: clamp(15px, 12px + 0.43vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  padding: 10px 20px;
  padding-right: 40px;
  min-width: 160px;
  position: relative;
}
.catalogArea .classCatalogBox .classCurrent::before {
  content: "\f229";
  font-family: bootstrap-icons;
  font-size: 15px;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1181px) {
  .catalogArea .classCatalogBox .classCurrent {
    display: none;
  }
}
.catalogArea .classCatalogBox .classLink {
  display: flex;
  align-items: center;
  gap: clamp(10px, 7px + 0.43vw, 15px);
  flex-wrap: wrap;
}
@media (max-width: 1180px) {
  .catalogArea .classCatalogBox .classLink {
    position: absolute;
    z-index: 5;
    width: 100%;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 7.6px 0 rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    justify-content: center;
    flex-direction: column;
    display: none;
  }
  .catalogArea .classCatalogBox .classLink.open {
    display: flex;
  }
  .catalogArea .classCatalogBox .classLink > li {
    width: 100%;
  }
}
.catalogArea .classCatalogBox .classLink .classTrigger {
  cursor: pointer;
  display: block;
  border-radius: 10px 0 10px 10px;
  background-color: #fff;
  box-shadow: 0 0 7.6px 0 rgba(0, 0, 0, 0.1);
  min-width: clamp(100px, 60px + 5.21vw, 160px);
  padding: 10px;
  color: #262626;
  font-weight: 600;
  font-size: clamp(18px, 15px + 0.35vw, 22px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
.catalogArea .classCatalogBox .classLink .classTrigger.current {
  background-color: #07BEB8;
  color: #fff;
}
@media (min-width: 1181px) {
  .catalogArea .classCatalogBox .classLink .classTrigger:hover {
    background-color: #07BEB8;
    color: #fff;
  }
}
.catalogArea .catalogBox {
  position: relative;
  transition: all 0.4s;
}
.catalogArea .catalogBox.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.2s;
}
.catalogArea .catalogSwiper {
  overflow: hidden;
}
.catalogArea .catalogList.swiper-wrapper {
  margin: 0;
}
.catalogArea .swiperNav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + clamp(100px, -132px + 14.71vw, 150px));
  justify-content: space-between;
}
@media (max-width: 1180px) {
  .catalogArea .swiperNav {
    position: static;
    width: 100%;
    justify-content: center;
    transform: none;
    margin-top: clamp(20px, 0px + 2.6vw, 50px);
  }
}
@media (max-width: 768px) {
  .catalogArea .swiperNav {
    justify-content: flex-end;
  }
}
.catalogArea .catalogList {
  position: relative;
  z-index: 2;
}
.catalogArea .catalogItem {
  height: auto !important;
  padding: 15px;
}
.catalogArea .catalogItem.isTrigger {
  cursor: pointer;
}
.catalogArea .catalogItem .titan {
  display: none;
}
@media (min-width: 1181px) {
  .catalogArea .catalogItem:hover .item {
    border-color: #07BEB8;
  }
  .catalogArea .catalogItem:hover .item .title {
    color: #07BEB8;
  }
}
.catalogArea .catalogItem .item {
  border: 2px solid transparent;
  position: relative;
  padding: 20px;
  height: 100%;
  box-shadow: 0 0 11.6px 0 rgba(0, 0, 0, 0.11);
  border-radius: 10px 0 10px 10px;
}
.catalogArea .catalogItem .linkWrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
}
.catalogArea .catalogItem .imgBox {
  padding: 5px;
  border: 1px solid #EDEDED;
  border-radius: 10px 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalogArea .catalogItem .Img {
  max-width: 210px;
  position: relative;
}
.catalogArea .catalogItem .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.catalogArea .catalogItem .cate {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: clamp(100px, 73px + 3.47vw, 140px);
  background-color: #07BEB8;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(20px, 17px + 0.43vw, 25px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px 0 10px 10px;
}
.catalogArea .catalogItem .Txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 12px + 0.43vw, 20px);
  padding: 0 clamp(0px, -10px + 1.3vw, 15px);
  padding-top: clamp(15px, 12px + 0.43vw, 20px);
}
.catalogArea .catalogItem .volume {
  width: 100%;
  background-color: #07BEB8;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(20px, 17px + 0.43vw, 25px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px 0 10px 10px;
}
.catalogArea .catalogItem .title {
  font-weight: 800;
  font-size: clamp(22px, 18px + 0.52vw, 28px);
  line-height: 1.4;
}
.catalogArea .catalogItem .tagFeatureList {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, -5px + 1.3vw, 20px);
  padding-bottom: 10px;
}
.catalogArea .catalogItem .tagFeatureList .tagFeatureItem {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalogArea .catalogItem .tagFeatureList .tagFeatureItem .num {
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  width: 25px;
  height: 25px;
  background-color: #07BEB8;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
}
.catalogArea .catalogItem .tagFeatureList .tagFeatureItem .text {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.groupArea {
  padding: clamp(30px, 7px + 3.04vw, 65px) 0;
  overflow: hidden;
}
.groupArea .groupLayout {
  display: flex;
  align-items: stretch;
  gap: clamp(30px, 10px + 2.6vw, 60px);
}
@media (max-width: 1180px) {
  .groupArea .groupLayout {
    flex-direction: column;
    gap: clamp(15px, 5px + 2.14vw, 30px);
  }
}
.groupArea .groupImgWrap {
  margin-left: clamp(-20px, 32px + -2.7vw, 0px);
  position: relative;
  width: 45%;
  flex-shrink: 0;
  border-radius: 10px 0 10px 10px;
  padding: clamp(20px, -7px + 3.47vw, 60px);
  padding-top: 0;
}
@media (max-width: 1180px) {
  .groupArea .groupImgWrap {
    order: 2;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.groupArea .groupImgWrap .groupImgSwiper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 520/680;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .groupArea .groupImgWrap .groupImgSwiper {
    width: auto;
    height: 100%;
    max-height: 350px;
    margin-bottom: 0;
  }
}
.groupArea .groupImgWrap .Img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
}
.groupArea .groupImgWrap .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.groupArea .groupImgWrap .imgOverlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background-color: var(--overlay-color, #F891A5);
  -webkit-mask-image: linear-gradient(to top, #000, transparent);
  mask-image: linear-gradient(to top, #000, transparent);
  opacity: 0.5;
  pointer-events: none;
  transition: background-color 0.5s ease;
  z-index: 1;
  border-radius: 10px 0 10px 10px;
}
@media (max-width: 1180px) {
  .groupArea .groupImgWrap .imgOverlay {
    top: 0;
    height: 100%;
  }
}
.groupArea .groupContent {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  .groupArea .groupContent {
    display: contents;
  }
}
.groupArea .groupHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(20px, -20px + 3.38vw, 45px);
}
@media (max-width: 1180px) {
  .groupArea .groupHead {
    display: contents;
  }
}
.groupArea .groupHead .swiperNav {
  flex-shrink: 0;
  margin-top: 10px;
}
@media (max-width: 1180px) {
  .groupArea .groupHead .swiperNav {
    order: 4;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .groupArea .groupHead .swiperNav {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 1180px) {
  .groupArea .groupHead .titleBox {
    order: 1;
    margin-bottom: clamp(16px, 11px + 1.14vw, 24px);
  }
}
.groupArea .groupListWrap {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .groupArea .groupListWrap {
    order: 3;
    flex: none;
    width: 100%;
    overflow: visible;
  }
  .groupArea .groupListWrap.swiper {
    overflow: hidden;
    transition: height 0.3s ease;
  }
}
.groupArea .groupList {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1180px) {
  .groupArea .groupList {
    position: relative;
  }
}
.groupArea .groupItem {
  border-top: 1px solid #B8B8B8;
  cursor: pointer;
  padding: clamp(5px, 2px + 0.69vw, 15px) 0;
}
@media (max-width: 1180px) {
  .groupArea .groupItem {
    border-top: none;
  }
}
.groupArea .groupItem .groupItemHead {
  display: flex;
  align-items: center;
  gap: clamp(6px, 3px + 0.35vw, 10px);
  border-radius: 10px 0 10px 10px;
  background-color: transparent;
  transition: background-color 0.4s ease, padding 0.4s ease;
  height: clamp(64px, 42px + 2.86vw, 97px);
  position: relative;
}
@media (max-width: 1180px) {
  .groupArea .groupItem .groupItemHead {
    padding: 0 14px;
  }
}
.groupArea .groupItem .groupItemHead .bar {
  width: clamp(8px, 5px + 0.43vw, 13px);
  height: clamp(64px, 42px + 2.86vw, 97px);
  border-radius: 20px;
  flex-shrink: 0;
  transition: width 0.4s ease, height 0s ease, background-color 0.4s ease, border-radius 0.4s ease;
}
@media (max-width: 1180px) {
  .groupArea .groupItem .groupItemHead .bar {
    display: none;
  }
}
.groupArea .groupItem .groupItemHead .num {
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 15px + 0.35vw, 22px);
  line-height: normal;
  flex-shrink: 0;
  width: clamp(32px, 27px + 0.69vw, 40px);
  text-align: left;
  transition: color 0.4s ease;
  position: relative;
}
.groupArea .groupItem .groupItemHead .num::before {
  content: "";
  position: absolute;
  height: clamp(44px, 31px + 1.74vw, 64px);
  width: 1px;
  background-color: #B8B8B8;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.groupArea .groupItem .groupItemHead .name {
  color: #262626;
  font-weight: 700;
  font-size: clamp(24px, 17px + 0.95vw, 35px);
  line-height: normal;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  padding-left: clamp(0px, -3px + 0.43vw, 5px);
}
.groupArea .groupItem .groupItemHead .nameEn {
  margin-left: auto;
  padding-left: 10px;
  color: #262626;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 10px + 0.78vw, 25px);
  line-height: normal;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s ease;
  padding-right: clamp(14px, 8px + 0.78vw, 23px);
}
@media (max-width: 768px) {
  .groupArea .groupItem .groupItemHead .nameEn {
    display: none;
  }
}
.groupArea .groupItem .groupItemTextWrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}
@media (max-width: 1180px) {
  .groupArea .groupItem .groupItemTextWrap {
    grid-template-rows: 1fr !important;
  }
}
.groupArea .groupItem .groupItemText {
  color: #262626;
  font-weight: 500;
  font-size: clamp(16px, 13px + 0.43vw, 21px);
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding-left: clamp(52px, 31px + 2.69vw, 83px);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (max-width: 1180px) {
  .groupArea .groupItem .groupItemText {
    opacity: 1;
    padding: clamp(15px, 13px + 0.43vw, 18px) clamp(48px, 45px + 0.57vw, 52px);
  }
}
.groupArea .groupItem .groupItemText .btnBox {
  margin-top: clamp(12px, 7px + 0.69vw, 20px);
}
.groupArea .groupItem.active {
  border-top-color: transparent;
}
.groupArea .groupItem.active .groupItemHead {
  background-color: var(--active-color);
}
.groupArea .groupItem.active .groupItemHead .num {
  color: #fff !important;
}
.groupArea .groupItem.active .groupItemHead .num::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.groupArea .groupItem.active .groupItemHead .name {
  color: #fff;
}
.groupArea .groupItem.active .groupItemHead .nameEn {
  color: #fff;
}
.groupArea .groupItem.active .groupItemTextWrap {
  grid-template-rows: 1fr;
}
.groupArea .groupItem.active .groupItemText {
  padding-top: clamp(18px, 13px + 0.69vw, 26px);
  padding-bottom: clamp(0px, -17px + 2.26vw, 26px);
  opacity: 1;
  transition: opacity 0.4s ease 0.15s;
}
@media (max-width: 1180px) {
  .groupArea .groupItem.active .groupItemText {
    padding: clamp(15px, 13px + 0.43vw, 18px) clamp(48px, 45px + 0.57vw, 52px);
  }
}
@media (min-width: 1181px) {
  .groupArea .groupItem:hover:not(.active) .groupItemHead .name {
    color: var(--item-color);
  }
}
.groupArea.is-ready .groupListWrap {
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.groupArea.measuring .groupItem, .groupArea.measuring .groupItemHead, .groupArea.measuring .groupItemText, .groupArea.measuring .groupItemTextWrap {
  transition: none !important;
}
.groupArea .groupNav .navBtn.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.newsArea {
  padding: clamp(30px, 7px + 3.04vw, 65px) 0;
}
.newsArea .wrap {
  max-width: 1680px;
}
.newsArea .newsLayout {
  display: flex;
  align-items: stretch;
}
@media (max-width: 1180px) {
  .newsArea .newsLayout {
    flex-direction: column;
  }
}
.newsArea .newsCol {
  flex: 1;
  min-width: 0;
  padding: 0 clamp(24px, -11px + 4.51vw, 76px);
}
.newsArea .newsCol:first-child {
  padding-left: 0;
}
.newsArea .newsCol:last-child {
  padding-right: 0;
}
.newsArea .newsCol + .newsCol {
  border-left: 1px solid #B8B8B8;
}
@media (max-width: 1180px) {
  .newsArea .newsCol {
    padding: 0;
  }
  .newsArea .newsCol + .newsCol {
    border-left: 0;
    margin-top: clamp(36px, 23px + 1.74vw, 56px);
  }
}
.newsArea .newsHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .newsArea .newsHead {
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.newsArea .newsHead .btnBox {
  margin-top: 0;
}
.newsArea .newsSwiper {
  width: 100%;
  overflow: hidden;
}
.newsArea .newsList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.newsArea .newsItem {
  height: auto;
  min-height: clamp(115px, 94px + 2.78vw, 147px);
  box-sizing: border-box;
  padding: clamp(20px, 17px + 0.43vw, 25px) 0;
  border-bottom: 1px solid #B8B8B8;
  position: relative;
  transition: border 0.3s ease-in-out;
}
.newsArea .newsItem::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #07BEB8;
  bottom: -1px;
  left: 0;
}
.newsArea .newsItem.isTrigger {
  cursor: pointer;
}
.newsArea .newsItem .titan {
  display: none;
}
.newsArea .newsItem .linkWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 2;
}
@media (min-width: 1181px) {
  .newsArea .newsItem:hover {
    border-color: transparent;
  }
  .newsArea .newsItem:hover::after {
    width: 100%;
  }
  .newsArea .newsItem:hover .newsItemTitle {
    color: #07BEB8;
  }
}
.newsArea .newsItemTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.newsArea .cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(32px, 27px + 0.69vw, 40px);
  padding: 0 clamp(10px, 3px + 0.87vw, 20px);
  background-color: #07BEB8;
  border-radius: 10px 0 10px 10px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(15px, 12px + 0.43vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.newsArea .date {
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0px + 0.61vw, 12px);
  flex-shrink: 0;
  color: #262626;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 13px + 0.26vw, 18px);
  line-height: 1;
  white-space: nowrap;
}
.newsArea .date .icon {
  color: #07BEB8;
  width: 24px;
  height: 24px;
}
.newsArea .newsItemTitle {
  margin-top: clamp(14px, 10px + 0.52vw, 20px);
}
.newsArea .newsItemTitle:first-child {
  margin-top: 0;
}
.newsArea .newsItemTitle {
  font-weight: 700;
  font-size: clamp(20px, 16px + 0.52vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #262626;
}
.newsArea .newsNav {
  justify-content: center;
  margin-top: clamp(24px, 7px + 2.26vw, 50px);
}
@media (max-width: 768px) {
  .newsArea .newsNav {
    justify-content: flex-end;
  }
}

.aboutArea {
  padding: clamp(30px, 7px + 3.04vw, 65px) 0 clamp(40px, -40px + 10.42vw, 160px);
  overflow: hidden;
}
.aboutArea .wrap {
  max-width: 1480px;
}
.aboutArea .aboutHead {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, -7px + 3.47vw, 60px);
  margin-bottom: clamp(30px, 17px + 1.74vw, 50px);
}
@media (max-width: 1180px) {
  .aboutArea .aboutHead {
    flex-direction: column;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutHead .titleBox {
    width: 100%;
  }
}
.aboutArea .aboutHead .text {
  flex: 1;
  max-width: 730px;
  color: #262626;
  font-weight: 500;
  font-size: clamp(15px, 12px + 0.43vw, 20px);
  letter-spacing: 0.01em;
  line-height: 1.7;
  margin-left: clamp(0px, -24px + 2.03vw, 15px);
}
@media (max-width: 1180px) {
  .aboutArea .aboutHead .text {
    flex: none;
    width: 100%;
  }
}
.aboutArea .aboutHead .btnBox {
  margin: 0 0 0 auto;
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  .aboutArea .aboutHead .btnBox {
    margin-left: 0;
  }
}
.aboutArea .aboutBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 1.5vw, 29px);
}
@media (max-width: 1180px) {
  .aboutArea .aboutBox {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutBox {
    grid-template-columns: 1fr;
    max-width: none;
    margin: 0;
  }
}
.aboutArea .item {
  position: relative;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 10px 0 10px 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.11);
  padding: 11px 11px 0;
}
.aboutArea .item .imgWrap {
  position: relative;
}
.aboutArea .item .Img {
  border-radius: 8px 0 8px 8px;
  overflow: hidden;
}
.aboutArea .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.aboutArea .item .iconBox {
  position: absolute;
  right: 11px;
  bottom: -28px;
  z-index: 1;
  width: clamp(56px, 47px + 1.22vw, 70px);
  aspect-ratio: 1;
  background-color: #07BEB8;
  border: 2px solid #fff;
  border-radius: 10px 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutArea .item .iconBox img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.aboutArea .item .Txt {
  padding: clamp(20px, 13px + 0.87vw, 30px) clamp(12px, 7px + 0.69vw, 20px) clamp(18px, 13px + 0.69vw, 26px);
}
.aboutArea .item .Txt .title {
  color: #262626;
  font-weight: 700;
  font-size: clamp(20px, 16px + 0.52vw, 26px);
  letter-spacing: 0.03em;
  line-height: normal;
}
.aboutArea .item .Txt .text {
  color: #262626;
  font-weight: 500;
  font-size: clamp(15px, 12px + 0.43vw, 20px);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-top: clamp(6px, 3px + 0.35vw, 10px);
}
.aboutArea .item .linkWrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media (min-width: 1181px) {
  .aboutArea .item:hover {
    border-color: #07BEB8;
  }
  .aboutArea .item:hover .iconBox {
    background-color: #fff;
    border-color: #07BEB8;
  }
  .aboutArea .item:hover .iconBox img {
    filter: none;
  }
  .aboutArea .item:hover .Txt .title {
    color: #07BEB8;
  }
}
