@charset "UTF-8";
.newsArea .newsBox .newsList .item .Img .dateBox, .newsArea .newsBox .newsList .item .Img img, .newsArea .topBox .classBox .classItem .item, .aboutArea .aboutBox .aboutItem .Txt .title, .aboutArea .aboutBox .aboutItem .Img img, .aboutArea .aboutBox .aboutItem .Img, .catalogArea .funcArea .tabItem .dot::before, .catalogArea .item .Img .decoImg img, .highlightArea .item .tagList .tagItem, .highlightArea .item .Txt .videoBtn, .highlightArea .item .Txt .textBox .title, .highlightArea .item .Txt, .highlightArea .item .videoBox, .highlightArea .item .Img img, .bannerArea .socialBox .socialList a, .bannerArea .numBox .numList .numItem::before, .bgArea .ball, .arrowBox .arrow, .popWin .close::before, .popWin .close::after, .popWin .close {
  -webkit-transition: all 0.5s ease-in-out;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.7s;
  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;
  -webkit-transition: all 0.7s;
  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;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  border-radius: 30px;
  overflow: hidden;
}
.popWin .popContent {
  max-height: 88vh;
  overflow-y: auto;
}
.popWin img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.popWin .Txt {
  padding: 30px;
}
.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWin .close {
  width: 46px;
  height: 46px;
  background-color: #e7251a;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  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: 1181px) {
  .popWin .close:hover {
    background-color: #000;
  }
  .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: 1180px) {
  .popWin .popContent {
    max-height: calc(100vh - 150px); /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.titleBox {
  margin: 0;
  text-align: left;
}
.titleBox .title {
  color: #333333;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  display: inline-block;
  border-bottom: #333333 2px solid;
}
@media (max-width: 1440px) {
  .titleBox .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .titleBox .title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .titleBox .title {
    font-size: 32px;
  }
}
.titleBox .subtitle {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  padding-top: 25px;
}
@media (max-width: 1440px) {
  .titleBox .subtitle {
    font-size: 16px;
  }
}

.btnBox {
  margin: 0;
}

.arrowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.arrowBox .arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ececec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.arrowBox .arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fbfc99;
  inset: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.4s cubic-bezier(0.5, 0, 0, 1);
}
.arrowBox .arrow .icon {
  width: 21px;
  height: 8px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 1181px) {
  .arrowBox .arrow:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.arrowBox.white .arrow {
  background-color: #fff;
}

.bgArea {
  width: 100%;
  max-width: 1920px;
  height: 100dvh;
  position: fixed;
  inset: 0;
  margin: auto;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 640px) {
  .bgArea {
    display: none;
  }
}
.bgArea .ball {
  position: absolute;
  width: 50dvh;
  height: 50dvh;
  border-radius: 50%;
  background-color: #76dbb9;
  opacity: 0.8;
  -webkit-filter: blur(150px);
          filter: blur(150px);
}
@media (max-width: 1680px) {
  .bgArea .ball {
    width: 40dvw;
    height: 40dvw;
  }
}
.bgArea .ball:nth-child(1) {
  top: 20dvh;
  bottom: 0;
  left: -25dvw;
  -webkit-animation: ballMoveL 8s ease-in-out infinite;
          animation: ballMoveL 8s ease-in-out infinite;
}
.bgArea .ball:nth-child(2) {
  bottom: 10dvh;
  right: -25dvw;
  background-color: #fbfc99;
  -webkit-animation: ballMoveR 8s ease-in-out infinite;
          animation: ballMoveR 8s ease-in-out infinite;
  opacity: 0.5;
}

.bannerArea {
  background-color: #fff;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .slick-slide {
  opacity: 1 !important;
}
.bannerArea .bannerItem {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}
.bannerArea .bannerItem .ImgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 4px);
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bannerArea .bannerItem .ImgBox .Img {
  width: 50%;
  -webkit-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  overflow: hidden;
  position: relative;
  margin: 0 -1px;
  z-index: 1;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .ImgBox .Img {
    width: 100%;
    height: 650px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .Img {
    height: 325px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .ImgBox .Img {
    height: 650px;
  }
}
.bannerArea .bannerItem .ImgBox .Img.ImgLeft {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .Img.ImgLeft {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
}
.bannerArea .bannerItem .ImgBox .Img.ImgRight {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .Img.ImgRight {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .ImgBox .Img.ImgRight {
    display: none;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .ImgBox .Img.ImgDesktop {
    display: none !important;
  }
}
.bannerArea .bannerItem .ImgBox .Img.ImgMobile {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: none;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .Img.ImgMobile {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .ImgBox .Img.ImgMobile {
    display: block !important;
  }
}
.bannerArea .bannerItem .ImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media (max-width: 1536px) {
  .bannerArea .bannerItem .ImgBox .Img img {
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .ImgBox .Img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bannerArea .bannerItem .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 120px 20px 200px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1800px) {
  .bannerArea .bannerItem .Txt {
    padding: 100px 20px 150px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    padding: 60px 20px 150px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  text-align: center;
  color: white;
}
.bannerArea .bannerItem .Txt .decotitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
  opacity: 0;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .decotitle {
    font-size: 16px;
  }
}
.bannerArea .bannerItem .Txt .title {
  opacity: 0;
  padding: 20px 0;
  font-size: 75px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.35;
}
@media (max-width: 1800px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 70px;
  }
}
@media (max-width: 1680px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: 32px;
  }
}
.bannerArea .bannerItem .Txt .title .textBg {
  background-color: rgba(var(--data-color), 0.6);
  position: relative;
  display: inline-block;
  line-height: 1.3;
  padding: 0 10px;
}
.bannerArea .bannerItem .Txt .title .textBg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--data-color), 0.6);
  top: calc(100% + 5px);
  left: 0;
  right: 0;
}
.bannerArea .bannerItem .Txt .btnBox {
  margin-top: 20px;
  opacity: 0;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 10px;
  }
}
.bannerArea .bannerItem .Txt .btnBox .homeStyle {
  padding: 18px 35px;
}
.bannerArea .item.current .ImgBox .Img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 1s cubic-bezier(0.5, 0, 0, 1);
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.bannerArea .item.current .ImgBox .Img.ImgLeft, .bannerArea .item.current .ImgBox .Img.ImgRight, .bannerArea .item.current .ImgBox .Img.ImgMobile {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1180px) {
  .bannerArea .item.current .ImgBox .Img.ImgLeft, .bannerArea .item.current .ImgBox .Img.ImgRight, .bannerArea .item.current .ImgBox .Img.ImgMobile {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.bannerArea .item.current .ImgBox .Img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 1s cubic-bezier(0.5, 0, 0, 1);
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.bannerArea .item.current .Txt .decotitle {
  -webkit-animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .item.current .Txt .title {
  -webkit-animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .item.current .Txt .btnBox {
  -webkit-animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
          animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .numBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1870px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  pointer-events: none;
  z-index: 3;
  margin: 0 auto;
  padding: 40px 50px;
}
@media (max-width: 768px) {
  .bannerArea .numBox {
    display: none;
  }
}
.bannerArea .numBox .numList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.bannerArea .numBox .numList .numItem {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  color: #fff;
}
.bannerArea .numBox .numList .numItem::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  inset: 0;
  margin: auto;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.bannerArea .numBox .numList .numItem .num {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.bannerArea .numBox .numList .numItem .circle {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .numBox .numList .numItem .circle .circle_path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.bannerArea .numBox .numList .numItem.current::before {
  opacity: 1;
}
.bannerArea .numBox .numList .numItem.current .circle_path {
  -webkit-animation: bannerNumCircle 15s forwards;
          animation: bannerNumCircle 15s forwards;
}
@media (min-width: 1181px) {
  .bannerArea .numBox .numList .numItem:hover::before {
    opacity: 1;
  }
}
.bannerArea .arrowBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1870px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
  padding-top: 90px;
}
@media (max-width: 768px) {
  .bannerArea .arrowBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding-top: 0;
    margin-bottom: 50px;
  }
}
.bannerArea .arrowBox .arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
  cursor: pointer;
}
.bannerArea .arrowBox .arrow .icon {
  width: 21px;
  height: 8px;
  margin: auto;
}
.bannerArea .socialBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  max-width: 1870px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 3;
  margin: 0 auto;
  padding: 0 50px;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .bannerArea .socialBox {
    display: none;
  }
}
.bannerArea .socialBox .title {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.75px;
  line-height: 1.2;
  border-bottom: 1px solid #fff;
}
.bannerArea .socialBox .socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.bannerArea .socialBox .socialList a {
  pointer-events: auto;
  padding: 10px;
  color: #fff;
  display: block;
}
.bannerArea .socialBox .socialList a svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1181px) {
  .bannerArea .socialBox .socialList a:hover {
    color: #fbfc99;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 115px;
  height: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1800px) {
  .bannerArea .scrollDown {
    bottom: 50px;
  }
}
@media (max-width: 1680px) {
  .bannerArea .scrollDown {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .bannerArea .scrollDown {
    bottom: 15%;
    left: auto;
    right: 30px;
    -webkit-transform: none;
            transform: none;
  }
}
.bannerArea .scrollDown .btn {
  position: relative;
  width: 100%;
  height: 100%;
}
.bannerArea .scrollDown svg {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotate360 10s linear infinite;
          animation: rotate360 10s linear infinite;
}
.bannerArea .scrollDown svg text {
  font-size: 14px;
  fill: #fff;
  letter-spacing: 1.5px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.bannerArea .scrollDown .icon {
  width: 20px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.highlightArea {
  padding: 140px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .highlightArea {
    padding: 80px 0 50px;
  }
}
.highlightArea .highlightBgArea {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.highlightArea .highlightBgArea img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  opacity: 0.3;
}
@media (max-width: 900px) {
  .highlightArea .highlightBgArea img {
    height: 100px;
    -o-object-position: right;
       object-position: right;
  }
}
@media (max-width: 700px) {
  .highlightArea .wrap {
    padding: 0;
  }
}
.highlightArea .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 20px 40px;
}
@media (max-width: 768px) {
  .highlightArea .topBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 0;
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .highlightArea .topBox {
    padding: 0 20px;
  }
}
.highlightArea .rightBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .highlightArea .rightBox {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .highlightArea .rightBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.highlightArea .dataBox {
  max-height: 470px;
  width: 100%;
  margin: 0 -20px;
}
@media (max-width: 1180px) {
  .highlightArea .dataBox {
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .highlightArea .dataBox {
    padding-left: 20px;
    margin: 0;
  }
}
@media (max-width: 460px) {
  .highlightArea .dataBox {
    padding: 0 20px;
  }
}
.highlightArea .dataList .slick-list {
  overflow: visible;
}
@media (max-width: 768px) {
  .highlightArea .dataList .slick-list {
    overflow: hidden;
  }
}
.highlightArea .dataItem {
  padding: 0 20px;
}
@media (max-width: 1440px) {
  .highlightArea .dataItem {
    padding: 0 10px;
  }
}
.highlightArea .dataItem.current .Img img {
  aspect-ratio: 41/50;
}
@media (max-width: 768px) {
  .highlightArea .dataItem.current .Img img {
    aspect-ratio: 50/47;
  }
}
.highlightArea .dataItem.current .videoBox {
  aspect-ratio: 41/50;
}
@media (max-width: 768px) {
  .highlightArea .dataItem.current .videoBox {
    aspect-ratio: 50/47;
  }
}
.highlightArea .dataItem.current .Txt {
  aspect-ratio: 41/50;
}
@media (max-width: 768px) {
  .highlightArea .dataItem.current .Txt {
    aspect-ratio: 50/47;
  }
}
.highlightArea .dataItem.current .Txt .videoBtn {
  opacity: 1;
}
.highlightArea .item {
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 41/50;
  height: auto;
}
@media (min-width: 1181px) {
  .highlightArea .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .highlightArea .item:hover .Txt .textBox .title {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  }
  .highlightArea .item:hover .Txt .videoBtn {
    opacity: 1;
  }
  .highlightArea .item:hover .tagItem {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
.highlightArea .item .Img {
  width: auto;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.highlightArea .item .Img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
  z-index: 1;
}
.highlightArea .item .Img img {
  aspect-ratio: 50/47;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.highlightArea .item .videoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  aspect-ratio: 50/47;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  pointer-events: auto;
}
.highlightArea .item .videoBox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
.highlightArea .item .videoBox video {
  height: 100%;
}
.highlightArea .item .Txt {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 45px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  aspect-ratio: 50/47;
  height: auto;
}
@media (max-width: 1440px) {
  .highlightArea .item .Txt {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .highlightArea .item .Txt {
    padding: 20px;
  }
}
.highlightArea .item .Txt .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.highlightArea .item .Txt .textBox .title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 1.2;
}
.highlightArea .item .Txt .textBox .text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
  height: 50px;
}
.highlightArea .item .Txt .videoBtn {
  position: absolute;
  top: 25px;
  right: 25px;
  opacity: 0;
}
@media (max-width: 1180px) {
  .highlightArea .item .Txt .videoBtn {
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .highlightArea .item .Txt .videoBtn {
    top: 15px;
    right: 15px;
  }
}
.highlightArea .item .Txt .videoBtn .btn {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.highlightArea .item .Txt .videoBtn .btn::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #333333;
}
.highlightArea .item .tagList {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin: 0 -10px;
}
.highlightArea .item .tagList .tagItem {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 1.5;
}
@media (max-width: 1440px) {
  .highlightArea .item .tagList .tagItem {
    font-size: 12px;
    padding: 4px 8px;
  }
}

.catalogArea {
  padding: 30px 0 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .catalogArea {
    padding-top: 0;
  }
}
.catalogArea .catalogBgArea {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  bottom: 60%;
  pointer-events: none;
}
@media (max-width: 900px) {
  .catalogArea .catalogBgArea {
    bottom: auto;
    top: 40%;
  }
}
.catalogArea .catalogBgArea img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media (max-width: 900px) {
  .catalogArea .catalogBgArea img {
    height: 300px;
    -o-object-position: right;
       object-position: right;
  }
}
.catalogArea .wrap {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto 0 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
@media (max-width: 1180px) {
  .catalogArea .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .catalogArea .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1180px) {
  .catalogArea .wrap {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .catalogArea .catalogBox {
    padding-bottom: 80px;
  }
}
.catalogArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .catalogArea .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.catalogArea .item .Img {
  position: relative;
  width: 53.5%;
  padding-right: 55px;
}
@media (max-width: 1180px) {
  .catalogArea .item .Img {
    width: 45%;
    padding-right: 30px;
  }
}
@media (max-width: 900px) {
  .catalogArea .item .Img {
    width: calc(100% - 60px);
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .catalogArea .item .Img {
    width: calc(100% - 10px);
  }
}
.catalogArea .item .Img .dataImg {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.catalogArea .item .Img .decoImg {
  position: absolute;
  right: 0px;
  top: 15%;
  width: 140px;
  z-index: 2;
}
@media (max-width: 1180px) {
  .catalogArea .item .Img .decoImg {
    width: 80px;
  }
}
.catalogArea .item .Img .decoImg img {
  max-width: 960px;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: rotate360 10s linear infinite;
          animation: rotate360 10s linear infinite;
}
.catalogArea .item .Txt {
  width: 46.5%;
  max-width: 720px;
  margin: 0 auto;
  padding: 30px;
  padding-right: 110px;
}
@media (max-width: 1180px) {
  .catalogArea .item .Txt {
    width: 55%;
  }
}
@media (max-width: 900px) {
  .catalogArea .item .Txt {
    width: 100%;
    max-width: none;
    padding: 0;
    padding: 0 30px;
    margin-top: 80px;
  }
}
.catalogArea .item .Txt .decoTitle {
  letter-spacing: 0.75px;
}
.catalogArea .item .Txt .title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  line-height: 1.3;
  padding-bottom: 15px;
  margin: 30px 0 30px;
}
@media (max-width: 1440px) {
  .catalogArea .item .Txt .title {
    font-size: 40px;
  }
}
@media (max-width: 1280px) {
  .catalogArea .item .Txt .title {
    font-size: 32px;
  }
}
.catalogArea .item .Txt .title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 15px);
  background-color: var(--catalog-data-color);
  top: 0;
  left: 0;
  z-index: -1;
}
.catalogArea .item .Txt .title::before {
  content: "";
  position: absolute;
  background-color: var(--catalog-data-color);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.catalogArea .item .Txt .textEditor {
  width: 100%;
  max-width: 500px;
  letter-spacing: 0.75px;
  line-height: 1.95;
  height: 250px;
}
.catalogArea .item .Txt .btnBox {
  margin-top: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.catalogArea .funcArea {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  pointer-events: none;
}
@media (max-width: 900px) {
  .catalogArea .funcArea {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.catalogArea .funcArea .funcBox {
  width: 48.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 1180px) {
  .catalogArea .funcArea .funcBox {
    width: 55%;
  }
}
@media (max-width: 900px) {
  .catalogArea .funcArea .funcBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .catalogArea .funcArea .funcBox::before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 85.7142857143%; /* 30÷32×100% = 93.75% */
    pointer-events: none;
  }
}
@media (max-width: 900px) and (max-width: 768px) {
  .catalogArea .funcArea .funcBox::before {
    padding-top: 92.3076923077%;
  }
}
.catalogArea .funcArea .tabBox {
  margin: auto 0 auto auto;
  padding: 0 50px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  height: 100%;
  max-height: 500px;
}
@media (max-width: 900px) {
  .catalogArea .funcArea .tabBox {
    width: 100%;
    margin: 0;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 30px;
  }
}
.catalogArea .funcArea .tabBox .title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #bdbdbd;
  font-size: 14px;
}
@media (max-width: 900px) {
  .catalogArea .funcArea .tabBox .title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.catalogArea .funcArea .tabBox .line {
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
}
@media (max-width: 900px) {
  .catalogArea .funcArea .tabBox .line {
    width: 100%;
    max-width: 200px;
    height: 1px;
  }
}
.catalogArea .funcArea .tabList {
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (max-width: 900px) {
  .catalogArea .funcArea .tabList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.catalogArea .funcArea .tabItem {
  position: relative;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.catalogArea .funcArea .tabItem.current .dot::before {
  -webkit-animation: catalogTabDot 1.25s infinite;
          animation: catalogTabDot 1.25s infinite;
}
@media (min-width: 1181px) {
  .catalogArea .funcArea .tabItem:hover .dot::before {
    -webkit-animation: catalogTabDot 1.25s infinite;
            animation: catalogTabDot 1.25s infinite;
  }
}
.catalogArea .funcArea .tabItem .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--catalog-data-color);
}
.catalogArea .funcArea .tabItem .dot::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--catalog-data-color);
  inset: 0;
  opacity: 0;
}
.catalogArea .funcArea .arrowArea {
  position: absolute;
  width: 100%;
  max-width: 720px;
  padding: 40px 30px;
  height: 100%;
  max-height: 610px;
  inset: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  pointer-events: none;
}
@media (max-width: 900px) {
  .catalogArea .funcArea .arrowArea {
    padding: 0;
    position: static;
  }
}
.catalogArea .funcArea .arrowArea .arrowBox {
  pointer-events: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 260px;
}
@media (max-width: 480px) {
  .catalogArea .funcArea .arrowArea .arrowBox {
    margin-left: 30px;
  }
}

.aboutArea {
  overflow: hidden;
  position: relative;
  padding: 120px 0 180px;
}
@media (max-width: 640px) {
  .aboutArea {
    padding: 80px 0 100px;
  }
}
.aboutArea .aboutBgArea {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 1920px;
}
.aboutArea .aboutBgArea::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  inset: 0;
}
.aboutArea .aboutBgArea .Img {
  height: 100%;
  width: auto;
}
.aboutArea .aboutBgArea .Img img {
  height: 100%;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .aboutBgArea .videoBox {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.aboutArea .aboutBgArea .videoBox video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .wrap {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 900px) {
  .aboutArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.aboutArea .leftBox {
  width: calc(100% - 300px);
  padding: 30px 5px;
}
@media (max-width: 900px) {
  .aboutArea .leftBox {
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
  }
}
.aboutArea .leftBox .decoTitle {
  letter-spacing: 0.75px;
  color: #fff;
}
.aboutArea .leftBox .title {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  line-height: 1.3;
  padding-bottom: 15px;
  margin: 40px 0;
}
@media (max-width: 1440px) {
  .aboutArea .leftBox .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .aboutArea .leftBox .title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .aboutArea .leftBox .title {
    font-size: 32px;
  }
}
.aboutArea .leftBox .title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 15px);
  background-color: rgba(215, 255, 182, 0.5);
  top: 0;
  left: 0;
  z-index: -1;
}
.aboutArea .leftBox .title::before {
  content: "";
  position: absolute;
  background-color: #d7ffb6;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.aboutArea .leftBox .textEditor {
  color: #fff;
  width: 100%;
  max-width: 600px;
  letter-spacing: 1px;
  line-height: 1.95;
}
.aboutArea .leftBox .btnBox {
  margin-top: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.aboutArea .aboutBox {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}
.aboutArea .aboutBox .aboutTitle {
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 30px;
}
.aboutArea .aboutBox .aboutList {
  padding: 10px 0;
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutList {
    display: block;
  }
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem {
    width: 33.3333333333%;
    max-width: 150px;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem {
    width: 100%;
    max-width: none;
  }
}
.aboutArea .aboutBox .aboutItem:not(:last-child) {
  padding-bottom: 80px;
}
@media (max-width: 1180px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) {
    padding-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) {
    padding-bottom: 0;
    padding-right: 40px;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) {
    padding-bottom: 40px;
  }
}
.aboutArea .aboutBox .aboutItem:not(:last-child) .imgBox::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  border-left: 1px dashed #fff;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) .imgBox::after {
    height: 1px;
    width: 100%;
    top: 50%;
    left: 100%;
    border-top: 1px dashed #fff;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) .imgBox::after {
    height: 100%;
    width: 1px;
    top: 100%;
    left: 50%;
    border-left: 1px dashed #fff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 901px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) .imgBox.show::after {
    -webkit-animation: aboutFeature-vertical 0.7s ease-in-out forwards;
            animation: aboutFeature-vertical 0.7s ease-in-out forwards;
  }
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) .imgBox.show::after {
    -webkit-animation: aboutFeature-horizontal 0.7s ease-in-out forwards;
            animation: aboutFeature-horizontal 0.7s ease-in-out forwards;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem:not(:last-child) .imgBox.show::after {
    -webkit-animation: aboutFeature-vertical 0.7s ease-in-out forwards;
            animation: aboutFeature-vertical 0.7s ease-in-out forwards;
  }
}
.aboutArea .aboutBox .aboutItem .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1181px) {
  .aboutArea .aboutBox .aboutItem .item:hover .Img {
    background-color: #fbfc99;
    -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
  .aboutArea .aboutBox .aboutItem .item:hover .Img img {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .aboutArea .aboutBox .aboutItem .item:hover .Txt .title {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem .numBox {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem .numBox {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.aboutArea .aboutBox .aboutItem .num {
  font-size: 14px;
  padding: 10px;
}
.aboutArea .aboutBox .aboutItem .imgBox {
  position: relative;
}
.aboutArea .aboutBox .aboutItem .Img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 50%;
  padding: 23px;
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .aboutItem .Img {
    width: 78px;
    height: 78px;
  }
}
.aboutArea .aboutBox .aboutItem .Img::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid #c9c9c9;
  inset: 0;
  margin: auto;
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .aboutItem .Img::before {
    width: 68px;
    height: 68px;
  }
}
.aboutArea .aboutBox .aboutItem .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.aboutArea .aboutBox .aboutItem .Txt {
  padding-left: 15px;
}
@media (max-width: 900px) {
  .aboutArea .aboutBox .aboutItem .Txt {
    padding-left: 0;
    text-align: center;
    padding-top: 15px;
  }
}
@media (max-width: 500px) {
  .aboutArea .aboutBox .aboutItem .Txt {
    padding-left: 15px;
    text-align: left;
    padding-top: 0;
  }
}
.aboutArea .aboutBox .aboutItem .Txt .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .aboutArea .aboutBox .aboutItem .Txt .title {
    font-size: 16px;
  }
}

.newsArea {
  padding: 120px 0 70px;
}
.newsArea .wrap {
  max-width: 1455px;
  position: relative;
}
.newsArea .topBox {
  position: absolute;
  width: 100%;
  max-width: 530px;
  padding: 0 50px;
  top: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 1280px) {
  .newsArea .topBox {
    max-width: 500px;
  }
}
@media (max-width: 1180px) {
  .newsArea .topBox {
    position: static;
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 840px) {
  .newsArea .topBox {
    padding: 0;
  }
}
.newsArea .topBox .classBox {
  padding-top: 40px;
  padding-right: 20px;
  margin: 0 -5px;
  position: relative;
  z-index: 2;
  pointer-events: auto !important;
}
@media (max-width: 1180px) {
  .newsArea .topBox .classBox {
    width: 100%;
    max-width: 400px;
    padding-right: 0;
    pointer-events: auto !important;
  }
}
.newsArea .topBox .classBox .classItem {
  padding: 0 10px;
}
@media (max-width: 1180px) {
  .newsArea .topBox .classBox .classItem {
    padding: 5px 10px;
  }
}
.newsArea .topBox .classBox .classItem .item {
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px dashed #c9c9c9;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}
.newsArea .topBox .classBox .classItem.current .item {
  background-color: #fbfc99;
  border-color: transparent;
}
@media (min-width: 1181px) {
  .newsArea .topBox .classBox .classItem:hover .item {
    background-color: #fbfc99;
    border-color: transparent;
  }
}
.newsArea .newsBox {
  position: relative;
  padding-top: 90px;
  padding-bottom: 30px;
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1350px) {
  .newsArea .newsBox {
    padding-right: 50px;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsBox {
    padding-top: 50px;
    padding-right: 0;
  }
}
.newsArea .newsBox.hide {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 841px) {
  .newsArea .newsBox.hide .newsList .newsItem:nth-child(1) {
    clip-path: inset(0 100% 0 0);
  }
  .newsArea .newsBox.hide .newsList .newsItem:nth-child(2) {
    clip-path: inset(0 0 100% 0);
  }
  .newsArea .newsBox.hide .newsList .newsItem:nth-child(3) {
    clip-path: inset(100% 0 0 0);
  }
  .newsArea .newsBox.hide .newsList .newsItem:nth-child(4) {
    clip-path: inset(0 0 0 100%);
  }
}
.newsArea .newsBox .newsList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 55px 1fr 55px 1.5fr;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  -ms-grid-rows: auto 35px auto;
  grid-template-rows: auto auto;
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
  row-gap: 35px;
}
.newsArea .newsBox .newsList > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.newsArea .newsBox .newsList > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.newsArea .newsBox .newsList > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.newsArea .newsBox .newsList > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.newsArea .newsBox .newsList > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.newsArea .newsBox .newsList > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList {
    gap: 20px;
  }
}
@media (max-width: 840px) {
  .newsArea .newsBox .newsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.newsArea .newsBox .newsList .newsItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (min-width: 841px) {
  .newsArea .newsBox .newsList .newsItem {
    clip-path: inset(0 0 0 0);
  }
  .newsArea .newsBox .newsList .newsItem:nth-child(1) {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
    padding-top: 190px;
  }
  .newsArea .newsBox .newsList .newsItem:nth-child(2) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .newsArea .newsBox .newsList .newsItem:nth-child(3) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .newsArea .newsBox .newsList .newsItem:nth-child(4) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
  }
}
@media (max-width: 840px) {
  .newsArea .newsBox .newsList .newsItem {
    width: calc(50% - 10px);
  }
}
@media (max-width: 640px) {
  .newsArea .newsBox .newsList .newsItem {
    width: 100%;
  }
}
.newsArea .newsBox .newsList .item {
  max-width: 470px;
}
@media (min-width: 1181px) {
  .newsArea .newsBox .newsList .item:hover .Img img {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
  .newsArea .newsBox .newsList .item:hover .Img .dateBox {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.newsArea .newsBox .newsList .item .Img {
  position: relative;
}
.newsArea .newsBox .newsList .item .Img img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsArea .newsBox .newsList .item .Img .dateBox {
  position: absolute;
  bottom: -25px;
  right: 20px;
  z-index: 2;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 10px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.newsArea .newsBox .newsList .item .Img .dateBox .year {
  font-size: 14px;
  color: #aaaaaa;
}
.newsArea .newsBox .newsList .item .Img .dateBox .month {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 13px;
  position: relative;
}
.newsArea .newsBox .newsList .item .Img .dateBox .month::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ffb1a2;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.newsArea .newsBox .newsList .item .Img .dateBox .date {
  font-size: 18px;
  font-weight: 700;
}
.newsArea .newsBox .newsList .item .Txt {
  padding: 25px;
}
.newsArea .newsBox .newsList .item .Txt .classBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #333333;
}
@media (max-width: 1180px) {
  .newsArea .newsBox .newsList .item .Txt .classBox {
    margin: 0;
  }
}
.newsArea .newsBox .newsList .item .Txt .classBox .title {
  padding-right: 20px;
}
.newsArea .newsBox .newsList .item .Txt .classBox .classTitle {
  padding: 0 20px;
  position: relative;
}
.newsArea .newsBox .newsList .item .Txt .classBox .classTitle::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: #c9c9c9;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.newsArea .newsBox .newsList .item .Txt .textBox .title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsArea .newsBox .newsList .item .Txt .textBox .text {
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsArea .newsBox .btnBox {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 170px;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  pointer-events: none;
}
@media (max-width: 840px) {
  .newsArea .newsBox .btnBox {
    position: static;
  }
}
@media (max-width: 640px) {
  .newsArea .newsBox .btnBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
  }
}
.newsArea .newsBox .btnBox .homeStyle {
  background-color: #ffd4aa;
  pointer-events: auto;
}
.newsArea .slick-slider .slick-dots li.slick-active button::before,
.newsArea .controlBox .slick-dots li.slick-active button::before {
  background-color: #fbfc99;
  opacity: 1;
}
@media (min-width: 1181px) {
  .newsArea .slick-slider .slick-dots li:hover button::before,
  .newsArea .controlBox .slick-dots li:hover button::before {
    background-color: #fbfc99;
    opacity: 1;
  }
}