@charset "UTF-8";
.facArea .dataBox .Txt, .facArea .dataBox .Img img, .facArea .dataBox .Img::before, .newsArea .dataList .Img, .newsArea .dataList .dataItem, .catalogArea .numBox .slick-dots li button, .catalogArea .numBox .slick-dots li, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.5s 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%;
  height: 100%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.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: clamp(20px, 1.25vw, 24px);
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  background-color: #aec246;
  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: #aec246;
  }
  .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 {
  overflow: hidden;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .Txt {
  max-width: 1200px;
  padding: 120px 50px 152px;
}
.bannerArea .Txt .textBox {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.bannerArea .Txt .titleTw {
  color: #fff;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(30px, 5dvw, 50px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 4.7px;
  text-shadow: 0px 0px 13px rgba(4, 0, 0, 0.49);
  opacity: 0;
}
.bannerArea .Txt .titleEn {
  color: #fff;
  display: block;
  font-family: "Cormorant Garamond", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(14px, 2dvw, 18px);
  line-height: 1.2;
  letter-spacing: 2.8px;
  margin-top: 14px;
  opacity: 0;
}
.bannerArea .Txt .btnBox {
  opacity: 0;
  margin-top: 40px;
}
@media (max-width: 1180px) {
  .bannerArea .Txt {
    padding: 70px 30px;
  }
  .bannerArea .Txt .btnBox {
    margin-top: 30px;
  }
}
@media (max-width: 400px) {
  .bannerArea .Txt {
    padding: 70px 20px;
  }
  .bannerArea .Txt .btnBox {
    margin-top: 20px;
  }
}
.bannerArea .Img {
  height: 107vh;
}
@media (max-height: 645px), (min-height: 1100px) {
  .bannerArea .Img {
    height: 700px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .Img {
    height: 80vh;
  }
}
@media (max-width: 1180px) and (max-height: 645px), (max-width: 1180px) and (min-height: 1100px) {
  .bannerArea .Img {
    height: 500px;
  }
}
.bannerArea .slick-current .Txt .titleTw {
  animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .titleEn {
  animation: slideUpAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .btnBox {
  animation: slideUpAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .slick-dots {
  bottom: 23%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.bannerArea .slick-dots li {
  margin: 0;
}
.bannerArea .slick-dots li button::before {
  color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 1 !important;
  font-size: 0;
  width: 8px;
  height: 8px;
  padding: 0;
}
.bannerArea .slick-dots li.slick-active button::before {
  background-color: #fff;
}

.aboutArea {
  position: relative;
  padding: 37px 0 143px;
  background: no-repeat right center/cover;
  background-color: #f5f5f5;
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 30px 0 80px;
  }
}
@media (max-width: 840px) {
  .aboutArea {
    background-size: 150%;
    background-position-y: bottom;
  }
}
.aboutArea .wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 840px) {
  .aboutArea .wrap {
    flex-direction: column;
    row-gap: 40px;
  }
}
.aboutArea .imgBox {
  width: 56.5%;
}
.aboutArea .imgBox .Img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.aboutArea .imgBox img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 840px) {
  .aboutArea .imgBox {
    width: 100%;
  }
}
.aboutArea .dataBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-left: clamp(60px, 5dvw, 94px);
}
@media (max-width: 768px) {
  .aboutArea .dataBox {
    padding-left: 0;
  }
}
.aboutArea .dataBox .titleBox {
  transform: translateX(calc(-1 * clamp(60px, 5dvw, 92px)));
  margin-bottom: 0;
}
.aboutArea .dataBox .titleBox .decoTitle {
  display: block;
  color: #313131;
  font-family: "Cormorant Garamond", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(36px, 5dvw, 70px);
  letter-spacing: 3px;
  line-height: 64px;
  text-align: left;
}
@media (max-width: 1180px) {
  .aboutArea .dataBox .titleBox {
    transform: translateX(-60px);
  }
  .aboutArea .dataBox .titleBox .decoTitle {
    line-height: 1.2;
    letter-spacing: 2px;
  }
}
@media (max-width: 768px) {
  .aboutArea .dataBox .titleBox {
    transform: translateX(0);
  }
  .aboutArea .dataBox .titleBox .decoTitle {
    letter-spacing: 1.5px;
  }
}
@media (max-width: 400px) {
  .aboutArea .dataBox .titleBox .decoTitle {
    letter-spacing: 1px;
  }
}
.aboutArea .dataBox .Txt {
  margin-top: 22px;
  max-width: 490px;
}
.aboutArea .dataBox .Txt .title {
  color: #8e735b;
  font-size: clamp(16px, 1.5dvw, 22px);
  letter-spacing: 2.2px;
  line-height: 1.4;
}
.aboutArea .dataBox .Txt .textEditor {
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.625;
  padding-top: 18px;
  padding-bottom: 0;
  font-size: clamp(14px, 1.2dvw, 16px);
}
.aboutArea .dataBox .Txt .btnBox {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .aboutArea .dataBox .Txt {
    margin-top: 10px;
  }
}

.catalogArea {
  position: relative;
  overflow-x: clip;
}
.catalogArea .imgBox {
  position: relative;
  width: 100%;
}
.catalogArea .imgBox .imgList {
  margin: 0 !important;
}
.catalogArea .imgBox:not(.slick-slider) {
  overflow: hidden;
}
.catalogArea .imgBox:not(.slick-slider) .imgItem:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.catalogArea .imgBox .Img {
  width: 100%;
}
.catalogArea .imgBox img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 400px) {
  .catalogArea .imgBox .Img {
    height: auto;
    aspect-ratio: 4/2.5;
  }
}
.catalogArea .numBox {
  width: 100%;
  max-width: 700px;
  position: absolute;
  left: calc(50% - 692px);
  top: auto;
  right: auto;
  bottom: 10.8%;
}
.catalogArea .numBox .slick-dots {
  position: static;
  width: 100%;
  transform: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.catalogArea .numBox .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 50px 0 0;
  position: relative;
}
.catalogArea .numBox .slick-dots li:last-child {
  margin-right: 0;
}
.catalogArea .numBox .slick-dots li button {
  width: auto;
  height: auto;
  padding: 0;
  font-family: "Cormorant Garamond", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(16px, 1.2dvw, 25px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
}
.catalogArea .numBox .slick-dots li button::before {
  content: none;
  display: none;
}
.catalogArea .numBox .slick-dots li button::after {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(calc(-50% + 0.5px));
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: width 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.catalogArea .numBox .slick-dots li.slick-active {
  margin-right: 72px;
}
.catalogArea .numBox .slick-dots li.slick-active button {
  color: #fff;
}
.catalogArea .numBox .slick-dots li.slick-active button::after {
  width: 52px;
  opacity: 1;
}
@media (max-width: 1440px) {
  .catalogArea .numBox {
    left: 20px;
  }
}
@media (max-width: 1180px) {
  .catalogArea .numBox {
    display: none;
  }
}
.catalogArea .dataBox {
  background-color: #aec246;
  color: #fff;
  width: 100%;
  max-width: 597px;
  height: 77.8%;
  padding: 4.5% 97px 5.6%;
  position: absolute;
  left: auto;
  top: -11.1%;
  right: calc(50% - 695px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 64px;
}
.catalogArea .dataBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid white;
  display: block;
  pointer-events: none;
  inset: 20px;
}
@media (max-width: 1400px) {
  .catalogArea .dataBox {
    right: 50px;
    max-width: 530px;
    padding: 50px 60px;
    row-gap: 30px;
  }
}
@media (max-width: 1180px) {
  .catalogArea .dataBox {
    max-width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    top: 0;
    right: 0;
  }
}
@media (max-width: 540px) {
  .catalogArea .dataBox {
    padding: 30px;
  }
  .catalogArea .dataBox::before {
    content: "";
    position: absolute;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    inset: 10px;
  }
}
@media (max-width: 400px) {
  .catalogArea .dataBox {
    align-items: center;
  }
}
.catalogArea .titleBox {
  margin-bottom: 0;
}
.catalogArea .titleBox .title,
.catalogArea .titleBox .subtitle {
  color: #fff;
}
@media (max-width: 400px) {
  .catalogArea .titleBox {
    text-align: center;
  }
}
.catalogArea .dataList {
  flex: 1;
  width: 100%;
  pointer-events: none;
}
.catalogArea .dataList:not(.slick-slider) {
  overflow: hidden;
  position: relative;
}
.catalogArea .dataList:not(.slick-slider) .dataItem:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.catalogArea .dataList .slick-track {
  display: flex !important;
  align-items: stretch;
  margin-left: unset;
}
.catalogArea .dataList .slick-slide {
  height: auto;
}
.catalogArea .dataList .slick-slide.slick-current {
  pointer-events: auto;
}
.catalogArea .dataList .slick-list,
.catalogArea .dataList .slick-track,
.catalogArea .dataList .slick-slide > div,
.catalogArea .dataList .dataItem {
  height: 100%;
}
.catalogArea .dataList .item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 30px;
}
@media (max-width: 400px) {
  .catalogArea .dataList .item {
    align-items: center;
    text-align: center;
  }
}
.catalogArea .dataList .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalogArea .dataList .title a {
  display: inline-block;
  font-size: clamp(20px, 1.8dvw, 28px);
  color: #313131;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 1px;
  line-height: 1.3;
}
.catalogArea .dataList .text {
  color: #626262;
  font-size: clamp(14px, 1.4dvw, 19px);
  line-height: 1.4;
  letter-spacing: 1.1px;
  margin-top: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalogArea .dataList .controlBox {
  justify-content: space-between;
}
@media (max-width: 400px) {
  .catalogArea .dataList .controlBox {
    flex-direction: column-reverse;
  }
}

.newsArea {
  padding: 120px 0 82px;
}
@media (max-width: 1180px) {
  .newsArea {
    padding: 60px 0;
  }
}
.newsArea .wrap {
  max-width: 1494px;
  display: grid;
  grid-template-columns: 290px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: start;
  width: 100%;
  position: relative;
}
@media (max-width: 1400px) {
  .newsArea .wrap {
    grid-template-columns: 250px 1fr;
  }
}
@media (max-width: 1180px) {
  .newsArea .wrap {
    grid-template-columns: auto auto;
    grid-template-areas: "title   title" "data    data" "control btn";
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .newsArea .wrap {
    grid-template-columns: auto;
    grid-template-areas: "title" "data" "control" "btn";
    row-gap: 30px;
  }
}
.newsArea .infoBox {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  .newsArea .infoBox {
    display: contents;
  }
}
@media (max-width: 1180px) {
  .newsArea .titleBox {
    grid-area: title;
    margin-bottom: 0;
    text-align: center;
  }
}
.newsArea .controlBox {
  justify-content: flex-start;
}
@media (max-width: 1180px) {
  .newsArea .controlBox {
    grid-area: control;
    justify-content: flex-start;
  }
}
@media (max-width: 400px) {
  .newsArea .controlBox {
    justify-content: center;
  }
}
.newsArea .btnBox {
  margin-top: 70px;
}
.newsArea .btnBox .btn {
  width: 100%;
}
@media (max-width: 1180px) {
  .newsArea .btnBox {
    grid-area: btn;
    margin-top: 0;
  }
}
@media (min-width: 401px) and (max-width: 1180px) {
  .newsArea .btnBox {
    justify-content: flex-end !important;
  }
}
@media (max-width: 400px) {
  .newsArea .btnBox {
    justify-content: center !important;
  }
}
.newsArea .dataBox {
  min-width: 0;
}
@media (max-width: 1180px) {
  .newsArea .dataBox {
    grid-area: data;
  }
}
.newsArea .dataList {
  margin-right: -30px;
}
@media (max-width: 1180px) {
  .newsArea .dataList {
    margin: 0 -20px;
    padding: 20px 0;
  }
}
@media (max-width: 400px) {
  .newsArea .dataList {
    padding: 0;
  }
}
.newsArea .dataList .item {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 20px 30px;
}
@media (min-width: 1181px) {
  .newsArea .dataList .item:hover .Img {
    box-shadow: 12px 15px 20px 0px rgba(49, 49, 49, 0.4);
  }
}
@media (max-width: 840px) {
  .newsArea .dataList .item {
    margin: 0 auto;
    padding: 20px;
    max-width: unset;
  }
}
@media (max-width: 400px) {
  .newsArea .dataList .item {
    padding: 0 20px;
  }
}
.newsArea .dataList .Img {
  position: relative;
  box-shadow: 12px 15px 20px 0px rgba(49, 49, 49, 0.2);
}
@media (max-width: 840px) {
  .newsArea .dataList .Img {
    box-shadow: none;
  }
}
.newsArea .dataList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsArea .dataList .Txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px 42px;
  padding: 20px 0;
}
@media (max-width: 840px) {
  .newsArea .dataList .Txt {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .newsArea .dataList .Txt {
    padding-bottom: 0;
  }
}
.newsArea .dataList .dateBox {
  position: relative;
  width: 138px;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  color: #626262;
}
.newsArea .dataList .dateBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.3);
  left: auto;
  top: 5px;
  right: -20px;
  rotate: 37.5deg;
}
.newsArea .dataList .dateBox .day {
  font-family: "Cormorant Garamond", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #8e735b;
  font-size: 50px;
  letter-spacing: 2.5px;
  line-height: 0.5;
}
.newsArea .dataList .dateBox .year {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.65px;
  line-height: 20px;
  width: 100%;
}
.newsArea .dataList .dateBox .classTitle {
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 20px;
}
.newsArea .dataList .title {
  flex: 1;
}
@media (max-width: 840px) {
  .newsArea .dataList .title {
    flex: auto;
    width: 100%;
  }
}
.newsArea .dataList .title a {
  color: #8e735b;
  font-family: "Noto Serif TC", serif;
  display: block;
  font-size: clamp(16px, 1.5dvw, 20px);
  letter-spacing: 2px;
  line-height: 1.35;
}
@media (min-width: 1181px) {
  .newsArea .dataList .title a:hover {
    color: #aec246;
    transform: translateX(-5px);
  }
}
@media (max-width: 1180px) {
  .newsArea .dataList .title a {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media (max-width: 400px) {
  .newsArea .dataList .title a {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

.facArea {
  padding: 0 0 80px;
  overflow-x: clip;
}
@media (max-width: 1180px) {
  .facArea {
    padding: 40px 0;
  }
}
@media (max-width: 1180px) {
  .facArea .wrap {
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 30px;
  }
}
@media (max-width: 400px) {
  .facArea .wrap {
    row-gap: 20px;
  }
}
.facArea .dataBox {
  width: 100%;
}
@media (max-width: 1180px) {
  .facArea .dataBox {
    order: 2;
  }
}
.facArea .dataBox .dataList {
  width: 100%;
  max-width: 985px;
  margin: 0 auto;
}
.facArea .dataBox .dataList:not(.slick-slider) {
  overflow-y: hidden;
}
.facArea .dataBox .dataList:not(.slick-slider) .dataItem:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1180px) {
  .facArea .dataBox .dataList {
    max-width: unset;
  }
}
.facArea .dataBox .slick-list {
  overflow: visible;
}
.facArea .dataBox .slick-slide.slick-current .item {
  pointer-events: auto;
}
.facArea .dataBox .slick-slide.slick-current .Img img {
  opacity: 1;
}
.facArea .dataBox .item {
  position: relative;
  pointer-events: none;
  overflow: hidden;
  padding: 0 20px;
}
@media (min-width: 1181px) {
  .facArea .dataBox .item:hover .Img::before {
    opacity: 1;
  }
  .facArea .dataBox .item:hover .Txt {
    opacity: 1;
    translate: 0 0;
  }
  .facArea .dataBox .item:hover .Txt::before, .facArea .dataBox .item:hover .Txt::after {
    flex-grow: 1;
    transition-delay: 0.2s;
  }
}
@media (max-width: 1180px) {
  .facArea .dataBox .item {
    padding: 0;
  }
}
.facArea .dataBox .Img {
  position: relative;
  width: 100%;
  background-color: #000;
}
.facArea .dataBox .Img::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 35%);
  inset: 0;
  opacity: 0;
}
.facArea .dataBox .Img a {
  display: block;
  width: 100%;
  height: 100%;
}
.facArea .dataBox .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
@media (max-width: 1180px) {
  .facArea .dataBox .Img img {
    opacity: 1;
  }
}
.facArea .dataBox .Txt {
  position: relative;
  z-index: 3;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.facArea .dataBox .Txt::before, .facArea .dataBox .Txt::after {
  content: "";
  display: inline-block;
  width: auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease-in-out;
}
.facArea .dataBox .Txt .textBox {
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.facArea .dataBox .Txt .title {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.facArea .dataBox .Txt .subtitle {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 1.5;
}
.facArea .dataBox .Txt .text {
  font-size: 15px;
  letter-spacing: 1.6px;
  line-height: 1.4;
  padding-top: 10px;
}
@media (min-width: 1181px) {
  .facArea .dataBox .Txt {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    translate: 0 10px;
    padding: 30px 10px 45px;
  }
}
@media (max-width: 1180px) {
  .facArea .dataBox .Txt {
    width: 100%;
    opacity: 1;
    padding: 20px 0 0;
    pointer-events: auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .facArea .dataBox .Txt::before, .facArea .dataBox .Txt::after {
    background-color: #313131;
    flex-grow: 1;
  }
  .facArea .dataBox .Txt .textBox {
    color: #313131;
    max-width: min(80%, 400px);
  }
}
@media (max-width: 640px) {
  .facArea .dataBox .Txt::before, .facArea .dataBox .Txt::after {
    display: none;
  }
  .facArea .dataBox .Txt .textBox {
    max-width: 100%;
  }
}
.facArea .dataTitleBox {
  position: relative;
  width: 100%;
  max-width: 958px;
  margin: 0 auto;
  padding: 30px 68px;
}
.facArea .dataTitleBox .titleBox {
  margin: unset;
  max-width: 92%;
  margin: 0 auto;
}
@media (min-width: 1181px) {
  .facArea .dataTitleBox .controlBox {
    position: absolute;
    top: 50%;
    left: 50%;
    right: unset;
    bottom: unset;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}
@media (max-width: 1180px) {
  .facArea .dataTitleBox {
    display: contents;
  }
  .facArea .dataTitleBox .titleBox {
    max-width: 100%;
  }
  .facArea .dataTitleBox .controlBox {
    order: 3;
  }
  .facArea .dataTitleBox .controlBox .arrowBox {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .facArea .dataTitleBox {
    padding: 30px 50px;
  }
}
