@charset "UTF-8";
.esgArea .Img img, .popWin .close::before, .popWin .close::after, .popWin .close {
  transition: all 0.5s ease-in-out;
}

.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh; /*以防有不支援dvh的瀏覽器*/
  height: 100dvh;
  font-size: 15px;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWin .popContent {
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
}
.popWin .popContent::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.popWin .popContent::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #dbdbdb;
}
.popWin .popContent::-webkit-scrollbar-thumb {
  background: #007ebe;
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 46px;
  height: 46px;
  background-color: #007ebe;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWin .close::before, .popWin .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWin .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popWin .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  .popWin .close:hover {
    background-color: #007ebe;
  }
  .popWin .close:hover::before {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .popWin .close:hover::after {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}
.popWin.show .inner {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px); /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 1200px;
  padding: 136px 80px 120px;
  -ms-flex-pack: start;
      justify-content: start;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt {
    padding: 100px 80px 120px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt {
    padding: 85px 80px 120px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    padding: 200px 140px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt {
    padding: 155px 55px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt {
    padding: 116px 35px;
  }
}
@media (max-width: 350px) {
  .bannerArea .bannerItem .Txt {
    padding: 116px 20px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  max-height: 100%;
  color: #fff;
}
.bannerArea .bannerItem .Txt .title {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 44px;
    letter-spacing: 1.6px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 40px;
    letter-spacing: 1.2px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 35px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 33px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 24px;
    letter-spacing: 0.6px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  display: block;
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  padding: 0;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 34px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 25px;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 21px;
  }
}
@media (max-width: 350px) {
  .bannerArea .bannerItem .Txt .subtitle {
    font-size: 18px;
  }
}
.bannerArea .bannerItem .Txt .text {
  display: block;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 1.1px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 20px;
    letter-spacing: 0.9px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 18px;
    letter-spacing: 0.7px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .text {
    font-size: 15px;
  }
}
.bannerArea .bannerItem .Txt .smallText {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  padding: 0 0 0 9px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt .smallText {
    font-size: 16px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .bannerItem .Txt .smallText {
    font-size: 14px;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  opacity: 0;
}
.bannerArea .bannerItem:not(.show) .Img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  transition: -webkit-transform 0.1s 0.8s;
  transition: transform 0.1s 0.8s;
  transition: transform 0.1s 0.8s, -webkit-transform 0.1s 0.8s;
}
.bannerArea .bannerItem:not(.show) .Txt .title {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s 0.3s;
}
.bannerArea .bannerItem:not(.show) .Txt .subtitle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s 0.2s;
}
.bannerArea .bannerItem:not(.show) .Txt .text {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s 0.1s;
}
.bannerArea .bannerItem:not(.show) .Txt .smallText {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.4s;
}
.bannerArea .bannerItem.show .Img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: -webkit-transform 5s;
  transition: transform 5s;
  transition: transform 5s, -webkit-transform 5s;
}
.bannerArea .bannerItem.show .Txt .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 0.4s;
}
.bannerArea .bannerItem.show .Txt .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 0.6s;
}
.bannerArea .bannerItem.show .Txt .text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 0.8s;
}
.bannerArea .bannerItem.show .Txt .smallText {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.8s 1s;
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  letter-spacing: 1.6px;
  font-size: 16px;
  padding: 0px 0px 0 1px;
}
@media (max-width: 1600px) {
  .bannerArea .scrollDown span.text {
    font-size: 15px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .scrollDown span.text {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .bannerArea .scrollDown span.text {
    font-size: 13px;
  }
}
.bannerArea .scrollDown span.line {
  width: 2px;
  height: 73px;
  z-index: 1;
  margin: 21px auto 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1600px) {
  .bannerArea .scrollDown span.line {
    height: 65px;
    margin: 18px auto 0;
  }
}
@media (max-width: 1350px) {
  .bannerArea .scrollDown span.line {
    height: 60px;
    margin: 15px auto 0;
  }
}
@media (max-width: 1023px) {
  .bannerArea .scrollDown span.line {
    height: 50px;
    margin: 10px auto 0;
  }
}
.bannerArea .scrollDown span.line::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  width: 1px;
  height: 100%;
  display: block;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  -webkit-animation: bannerScrollAnimation 2.5s linear infinite forwards;
          animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #fff;
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}
.bannerArea .slickBtnBox {
  position: absolute;
  top: calc(50% - 40px);
  left: 50%;
  width: calc(100% + 160px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
}
@media (max-width: 1600px) {
  .bannerArea .slickBtnBox {
    top: calc(50% - 20px);
    width: calc(100% + 120px);
  }
}
@media (max-width: 1350px) {
  .bannerArea .slickBtnBox {
    top: 50%;
    width: calc(100% + 100px);
  }
}
@media (max-width: 480px) {
  .bannerArea .slickBtnBox {
    width: calc(100% + 80px);
  }
}
@media (max-width: 350px) {
  .bannerArea .slickBtnBox {
    display: none;
  }
}
.bannerArea .slickBtnBox .slickBtn {
  width: 155px;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 33px 4px;
}
@media (max-width: 1600px) {
  .bannerArea .slickBtnBox .slickBtn {
    width: 130px;
    padding: 0 25px 4px;
  }
}
@media (max-width: 1350px) {
  .bannerArea .slickBtnBox .slickBtn {
    width: 100px;
    padding: 0 20px 4px;
  }
}
@media (max-width: 480px) {
  .bannerArea .slickBtnBox .slickBtn {
    width: 70px;
    padding: 0 15px 4px;
  }
}
.bannerArea .slickBtnBox .slickBtn.arrowPrev {
  -ms-flex-pack: end;
      justify-content: end;
}
@media (min-width: 1024px) {
  .bannerArea .slickBtnBox .slickBtn:hover {
    color: #fff;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.aboutArea {
  padding: 208px 0 233px;
  position: relative;
}
@media (max-width: 1600px) {
  .aboutArea {
    padding: 200px 0;
  }
}
@media (max-width: 1350px) {
  .aboutArea {
    padding: 140px 0;
  }
}
@media (max-width: 767px) {
  .aboutArea {
    padding: 80px 0;
  }
}
.aboutArea .wrap {
  display: -ms-flexbox;
  display: flex;
  max-width: 1570px;
  -ms-flex-align: start;
      align-items: start;
}
@media (min-width: 1024px) {
  .aboutArea .wrap {
    width: calc(100% - 200px);
  }
}
@media (min-width: 1024px) and (max-width: 1600px) {
  .aboutArea .wrap {
    width: 100%;
    padding: 0 200px 0 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1350px) {
  .aboutArea .wrap {
    padding: 0 120px 0 50px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.aboutArea .aboutBox {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 37px;
}
@media (max-width: 1600px) {
  .aboutArea .aboutBox {
    padding: 0 53px 0 20px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .aboutBox {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .aboutArea .aboutBox {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.aboutArea .right {
  width: 50%;
  padding: 0 0 0 12px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .aboutArea .right {
    width: 100%;
    padding: 0;
  }
}
.aboutArea .right .programTitleBox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 0 12px 14px;
}
@media (max-width: 1023px) {
  .aboutArea .right .programTitleBox {
    padding: 0;
    height: 235px;
    width: 200px;
  }
  .aboutArea .right .programTitleBox .programTitle {
    height: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: end;
        justify-content: end;
  }
  .aboutArea .right .programTitleBox .programTitle::after {
    content: "";
    display: block;
    width: 21px;
    height: 1px;
    background-color: #fff;
    margin: 12px auto 0;
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programTitleBox {
    height: 160px;
    width: 169px;
  }
  .aboutArea .right .programTitleBox .programTitle::after {
    margin: 8px auto 0;
  }
}
@media (max-width: 350px) {
  .aboutArea .right .programTitleBox {
    height: 140px;
    width: 150px;
  }
}
.aboutArea .right .programTitleBox .tw {
  font-size: 20px;
  margin: 0 0 2px;
  letter-spacing: 1px;
}
@media (max-width: 1600px) {
  .aboutArea .right .programTitleBox .tw {
    font-size: 18px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programTitleBox .tw {
    font-size: 16px;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .right .programTitleBox .tw {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programTitleBox .tw {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .aboutArea .right .programTitleBox .tw {
    font-size: 16px;
  }
}
.aboutArea .right .programTitleBox .en {
  font-size: 16px;
  letter-spacing: 0.8px;
}
@media (max-width: 1600px) {
  .aboutArea .right .programTitleBox .en {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programTitleBox .en {
    font-size: 14px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .right .programTitleBox .en {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programTitleBox .en {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .aboutArea .right .programTitleBox .en {
    font-size: 12px;
  }
}
.aboutArea .right .programTitleBox .programCenterList {
  position: relative;
  z-index: 1;
  height: 50%;
  overflow: auto;
  padding: 12px 0 0;
}
.aboutArea .right .programTitleBox .programCenterList::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.aboutArea .right .programTitleBox .programCenterList::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #dbdbdb;
}
.aboutArea .right .programTitleBox .programCenterList::-webkit-scrollbar-thumb {
  background: #007ebe;
}
@media (max-width: 430px) {
  .aboutArea .right .programTitleBox .programCenterList {
    padding: 8px 0 0;
  }
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem {
  position: absolute;
  width: 100%;
  top: 12px;
  left: 0;
  z-index: 1;
  transition: all 0.5s;
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem:first-child {
  position: static;
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem .title, .aboutArea .right .programTitleBox .programCenterList .programCenterItem .subtitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem .title {
  transition: all 0.4s;
  font-size: 20px;
}
@media (max-width: 430px) {
  .aboutArea .right .programTitleBox .programCenterList .programCenterItem .title {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  .aboutArea .right .programTitleBox .programCenterList .programCenterItem .title {
    font-size: 16px;
  }
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem .subtitle {
  transition: all 0.4s 0.2s;
  font-size: 18px;
}
@media (max-width: 430px) {
  .aboutArea .right .programTitleBox .programCenterList .programCenterItem .subtitle {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .aboutArea .right .programTitleBox .programCenterList .programCenterItem .subtitle {
    font-size: 14px;
  }
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem.show .title, .aboutArea .right .programTitleBox .programCenterList .programCenterItem.show .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem.show .title {
  transition: all 0.5s 0.4s;
}
.aboutArea .right .programTitleBox .programCenterList .programCenterItem.show .subtitle {
  transition: all 0.5s 0.6s;
}
.aboutArea .right .programList {
  width: 385px;
  background: url(../images/about_left.png) no-repeat center center/100%;
  aspect-ratio: 385/334;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin: 63px auto;
}
@media (max-width: 1600px) {
  .aboutArea .right .programList {
    margin: 40px auto;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programList {
    width: 300px;
    margin: 20px auto;
  }
}
@media (max-width: 1023px) {
  .aboutArea .right .programList {
    max-width: 400px;
    width: calc(100% - 40px);
  }
}
.aboutArea .right .programItem {
  position: relative;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
}
.aboutArea .right .programItem .title {
  position: relative;
  z-index: 1;
  width: 74px;
  aspect-ratio: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #007ebe;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .aboutArea .right .programItem .title {
    font-size: 16px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programItem .title {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .right .programItem .title {
    font-size: 18px;
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programItem .title {
    width: 60px;
    font-size: 16px;
  }
}
.aboutArea .right .programItem .title::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 52%;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/icon_bgi.png) no-repeat center/100%;
  z-index: -1;
}
.aboutArea .right .programItem .subtitle {
  position: absolute;
  top: calc(50% - 19px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
  width: 204px;
  max-height: 94px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 18px;
  font-weight: 500;
  background-color: #007ebe;
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.5s linear;
  opacity: 0;
  text-align: center;
}
.aboutArea .right .programItem .subtitle::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.aboutArea .right .programItem .subtitle::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #dbdbdb;
}
.aboutArea .right .programItem .subtitle::-webkit-scrollbar-thumb {
  background: #007ebe;
}
@media (max-width: 1600px) {
  .aboutArea .right .programItem .subtitle {
    font-size: 16px;
    width: 168px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programItem .subtitle {
    font-size: 14px;
    width: 154px;
    top: calc(50% - 7px);
  }
}
.aboutArea .right .programItem:nth-of-type(1) {
  -webkit-transform: translate(56px, -26px);
          transform: translate(56px, -26px);
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(1) {
    -webkit-transform: translate(19%, -37%);
            transform: translate(19%, -37%);
  }
}
.aboutArea .right .programItem:nth-of-type(2) {
  -webkit-transform: translate(-69px, -26px);
          transform: translate(-69px, -26px);
}
@media (max-width: 1600px) {
  .aboutArea .right .programItem:nth-of-type(2) {
    -webkit-transform: translate(-56px, -26px);
            transform: translate(-56px, -26px);
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(2) {
    -webkit-transform: translate(-19%, -37%);
            transform: translate(-19%, -37%);
  }
}
.aboutArea .right .programItem:nth-of-type(3) {
  -webkit-transform: translate(-24px, 18px);
          transform: translate(-24px, 18px);
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(3) {
    -webkit-transform: translate(-22%, 13%);
            transform: translate(-22%, 13%);
  }
}
.aboutArea .right .programItem:nth-of-type(4) {
  -webkit-transform: translate(24px, 18px);
          transform: translate(24px, 18px);
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(4) {
    -webkit-transform: translate(22%, 13%);
            transform: translate(22%, 13%);
  }
}
.aboutArea .right .programItem:nth-of-type(5) {
  -webkit-transform: translate(56px, 70px);
          transform: translate(56px, 70px);
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(5) {
    -webkit-transform: translate(22%, 6%);
            transform: translate(22%, 6%);
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(5) {
    -webkit-transform: translate(19%, 63%);
            transform: translate(19%, 63%);
  }
}
.aboutArea .right .programItem:nth-of-type(6) {
  -webkit-transform: translate(-69px, 70px);
          transform: translate(-69px, 70px);
}
@media (max-width: 1600px) {
  .aboutArea .right .programItem:nth-of-type(6) {
    -webkit-transform: translate(-56px, 70px);
            transform: translate(-56px, 70px);
  }
}
@media (max-width: 430px) {
  .aboutArea .right .programItem:nth-of-type(6) {
    -webkit-transform: translate(-19%, 63%);
            transform: translate(-19%, 63%);
  }
}
.aboutArea .right .programItem:nth-of-type(odd) .subtitle {
  right: calc(100% - 17px);
  border-radius: 35px 0 0 35px;
  padding: 10px 38px 10px 33px;
}
@media (max-width: 1600px) {
  .aboutArea .right .programItem:nth-of-type(odd) .subtitle {
    padding: 10px 25px 10px 20px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programItem:nth-of-type(odd) .subtitle {
    padding: 10px 20px 10px 15px;
  }
}
.aboutArea .right .programItem:nth-of-type(even) {
  -ms-flex-pack: end;
      justify-content: end;
}
.aboutArea .right .programItem:nth-of-type(even) .subtitle {
  left: calc(100% - 17px);
  border-radius: 0 35px 35px 0;
  padding: 10px 33px 10px 38px;
}
@media (max-width: 1600px) {
  .aboutArea .right .programItem:nth-of-type(even) .subtitle {
    padding: 10px 20px 10px 25px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .right .programItem:nth-of-type(even) .subtitle {
    padding: 10px 15px 10px 20px;
  }
}
@media (min-width: 1024px) {
  .aboutArea .right .programItem:hover .subtitle {
    opacity: 1;
  }
}
.aboutArea .Img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.aboutArea .Img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .aboutArea .Img::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.aboutArea .Img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.aboutArea .textEditor {
  color: #fff;
}
.aboutArea .textEditor .topText {
  font-weight: bold;
  position: relative;
  margin-bottom: 32px;
}
.aboutArea .textEditor .topText::before, .aboutArea .textEditor .topText::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: -17px;
  z-index: 1;
  background-color: #fff;
}
.aboutArea .textEditor .topText::before {
  width: 100%;
  max-width: 385px;
  opacity: 0.2;
}
.aboutArea .textEditor .topText::after {
  width: 59px;
}
.aboutArea .textEditor .topText .deciTitle {
  font-size: 2.865vw;
  line-height: 1;
  letter-spacing: -1.5px;
}
@media (max-width: 1600px) {
  .aboutArea .textEditor .topText .deciTitle {
    letter-spacing: -0.8px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .textEditor .topText .deciTitle {
    letter-spacing: 0;
  }
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .topText .deciTitle {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .topText .deciTitle {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .aboutArea .textEditor .topText .deciTitle {
    font-size: 27px;
  }
}
@media (max-width: 350px) {
  .aboutArea .textEditor .topText .deciTitle {
    font-size: 25px;
  }
}
.aboutArea .textEditor .topText .numberBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  margin: 0 0 34px;
}
.aboutArea .textEditor .topText .numberBox .number {
  font-size: 4.95vw;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-right: 12px;
}
@media (max-width: 1600px) {
  .aboutArea .textEditor .topText .numberBox .number {
    letter-spacing: -1px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .textEditor .topText .numberBox .number {
    letter-spacing: 0;
  }
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .topText .numberBox .number {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .topText .numberBox .number {
    font-size: 80px;
  }
}
@media (max-width: 480px) {
  .aboutArea .textEditor .topText .numberBox .number {
    font-size: 56px;
  }
}
.aboutArea .textEditor .topText .numberBox .numberText {
  font-size: 2.08vw;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .topText .numberBox .numberText {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .topText .numberBox .numberText {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .aboutArea .textEditor .topText .numberBox .numberText {
    font-size: 23px;
  }
}
.aboutArea .textEditor .topText .title {
  font-size: 2.34vw;
  margin: 0 0 0 2px;
  letter-spacing: 1.6px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .aboutArea .textEditor .topText .title {
    letter-spacing: 1.4px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .textEditor .topText .title {
    letter-spacing: 1.2px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .topText .title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .topText .title {
    font-size: 33px;
  }
}
@media (max-width: 480px) {
  .aboutArea .textEditor .topText .title {
    font-size: 28px;
  }
}
.aboutArea .textEditor .topText .subtitle {
  font-size: 1.67vw;
  padding: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .aboutArea .textEditor .topText .subtitle {
    letter-spacing: 0px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .topText .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .topText .subtitle {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .aboutArea .textEditor .topText .subtitle {
    font-size: 20px;
  }
}
.aboutArea .textEditor .topText .enTitle {
  font-size: 20px;
  line-height: 1.35;
  padding: 0 0 0 5px;
  letter-spacing: 0.7px;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .aboutArea .textEditor .topText .enTitle {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .textEditor .topText .enTitle {
    font-size: 16px;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .topText .enTitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .topText .enTitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .aboutArea .textEditor .topText .enTitle {
    font-size: 16px;
  }
}
.aboutArea .textEditor .bottomText {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
}
@media (max-width: 1600px) {
  .aboutArea .textEditor .bottomText {
    font-size: 15px;
    letter-spacing: 1.4px;
  }
}
@media (max-width: 1350px) {
  .aboutArea .textEditor .bottomText {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}
@media (max-width: 1023px) {
  .aboutArea .textEditor .bottomText {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .aboutArea .textEditor .bottomText {
    font-size: 14px;
  }
}
.aboutArea:not(.show) .Img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.aboutArea:not(.show) .topText::before {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.aboutArea:not(.show) .topText::after {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.aboutArea:not(.show) .topText .deciTitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea:not(.show) .topText .numberBox {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea:not(.show) .topText .title {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea:not(.show) .topText .subtitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea:not(.show) .topText .enTitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea:not(.show) .bottomText {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.aboutArea:not(.show) .programBox {
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.aboutArea.show .Img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 4s;
}
.aboutArea.show .topText::before {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.6s 1s;
}
.aboutArea.show .topText::after {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.4s 1s;
}
.aboutArea.show .topText .deciTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s;
}
.aboutArea.show .topText .numberBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.2s;
}
.aboutArea.show .topText .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.4s;
}
.aboutArea.show .topText .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.6s;
}
.aboutArea.show .topText .enTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.8s;
}
.aboutArea.show .bottomText {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 1.2s;
}
.aboutArea.show .programBox {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 0.6s 1.4s;
}

.catalogArea {
  padding: 103px 0 174px 0;
}
@media (max-width: 767px) {
  .catalogArea {
    padding: 80px 0 160px;
  }
}
.catalogArea .topBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: end;
      align-items: end;
}
.catalogArea .topBox .titleBox {
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}
.catalogArea .topBox .btnBox {
  margin: 0 0 51px;
}
.catalogArea .catalogBox {
  padding: 25px 0 0;
  position: relative;
}
.catalogArea .catalogList {
  margin: 0 -55px;
  position: relative;
}
@media (max-width: 1600px) {
  .catalogArea .catalogList {
    margin: 0 -45px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList {
    margin: 0 -30px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList {
    margin: 0 -20px;
  }
}
.catalogArea .catalogList::before, .catalogArea .catalogList::after {
  content: "";
  display: block;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: calc(50% - 1px);
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 480px) {
  .catalogArea .catalogList::before, .catalogArea .catalogList::after {
    display: none;
  }
}
.catalogArea .catalogList::before {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.catalogArea .catalogList::after {
  height: 46px;
  background-color: rgba(0, 0, 0, 0.5);
}
.catalogArea .catalogList:not(.slick-slider) {
  display: -ms-flexbox;
  display: flex;
}
.catalogArea .catalogList:not(.slick-slider) .catalogItem {
  width: 33.33%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.catalogArea .catalogList.oneData::before, .catalogArea .catalogList.oneData::after {
  display: none;
}
.catalogArea .catalogList .catalogItem {
  padding: 0 55px;
}
@media (max-width: 1600px) {
  .catalogArea .catalogList .catalogItem {
    padding: 0 45px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .catalogItem {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .catalogItem {
    padding: 0 20px;
  }
}
.catalogArea .catalogList .item {
  position: relative;
  overflow: hidden;
}
.catalogArea .catalogList .Img img {
  width: 100%;
  height: auto;
  display: block;
}
.catalogArea .catalogList .Txt {
  position: relative;
  padding: 34px 0px 0px;
}
@media (max-width: 1600px) {
  .catalogArea .catalogList .Txt {
    padding: 20px 0 0;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .Txt {
    padding: 15px 0 0;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .Txt {
    padding: 10px 0 0;
  }
}
.catalogArea .catalogList .title {
  font-size: 20px;
  font-weight: 500;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
@media (max-width: 1600px) {
  .catalogArea .catalogList .title {
    font-size: 18px;
    letter-spacing: 0.8px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .title {
    font-size: 16px;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 1023px) {
  .catalogArea .catalogList .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .title {
    font-size: 18px;
  }
}
.catalogArea .catalogList .title::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000;
  position: absolute;
}
@media (max-width: 1600px) {
  .catalogArea .catalogList .title::before {
    height: 18px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .title::before {
    height: 16px;
  }
}
.catalogArea .catalogList .textList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalogArea .catalogList .textList .textItem {
  width: 50%;
  max-width: 241px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
  font-size: 16px;
}
@media (max-width: 1600px) {
  .catalogArea .catalogList .textList .textItem {
    font-size: 15px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 1350px) {
  .catalogArea .catalogList .textList .textItem {
    font-size: 14px;
    letter-spacing: 0.2px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .textList .textItem {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .catalogArea .catalogList .textList .textItem {
    font-size: 16px;
  }
}
.catalogArea .slickBtnBox {
  position: absolute;
  bottom: -88px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.catalogArea:not(.show) .titleBox .title, .catalogArea:not(.show) .titleBox .subtitle, .catalogArea:not(.show) .titleBox .decoTitle {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.catalogArea:not(.show) .btnBox {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.catalogArea:not(.show) .catalogBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.catalogArea.show .titleBox .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s;
}
.catalogArea.show .titleBox .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.2s;
}
.catalogArea.show .titleBox .decoTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.4s;
}
.catalogArea.show .btnBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.6s 0.6s;
}
.catalogArea.show .catalogBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.8s;
}

.esgArea {
  padding: 129px 0 185px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .esgArea {
    padding: 80px 0;
  }
}
.esgArea .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
}
.esgArea .esgBox {
  width: 100%;
  max-width: 538px;
}
@media (max-width: 1600px) {
  .esgArea .esgBox {
    max-width: 450px;
  }
}
.esgArea .Img {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.esgArea .Img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
.esgArea .Img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.esgArea .btnBox {
  margin-top: 60px;
}
.esgArea .textEditor {
  color: #fff;
}
.esgArea .textEditor .topText {
  font-weight: bold;
  position: relative;
  margin-bottom: 32px;
  z-index: 0;
}
.esgArea .textEditor .topText::before, .esgArea .textEditor .topText::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: -17px;
  z-index: 1;
  background-color: #fff;
}
.esgArea .textEditor .topText::before {
  width: 100%;
  max-width: 385px;
  opacity: 0.2;
}
.esgArea .textEditor .topText::after {
  width: 59px;
}
.esgArea .textEditor .topText .deciTitle {
  font-size: 55px;
  line-height: 1;
  letter-spacing: -1.5px;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .topText .deciTitle {
    font-size: 50px;
    letter-spacing: 1px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .topText .deciTitle {
    font-size: 46px;
    letter-spacing: 0;
  }
}
.esgArea .textEditor .topText .numberBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  margin: 0 0 34px;
}
.esgArea .textEditor .topText .numberBox .number {
  font-size: 95px;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-right: 12px;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .topText .numberBox .number {
    font-size: 85px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .topText .numberBox .number {
    font-size: 75px;
    letter-spacing: 0;
  }
}
.esgArea .textEditor .topText .numberBox .numberText {
  font-size: 40px;
  line-height: 1.3;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .topText .numberBox .numberText {
    font-size: 36px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .topText .numberBox .numberText {
    font-size: 32px;
  }
}
.esgArea .textEditor .topText .title {
  font-size: 45px;
  margin: 0 0 0 2px;
  letter-spacing: 1.6px;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .topText .title {
    font-size: 40px;
    letter-spacing: 1.4px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .topText .title {
    font-size: 36px;
    letter-spacing: 1.2px;
  }
}
.esgArea .textEditor .topText .subtitle {
  font-size: 32px;
  padding: 0;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .topText .subtitle {
    font-size: 28px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .topText .subtitle {
    font-size: 24px;
  }
}
.esgArea .textEditor .topText .enTitle {
  font-size: 20px;
  line-height: 1.35;
  padding: 1px 0 0 2px;
  letter-spacing: 0.7px;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .topText .enTitle {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .topText .enTitle {
    font-size: 16px;
    letter-spacing: 0.3px;
  }
}
.esgArea .textEditor .bottomText {
  font-size: 16px;
  letter-spacing: 0.9px;
  line-height: 1.65;
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 440px;
}
@media (max-width: 1600px) {
  .esgArea .textEditor .bottomText {
    font-size: 15px;
    letter-spacing: 1.4px;
  }
}
@media (max-width: 1350px) {
  .esgArea .textEditor .bottomText {
    font-size: 14px;
    letter-spacing: 1.2px;
  }
}
.esgArea:not(.show) .Img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.esgArea:not(.show) .topText::before {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.esgArea:not(.show) .topText::after {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.esgArea:not(.show) .topText .deciTitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.esgArea:not(.show) .topText .numberBox {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.esgArea:not(.show) .topText .title {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.esgArea:not(.show) .topText .subtitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.esgArea:not(.show) .topText .enTitle {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.esgArea:not(.show) .bottomText {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.esgArea:not(.show) .btnBox {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.esgArea.show .Img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 4s;
}
.esgArea.show .topText::before {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.6s 1s;
}
.esgArea.show .topText::after {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.4s 1s;
}
.esgArea.show .topText .deciTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s;
}
.esgArea.show .topText .numberBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.2s;
}
.esgArea.show .topText .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.4s;
}
.esgArea.show .topText .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.6s;
}
.esgArea.show .topText .enTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.8s;
}
.esgArea.show .bottomText {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 1.2s;
}
.esgArea.show .btnBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.6s 1.4s;
}

.newsArea {
  padding: 120px 0 135px;
}
@media (max-width: 767px) {
  .newsArea {
    padding: 80px 0;
  }
}
.newsArea .wrap {
  position: relative;
}
.newsArea .wrap .slickBtnBox {
  position: absolute;
  top: -111px;
  right: 7px;
  z-index: 1;
}
@media (max-width: 1600px) {
  .newsArea .wrap .slickBtnBox {
    top: -100px;
  }
}
@media (max-width: 1350px) {
  .newsArea .wrap .slickBtnBox {
    top: -90px;
  }
}
@media (max-width: 1023px) {
  .newsArea .wrap .slickBtnBox {
    position: static;
    margin: 0 0 40px;
  }
}
.newsArea .titleBox {
  text-align: left;
  width: 100%;
  max-width: 610px;
  margin-bottom: 33px;
}
@media (min-width: 1541px) {
  .newsArea .titleBox .subtitle {
    letter-spacing: 1.3px;
  }
}
.newsArea .titleBox .decoTitle {
  padding: 0 0 0 5px;
}
.newsArea .newsBox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 5px 0 0;
}
.newsArea .slick-slide:not(.slick-active) {
  pointer-events: none;
  transition: all 0.3s ease;
}
.newsArea .left {
  width: calc(100% - 560px);
  padding-right: 20px;
}
@media (max-width: 1350px) {
  .newsArea .left {
    width: calc(100% - 450px);
  }
}
@media (max-width: 1023px) {
  .newsArea .left {
    width: 100%;
    padding: 0;
  }
}
.newsArea .right {
  width: 552px;
}
@media (max-width: 1350px) {
  .newsArea .right {
    width: 450px;
  }
}
@media (max-width: 1023px) {
  .newsArea .right {
    display: none;
  }
}
.newsArea .newsList {
  width: 100%;
  max-width: 733px;
  border-top: rgba(48, 48, 48, 0.2) 1px solid;
  padding: 1px 0 0;
}
@media (max-width: 1023px) {
  .newsArea .newsList {
    max-width: unset;
  }
}
.newsArea .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.newsArea .newsItem {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .newsArea .newsItem:hover .btnBox .btn {
    background-color: #007ebe;
    border-color: #007ebe;
    color: #fff;
  }
}
.newsArea .item {
  position: relative;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 175px;
  padding: 37px 0;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: start;
}
@media (max-width: 1600px) {
  .newsArea .item {
    height: 160px;
  }
}
@media (max-width: 1350px) {
  .newsArea .item {
    height: 145px;
    padding: 30px 0;
  }
}
@media (max-width: 1023px) {
  .newsArea .item {
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .newsArea .item {
    padding: 8px 0;
  }
}
.newsArea .newsInfoBox {
  width: 55px;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  padding: 0 5px 0;
  line-height: 1.13;
}
@media (max-width: 1600px) {
  .newsArea .newsInfoBox {
    font-size: 28px;
    width: 50px;
  }
}
@media (max-width: 1350px) {
  .newsArea .newsInfoBox {
    font-size: 24px;
    width: 45px;
  }
}
.newsArea .newsInfoBox .slash {
  width: 27px;
  height: 27px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.newsArea .newsInfoBox .slash::before {
  content: "";
  display: block;
  width: 1px;
  height: 27px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.newsArea .Txt {
  width: calc(100% - 55px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 643px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 1600px) {
  .newsArea .Txt {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1350px) {
  .newsArea .Txt {
    width: calc(100% - 45px);
  }
}
@media (max-width: 1023px) {
  .newsArea .Txt {
    max-width: unset;
  }
}
.newsArea .Txt .textBox {
  width: calc(100% - 65px);
  max-width: 512px;
}
@media (max-width: 1350px) {
  .newsArea .Txt .textBox {
    width: calc(100% - 50px);
    max-width: unset;
  }
}
.newsArea .Txt .btnBox {
  width: 65px;
  margin: 0 0 26px;
}
@media (max-width: 1350px) {
  .newsArea .Txt .btnBox {
    width: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: end;
  }
}
.newsArea .Txt .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.85px;
  margin: 0 0 16px;
}
@media (max-width: 1600px) {
  .newsArea .Txt .title {
    font-size: 18px;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 1350px) {
  .newsArea .Txt .title {
    font-size: 16px;
    letter-spacing: 0.4px;
  }
}
.newsArea .Txt .text {
  font-size: 16px;
  color: #2e2e2e;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 1600px) {
  .newsArea .Txt .text {
    font-size: 15px;
  }
}
@media (max-width: 1350px) {
  .newsArea .Txt .text {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .newsArea .Txt .text {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 480px) {
  .newsArea .Txt .text {
    -webkit-line-clamp: 4;
  }
}
.newsArea .btnBox {
  margin-top: 54px;
}
@media (max-width: 1023px) {
  .newsArea .btnBox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.newsArea .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.newsArea:not(.show) .titleBox .title, .newsArea:not(.show) .titleBox .subtitle, .newsArea:not(.show) .titleBox .decoTitle {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.newsArea:not(.show) .btnBox {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.newsArea:not(.show) .newsBox {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.newsArea.show .titleBox .title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s;
}
.newsArea.show .titleBox .subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.2s;
}
.newsArea.show .titleBox .decoTitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.4s;
}
.newsArea.show .btnBox {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.6s 0.6s;
}
.newsArea.show .newsBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.6s 0.8s;
}