@charset "UTF-8";
.faqArea .faqTabBtn .tabText::after, .faqArea .faqTabBtn .tabText, .faqArea .faqTabBtn, .productList .Txt .title a, .aboutArea .pointBox .pointItem::before, .popWindowArea .close::before, .popWindowArea .close::after, .popWindowArea .close {
  transition: all 0.45s 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: 100%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.7s;
}
.popWindowArea .popWindowContent {
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}
@media (max-width: 1180px) {
  .popWindowArea .popWindowContent {
    max-height: calc(100vh - 150px);
    /*以防有不支援dvh的瀏覽器*/
    max-height: calc(100dvh - 150px);
  }
}
.popWindowArea img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}
.popWindowArea .Txt {
  padding: 30px;
}
.popWindowArea .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}
.popWindowArea .close {
  width: 46px;
  height: 46px;
  background-color: #772330;
  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: #772330;
  }
  .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;
}

.bannerAboutWrap {
  position: relative;
  overflow: hidden;
}

.bannerArea {
  display: flex;
  align-items: center;
  position: relative;
}
.bannerArea .wrap {
  position: relative;
  z-index: 1;
}
.bannerArea .bgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.bannerArea .bgBox img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1180px) {
  .bannerArea .bgBox img.pc {
    display: none;
  }
}
.bannerArea .bgBox img.mobile {
  -o-object-position: top 20%;
     object-position: top 20%;
}
@media (min-width: 1180px) {
  .bannerArea .bgBox img.mobile {
    display: none;
  }
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerItem .item {
  aspect-ratio: 1920/840;
  height: auto;
  display: flex;
  align-items: center;
  padding: 40px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .item {
    aspect-ratio: unset;
    flex-direction: column;
    padding: 0px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .item {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0 0;
  }
}
.bannerArea .bannerItem .Txt {
  width: 50%;
  max-width: 725px;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 0%;
  left: calc(50% - 725px);
  padding: 43px 0px 40px;
  margin: 0;
  opacity: 1;
}
@media (max-width: 1600px) {
  .bannerArea .bannerItem .Txt {
    left: 0;
    padding: 40px 50px;
  }
}
@media (max-width: 1440px) {
  .bannerArea .bannerItem .Txt {
    padding: 20px 20px 85px;
  }
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt {
    width: 100%;
    max-width: 100%;
    padding: 40px 30px;
    position: relative;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .Txt {
    padding: 40px 30px;
  }
}
.bannerArea .bannerItem .Txt .textBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Txt .textBox {
    align-items: center;
    text-align: center;
  }
}
.bannerArea .bannerItem .Txt .bannerTitle {
  opacity: 0;
  font-size: clamp(24px, 2vw + 0.85rem, 60px);
}
.bannerArea .bannerItem .Txt .bannerSubtitle {
  opacity: 0;
  font-size: clamp(18px, 0.7vw + 1rem, 28px);
}
.bannerArea .bannerItem .controlBox {
  display: flex;
  align-items: center;
  margin-top: 46px;
  gap: 24px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .controlBox {
    justify-content: center;
    margin: 20px auto 0;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerItem .controlBox {
    margin-top: 20px;
    gap: 16px;
  }
}
.bannerArea .bannerItem .btnBox {
  opacity: 0;
  margin-top: 0;
}
.bannerArea .bannerItem .arrowBox {
  opacity: 0;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .arrowBox {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    position: absolute;
    top: -28px;
    left: 0;
  }
}
.bannerArea .bannerItem .Img {
  width: 70%;
  max-width: 1200px;
  position: relative;
  margin-left: auto;
  margin-right: -24px;
  margin-top: 42px;
}
@media (max-width: 1180px) {
  .bannerArea .bannerItem .Img {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.bannerArea .slick-current .Txt .bannerTitle {
  animation: slideUpAnimation 0.8s ease-in-out forwards;
}
.bannerArea .slick-current .Txt .bannerSubtitle {
  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 .arrowBox {
  animation: slideUpAnimation 0.8s 1.2s 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;
}

.decoFlower.bannerFlowerTop {
  width: 450px;
  height: 310px;
  background-image: url(../../images/tw/banner_flower1.png);
  background-position: top right;
  top: -103px;
  right: -20px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .decoFlower.bannerFlowerTop {
    width: 360px;
    height: 248px;
    top: -80px;
  }
}
@media (max-width: 1180px) {
  .decoFlower.bannerFlowerTop {
    width: 293px;
    height: 202px;
    top: -60px;
  }
}
@media (max-width: 768px) {
  .decoFlower.bannerFlowerTop {
    display: none;
  }
}
.decoFlower.bannerAboutFlower {
  width: 530px;
  height: 360px;
  background-image: url(../../images/tw/banner_flower2.png);
  top: calc(43.75% - 210px);
  left: -35px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .decoFlower.bannerAboutFlower {
    width: 424px;
    height: 288px;
  }
}
@media (max-width: 1180px) {
  .decoFlower.bannerAboutFlower {
    width: 345px;
    height: 234px;
    left: -20px;
  }
}
@media (max-width: 768px) {
  .decoFlower.bannerAboutFlower {
    display: none;
  }
}

body:not(.loadingOverflow) .decoFlower.bannerFlowerTop {
  transform-origin: top right;
  animation: walk-in-left 1.8s ease-out 0.3s forwards, branchSway 8s ease-in-out 2.1s infinite;
}
body:not(.loadingOverflow) .decoFlower.bannerAboutFlower {
  transform-origin: top left;
  animation: walk-in-right 1.8s ease-out forwards, branchSway 6s ease-in-out 1.8s infinite;
}
@media (prefers-reduced-motion: reduce) {
  body:not(.loadingOverflow) .decoFlower.bannerFlowerTop,
  body:not(.loadingOverflow) .decoFlower.bannerAboutFlower {
    animation: none;
    opacity: 1;
  }
}

.aboutArea {
  padding: 124px 0 131px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .aboutArea {
    padding: 100px 0;
  }
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .aboutArea {
    padding: 40px 0 60px;
  }
}
.aboutArea .wrap {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (max-width: 1180px) {
  .aboutArea .wrap {
    flex-direction: column;
    align-items: center;
  }
}
.aboutArea .sectionTitleBox {
  margin-left: -10px;
  margin-top: 44px;
}
@media (max-width: 1440px) {
  .aboutArea .sectionTitleBox {
    margin-top: 32px;
  }
}
.aboutArea .aboutBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: -7px;
  position: relative;
}
@media (max-width: 960px) {
  .aboutArea .aboutBox {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutBox {
    margin-right: 0;
  }
}
.aboutArea .aboutImg {
  width: 100%;
  flex-shrink: 0;
  max-width: 650px;
  -webkit-mask-image: url("../../images/tw/home_about_mask.png");
          mask-image: url("../../images/tw/home_about_mask.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.aboutArea .aboutImg img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
@media (max-width: 1440px) {
  .aboutArea .aboutImg {
    flex-shrink: initial;
    max-width: 550px;
  }
}
@media (max-width: 960px) {
  .aboutArea .aboutImg {
    margin: 0 auto 30px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutImg {
    margin-bottom: 20px;
  }
}
.aboutArea .aboutTxt {
  width: calc(100% - 650px);
  max-width: 650px;
  margin-bottom: 25px;
  padding-left: 64px;
  padding-top: 59px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutTxt {
    padding-left: 50px;
    padding-top: 40px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutTxt {
    width: calc(100% - 550px);
    padding: 20px 20px 20px 0;
  }
}
@media (max-width: 960px) {
  .aboutArea .aboutTxt {
    width: 100%;
    max-width: 680px;
    padding: 20px 0;
    text-align: center;
  }
}
.aboutArea .aboutTxt .titleBox {
  margin-bottom: 0;
}
.aboutArea .aboutTxt .btnBox {
  margin-top: 52px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutTxt .btnBox {
    margin-top: 36px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutTxt .btnBox {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutTxt .btnBox {
    margin-top: 20px;
  }
}
.aboutArea .pointBox {
  width: 100%;
  max-width: 1200px;
  padding-top: 0px;
}
.aboutArea .pointBox .pointList {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .aboutArea .pointBox .pointList {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
}
.aboutArea .pointBox .pointItem {
  width: 20%;
  display: flex;
  position: relative;
}
@media (max-width: 540px) {
  .aboutArea .pointBox .pointItem {
    width: 33.333%;
  }
}
.aboutArea .pointBox .pointItem::before {
  content: "";
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to top, rgba(119, 35, 48, 0) 0%, #772330 35%, #772330 65%, rgba(119, 35, 48, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.aboutArea .pointBox .pointItem:nth-child(1)::before {
  display: none;
}
@media (max-width: 540px) {
  .aboutArea .pointBox .pointItem:nth-child(3n+1)::before {
    display: none;
  }
}
.aboutArea .pointBox .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  position: relative;
}
@media (max-width: 1180px) {
  .aboutArea .pointBox .item {
    padding: 10px;
  }
}
.aboutArea .pointBox .Img {
  width: 100%;
  max-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}
.aboutArea .pointBox .Img img {
  display: block;
  width: 100%;
}
.aboutArea .pointBox .Txt .title {
  color: #772330;
  font-size: clamp(16px, 0.7vw + 0.85rem, 22px);
  font-weight: 500;
  line-height: 1.36;
}
.aboutArea .pointBox .Txt .exp {
  font-size: clamp(14px, 0.6vw + 0.4rem, 17px);
  line-height: 1.76;
  font-weight: 600;
  letter-spacing: 0.85px;
  color: #333;
}
@media (max-width: 1180px) {
  .aboutArea .pointBox .Txt .exp {
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .aboutArea .pointBox .Txt .exp {
    letter-spacing: 0;
  }
}
.aboutArea:not(.decoAnimate) .ImgBgInk {
  opacity: 0;
}
.aboutArea:not(.decoAnimate) .aboutBird {
  opacity: 0;
}
.aboutArea.decoAnimate .ImgBgInk {
  animation: ink-slow-bleed 1s linear forwards;
}
.aboutArea.decoAnimate .aboutBird {
  opacity: 1;
}

.ImgBgInk {
  width: 732px;
  height: 716px;
  background-image: url(../../images/tw/home_about_img_deco.png);
  top: -25%;
  right: -9.6%;
  z-index: -1;
}
@media (max-width: 1440px) {
  .ImgBgInk {
    width: 586px;
    height: 573px;
    top: -20%;
  }
}
@media (max-width: 1180px) {
  .ImgBgInk {
    width: 476px;
    height: 465px;
    top: 12%;
    right: -16%;
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .ImgBgInk {
    top: 25%;
    right: -200px;
  }
}

.aboutLeftMountain {
  left: -18%;
  bottom: 135px;
}
@media (max-width: 1600px) {
  .aboutLeftMountain {
    bottom: 0px;
    opacity: 0.8;
  }
}
@media (max-width: 1440px) {
  .aboutLeftMountain {
    bottom: -5%;
    left: -10%;
  }
}
@media (max-width: 1180px) {
  .aboutLeftMountain {
    opacity: 0.5;
    left: -8%;
    bottom: -2%;
  }
}
@media (max-width: 768px) {
  .aboutLeftMountain {
    display: none;
  }
}

.aboutRightMountain {
  right: -5.6%;
  bottom: 45px;
}
@media (max-width: 1440px) {
  .aboutRightMountain {
    bottom: 30px;
  }
}
@media (max-width: 1180px) {
  .aboutRightMountain {
    bottom: 0%;
  }
}

.aboutLeftCloud {
  left: -20%;
  bottom: 12%;
}
@media (max-width: 1440px) {
  .aboutLeftCloud {
    width: 452px;
    height: 293px;
  }
}
@media (max-width: 1180px) {
  .aboutLeftCloud {
    width: 362px;
    height: 235px;
    left: -15%;
    bottom: 20%;
  }
}
@media (max-width: 768px) {
  .aboutLeftCloud {
    left: -150px;
    bottom: 28%;
  }
}
@media (max-width: 480px) {
  .aboutLeftCloud {
    display: none;
  }
}

.aboutRightCloud {
  right: -10%;
  bottom: 14%;
  opacity: 0.65;
}
@media (max-width: 1440px) {
  .aboutRightCloud {
    width: 452px;
    height: 293px;
  }
}
@media (max-width: 1180px) {
  .aboutRightCloud {
    width: 362px;
    height: 235px;
    right: -8%;
    display: none;
  }
}

.aboutBird {
  width: 183px;
  height: 73px;
  right: 150px;
  bottom: 132px;
}
@media (max-width: 1440px) {
  .aboutBird {
    width: 137px;
    height: 55px;
    right: 100px;
    bottom: 100px;
  }
}
@media (max-width: 1180px) {
  .aboutBird {
    width: 110px;
    height: 44px;
    right: 60px;
    bottom: 80px;
  }
}
@media (max-width: 768px) {
  .aboutBird {
    display: none;
  }
}

.productArea {
  padding: 120px 0 143px;
  text-align: center;
  overflow: hidden;
  background-image: url(../../images/tw/home_product_bg_top.jpg);
  position: relative;
}
.productArea::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(../../images/tw/home_product_bg_bottom.jpg);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .productArea {
    padding: 100px 0 110px;
  }
}
@media (max-width: 1180px) {
  .productArea {
    padding: 80px 0 90px;
  }
}
@media (max-width: 768px) {
  .productArea {
    padding: 60px 0;
  }
}
.productArea .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.productArea .sectionTitleBox {
  margin-top: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .productArea .sectionTitleBox {
    margin-top: 36px;
  }
}
.productArea .productBox {
  width: 100%;
  max-width: 1356px;
  margin: 0 auto;
  padding-top: 7px;
}
@media (max-width: 640px) {
  .productArea .productBox {
    padding: 0;
    max-width: 440px;
  }
}
@media (max-width: 640px) {
  .productArea .productBox .arrowBox {
    width: 100%;
    max-width: 480px;
    justify-content: space-between;
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 0 10px;
  }
}
.productArea .controlBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 6px;
}
.productArea .controlBox .btnBox {
  margin-top: 0;
}
@media (max-width: 1280px) {
  .productArea .controlBox {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .productArea .controlBox {
    gap: 16px;
    padding-top: 20px;
  }
}

.productList:not(.slick-slider) {
  display: flex;
  flex-wrap: wrap;
}
.productList:not(.slick-slider) .productItem {
  width: 33.3333333333%;
}
@media (max-width: 960px) {
  .productList:not(.slick-slider) .productItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .productList:not(.slick-slider) .productItem {
    width: 100%;
  }
}
.productList .slick-list {
  overflow: visible;
}
.productList .productItem {
  padding: 20px 16px;
  outline: none;
}
@media (max-width: 640px) {
  .productList .productItem {
    padding: 20px 10px;
  }
}
.productList .item {
  cursor: pointer;
}
.productList .Img {
  box-shadow: 0px 0px 29px 0px rgba(81, 0, 13, 0.79);
}
.productList .Txt {
  padding: 23px 0 15px;
}
@media (max-width: 768px) {
  .productList .Txt {
    padding: 15px 0 0;
  }
}
.productList .Txt .title {
  color: #fff;
  font-size: clamp(16px, 0.7vw + 0.85rem, 22px);
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.productList .Txt .title a {
  color: inherit;
}
@media (min-width: 1181px) {
  .productList .Txt .title a:hover {
    color: #ba9770;
  }
}

.flowWrap {
  overflow: hidden;
  position: relative;
}

.faqArea {
  padding: 161px 0 147px;
  position: relative;
  background-image: url(../../images/tw/home_faq_bg.jpg);
  background-position: center 0;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .faqArea {
    padding: 120px 0 100px;
  }
}
@media (max-width: 1180px) {
  .faqArea {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .faqArea {
    padding: 60px 0;
  }
}
.faqArea .faqDecoDragon {
  width: 2195px;
  height: 1254px;
  position: absolute;
  top: -13.4%;
  right: -57.6%;
  background-image: url(../../images/tw/dragon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: opacity 1s ease-out 0.5s forwards;
}
.faqArea .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.faqArea .sectionTitleBox {
  margin: 0 0 10px;
}
.faqArea .faqTabBar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .faqArea .faqTabBar {
    margin-bottom: 24px;
  }
}
.faqArea .faqTabBtn {
  background: transparent;
  border: none;
  margin-bottom: -1px;
  padding: 10px 25px;
  cursor: pointer;
  letter-spacing: 1px;
}
.faqArea .faqTabBtn .tabText {
  font-size: clamp(16px, 4vw, 18px);
  color: #333;
  position: relative;
  padding: 5px 0;
}
.faqArea .faqTabBtn .tabText::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #772330;
}
.faqArea .faqTabBtn.active .tabText {
  color: #772330;
}
.faqArea .faqTabBtn.active .tabText::after {
  width: 100%;
  opacity: 1;
}
@media (min-width: 1181px) {
  .faqArea .faqTabBtn:hover .tabText {
    color: #ba9770;
  }
  .faqArea .faqTabBtn:hover .tabText::after {
    background-color: #ba9770;
    width: 100%;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .faqArea .faqTabBtn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
.faqArea .faqWhiteBox {
  position: relative;
  background-color: #fff;
  padding: 54px 60px 40px;
  overflow: hidden;
}
.faqArea .faqWhiteBox::before {
  content: "";
  position: absolute;
  bottom: -6.5%;
  right: -1px;
  width: 848px;
  height: 226px;
  background-image: url(../../images/tw/faq_bg.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: opacity 6s ease-out infinite;
}
@media (max-width: 768px) {
  .faqArea .faqWhiteBox::before {
    width: 100%;
    max-width: 840px;
  }
}
@media (max-width: 768px) {
  .faqArea .faqWhiteBox::before {
    bottom: 0;
  }
}
@media (max-width: 1180px) {
  .faqArea .faqWhiteBox {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .faqArea .faqWhiteBox {
    padding: 40px 24px;
  }
}
.faqArea .faqCorner {
  width: 55px;
  height: calc(100% - 48px);
  position: absolute;
  top: 24px;
  left: 24px;
}
@media (max-width: 768px) {
  .faqArea .faqCorner {
    display: none;
  }
}
.faqArea .faqCorner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}
.faqArea .faqCorner::before, .faqArea .faqCorner::after {
  content: "";
  display: block;
  width: 100%;
  height: 55px;
  background-image: url(../../images/tw/corner_yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.faqArea .faqCorner::after {
  transform: rotate(-90deg);
}
.faqArea .faqCorner.right {
  left: auto;
  right: 24px;
  scale: -1;
}
.faqArea .faqCorner .decoLine {
  width: 12px;
  height: 112px;
  background-image: url(../../images/tw/deco_line.png);
  background-position: top;
  background-repeat: space;
  margin-right: 2px;
}
.faqArea .faqList {
  padding: 60px 50px 10px;
  margin: 0;
  height: 480px;
  max-height: 60dvh;
  overflow-y: auto;
}
.faqArea .faqList::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.faqArea .faqList::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
}
.faqArea .faqList::-webkit-scrollbar-thumb {
  background: #e8e8e8;
}
.faqArea .faqList::-webkit-scrollbar-track {
  box-shadow: none;
}
@media (max-width: 1440px) {
  .faqArea .faqList {
    padding: 40px 40px 10px;
  }
}
@media (max-width: 1180px) {
  .faqArea .faqList {
    padding: 30px 30px 10px;
  }
}
@media (max-width: 768px) {
  .faqArea .faqList {
    padding: 20px 16px 10px;
    height: auto;
    max-height: 50dvh;
  }
}
.faqArea .faqItem {
  padding: 36px 26px 41px;
  border-bottom: 1px solid #dddddd;
  text-align: left;
}
.faqArea .faqItem:first-child {
  padding-top: 0;
}
.faqArea .faqItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faqArea .faqItem.hidden {
  display: none;
}
@media (max-width: 1440px) {
  .faqArea .faqItem {
    padding: 28px 20px 32px;
  }
}
@media (max-width: 768px) {
  .faqArea .faqItem {
    padding: 20px 8px;
  }
}
.faqArea .faqQ {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .faqArea .faqQ {
    gap: 14px;
  }
}
.faqArea .faqQ .faqIcon {
  color: #772330;
}
.faqArea .faqA {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .faqArea .faqA {
    gap: 14px;
  }
}
.faqArea .faqA .faqIcon {
  color: #ba9770;
}
.faqArea .faqIcon {
  flex-shrink: 0;
  font-family: "Poppins", "Noto Serif TC", serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .faqQ .faqArea .faqIcon {
    font-size: 20px;
  }
  .faqA .faqArea .faqIcon {
    font-size: 18px;
  }
}
.faqArea .faqTitle {
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .faqArea .faqTitle {
    font-size: 16px;
  }
}
.faqArea .faqContent {
  flex-grow: 1;
  font-size: clamp(14px, 0.6vw + 0.4rem, 17px);
  line-height: 1.76;
  font-weight: 400;
  color: #111;
  text-align: left;
}
@media (max-width: 768px) {
  .faqArea .faqContent {
    font-size: 14px;
  }
}
.faqArea .faqContent p {
  margin: 0;
}