@charset "UTF-8";
.tourArea .tourClassItem .classTrigger::after, .brandArea .arrowBox, .brandArea .Txt, .brandArea .Img .imgBtn .icon-nav, .brandArea .Img .imgBtn, .brandArea .Img .logoPic, .brandArea .Img img, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .bannerArea .bannerItem .Txt .btnBox .btn::after, .bannerArea .bannerItem .Txt .btnBox .btn, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.8s ease-in-out;
}

.popWindowArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  /*以防有不支援dvh的瀏覽器*/
  height: 100dvh;
  line-height: 1.8;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.7s;
}
.popWindowArea .popWindowMask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.7s;
}
.popWindowArea .popWindowBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  width: 800px;
  max-width: 90%;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWindowArea .popWindowContent {
  min-height: 300px;
  max-height: 85vh;
  max-height: 85dvh;
  overflow-y: auto;
  overflow-x: clip;
}
.popWindowArea img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWindowArea .Txt {
  padding: 30px;
}
.popWindowArea .Txt .popTitle {
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  background-color: #111111;
  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: #111111;
  }
  .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%);
}

.mainArea {
  padding: 0;
  background-color: #212121;
}

.titleBox .decoTitle {
  color: #8b8b8b;
  font-size: clamp(45px, 2.8646vw, 55px);
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}
.titleBox .title {
  color: #111111;
  font-size: clamp(20px, 1.1458vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
}
.titleBox .subtitle {
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.titleBox .text {
  color: #7e7e7e;
  font-size: clamp(13px, 0.7292vw, 14px);
  font-weight: 400;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.9px;
  padding-top: 5px;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
  max-width: 1495px;
  padding: 120px 20px 190px;
}
.bannerArea .bannerItem .Txt .textBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .textBox {
    margin-bottom: 0px;
  }
}
.bannerArea .bannerItem .Txt .title {
  color: #fff;
  font-size: clamp(20px, 3.125vw, 60px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 3.5px;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .Txt .title {
    font-size: clamp(28px, 3.125vw, 60px);
    letter-spacing: 1.5px;
  }
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: clamp(16px, 1.4583vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-align: center;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .subtitle {
    margin-bottom: 0;
  }
}
.bannerArea .bannerItem .Txt .btnBox {
  display: flex;
  justify-content: center;
  opacity: 0;
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .btnBox {
    margin-top: 10px;
  }
}
.bannerArea .bannerItem .Txt .btnBox .btn {
  position: relative;
  padding: 3px 0px;
  color: #fff;
  min-width: auto;
  font-weight: 300;
  letter-spacing: 0.4px;
  will-change: transform;
}
.bannerArea .bannerItem .Txt .btnBox .btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
@media (min-width: 1181px) {
  .bannerArea .bannerItem .Txt .btnBox .btn:hover {
    color: #c2c0c0;
    transform: scale(1.1);
  }
  .bannerArea .bannerItem .Txt .btnBox .btn:hover::after {
    background-color: #c2c0c0;
  }
}
.bannerArea .bannerItem .Txt .bottomBox {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 50%;
  max-width: 510px;
  z-index: 1;
}
@media (max-width: 1680px) {
  .bannerArea .bannerItem .Txt .bottomBox {
    right: 50px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .bottomBox {
    right: 30px;
    bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .bannerArea .bannerItem .Txt .bottomBox {
    position: static;
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt .bottomBox {
    margin-top: 15px;
  }
}
.bannerArea .bannerItem .Txt .bottomBox .text {
  color: #c2c0c0;
  font-family: "Noto Sans TC";
  font-size: clamp(13px, 0.8333vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .bottomBox .text {
    margin-bottom: 0;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 85px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .bannerArea .bannerItem .Img {
    height: 400px;
  }
}
.bannerArea .bannerItem .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerArea .bannerItem .bannerDecor {
  pointer-events: none;
  position: absolute;
  bottom: 3.8vw;
  left: 4vw;
  z-index: 2;
  opacity: 0;
  width: 50%;
  max-width: 855px;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .bannerDecor {
    width: 45%;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .bannerDecor {
    bottom: 30px;
    left: 30px;
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .bannerArea .bannerItem .bannerDecor {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .bannerDecor {
    width: calc(100% - 60px);
  }
}
.bannerArea .bannerItem .bannerDecor .decorImg {
  width: 100%;
}
.bannerArea .bannerItem .bannerDecor .decorImg img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.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 .btnBox {
  animation: slideUpAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .text {
  animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-current .bannerDecor {
  animation: slideUpAnimation 0.8s 1.5s ease-in-out 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: #111111;
  }
  .bannerArea .socialBox .socialList li a:hover svg {
    fill: #111111;
  }
}
.bannerArea .scrollDown {
  cursor: pointer;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 28px;
  right: 70px;
  z-index: 2;
  gap: 15px;
}
@media (max-width: 1680px) {
  .bannerArea .scrollDown {
    right: 25px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .scrollDown {
    right: 15px;
  }
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #fff;
  writing-mode: vertical-lr;
  font-weight: 300;
  font-size: clamp(16px, 0.9375vw, 18px);
  letter-spacing: 0.5px;
}
.bannerArea .scrollDown span.line {
  position: relative;
  width: 2px;
  height: 90px;
  background-color: #fff;
  overflow: hidden;
  margin-right: 5px;
  z-index: 1;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 2px;
  height: calc(100% + 20px);
  animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #686868;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bannerArea .slick-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  bottom: 56%;
  right: 3.6vw;
  transform: translateY(50%);
  width: auto;
}
@media (max-width: 1680px) {
  .bannerArea .slick-dots {
    right: 25px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .slick-dots {
    right: 15px;
  }
}
.bannerArea .slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  margin: 0;
  padding: 0;
}
.bannerArea .slick-dots li button {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}
.bannerArea .slick-dots li button::before {
  display: none;
}
.bannerArea .slick-dots li.slick-active button {
  width: 23px;
  height: 23px;
  border: none;
}
.bannerArea .slick-dots li.slick-active button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.bannerArea .slick-dots li.slick-active button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, #fff 0deg 225deg, transparent 225deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
  animation: dotsRotate 3s linear infinite;
}
@media (max-width: 1180px) {
  .bannerArea .Txt .bannerVideo,
  .bannerArea .socialBox,
  .bannerArea .scrollDown,
  .bannerArea .slick-dots,
  .bannerArea .slick-arrow {
    display: none !important;
  }
}

.bgBoxArea {
  position: relative;
}
.bgBoxArea .bgBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 450px);
  background-image: url("../../images/tw/bg.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 1180px) {
  .bgBoxArea .bgBox {
    height: 72%;
  }
}
@media (max-width: 768px) {
  .bgBoxArea .bgBox {
    height: 78%;
  }
}

.brandArea {
  position: relative;
  padding: 80px 0 90px;
  background-color: #fff;
}
@media (max-width: 1180px) {
  .brandArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .brandArea {
    padding: 40px 0;
  }
}
.brandArea .titleBox {
  max-width: 510px;
  margin: 0 auto;
  padding-bottom: 65px;
}
@media (max-width: 1180px) {
  .brandArea .titleBox {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .brandArea .titleBox {
    padding-bottom: 30px;
  }
}
.brandArea .brandBox {
  position: relative;
  width: 57vw;
  max-width: 1090px;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 1180px) {
  .brandArea .brandBox {
    width: 75vw;
  }
}
@media (max-width: 480px) {
  .brandArea .brandBox {
    width: 85vw;
  }
}
.brandArea .slick-list {
  overflow: visible;
}
.brandArea .brandItem {
  padding: 0 68px;
}
@media (max-width: 1180px) {
  .brandArea .brandItem {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .brandArea .brandItem {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .brandArea .brandItem {
    padding: 0 20px;
  }
}
.brandArea .item.currentSide .Img img {
  filter: saturate(0);
}
.brandArea .item.currentSide .Txt {
  opacity: 0;
}
@media (min-width: 1181px) {
  .brandArea .item:hover .Img .logoPic {
    opacity: 1;
  }
  .brandArea .item:hover .imgBtn {
    opacity: 1;
  }
}
.brandArea .Img {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
.brandArea .Img img {
  filter: saturate(1);
  width: 100%;
}
.brandArea .Img .logoPic {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 285px;
  opacity: 0;
}
.brandArea .Img .imgBtn {
  pointer-events: none;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-size: clamp(14px, 0.8073vw, 15.5px);
  font-weight: 300;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .brandArea .Img .imgBtn {
    bottom: 10px;
  }
}
.brandArea .Img .imgBtn .icon-nav {
  width: 7px;
  height: 13px;
  color: #fff;
}
.brandArea .Txt {
  width: 100%;
  padding: 25px 0;
  opacity: 1;
}
.brandArea .Txt .title {
  font-size: clamp(16px, 1.0417vw, 20px);
  letter-spacing: 0.4px;
  line-height: 1.25;
}
.brandArea .Txt .title a {
  color: #fff;
}
@media (min-width: 1181px) {
  .brandArea .Txt .title a:hover {
    color: #cfcfcf;
  }
}
.brandArea .Txt .text {
  color: #7e7e7e;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.8px;
  padding-top: clamp(10px, 0.625vw, 12px);
}
.brandArea .arrowBox {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.brandArea .arrowBox.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.brandArea .arrowBox .arrow {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.brandArea .arrowBox .arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 23px;
}
@media (max-width: 768px) {
  .brandArea .arrowBox .arrow::after {
    width: 18px;
    height: 18px;
  }
}
.brandArea .arrowBox .arrow.prev {
  margin-left: -15px;
}
.brandArea .arrowBox .arrow.prev::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}
.brandArea .arrowBox .arrow.next {
  margin-right: -15px;
}
.brandArea .arrowBox .arrow.next::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.productsArea {
  position: relative;
  padding: 73px 0 125px;
  z-index: 1;
}
@media (max-width: 1440px) {
  .productsArea {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  .productsArea {
    padding: 40px 0;
  }
}
.productsArea::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
  width: calc(100% - 100px);
  max-width: 1540px;
  height: 1px;
  background-color: #686868;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1180px) {
  .productsArea::after {
    width: calc(100% - 60px);
  }
}
@media (max-width: 768px) {
  .productsArea::after {
    width: calc(100% - 40px);
  }
}
.productsArea .wrap {
  max-width: 1640px;
}
.productsArea .titleBox {
  text-align: left;
  margin-bottom: 66px;
}
@media (max-width: 1440px) {
  .productsArea .titleBox {
    margin-bottom: 40px;
  }
}
@media (max-width: 1180px) {
  .productsArea .titleBox {
    margin-bottom: 30px;
  }
}
.productsArea .titleBox .decoTitle {
  position: relative;
  display: inline-block;
  color: #aeaeae;
}
.productsArea .titleBox .decoTitle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
  width: 97px;
  height: 1px;
  background-color: #9e9e9e;
  left: calc(100% + 12px);
  top: 55%;
  transform: translateY(-50%);
}
@media (max-width: 1180px) {
  .productsArea .titleBox .decoTitle::after {
    display: none;
  }
}
.productsArea .titleBox .title {
  color: #fff;
}
.productsArea .titleBox .text {
  color: #aeaeae;
}
.productsArea .productsBox {
  position: relative;
}
.productsArea .productsBox .productsList {
  position: relative;
}
.productsArea .productsBox .productsItem {
  position: relative;
  inset: auto;
}
.productsArea .productsBox .productsItem .item {
  display: flex;
}
@media (max-width: 768px) {
  .productsArea .productsBox .productsItem .item {
    flex-wrap: wrap;
  }
}
.productsArea .productsBox .productsItem .Img {
  flex: 0 0 59.7%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1180px) {
  .productsArea .productsBox .productsItem .Img {
    flex: 0 0 50%;
  }
}
@media (max-width: 768px) {
  .productsArea .productsBox .productsItem .Img {
    flex: 0 0 100%;
  }
}
.productsArea .productsBox .productsItem .Img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.productsArea .productsBox .productsItem .Img a {
  display: block;
  height: 100%;
}
.productsArea .productsBox .productsItem .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.productsArea .productsBox .productsItem .Txt {
  position: relative;
  flex: 1;
  padding: 180px 50px 143px 75px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .productsArea .productsBox .productsItem .Txt {
    padding: 140px 50px;
  }
}
@media (max-width: 1280px) {
  .productsArea .productsBox .productsItem .Txt {
    padding: 100px 50px;
  }
}
@media (max-width: 1180px) {
  .productsArea .productsBox .productsItem .Txt {
    padding: 50px;
  }
}
@media (max-width: 960px) {
  .productsArea .productsBox .productsItem .Txt {
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .productsArea .productsBox .productsItem .Txt {
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .productsArea .productsBox .productsItem .Txt {
    flex: 0 0 100%;
  }
  .productsArea .productsBox .productsItem .Txt .title {
    font-size: 22px;
  }
  .productsArea .productsBox .productsItem .Txt .counter {
    top: 24px;
    right: 24px;
  }
}
.productsArea .productsBox .productsItem .Txt .counter {
  position: absolute;
  top: 62px;
  right: 100px;
  display: flex;
  align-items: center;
  font-size: clamp(22px, 1.3021vw, 25px);
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .productsArea .productsBox .productsItem .Txt .counter {
    top: 30px;
  }
}
@media (max-width: 1180px) {
  .productsArea .productsBox .productsItem .Txt .counter {
    display: none;
  }
}
.productsArea .productsBox .productsItem .Txt .counter .num {
  color: #ffffff;
  font-family: "Almarai";
}
.productsArea .productsBox .productsItem .Txt .counter .sep {
  color: #7e7e7e;
  padding: 0 14px;
}
.productsArea .productsBox .productsItem .Txt .counter .total {
  color: #7e7e7e;
  font-family: "Almarai";
}
.productsArea .productsBox .productsItem .Txt .bottom {
  margin-left: 75px;
  max-width: 355px;
}
@media (max-width: 1180px) {
  .productsArea .productsBox .productsItem .Txt .bottom {
    margin-left: 50px;
  }
}
@media (max-width: 960px) {
  .productsArea .productsBox .productsItem .Txt .bottom {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .productsArea .productsBox .productsItem .Txt .bottom {
    margin-top: 20px;
  }
}
.productsArea .productsBox .productsItem .Txt .subtitle {
  color: #ffffff;
  font-size: clamp(28px, 1.8229vw, 35px);
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.productsArea .productsBox .productsItem .Txt .title {
  color: #ffffff;
  font-size: clamp(18px, 1.1458vw, 22px);
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.productsArea .productsBox .productsItem .Txt .text {
  color: #e4e4e4;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.8px;
  margin-bottom: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1180px) {
  .productsArea .productsBox .productsItem .Txt .text {
    margin-bottom: 20px;
  }
}
.productsArea .productsBox .productsItem .Txt .linkBtn {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 15.5px;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 2px;
  align-self: flex-start;
}
@media (min-width: 1181px) {
  .productsArea .productsBox .productsItem .Txt .linkBtn:hover {
    color: #e4e4e4;
    border-bottom-color: #e4e4e4;
  }
  .productsArea .productsBox .productsItem .Txt .linkBtn:hover .icon-nav {
    stroke: #e4e4e4;
  }
}
.productsArea .productsBox .productsItem .Txt .linkBtn .icon-nav {
  width: 6px;
  height: 17px;
  fill: none;
  stroke: #ffffff;
}
.productsArea .productsBox .arrowBox {
  position: absolute;
  top: 58px;
  right: 0px;
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 1280px) {
  .productsArea .productsBox .arrowBox {
    top: 24px;
  }
}
@media (max-width: 1180px) {
  .productsArea .productsBox .arrowBox {
    top: 50px;
  }
}
@media (max-width: 960px) {
  .productsArea .productsBox .arrowBox {
    top: 20px;
  }
}
@media (max-width: 768px) {
  .productsArea .productsBox .arrowBox {
    top: 70vw;
  }
}
@media (max-width: 400px) {
  .productsArea .productsBox .arrowBox {
    top: auto;
    bottom: 12px;
  }
}
.productsArea .productsBox .arrowBox .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #7c7c7c;
  transition: color 0.3s;
}
@media (max-width: 1180px) {
  .productsArea .productsBox .arrowBox .arrow {
    color: #ffffff;
  }
}
.productsArea .productsBox .arrowBox .arrow svg {
  width: 10px;
  height: 16px;
}
@media (min-width: 1181px) {
  .productsArea .productsBox .arrowBox .arrow:hover {
    color: #fff;
  }
}
.productsArea .productsBox .arrowBox .arrow.slick-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.casesArea {
  background-color: #ffffff;
  padding: 55px 0 80px;
}
@media (max-width: 1180px) {
  .casesArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .casesArea {
    padding: 40px 0;
  }
}
.casesArea .wrap {
  max-width: 1640px;
}
.casesArea .titleBox {
  margin-bottom: 37px;
}
@media (max-width: 1180px) {
  .casesArea .titleBox {
    margin-bottom: 30px;
  }
}
.casesArea .casesBox .casesList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 14px;
  height: 580px;
}
@media (max-width: 1180px) {
  .casesArea .casesBox .casesList {
    display: block;
    height: auto;
    margin: 0 -10px;
  }
}
.casesArea .casesBox .casesItem {
  overflow: hidden;
  position: relative;
}
@media (max-width: 1180px) {
  .casesArea .casesBox .casesItem {
    aspect-ratio: 1042/640;
    padding: 0 10px;
  }
}
.casesArea .casesBox .casesItem:nth-child(5) {
  grid-column: 3;
  grid-row: 1/3;
}
@media (max-width: 1180px) {
  .casesArea .casesBox .casesItem:nth-child(5) {
    grid-column: 1/3;
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .casesArea .casesBox .casesItem:nth-child(5) {
    grid-column: auto;
  }
}
.casesArea .casesBox .casesItem .item {
  height: 100%;
  position: relative;
}
.casesArea .casesBox .casesItem .Img {
  height: 100%;
  position: relative;
}
.casesArea .casesBox .casesItem .Img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 1.2s ease;
}
.casesArea .casesBox .casesItem .Img .imgDefault {
  opacity: 1;
  z-index: 1;
}
.casesArea .casesBox .casesItem .Img .imgHover {
  opacity: 0;
  z-index: 2;
}
.casesArea .casesBox .casesItem .casesOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s ease;
}
@media (max-width: 1180px) {
  .casesArea .casesBox .casesItem .casesOverlay {
    padding: 20px;
  }
}
.casesArea .casesBox .casesItem .casesOverlay .overlayTxt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.casesArea .casesBox .casesItem .casesOverlay .overlayRow {
  display: flex;
  align-items: stretch;
  gap: 18px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
}
.casesArea .casesBox .casesItem .casesOverlay .overlayRow .label {
  font-size: clamp(20px, 1.1979vw, 23px);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.casesArea .casesBox .casesItem .casesOverlay .overlayRow .sep {
  font-size: clamp(18px, 1.0417vw, 20px);
}
.casesArea .casesBox .casesItem .casesOverlay .overlayRow .val {
  color: #e4e4e4;
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 0.4px;
  margin-top: 5px;
}
@media (min-width: 1181px) {
  .casesArea .casesBox .casesItem:hover .Img .imgHover {
    opacity: 1;
  }
  .casesArea .casesBox .casesItem:hover .casesOverlay {
    opacity: 1;
  }
}
@media (max-width: 1180px) {
  .casesArea .casesBox .casesItem.active .Img .imgHover {
    opacity: 1;
  }
  .casesArea .casesBox .casesItem.active .casesOverlay {
    opacity: 1;
  }
}
.casesArea .casesBtnBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .casesArea .casesBtnBox {
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.casesArea .casesBtnBox .casesBtn {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 15.5px;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #111111;
  padding-bottom: 1px;
}
.casesArea .casesBtnBox .casesBtn .icon-nav {
  width: 7px;
  height: 13px;
  fill: none;
  stroke: currentColor;
}
@media (min-width: 1181px) {
  .casesArea .casesBtnBox .casesBtn:hover {
    color: #7e7e7e;
    border-bottom-color: #7e7e7e;
  }
  .casesArea .casesBtnBox .casesBtn:hover .icon-nav {
    stroke: #7e7e7e;
  }
}

.margeArea {
  position: relative;
}

.aboutArea {
  background-color: #ededed;
  padding: 120px 0 160px;
}
@media (max-width: 1440px) {
  .aboutArea {
    padding: 100px 0 160px;
  }
}
@media (max-width: 1280px) {
  .aboutArea {
    padding: 100px 0 40px;
  }
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 60px 0 40px;
  }
}
@media (max-width: 768px) {
  .aboutArea {
    padding: 40px 0;
  }
}
.aboutArea .wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.aboutArea .aboutBox {
  display: flex;
  align-items: stretch;
  min-height: 560px;
}
@media (max-width: 1280px) {
  .aboutArea .aboutBox {
    min-height: auto;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutBox {
    flex-wrap: wrap;
    min-height: auto;
  }
}
.aboutArea .aboutImgBox {
  position: relative;
  width: 45.5vw;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1024px) {
  .aboutArea .aboutImgBox {
    order: 2;
    width: 100%;
    height: auto;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutImgBox {
    padding: 0 20px;
  }
}
.aboutArea .aboutImgBox .slick-dotted.slick-slider {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .aboutArea .aboutImgBox .aboutImgList {
    margin: 0 -10px;
  }
}
@media (max-width: 1024px) {
  .aboutArea .aboutImgBox .aboutImgItem {
    padding: 0 10px;
  }
}
.aboutArea .aboutImgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.aboutArea .controlBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 37px;
  padding-right: 35px;
  gap: 35px;
}
@media (max-width: 1180px) {
  .aboutArea .controlBox {
    padding-top: 20px;
    padding-right: 0px;
  }
}
.aboutArea .controlBox .numberBox .current {
  color: #111111;
  font-size: clamp(14px, 1.3021vw, 25px);
  letter-spacing: 0.8px;
}
.aboutArea .controlBox .numberBox .line {
  color: #7e7e7e;
  font-size: clamp(14px, 1.3021vw, 25px);
  padding: 0 10px;
}
.aboutArea .controlBox .numberBox .total {
  color: #7e7e7e;
  font-size: clamp(14px, 1.3021vw, 25px);
  letter-spacing: 0.8px;
}
.aboutArea .controlBox .slick-dots {
  position: static;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: auto;
}
.aboutArea .controlBox .slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  margin: 0;
  padding: 0;
}
.aboutArea .controlBox .slick-dots li button {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #7e7e7e;
  border-radius: 50%;
  background: transparent;
}
.aboutArea .controlBox .slick-dots li button::before {
  display: none;
}
.aboutArea .controlBox .slick-dots li.slick-active button {
  width: 23px;
  height: 23px;
  border: none;
}
.aboutArea .controlBox .slick-dots li.slick-active button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background-color: #7e7e7e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.aboutArea .controlBox .slick-dots li.slick-active button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, #7e7e7e 0deg 225deg, transparent 225deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
  animation: dotsRotate 3s linear infinite;
}
.aboutArea .aboutTxtBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0px 65px 10px 85px;
  max-width: 900px;
}
@media (max-width: 1680px) {
  .aboutArea .aboutTxtBox {
    padding: 10px 50px;
  }
}
@media (max-width: 1440px) {
  .aboutArea .aboutTxtBox {
    padding: 10px 30px;
  }
}
@media (max-width: 1024px) {
  .aboutArea .aboutTxtBox {
    max-width: 100%;
    padding: 0px 30px 30px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutTxtBox {
    padding: 0px 20px 30px;
  }
}
.aboutArea .aboutTxtBox .aboutHead {
  margin-bottom: 85px;
}
@media (max-width: 1024px) {
  .aboutArea .aboutTxtBox .aboutHead {
    margin-bottom: 30px;
  }
}
.aboutArea .aboutTxtBox .aboutHead .decoTitle {
  position: relative;
  font-size: clamp(45px, 2.8646vw, 55px);
  color: #8b8b8b;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: -2px;
}
.aboutArea .aboutTxtBox .aboutHead .decoTitle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
  width: 97px;
  height: 1px;
  background-color: #9e9e9e;
  left: calc(100% + 12px);
  top: 45%;
  transform: translateY(-50%);
}
@media (max-width: 1180px) {
  .aboutArea .aboutTxtBox .aboutHead .decoTitle::after {
    display: none;
  }
}
.aboutArea .aboutTxtBox .aboutHead .title {
  font-size: clamp(20px, 1.1458vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 1.1px;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aboutArea .aboutTxtBox .aboutTxtCols {
  display: flex;
}
@media (max-width: 640px) {
  .aboutArea .aboutTxtBox .aboutTxtCols {
    flex-wrap: wrap;
  }
}
.aboutArea .aboutTxtBox .aboutTxtCols .subtitle {
  width: 50%;
  padding: 4px 20px 0 0;
  font-size: clamp(20px, 1.1458vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.8px;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aboutArea .aboutTxtBox .aboutTxtCols .colRight {
  width: 50%;
}
@media (max-width: 640px) {
  .aboutArea .aboutTxtBox .aboutTxtCols .colRight {
    width: 100%;
    max-width: 100%;
  }
}
.aboutArea .aboutTxtBox .aboutTxtCols .colRight .text {
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.78;
  letter-spacing: 0.8px;
  color: #7e7e7e;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .aboutArea .aboutTxtBox .aboutTxtCols .colRight .text {
    -webkit-line-clamp: 7;
  }
}
.aboutArea .aboutTxtBox .aboutReadMore {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 15.5px;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #111111;
  padding-bottom: 4px;
  margin-top: 36px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutTxtBox .aboutReadMore {
    margin-top: 20px;
  }
}
.aboutArea .aboutTxtBox .aboutReadMore .icon-nav {
  width: 7px;
  height: 13px;
  fill: none;
  stroke: currentColor;
}
@media (min-width: 1181px) {
  .aboutArea .aboutTxtBox .aboutReadMore:hover {
    color: #7e7e7e;
    border-bottom-color: #7e7e7e;
  }
  .aboutArea .aboutTxtBox .aboutReadMore:hover .icon-nav {
    stroke: #7e7e7e;
  }
}

.homeDataArea {
  background-color: #f0f0f0;
  position: absolute;
  right: 0;
  bottom: clamp(0px, 4.9479vw, 95px);
}
@media (max-width: 1680px) {
  .homeDataArea {
    bottom: clamp(0px, 2.6042vw, 50px);
  }
}
@media (max-width: 1280px) {
  .homeDataArea {
    position: static;
  }
}
.homeDataArea .wrap {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.homeDataArea .homeDataBox {
  width: 66.25vw;
  max-width: 1272px;
  margin-left: auto;
  background-color: #212121;
  padding: 60px 30px 65px 95px;
}
@media (max-width: 1680px) {
  .homeDataArea .homeDataBox {
    padding: 60px 30px 60px 95px;
  }
}
@media (max-width: 1280px) {
  .homeDataArea .homeDataBox {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .homeDataArea .homeDataBox {
    padding: 40px 20px;
  }
}
.homeDataArea .homeDataList {
  display: flex;
  align-items: stretch;
  max-width: 840px;
  margin: 0 auto;
}
.homeDataArea .homeDataList .slick-list {
  width: calc(100% + 1px);
  margin-right: -1px;
}
@media (max-width: 560px) {
  .homeDataArea .homeDataList .slick-list {
    width: 100%;
  }
}
.homeDataArea .homeDataItem {
  border-right: 1px solid #7e7e7e;
}
@media (max-width: 360px) {
  .homeDataArea .homeDataItem {
    border-right: none;
  }
}
.homeDataArea .homeDataItem .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 50px;
  gap: 28px;
}
@media (max-width: 768px) {
  .homeDataArea .homeDataItem .item {
    padding: 8px 20px;
  }
}
.homeDataArea .homeDataItem .Img {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
}
@media (max-width: 640px) {
  .homeDataArea .homeDataItem .Img {
    width: 60px;
    height: 60px;
  }
}
.homeDataArea .homeDataItem .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.homeDataArea .homeDataItem .title {
  font-size: clamp(14px, 1.0417vw, 20px);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.tourArea {
  background-image: url("../../images/tw/tourBg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 105px 0 70px;
}
@media (max-width: 1180px) {
  .tourArea {
    padding: 60px 0;
  }
}
.tourArea .wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1640px;
  gap: 30px;
}
.tourArea .tourLeft {
  width: 50%;
  max-width: 740px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.tourArea .tourInfo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
@media (max-width: 1180px) {
  .tourArea .tourInfo {
    flex-direction: column;
  }
}
.tourArea .tourInfo .titleBox {
  text-align: left;
  max-width: 430px;
  margin-bottom: 0;
}
.tourArea .tourInfo .decoTitle {
  position: relative;
  display: inline-block;
  color: #7e7e7e;
  font-size: clamp(45px, 2.8646vw, 55px);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.tourArea .tourInfo .decoTitle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
  width: 97px;
  height: 1px;
  background-color: #9e9e9e;
  left: calc(100% + 40px);
  top: 54%;
  transform: translateY(-50%);
}
@media (max-width: 1180px) {
  .tourArea .tourInfo .decoTitle::after {
    display: none;
  }
}
.tourArea .tourInfo .title {
  color: #fff;
  font-size: clamp(20px, 1.1458vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1px;
}
.tourArea .tourInfo .text {
  color: #aaa;
  font-size: clamp(13px, 0.7292vw, 14px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.95;
  letter-spacing: 1.15px;
  padding-top: 10px;
}
.tourArea .tourInfo .tourLink {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 15.5px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  margin-top: 73px;
  font-weight: 300;
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  .tourArea .tourInfo .tourLink {
    margin-top: 0px;
  }
}
.tourArea .tourInfo .tourLink .icon-nav {
  width: 7px;
  height: 13px;
  fill: none;
  stroke: #fff;
  margin-top: 5px;
}
@media (min-width: 1181px) {
  .tourArea .tourInfo .tourLink:hover {
    color: #7e7e7e;
    border-bottom-color: #7e7e7e;
  }
  .tourArea .tourInfo .tourLink:hover .icon-nav {
    stroke: #7e7e7e;
  }
}
.tourArea .tourClassBox {
  position: relative;
}
.tourArea .tourClassBox::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #7c7c7c;
  bottom: 0px;
  left: 0;
  z-index: 0;
}
.tourArea .tourClassList {
  display: flex;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tourArea .tourClassList::-webkit-scrollbar {
  display: none;
}
.tourArea .tourClassItem {
  flex-shrink: 0;
}
.tourArea .tourClassItem .classTrigger {
  position: relative;
  display: block;
  padding: 22px 68px 22px 0;
  color: #7c7c7c;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 500;
  letter-spacing: 0.4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.tourArea .tourClassItem .classTrigger::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  background-color: #fff;
  bottom: 0px;
  left: 0;
  z-index: 1;
}
@media (max-width: 480px) {
  .tourArea .tourClassItem .classTrigger {
    padding: 22px;
  }
}
@media (min-width: 1181px) {
  .tourArea .tourClassItem .classTrigger:hover {
    color: #fff;
  }
  .tourArea .tourClassItem .classTrigger:hover::after {
    width: 34px;
  }
}
.tourArea .tourClassItem.current .classTrigger {
  color: #fff;
  border-bottom-color: #fff;
}
.tourArea .tourClassItem.current .classTrigger::after {
  width: 34px;
}
.tourArea .tourMapBox {
  flex: 1;
  max-width: 740px;
  margin: 15px auto 0;
  padding-right: 5px;
}
.tourArea .tourMapBox .tourMap {
  display: none;
  width: 100%;
}
.tourArea .tourMapBox .tourMap.active {
  display: block;
}
.tourArea .tourMapBox .tourMap svg {
  width: 100%;
  height: auto;
  display: block;
}
.tourArea .tourMapBox .tourMap svg g[id] {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.6s;
}
.tourArea .tourMapBox .tourMap svg g[id] path {
  transition: fill 0.6s, stroke 0.6s, fill-opacity 0.6s;
}
.tourArea .tourMapBox .tourMap svg g[id] .zoneText {
  fill: white;
}
.tourArea .tourMapBox .tourMap svg g[id]:hover {
  opacity: 0.75;
}
.tourArea .tourMapBox .tourMap svg g[id].zone-active {
  opacity: 1;
}
.tourArea .tourMapBox .tourMap svg g[id].zone-active .hitArea {
  fill-opacity: 1;
}
.tourArea .tourMapBox .tourMap svg g[id].zone-active .zoneText {
  fill: #111111;
}
.tourArea .tourMapBox .tourMap svg g[id].zone-active path[stroke=white] {
  stroke: #111111;
}
.tourArea .tourMapBox[data-map-idx="1"] svg g[id] {
  opacity: 1;
}
.tourArea .tourMapBox[data-map-idx="1"] svg g[id]:hover {
  opacity: 1;
}
.tourArea .tourRight {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 668px;
  padding: 55px 0 0;
}
@media (max-width: 1024px) {
  .tourArea .tourRight {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tourArea .wrap {
    flex-direction: column;
  }
  .tourArea .tourLeft {
    width: 100%;
    max-width: none;
  }
}
.tourArea .tourSlickBox {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tourArea .tourList {
  flex: 1;
}
.tourArea .tourList .tourItem {
  outline: none;
}
.tourArea .tourList .tourItem .Img {
  overflow: hidden;
  aspect-ratio: 674/489;
}
.tourArea .tourList .tourItem .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tourArea .tourList .tourItem .Txt {
  padding: 35px 0;
}
.tourArea .tourList .tourItem .tourTitle {
  display: flex;
  align-items: baseline;
  gap: 0;
  color: #fff;
  font-size: clamp(18px, 1.1979vw, 23px);
  font-weight: 500;
  font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.4px;
  padding-right: 80px;
}
@media (max-width: 1024px) {
  .tourArea .tourList .tourItem .tourTitle {
    padding-right: 0px;
  }
}
.tourArea .tourList .tourItem .tourText {
  color: #e4e4e4;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 300;
  line-height: 1.76;
  letter-spacing: 0.9px;
  padding-top: 22px;
}
.tourArea .tourSlickBox > .arrowBox {
  position: absolute;
  right: -10px;
  top: 520px;
  display: flex;
  align-items: center;
  gap: 0px;
}
@media (max-width: 1440px) {
  .tourArea .tourSlickBox > .arrowBox {
    top: 35.6vw;
  }
}
@media (max-width: 1180px) {
  .tourArea .tourSlickBox > .arrowBox {
    top: 36.5vw;
  }
}
.tourArea .tourSlickBox > .arrowBox .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: #7c7c7c;
  transition: border-color 0.3s, color 0.3s;
}
.tourArea .tourSlickBox > .arrowBox .arrow svg {
  width: 10px;
  height: 16px;
}
@media (min-width: 1181px) {
  .tourArea .tourSlickBox > .arrowBox .arrow:hover {
    color: #fff;
  }
}
.tourArea .tourSlickBox > .arrowBox .arrow.slick-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.tourModal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.tourModal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tourModal .tourModalOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.tourModal .tourModalBox {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 560px;
  background: #1a1a1a;
  padding: 48px 24px 24px;
  max-height: 90dvh;
  overflow-y: auto;
}
.tourModal .tourModalClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
}
.tourModal .tourModalClose svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1181px) {
  .tourModal .tourModalClose:hover {
    opacity: 0.6;
  }
}
.tourModal .tourSlickBox {
  position: relative;
}
.tourModal .tourModalList .tourItem {
  outline: none;
}
.tourModal .tourModalList .tourItem .Img {
  overflow: hidden;
  aspect-ratio: 674/489;
}
.tourModal .tourModalList .tourItem .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.tourModal .tourModalList .tourItem .Txt {
  padding: 20px 0px 10px;
}
.tourModal .tourModalList .tourItem .tourTitle {
  display: flex;
  align-items: baseline;
  color: #fff;
  font-size: clamp(17px, 1.0417vw, 20px);
  font-weight: 500;
  font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.85px;
}
.tourModal .tourModalList .tourItem .tourText {
  color: #e4e4e4;
  font-size: clamp(13px, 0.7813vw, 15px);
  font-family: "Noto Serif TC", "Microsoft JhengHei", sans-serif;
  font-weight: 300;
  line-height: 1.76;
  letter-spacing: 0.9px;
  padding-top: 14px;
}
.tourModal .arrowBox {
  position: absolute;
  right: -8px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.tourModal .arrowBox .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #7c7c7c;
  transition: color 0.3s;
}
.tourModal .arrowBox .arrow svg {
  width: 10px;
  height: 16px;
}
@media (min-width: 1181px) {
  .tourModal .arrowBox .arrow:hover {
    color: #fff;
  }
}
.tourModal .arrowBox .arrow.slick-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

body.tour-modal-open {
  overflow: hidden;
}