@charset "UTF-8";
.newsArea .dotsBox .newsDot, .newsArea .textBox .title::after, .newsArea .textBox .title, .newsArea .newsItem::before, .reviewsArea .reviewsList .top .iconBox, .reviewsArea .reviewsList .item::after, .newsTeamsArea .midBox .left .newsTeamsTitleItem .title, .newsTeamsArea .midBox .left .newsTeamsTitleItem::after, .linkArea .linkBox .leftBox .linkItem .Txt .info, .linkArea .linkBox .leftBox .linkItem .Txt, .linkArea .linkBox .leftBox .linkItem .Img img, .bannerArea .bannerControl .bannerdots li button, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  header {
    top: 30px;
  }
}

.titleBox {
  position: relative;
  text-align: center;
}
.titleBox.textLeft {
  text-align: left;
}
.titleBox .title {
  color: #0082A3;
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 300;
  line-height: 1;
}
.titleBox .subtitle {
  color: #6e6e6e;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 400;
  line-height: 1;
}
.titleBox .decoTitle {
  color: #000f0f;
  font-size: clamp(18px, 1.36vw, 26px);
  font-weight: 500;
  line-height: 1;
}
.titleBox .text {
  color: #6e6e6e;
  font-size: clamp(14px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1;
}

.outerWrap {
  padding-top: 0;
}

.popWindowArea {
  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;
}
.popWindowArea .popWindowMask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWindowArea .popWindowBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  width: 800px;
  max-width: clamp(300px, 42vw, 800px);
  height: auto;
  max-height: 85vh;
  opacity: 0;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.7s;
}
@media (max-width: 1180px) {
  .popWindowArea .popWindowBox {
    max-width: clamp(300px, 55vw, 650px);
  }
}
@media (max-width: 768px) {
  .popWindowArea .popWindowBox {
    max-width: clamp(300px, 95vw, 600px);
  }
}
.popWindowArea .popWindowContent {
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}
.popWindowArea img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWindowArea .Txt {
  padding: 30px;
}
.popWindowArea .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background-color: #0082A3;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.popWindowArea .close::before, .popWindowArea .close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.popWindowArea .close::before {
  transform: rotate(45deg);
}
.popWindowArea .close::after {
  transform: rotate(-45deg);
}
@media (min-width: 1181px) {
  .popWindowArea .close:hover {
    background-color: #0082A3;
  }
  .popWindowArea .close:hover::before {
    transform: rotate(-30deg);
  }
  .popWindowArea .close:hover::after {
    transform: rotate(30deg);
  }
}
.popWindowArea.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWindowArea.show .popWindowMask,
.popWindowArea.show .popWindowBox {
  opacity: 1;
}
.popWindowArea.show .popWindowBox {
  transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .popWindowArea .popWindowContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}
.mainArea::after {
  content: "";
  position: absolute;
  position: absolute;
  bottom: -30.2vw;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  width: 100%;
  max-width: 1484px;
  height: auto;
  aspect-ratio: 1484/1473;
  border-radius: 1484px;
  background: #e1f4f7;
  filter: blur(150px);
  z-index: -1;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
@keyframes bannerZoomIn {
  from {
    scale: 1.05;
  }
  to {
    scale: 1;
  }
}
.bannerArea .bannerItem .Img {
  position: relative;
}
.bannerArea .bannerItem .Img img {
  opacity: 0;
  scale: 1.05;
}
.bannerArea .bannerItem .Img .bannerLink {
  position: absolute;
  inset: 0;
}
.bannerArea .bannerItem .Txt {
  pointer-events: none;
  max-width: 1590px;
  padding: 130px 50px 120px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 80px 50px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    padding: 70px 30px 20px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    justify-content: space-between;
    padding: 70px 20px 30px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  display: flex;
  flex-direction: column;
  width: 33.3%;
  max-width: 495px;
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt .textBox {
    width: 35%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .textBox {
    width: 100%;
    max-width: 100%;
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #0082a3;
  font-size: clamp(50px, 3.65vw, 70px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.2px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: clamp(36px, 2.65vw, 50px);
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #222222;
  display: block;
  font-size: clamp(25px, 1.83vw, 35px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 60px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1680px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-top: 40px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-top: 20px;
  }
}
.bannerArea .bannerItem .Txt .text {
  color: #6e6e6e;
  display: block;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.3px;
  margin-top: 15px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bannerArea .bannerItem .Txt .btnBox {
  margin-top: 58px;
  opacity: 0;
}
@media (max-width: 1680px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 40px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: auto;
  }
}
.bannerArea .bannerItem .Txt .btnBox .btn {
  pointer-events: none;
}
.bannerArea .slick-current .Img img {
  opacity: 1;
  animation: bannerZoomIn 2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .title {
  animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .subtitle {
  animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .btnBox {
  animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .videoBtn::after {
  animation: rotate 50s linear forwards;
}
.bannerArea .slick-arrow {
  top: 80%;
  left: auto;
}
.bannerArea .slick-arrow.slick-prev {
  right: 110px;
}
.bannerArea .slick-arrow.slick-next {
  right: 50px;
}
.bannerArea .socialBox {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 2;
  transform: translateY(-50%);
}
.bannerArea .socialBox .socialList {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.bannerArea .socialBox .socialList li {
  margin: 7.5px 0;
}
.bannerArea .socialBox .socialList li:first-child {
  margin-top: 0;
}
.bannerArea .socialBox .socialList li:last-child {
  margin-bottom: 0;
}
.bannerArea .socialBox .socialList li a {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
}
.bannerArea .socialBox .socialList li a svg {
  width: 20px;
  height: 18px;
  display: inline-block;
  fill: #fff;
  margin-top: -2px;
  vertical-align: middle;
}
@media (min-width: 1181px) {
  .bannerArea .socialBox .socialList li a:hover {
    color: #0082A3;
  }
  .bannerArea .socialBox .socialList li a:hover svg {
    fill: #0082A3;
  }
}
.bannerArea .bannerControl {
  pointer-events: none;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 6.5vw;
  z-index: 1;
}
@media (max-width: 1680px) {
  .bannerArea .bannerControl {
    bottom: 4vw;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerControl {
    bottom: 2vw;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerControl {
    bottom: 10px;
  }
}
.bannerArea .bannerControl .controlWrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1590px;
  padding: 0px 50px;
  margin: 0 auto;
}
@media (max-width: 1180px) {
  .bannerArea .bannerControl .controlWrap {
    justify-content: center;
  }
}
.bannerArea .bannerControl .numberBox {
  display: flex;
  align-items: flex-end;
  color: #afafaf;
  font-size: 25px;
  font-weight: 300;
  margin-right: 25px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerControl .numberBox {
    display: none;
  }
}
.bannerArea .bannerControl .numberBox .current {
  color: #0082a3;
  font-size: 42px;
  line-height: 42px;
  margin-right: 12px;
}
.bannerArea .bannerControl .numberBox .line {
  font-size: 28px;
  line-height: 42px;
  transform: translateY(5px);
  margin-right: 8px;
}
.bannerArea .bannerControl .numberBox .total {
  transform: translateY(5px);
}
.bannerArea .bannerControl .bannerdots {
  pointer-events: auto;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: 8px;
}
.bannerArea .bannerControl .bannerdots li {
  margin: 0 8px;
}
.bannerArea .bannerControl .bannerdots li button {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #afafaf;
  border: none;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}
.bannerArea .bannerControl .bannerdots li.slick-active button {
  background: #0099b3;
}

.linkArea {
  padding: 120px 0 60px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .linkArea {
    padding: 80px 0;
  }
}
@media (max-width: 1180px) {
  .linkArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .linkArea {
    padding: 40px 0;
  }
}
.linkArea .wrap {
  display: flex;
  flex-direction: column;
  max-width: 1210px;
}
.linkArea .titleBox {
  margin-bottom: 47px;
}
@media (max-width: 1180px) {
  .linkArea .titleBox {
    margin-bottom: 30px;
  }
}
.linkArea .titleBox .topBox {
  display: flex;
  justify-content: space-between;
  padding-bottom: 45px;
  margin-bottom: 47px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1180px) {
  .linkArea .titleBox .topBox {
    justify-content: space-evenly;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .linkArea .titleBox .topBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .linkArea .titleBox .topBox {
    display: flex;
    flex-direction: column;
  }
}
.linkArea .titleBox .topBox .left {
  text-align: left;
}
@media (max-width: 768px) {
  .linkArea .titleBox .topBox .left {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.linkArea .titleBox .topBox .left .subtitle {
  margin-top: 15px;
}
@media (max-width: 1180px) {
  .linkArea .titleBox .topBox .left .subtitle {
    margin-top: 10px;
  }
}
.linkArea .titleBox .topBox .mid {
  flex: 1;
  padding-left: 4.8vw;
  padding-right: 30px;
}
@media (max-width: 1180px) {
  .linkArea .titleBox .topBox .mid {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .linkArea .titleBox .topBox .mid {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    padding-left: 20px;
    padding-right: 0px;
  }
}
@media (max-width: 480px) {
  .linkArea .titleBox .topBox .mid {
    margin-top: 20px;
    padding-left: 0px;
  }
}
.linkArea .titleBox .topBox .mid .decoTitle {
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.2px;
  padding-bottom: 0px;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .linkArea .titleBox .topBox .right {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 768px) {
  .linkArea .titleBox .topBox .right .btnBox {
    display: flex;
    justify-content: left;
  }
}
.linkArea .titleBox .bottomBox {
  position: relative;
  display: flex;
  justify-items: flex-start;
}
.linkArea .titleBox .bottomBox .text {
  position: relative;
  display: inline-flex;
  padding-left: 17px;
  text-align: left;
  color: #222222;
  font-size: clamp(20px, 1.46vw, 28px);
  font-weight: 500;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.4px;
  line-height: 1.25;
  padding-top: 0;
}
.linkArea .titleBox .bottomBox .text::before {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  left: 0;
  width: 3px;
  height: clamp(22px, 1.56vw, 30px);
  background-color: #0082a3;
}
.linkArea .linkBox {
  position: relative;
  display: flex;
  align-items: stretch;
}
@media (max-width: 960px) {
  .linkArea .linkBox.popup-open .leftBox::after {
    opacity: 1;
  }
}
.linkArea .linkBox .leftBox {
  position: relative;
  width: 50.9%;
  height: auto;
  aspect-ratio: 565/586;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid #e6e6e6;
}
@media (max-width: 960px) {
  .linkArea .linkBox .leftBox {
    width: 100%;
    padding-right: 0px;
    border-right: none;
    aspect-ratio: auto;
  }
}
.linkArea .linkBox .leftBox::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.linkArea .linkBox .leftBox .linkGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 23px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1180px) {
  .linkArea .linkBox .leftBox .linkGrid {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .linkArea .linkBox .leftBox .linkGrid {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .linkArea .linkBox .leftBox .linkGrid {
    gap: 5px;
  }
}
.linkArea .linkBox .leftBox .linkItem {
  position: relative;
  z-index: 2;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 1181px) {
  .linkArea .linkBox .leftBox .linkItem:hover .Txt {
    background: rgba(0, 153, 179, 0.6);
  }
  .linkArea .linkBox .leftBox .linkItem:hover .Txt .info {
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.linkArea .linkBox .leftBox .linkItem.is-active .Txt {
  background: rgba(0, 153, 179, 0.6);
}
.linkArea .linkBox .leftBox .linkItem.is-active .Txt .info {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.linkArea .linkBox .leftBox .linkItem .Img {
  width: 100%;
  overflow: hidden;
}
.linkArea .linkBox .leftBox .linkItem .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.linkArea .linkBox .leftBox .linkItem .Txt {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
}
@media (max-width: 768px) {
  .linkArea .linkBox .leftBox .linkItem .Txt {
    padding: 5px;
  }
}
.linkArea .linkBox .leftBox .linkItem .Txt .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0);
  gap: 15px;
}
@media (max-width: 480px) {
  .linkArea .linkBox .leftBox .linkItem .Txt .info {
    gap: 10px;
  }
}
.linkArea .linkBox .leftBox .linkItem .Txt .info .num {
  color: #fff;
  font-size: clamp(24px, 1.5vw, 30px);
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .linkArea .linkBox .leftBox .linkItem .Txt .info .num {
    line-height: 1;
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .linkArea .linkBox .leftBox .linkItem .Txt .info .num {
    margin-bottom: 0px;
  }
}
.linkArea .linkBox .leftBox .linkItem .Txt .info .num span {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}
.linkArea .linkBox .leftBox .linkItem .Txt .info .title {
  font-size: clamp(12px, 0.94vw, 18px);
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 960px) {
  .linkArea .linkBox .leftBox .linkItem .Txt .info .title {
    font-size: clamp(12px, 1.8vw, 18px);
  }
}
.linkArea .linkBox .rightBox {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 49.1%;
  padding-left: 20px;
  height: inherit;
}
@media (max-width: 960px) {
  .linkArea .linkBox .rightBox {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 60vh;
    max-height: 60dvh;
    min-height: 270px;
    max-width: 480px;
    padding-left: 0px;
    padding: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2;
  }
  .linkArea .linkBox .rightBox.anim-tl {
    transform-origin: 0% 0%;
  }
  .linkArea .linkBox .rightBox.anim-tr {
    transform-origin: 100% 0%;
  }
  .linkArea .linkBox .rightBox.anim-ml {
    transform-origin: 0% 50%;
  }
  .linkArea .linkBox .rightBox.anim-mr {
    transform-origin: 100% 50%;
  }
  .linkArea .linkBox .rightBox.anim-bl {
    transform-origin: 0% 100%;
  }
  .linkArea .linkBox .rightBox.anim-br {
    transform-origin: 100% 100%;
  }
  .linkArea .linkBox .rightBox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 480px) {
  .linkArea .linkBox .rightBox {
    padding: 10px;
  }
}
.linkArea .linkBox .rightBox .rightBoxClose {
  display: none;
}
@media (max-width: 960px) {
  .linkArea .linkBox .rightBox .rightBoxClose {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0082A3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    flex-shrink: 0;
  }
  .linkArea .linkBox .rightBox .rightBoxClose::before, .linkArea .linkBox .rightBox .rightBoxClose::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 1.5px;
    background: #fff;
  }
  .linkArea .linkBox .rightBox .rightBoxClose::before {
    transform: rotate(45deg);
  }
  .linkArea .linkBox .rightBox .rightBoxClose::after {
    transform: rotate(-45deg);
  }
}
@media (max-width: 480px) {
  .linkArea .linkBox .rightBox .rightBoxClose {
    top: 10px;
    right: 10px;
  }
}
.linkArea .linkBox .rightBox .linkList {
  flex: 1;
  min-height: 0;
}
.linkArea .linkBox .rightBox .linkList .slick-list,
.linkArea .linkBox .rightBox .linkList .slick-track {
  height: 100%;
}
.linkArea .linkBox .rightBox .linkList .slick-slide {
  width: 100%;
  height: 100% !important;
}
.linkArea .linkBox .rightBox .linkList .slick-slide > div {
  height: 100%;
}
.linkArea .linkBox .rightBox .linkList .linkItem {
  height: 100%;
  background-color: #e1f3f7;
  border-radius: 4px;
}
.linkArea .linkBox .rightBox .linkList .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px 60px 60px;
  height: 100%;
}
@media (max-width: 1180px) {
  .linkArea .linkBox .rightBox .linkList .item {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .linkArea .linkBox .rightBox .linkList .item {
    padding: 20px;
  }
}
@media (max-width: 414px) {
  .linkArea .linkBox .rightBox .linkList .item {
    padding: 10px;
  }
}
.linkArea .linkBox .rightBox .linkList .Txt {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 330px;
  margin: 0 auto;
}
.linkArea .linkBox .rightBox .linkList .num {
  color: #0082a3;
  font-size: 30px;
  font-size: clamp(24px, 1.5vw, 30px);
  font-weight: 300;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .linkArea .linkBox .rightBox .linkList .num {
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .linkArea .linkBox .rightBox .linkList .num {
    margin-bottom: 0px;
  }
}
.linkArea .linkBox .rightBox .linkList .num span {
  color: #0082a3;
  font-size: 20px;
  font-weight: 300;
}
.linkArea .linkBox .rightBox .linkList .title {
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 500;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .linkArea .linkBox .rightBox .linkList .title {
    margin-bottom: 10px;
  }
}
.linkArea .linkBox .rightBox .linkList .line {
  display: block;
  width: 1px;
  height: 57px;
  height: clamp(30px, 3vw, 57px);
  background-color: #b1b1b1;
  margin: 21px 0;
}
@media (max-width: 1180px) {
  .linkArea .linkBox .rightBox .linkList .line {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .linkArea .linkBox .rightBox .linkList .line {
    display: none;
  }
}
.linkArea .linkBox .rightBox .linkList .subtitle {
  color: #0082a3;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1180px) {
  .linkArea .linkBox .rightBox .linkList .subtitle {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .linkArea .linkBox .rightBox .linkList .subtitle {
    margin-bottom: 10px;
  }
}
.linkArea .linkBox .rightBox .linkList .text {
  font-size: clamp(14px, 0.79vw, 15px);
  color: #6e6e6e;
  line-height: 1.76;
  letter-spacing: 0.1px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 960px) {
  .linkArea .linkBox .rightBox .linkList .text {
    -webkit-line-clamp: 5;
  }
}
@media (max-width: 380px) {
  .linkArea .linkBox .rightBox .linkList .text {
    -webkit-line-clamp: 4;
  }
}
.linkArea .linkBox .rightBox .btnBox {
  margin-top: auto;
}
.linkArea .linkBox .rightBox .controlBox {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 60px 60px;
  z-index: 1;
  width: calc(100% - 20px);
  margin-left: auto;
}
@media (max-width: 1180px) {
  .linkArea .linkBox .rightBox .controlBox {
    padding: 30px;
  }
}
@media (max-width: 960px) {
  .linkArea .linkBox .rightBox .controlBox {
    display: none;
  }
}
.linkArea .linkBox .rightBox .controlBox .arrowBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 340px;
}
.linkArea .linkBox .rightBox .controlBox .slick-arrow {
  position: static;
}

.newsTeamsArea {
  position: relative;
  padding: 55px 0 40px;
}
@media (max-width: 1180px) {
  .newsTeamsArea {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .newsTeamsArea {
    padding: 20px 0;
  }
}
.newsTeamsArea::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
  left: -60px;
  bottom: 0;
  width: 60.26vw;
  height: 434px;
  border-top-right-radius: 250px;
  border-bottom-right-radius: 250px;
  background-color: #f2f3f5;
  z-index: -1;
}
.newsTeamsArea .wrap {
  max-width: 1210px;
}
.newsTeamsArea .titleBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .newsTeamsArea .titleBox {
    margin-bottom: 0;
  }
}
.newsTeamsArea .titleBox .subtitle {
  padding-top: 20px;
}
.newsTeamsArea .midBox {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .newsTeamsArea .midBox {
    width: 100%;
    margin: 0 auto;
  }
}
.newsTeamsArea .midBox .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 29%;
  max-width: 320px;
  padding: 30px 10px 30px 0;
}
@media (max-width: 1024px) {
  .newsTeamsArea .midBox .left {
    width: 100%;
    margin: 0 auto;
    max-width: 480px;
    align-items: center;
    padding: 20px 0 0;
  }
}
.newsTeamsArea .midBox .left .Txt {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .newsTeamsArea .midBox .left .Txt {
    align-items: center;
  }
}
.newsTeamsArea .midBox .left .Txt .decoTitle {
  color: #000f0f;
  font-size: clamp(18px, 1.36vw, 26px);
  font-weight: 500;
  line-height: 1;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.2px;
  padding-bottom: 0px;
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsTeamsArea .midBox .left .Txt .text {
  color: #6e6e6e;
  font-size: clamp(14px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1024px) {
  .newsTeamsArea .midBox .left .Txt .text {
    text-align: center;
  }
}
.newsTeamsArea .midBox .left .newsTeamsTitleBox {
  width: 100%;
  height: 252px;
  overflow-y: auto;
}
.newsTeamsArea .midBox .left .newsTeamsTitleBox::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.newsTeamsArea .midBox .left .newsTeamsTitleBox::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #dbdbdb;
}
.newsTeamsArea .midBox .left .newsTeamsTitleBox::-webkit-scrollbar-thumb {
  background: #0082A3;
}
.newsTeamsArea .midBox .left .newsTeamsTitleBox::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .newsTeamsArea .midBox .left .newsTeamsTitleBox {
    display: none;
  }
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 13px 0;
  height: 63px;
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 1px;
  background-color: #0099b3;
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem.current::after {
  width: 100%;
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem.current .title {
  color: #0099b3;
}
@media (min-width: 1181px) {
  .newsTeamsArea .midBox .left .newsTeamsTitleItem:hover::after {
    width: 100%;
  }
  .newsTeamsArea .midBox .left .newsTeamsTitleItem:hover .title {
    color: #0099b3;
  }
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem .title {
  color: #000f0f;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 500;
  margin-right: 18px;
}
.newsTeamsArea .midBox .left .newsTeamsTitleItem .twjob {
  color: #6e6e6e;
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 400;
}
.newsTeamsArea .midBox .newsTeamsBox {
  position: relative;
  width: 71%;
  padding-left: 35px;
}
@media (max-width: 1024px) {
  .newsTeamsArea .midBox .newsTeamsBox {
    width: 100%;
    max-width: 768px;
    padding-left: 0px;
    margin: 0 auto;
  }
}
.newsTeamsArea .midBox .slick-slide:not(.slick-active) {
  pointer-events: none;
  transition: all 0.3s ease;
}
.newsTeamsArea .midBox .newsTeamsList.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.newsTeamsArea .midBox .newsTeamsItem {
  position: relative;
}
.newsTeamsArea .midBox .item {
  position: relative;
  display: flex;
}
.newsTeamsArea .midBox .item .imgBox {
  width: 55%;
  height: auto;
  aspect-ratio: 418/540;
  padding: 30px 0;
  filter: drop-shadow(5px 7px 20.2px rgba(170, 170, 170, 0.2));
}
.newsTeamsArea .midBox .item .Img {
  width: 100%;
}
.newsTeamsArea .midBox .item .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsTeamsArea .midBox .item .Txt {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 45%;
  height: auto;
  aspect-ratio: 339/540;
  padding: 30px 0 30px 37px;
}
@media (max-width: 768px) {
  .newsTeamsArea .midBox .item .Txt {
    padding: 30px 0 30px 20px;
  }
}
@media (max-width: 480px) {
  .newsTeamsArea .midBox .item .Txt {
    padding: 30px 0 30px 10px;
  }
}
.newsTeamsArea .midBox .item .newsTeamsInfoBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .newsTeamsArea .midBox .item .newsTeamsInfoBox {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .newsTeamsArea .midBox .item .newsTeamsInfoBox {
    display: none;
  }
}
.newsTeamsArea .midBox .item .newsTeamsInfoBox .enjob {
  color: #adb2b2;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 300;
  margin-top: -7px;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .newsTeamsArea .midBox .item .newsTeamsInfoBox .enjob {
    margin-top: 0px;
  }
}
.newsTeamsArea .midBox .item .newsTeamsInfoBox .number {
  color: #0099b3;
  font-size: clamp(50px, 4.2vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-top: -12px;
}
@media (max-width: 768px) {
  .newsTeamsArea .midBox .item .newsTeamsInfoBox .number {
    margin-top: 0px;
  }
}
.newsTeamsArea .midBox .item .classTitle {
  color: #fff;
  display: inline-flex;
  align-items: center;
  background-color: #0099b3;
  font-size: clamp(12px, 0.84vw, 16px);
  line-height: 1.2;
  letter-spacing: 0.2px;
  border-radius: 4px;
  padding: 5px 10px 3px;
}
.newsTeamsArea .midBox .item .infoTitle {
  display: flex;
  align-items: baseline;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .newsTeamsArea .midBox .item .infoTitle {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .newsTeamsArea .midBox .item .infoTitle {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.newsTeamsArea .midBox .item .infoTitle .title {
  color: #000f0f;
  font-size: clamp(16px, 1.46vw, 28px);
  font-weight: 500;
  margin-right: 25px;
}
.newsTeamsArea .midBox .item .infoTitle .twjob {
  color: #6e6e6e;
  font-size: clamp(12px, 0.84vw, 16px);
  font-weight: 400;
}
.newsTeamsArea .midBox .item .textEditor {
  padding: 0 5px 20px 0;
  margin: 0;
  flex: 1;
  width: 100%;
  overflow-y: auto;
}
.newsTeamsArea .midBox .item .textEditor::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.newsTeamsArea .midBox .item .textEditor::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #dbdbdb;
}
.newsTeamsArea .midBox .item .textEditor::-webkit-scrollbar-thumb {
  background: #0082A3;
}
.newsTeamsArea .midBox .item .textEditor .expTxt {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.newsTeamsArea .midBox .item .textEditor .expTxt .expTitle {
  color: #000f0f;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 500;
}
.newsTeamsArea .midBox .item .textEditor .expTxt .exptext {
  color: #6e6e6e;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 400;
  letter-spacing: 0.2px;
}
.newsTeamsArea .bottomBox {
  margin-top: 17px;
}
@media (max-width: 1024px) {
  .newsTeamsArea .bottomBox {
    margin-top: 0px;
  }
}
.newsTeamsArea .bottomBox .controlBox {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .newsTeamsArea .bottomBox .controlBox {
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .newsTeamsArea .bottomBox .controlBox {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.newsTeamsArea .bottomBox .slick-dots {
  position: static;
  display: inline-flex;
  align-items: center;
  margin-left: -10px;
  order: 1;
}
@media (max-width: 768px) {
  .newsTeamsArea .bottomBox .slick-dots {
    justify-content: center;
    margin-left: 0px;
  }
}
.newsTeamsArea .bottomBox .right {
  display: flex;
  align-items: center;
  gap: 40px;
  order: 2;
}
.newsTeamsArea .bottomBox .arrowBox {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .newsTeamsArea .bottomBox .arrowBox {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    max-width: 360px;
  }
}
.newsTeamsArea .bottomBox .arrowBox .slick-arrow {
  position: static;
}
.newsTeamsArea .bottomBox .arrowBox .slick-arrow.prev {
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .newsTeamsArea .bottomBox .arrowBox .slick-arrow.prev {
    transform: rotate(180deg);
  }
}
.newsTeamsArea .bottomBox .arrowBox .slick-arrow.next {
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .newsTeamsArea .bottomBox .arrowBox .slick-arrow.next {
    transform: rotate(0deg);
  }
}
.newsTeamsArea .bottomBox .btnBox {
  margin-top: 0;
}

.reviewsArea {
  padding: 135px 0 30px;
}
@media (max-width: 1180px) {
  .reviewsArea {
    padding: 80px 0 30px;
  }
}
@media (max-width: 1024px) {
  .reviewsArea {
    padding: 60px 0 30px;
  }
}
@media (max-width: 768px) {
  .reviewsArea {
    padding: 40px 0 30px;
  }
}
.reviewsArea .wrap {
  display: flex;
  flex-direction: column;
  max-width: 1230px;
}
.reviewsArea .titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  padding: 0 10px;
}
@media (max-width: 1180px) {
  .reviewsArea .titleBox {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .reviewsArea .titleBox {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .reviewsArea .titleBox {
    margin-bottom: 10px;
  }
}
.reviewsArea .titleBox .left {
  text-align: left;
  padding-left: 2px;
}
@media (max-width: 1024px) {
  .reviewsArea .titleBox .left {
    text-align: center;
  }
}
.reviewsArea .titleBox .left .subtitle {
  margin-top: 20px;
}
@media (max-width: 1180px) {
  .reviewsArea .titleBox .left .subtitle {
    margin-top: 10px;
  }
}
.reviewsArea .titleBox .decoTitle {
  flex: 1;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.2px;
  padding-bottom: 0px;
  margin-top: 5px;
  padding-right: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (max-width: 1180px) {
  .reviewsArea .titleBox .decoTitle {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .reviewsArea .titleBox .decoTitle {
    padding: 10px 0px 0px;
  }
}
@media (max-width: 1024px) {
  .reviewsArea .titleBox .controlBox {
    display: none;
  }
}
.reviewsArea .titleBox .controlBox .arrowBox {
  display: inline-flex;
  gap: 13px;
}
.reviewsArea .titleBox .controlBox .slick-arrow {
  position: static;
}
.reviewsArea .reviewsBox {
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .reviewsArea .reviewsBox {
    margin-left: -30px;
    width: calc(100% + 60px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .reviewsArea .reviewsBox::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .reviewsArea .reviewsBox {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
.reviewsArea .reviewsList {
  min-width: 985px;
  width: 100%;
}
@media (max-width: 1180px) {
  .reviewsArea .reviewsList {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .reviewsArea .reviewsList {
    margin: 0px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px;
  }
}
.reviewsArea .reviewsList .reviewsItem {
  padding: 25px 10px;
}
@media (max-width: 1024px) {
  .reviewsArea .reviewsList .reviewsItem {
    width: 340px;
    flex-shrink: 0;
  }
}
@media (max-width: 414px) {
  .reviewsArea .reviewsList .reviewsItem {
    width: 280px;
  }
}
@media (min-width: 1181px) {
  .reviewsArea .reviewsList .reviewsItem:hover .item::after {
    height: 100%;
    opacity: 1;
  }
  .reviewsArea .reviewsList .reviewsItem:hover .top .iconBox {
    background-color: #0099b3;
  }
}
@media (max-width: 1024px) {
  .reviewsArea .reviewsList .reviewsItem.slickClsItem {
    display: block !important;
  }
}
.reviewsArea .reviewsList .item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 34px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 1px 5px 10.2px 3px rgba(170, 170, 170, 0.2);
  z-index: 1;
}
@media (max-width: 1180px) {
  .reviewsArea .reviewsList .item {
    padding: 20px;
  }
}
.reviewsArea .reviewsList .item::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(0, 153, 179, 0) 0%, rgba(0, 153, 179, 0.2) 100%), #fff;
  opacity: 0;
  z-index: -1;
}
.reviewsArea .reviewsList .linkWrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.reviewsArea .reviewsList .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.reviewsArea .reviewsList .top .iconBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.reviewsArea .reviewsList .top .icon-horn {
  width: 34px;
  height: 33px;
}
.reviewsArea .reviewsList .top .tag {
  color: #fff;
  font-size: clamp(12px, 0.73vw, 14px);
  border-radius: 4px;
  background-color: #0099b3;
  padding: 4px 13px;
}
.reviewsArea .reviewsList .Txt {
  display: flex;
  flex-direction: column;
  min-height: 150px;
}
.reviewsArea .reviewsList .Txt .title {
  color: #000f0f;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 500;
}
.reviewsArea .reviewsList .Txt .text {
  color: #6e6e6e;
  font-size: clamp(13px, 0.79vw, 15px);
  padding-top: 15px;
  margin-top: 12px;
  border-top: 1px solid #dddddd;
}
.reviewsArea .btnBox {
  text-align: center;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .reviewsArea .btnBox {
    margin-top: 10px;
  }
}

.newsArea {
  padding: 30px 0 90px;
}
@media (max-width: 1180px) {
  .newsArea {
    padding: 30px 0 60px;
  }
}
@media (max-width: 768px) {
  .newsArea {
    padding: 30px 0 40px;
  }
}
.newsArea .wrap {
  max-width: 1210px;
}
.newsArea .titleBox {
  text-align: left;
  margin-bottom: 0;
}
.newsArea .titleBox .subtitle {
  padding-top: 20px;
}
.newsArea .newsBox {
  position: relative;
  padding: 50px 0 30px;
}
@media (max-width: 1180px) {
  .newsArea .newsBox {
    padding: 30px 0;
  }
}
.newsArea .newsList {
  position: relative;
  max-height: 387px;
  padding: 0;
  overflow-y: auto;
  border-radius: 4px;
}
.newsArea .newsList::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: #dbdbdb;
}
.newsArea .newsList::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #dbdbdb;
}
.newsArea .newsList::-webkit-scrollbar-thumb {
  background: #0082A3;
}
@media (max-width: 768px) {
  .newsArea .newsList {
    max-height: 348px;
  }
}
.newsArea .newsItem {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .newsArea .newsItem {
    padding: 20px 0 20px 20px;
  }
}
@media (max-width: 768px) {
  .newsArea .newsItem {
    padding: 20px 0 20px 10px;
  }
}
.newsArea .newsItem::before {
  content: "";
  width: 23px;
  height: 1px;
  background-color: #0082A3;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (min-width: 1181px) {
  .newsArea .newsItem:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .newsArea .newsItem:hover .title {
    color: #0099b3;
  }
  .newsArea .newsItem:hover .title::after {
    width: 100%;
  }
}
.newsArea .item {
  position: relative;
  cursor: pointer;
}
.newsArea .newsImgPreview {
  pointer-events: none;
  position: absolute;
  right: 88px;
  top: 0;
  transform: translateY(-50%) translateX(20px);
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 684/456;
  opacity: 0;
  overflow: hidden;
  z-index: 9;
  transition: opacity 0.6s ease, transform 0.6s ease, top 0.4s ease;
}
.newsArea .newsImgPreview.is-active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 1440px) {
  .newsArea .newsImgPreview {
    right: 0;
  }
}
@media (max-width: 1180px) {
  .newsArea .newsImgPreview {
    display: none;
  }
}
.newsArea .newsImgPreview img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsArea .Txt {
  position: relative;
  display: flex;
  padding: 9px 0;
}
@media (max-width: 768px) {
  .newsArea .Txt {
    flex-direction: column;
    gap: 10px;
  }
}
.newsArea .newsInfoBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px 0 35px;
  flex-shrink: 0;
  width: 150px;
}
@media (max-width: 1180px) {
  .newsArea .newsInfoBox {
    width: 120px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .newsArea .newsInfoBox {
    padding: 0;
    align-items: flex-start;
  }
}
.newsArea .newsInfoBox .dateBox {
  text-align: center;
}
.newsArea .newsInfoBox .dateBox .date {
  color: #6e6e6e;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 300;
  letter-spacing: 0px;
}
.newsArea .textBox {
  height: 110px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 63px;
}
@media (max-width: 768px) {
  .newsArea .textBox {
    height: auto;
    padding-right: 30px;
  }
}
.newsArea .textBox .classTitle {
  flex-shrink: 0;
  min-width: 86px;
  align-items: center;
  background-color: #0099b3;
  color: #fff;
  display: inline-flex;
  font-size: clamp(14px, 0.85vw, 16px);
  justify-content: center;
  border-radius: 4px;
  padding: 2px 18px;
}
@media (max-width: 768px) {
  .newsArea .textBox .classTitle {
    min-width: 70px;
    padding: 2px 5px;
  }
}
.newsArea .textBox .title {
  position: relative;
  color: #000f0f;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(16px, 0.94vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3; /* 217.778% */
  letter-spacing: 0.2px;
  margin-left: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1180px) {
  .newsArea .textBox .title {
    margin-left: 20px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 768px) {
  .newsArea .textBox .title {
    margin-left: 10px;
  }
}
.newsArea .textBox .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #0099b3;
}
.newsArea .textBox .text {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.5;
}
.newsArea .textBox .text.ellipsis {
  height: 22px;
  overflow: hidden;
}
.newsArea .textBox .icon-btnArrow {
  position: absolute;
  right: 38px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #0099b3;
}
@media (max-width: 768px) {
  .newsArea .textBox .icon-btnArrow {
    right: 10px;
  }
}
.newsArea .linkWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.newsArea .controlBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
@media (max-width: 768px) {
  .newsArea .controlBox {
    flex-direction: column;
    gap: 20px;
    padding-top: 0px;
  }
}
.newsArea .dotsBox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsArea .dotsBox .newsDot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #afafaf;
  border: none;
  padding: 0;
  cursor: pointer;
}
.newsArea .dotsBox .newsDot.is-active {
  background: #0099b3;
}
.newsArea .btnBox {
  margin-top: 0;
}