@charset "UTF-8";
.aboutArea .picBox .imgBox::before, .bannerArea .bannerList .Img, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.4s ease-in-out;
}

.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: 90%;
  height: auto;
  max-height: calc(100vh - 60px);
  /*以防有不支援dvh的瀏覽器*/
  max-height: calc(100dvh - 60px);
  transition: all 0.7s;
  overflow-y: auto;
}
.popWindowArea .popWindowBox::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.popWindowArea .popWindowBox::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
}
.popWindowArea .popWindowBox::-webkit-scrollbar-thumb {
  background: #603f38;
}
.popWindowArea .popWindowBox {
  opacity: 0;
  background-color: #fff;
}
.popWindowArea .popWindowContent {
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}
.popWindowArea img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWindowArea p {
  margin: 0;
}
.popWindowArea .Txt {
  padding: 30px;
}
.popWindowArea .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  background-color: #603f38;
  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: #d5502e;
  }
  .popWindowArea .close:hover::before {
    transform: rotate(-30deg);
  }
  .popWindowArea .close:hover::after {
    transform: rotate(30deg);
  }
}
.popWindowArea.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popWindowArea.show .popWindowMask,
.popWindowArea.show .popWindowBox {
  opacity: 1;
}
.popWindowArea.show .popWindowBox {
  transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
  .popWindowArea .popWindowContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}

.mainArea {
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList .Txt {
  padding: 171px 30px;
  justify-content: flex-end;
}
.bannerArea .bannerList .Txt .textEditor {
  color: #fff;
  padding: 20px 0;
}
.bannerArea .bannerList .Txt .titleBox {
  margin-bottom: 0;
}
.bannerArea .bannerList .Txt .titleBox .title,
.bannerArea .bannerList .Txt .titleBox .subtitle,
.bannerArea .bannerList .Txt .titleBox .text {
  color: #fff;
}
.bannerArea .bannerList .Txt .titleBox .title {
  font-size: clamp(30px, 4dvw, 70px);
  line-height: 1.4;
  letter-spacing: 3px;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
.bannerArea .bannerList .Txt .titleBox .title::after {
  display: none;
}
.bannerArea .bannerList .Txt .titleBox .text {
  padding-top: 0;
  margin-top: 8px;
  font-size: clamp(16px, 1.2dvw, 20px);
  line-height: 1.8;
  letter-spacing: 0.1px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerList .Txt {
    justify-content: center;
    padding: 130px 20px;
  }
}
.bannerArea .bannerList .Img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: calc(100vh + 42px);
}
.bannerArea .bannerList .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-height: 645px), (min-height: 1100px) {
  .bannerArea .bannerList .Img {
    height: 700px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerList .Img {
    filter: brightness(0.6);
  }
}
@media (max-width: 540px) {
  .bannerArea .bannerList .Img {
    height: max(70vh, 600px);
  }
}
.bannerArea .controlBox {
  position: absolute;
  z-index: 2;
  bottom: 10.3%;
  left: 50%;
  translate: -50% 0;
  max-width: 1546px;
  padding: 0 30px;
  -moz-column-gap: max(3.3%, 30px);
       column-gap: max(3.3%, 30px);
}
.bannerArea .controlBox .btnBox {
  flex-grow: 1;
  pointer-events: auto;
  -moz-column-gap: max(3%, 30px);
       column-gap: max(3%, 30px);
}
.bannerArea .controlBox .btnBox::before, .bannerArea .controlBox .btnBox::after {
  content: "";
  display: inline-block;
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1180px) {
  .bannerArea .controlBox {
    padding: 0 20px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: center;
    bottom: 140px;
  }
  .bannerArea .controlBox .btnBox {
    display: none;
  }
}

.aboutArea {
  padding: 126px 0 117px;
  overflow: hidden;
  background: url("../../images/tw/index/about_bg.jpg") no-repeat center center/cover;
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 100px 0 80px;
  }
}
@media (max-width: 840px) {
  .aboutArea {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    padding: 50px 0;
  }
}
@media (max-width: 400px) {
  .aboutArea {
    padding: 30px 0;
  }
}
.aboutArea .decoBox {
  position: relative;
  max-width: 1465px;
  padding: 0 27px;
}
@media (max-width: 1180px) {
  .aboutArea .decoBox {
    padding: 0 16px;
  }
}
@media (max-width: 840px) {
  .aboutArea .decoBox {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 10px;
  }
}
.aboutArea .decoBox .letter {
  height: auto;
  background: no-repeat center/contain;
}
.aboutArea .decoBox .letter_1 {
  width: 22.6%;
  aspect-ratio: 323/287;
  background-image: url("../../images/tw/index/about_letter_1.png");
}
.aboutArea .decoBox .letter_2 {
  width: 18%;
  aspect-ratio: 257/287;
  background-image: url("../../images/tw/index/about_letter_2.png");
}
.aboutArea .decoBox .letter_3 {
  width: 21.3%;
  aspect-ratio: 305/293;
  background-image: url("../../images/tw/index/about_letter_3.png");
}
.aboutArea .decoBox .letter_4 {
  width: 19.1%;
  aspect-ratio: 269/290;
  background-image: url("../../images/tw/index/about_letter_4.png");
}
.aboutArea .decoBox .letter_5 {
  width: 19%;
  aspect-ratio: 270/287;
  background-image: url("../../images/tw/index/about_letter_5.png");
}
.aboutArea .decoBox .letter_6 {
  width: 50%;
  aspect-ratio: 266/291;
  background-image: url("../../images/tw/index/about_letter_6.png");
}
.aboutArea .decoBox .letter_7 {
  width: 42.2%;
  aspect-ratio: 230/293;
  background-image: url("../../images/tw/index/about_letter_7.png");
}
@media (max-width: 1180px) {
  .aboutArea .decoBox .letter_6 {
    width: 52%;
  }
  .aboutArea .decoBox .letter_7 {
    width: 45.5%;
  }
}
.aboutArea .decoBox .child {
  position: absolute;
  z-index: 1;
  height: auto;
}
.aboutArea .decoBox .child::after {
  inset: 0;
  background: no-repeat center/contain;
  transform-origin: center 80%;
}
.aboutArea .decoBox .child_1 {
  left: 1%;
  top: 10%;
  width: 39.3%;
  aspect-ratio: 279/314;
}
.aboutArea .decoBox .child_1::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url("../../images/tw/index/about_child_1.png");
  animation: decoShake 2.5s linear infinite;
}
.aboutArea .decoBox .child_2 {
  right: 11%;
  top: 34%;
  width: 13.5%;
  aspect-ratio: 191/320;
}
.aboutArea .decoBox .child_2::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url("../../images/tw/index/about_child_2.png");
  animation: decoMove 2.5s linear infinite;
}
.aboutArea .decoBox .child_3 {
  right: 1.2%;
  top: 0;
  width: 13.8%;
  aspect-ratio: 196/378;
}
.aboutArea .decoBox .child_3::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url("../../images/tw/index/about_child_3.png");
  animation: decoShake 2.5s linear infinite reverse;
}
@media (max-width: 1180px) {
  .aboutArea .decoBox .child_1 {
    width: 42%;
    left: 0;
  }
}
@media (max-width: 840px) {
  .aboutArea .decoBox .child::after {
    animation: none !important;
  }
}
.aboutArea .decoBox .pattern {
  position: absolute;
  z-index: -1;
  height: auto;
  background: no-repeat center/contain;
}
.aboutArea .decoBox .pattern_1 {
  left: 27.2%;
  bottom: -10.7%;
  width: 20.8%;
  aspect-ratio: 294/129;
  background-image: url("../../images/tw/index/about_pattern_1.png");
}
.aboutArea .decoBox .pattern_2 {
  right: 6.4%;
  bottom: 16%;
  width: 43.9%;
  aspect-ratio: 294/236;
  background-image: url("../../images/tw/index/about_pattern_2.png");
}
.aboutArea .decoBox .textDeco {
  position: absolute;
  left: -34%;
  top: 10px;
  margin-right: auto;
  width: 35.2%;
  height: auto;
  aspect-ratio: 250/173;
}
.aboutArea .decoBox .textDeco::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  inset: 0;
  background: url("../../images/tw/index/about_deco_2.png") no-repeat center/contain;
  animation: decoTextScale 2s infinite linear;
}
@media (max-width: 1180px) {
  .aboutArea .decoBox .textDeco {
    display: none;
  }
}
.aboutArea .decoBox .picDeco {
  position: absolute;
  right: -8px;
  top: 6.9%;
  z-index: 1;
  width: 24%;
  height: auto;
  aspect-ratio: 171/137;
  background: url("../../images/tw/index/about_deco_1.png") no-repeat center/contain;
}
.aboutArea .decoBox .letterRow--top {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  z-index: 2;
  padding: 0 3px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 840px) {
  .aboutArea .decoBox .letterRow--top {
    order: 2;
    width: calc(100% + 40px);
    padding: 0;
  }
}
.aboutArea .decoBox .letterRow--bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.aboutArea .decoBox .letterRow--bottom .textEditor {
  margin-left: unset;
  width: 40%;
  min-width: 0;
}
.aboutArea .decoBox .letterRow--bottom .textEditor .info {
  color: #444;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0px;
  font-size: clamp(13px, 0.8vw, 15px);
}
.aboutArea .decoBox .letterRow--bottom .letterGroup {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  z-index: 1;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 4px;
       column-gap: 4px;
  padding-top: 10px;
  padding-right: 11.9%;
}
@media (max-width: 1180px) {
  .aboutArea .decoBox .letterRow--bottom .textEditor {
    width: 48%;
  }
  .aboutArea .decoBox .letterRow--bottom .letterGroup {
    width: 43.3%;
    padding-right: 7.9%;
  }
}
@media (max-width: 840px) {
  .aboutArea .decoBox .letterRow--bottom {
    display: contents;
    margin-top: 24px;
  }
  .aboutArea .decoBox .letterRow--bottom .textEditor {
    order: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .aboutArea .decoBox .letterRow--bottom .textEditor .titleBox {
    text-align: center;
  }
  .aboutArea .decoBox .letterRow--bottom .textEditor .title::after {
    left: 50%;
    translate: -50% 0;
  }
  .aboutArea .decoBox .letterRow--bottom .letterGroup {
    order: 3;
    width: calc(43.3% + 40px);
  }
}
.aboutArea .picBox {
  position: relative;
  margin-top: 73px;
  padding-top: 36px;
}
.aboutArea .picBox::after {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #603f38;
  filter: url(#roughEdge-lg);
  opacity: 0.8;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.aboutArea .picBox.is-lineIn::after {
  transform: scaleX(1);
}
@media (max-width: 1180px) {
  .aboutArea .picBox {
    margin-top: 50px;
    padding-top: 50px;
  }
}
@media (max-width: 400px) {
  .aboutArea .picBox {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.aboutArea .picBox .picList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px clamp(60px, 9dvw, 166px);
}
@media (max-width: 640px) {
  .aboutArea .picBox .picList {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .aboutArea .picBox .picList::-webkit-scrollbar {
    display: none;
  }
  .aboutArea .picBox .picList .picItem {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
}
.aboutArea .picBox .controlBox {
  display: none;
}
@media (max-width: 640px) {
  .aboutArea .picBox .controlBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 30px;
  }
}
.aboutArea .picBox .picItem {
  position: relative;
}
@media (min-width: 641px) {
  .aboutArea .picBox .picItem:nth-child(even)::after {
    content: "";
    position: absolute;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    top: 50%;
    left: calc(clamp(60px, 9dvw, 166px) / -2);
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #603f38;
    filter: url(#roughEdge-lg);
  }
}
.aboutArea .picBox .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px 20px;
}
@media (max-width: 1400px) {
  .aboutArea .picBox .item {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .aboutArea .picBox .item {
    flex-direction: column;
    text-align: center;
  }
}
.aboutArea .picBox .imgBox {
  position: relative;
  flex-shrink: 0;
  width: 114px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.aboutArea .picBox .imgBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  inset: 0;
  border: 4px solid #603f38;
  border-radius: 50%;
  filter: url(#roughEdge-sm);
}
.aboutArea .picBox .imgBox .Img {
  flex-shrink: 0;
  width: 56%;
}
.aboutArea .picBox .imgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
@media (max-width: 1400px) {
  .aboutArea .picBox .imgBox {
    width: 90px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .picBox .imgBox {
    width: 80px;
  }
}
.aboutArea .picBox .title {
  flex-shrink: 0;
  width: max(27.5%, 150px);
}
.aboutArea .picBox .title .tw {
  display: block;
  font-weight: bold;
  color: #603f38;
  font-size: 24px;
  line-height: 1.1666666667;
  letter-spacing: 0.48px;
}
.aboutArea .picBox .title .en {
  display: block;
  font-weight: 500;
  color: #603f38;
  font-family: "Akatab", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.18px;
}
@media (max-width: 1400px) {
  .aboutArea .picBox .title {
    width: calc(100% - 90px - 20px);
  }
}
@media (max-width: 1180px) {
  .aboutArea .picBox .title {
    width: calc(100% - 80px - 20px);
  }
  .aboutArea .picBox .title .tw {
    font-size: 22px;
  }
  .aboutArea .picBox .title .en {
    margin-top: 4px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .aboutArea .picBox .title .tw {
    font-size: 20px;
  }
  .aboutArea .picBox .title .en {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .aboutArea .picBox .title {
    width: 100%;
  }
}
.aboutArea .picBox .text {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.16px;
}

.marqueeArea {
  position: relative;
  overflow-x: clip;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #603f38;
}
.marqueeArea::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  inset: -1px;
  border: 2px solid #603f38;
  filter: url(#roughEdge-lg);
}
.marqueeArea .dataTxtList {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.marqueeArea .dataTxtItem {
  flex-shrink: 0;
  padding: 0 2.75dvw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  animation: horizontalForward 100s linear infinite;
}
.marqueeArea .item {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 34px;
       column-gap: 34px;
  padding: 30px 0;
}
@media (max-width: 1180px) {
  .marqueeArea .item {
    padding: 20px 0;
  }
}
.marqueeArea .icon {
  position: relative;
  width: clamp(100px, 15dvw, 172px);
  height: auto;
  aspect-ratio: 157/80;
  flex-shrink: 0;
  background: url("../../images/tw/index/marquee_deco.png") no-repeat center/contain;
}
.marqueeArea .title {
  text-transform: uppercase;
  font-family: "Akatab", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.4px;
  font-size: clamp(30px, 4dvw, 56px);
}

.downloadArea {
  padding: 100px 0 84px;
  overflow: hidden;
  background: url("../../images/tw/index/download_bg.jpg") no-repeat center/cover;
}
@media (max-width: 1180px) {
  .downloadArea {
    padding: 80px 0;
  }
}
@media (max-width: 400px) {
  .downloadArea {
    padding: 70px 0;
  }
}
.downloadArea .downloadBox {
  position: relative;
  padding: 0 50px;
  margin-top: 48px;
}
@media (max-width: 1180px) {
  .downloadArea .downloadBox {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .downloadArea .downloadBox {
    max-width: 400px;
    padding: 0;
  }
}
.downloadArea .downloadListBox {
  max-width: min(100% - 40px, 1286px);
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 540px) {
  .downloadArea .downloadListBox {
    max-width: 100%;
  }
}
.downloadArea .downloadListBox .downloadList {
  margin: 0 -7px;
}
.downloadArea .downloadListBox .slick-track {
  display: flex !important;
  align-items: stretch;
  margin-left: unset;
}
.downloadArea .downloadListBox .slick-slide {
  height: auto;
}
.downloadArea .downloadListBox .slick-list,
.downloadArea .downloadListBox .slick-track,
.downloadArea .downloadListBox .slick-slide > div {
  height: 100%;
}
.downloadArea .downloadListBox .downloadItem {
  height: 100%;
  padding: 7px;
}
.downloadArea .downloadListBox .item {
  position: relative;
  background-color: #f9f6f0;
  border-radius: 20px;
  padding: 24px 22px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.downloadArea .downloadListBox .item::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  inset: 0;
  border: 4px solid #603f38;
  border-radius: 20px;
  filter: url(#roughEdge-lg);
}
@media (max-width: 768px) {
  .downloadArea .downloadListBox .item {
    flex-direction: column;
    gap: 20px;
    padding: 22px;
  }
}
.downloadArea .downloadListBox .Img {
  position: relative;
  z-index: 1;
  width: 46.2%;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 550/442;
}
.downloadArea .downloadListBox .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .downloadArea .downloadListBox .Img {
    width: 100%;
  }
}
.downloadArea .downloadListBox .Txt {
  position: relative;
  z-index: 1;
  width: 53.8%;
  padding-left: 21px;
}
.downloadArea .downloadListBox .Txt .title {
  color: #444;
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.downloadArea .downloadListBox .Txt .text {
  color: #444;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.75;
  margin-top: 10px;
}
.downloadArea .downloadListBox .Txt .btnBox {
  margin-top: 21px;
}
@media (max-width: 768px) {
  .downloadArea .downloadListBox .Txt {
    width: 100%;
    padding-left: unset;
    text-align: center;
  }
  .downloadArea .downloadListBox .Txt .btnBox {
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .downloadArea .controlBox {
    position: absolute;
    top: 50%;
    left: 50%;
    right: unset;
    bottom: unset;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .downloadArea .controlBox:not(:has(.slick-hidden)) {
    margin-top: 30px;
  }
  .downloadArea .controlBox .arrowBox {
    justify-content: center;
  }
}
