@charset "UTF-8";
.museumArea .museumRightBox, .roomClsArea .itemOverlay, .roomClsArea .itemImg, .roomClsArea .roomSliderWrap .arrowBox .arrowIcon, .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: #362B20;
  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: #362B20;
  }
  .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 .wrap {
  max-width: 100%;
}
.bannerArea.bannerArea--video .bannerBox {
  min-height: 100vh;
}
.bannerArea .bannerBox {
  position: relative;
}
.bannerArea .bannerBox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(96, 96, 96, 0) 90%);
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 1180px) {
  .bannerArea .bannerBox::before {
    height: 20%;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerBox::before {
    height: 25%;
  }
}
.bannerArea .bannerBox .bannerVideoIframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bannerArea .bannerBox .bannerVideoIframe iframe,
.bannerArea .bannerBox .bannerVideoIframe video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerArea .bannerList {
  position: relative;
  z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
  margin-bottom: 0;
}
.bannerArea .bannerList .bannerItem {
  overflow: hidden;
}
.bannerArea .bannerList .bannerItem .Txt {
  max-width: 1200px;
  padding: 104px 20px 85px;
}
.bannerArea .bannerList .bannerItem .Txt .textBox {
  display: flex;
  flex-direction: column;
}
.bannerArea .bannerList .bannerItem .Txt .title {
  color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease;
  writing-mode: vertical-rl;
  font-family: "Noto Serif TC", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 60px; /* 142.857% */
  letter-spacing: 18px;
}
.bannerArea .bannerList .bannerItem .Txt .title.visible {
  opacity: 1;
}
@media (max-width: 1180px) {
  .bannerArea .bannerList .bannerItem .Txt .title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .bannerArea .bannerList .bannerItem .Txt .title {
    font-size: 30px;
  }
}
.bannerArea .bannerList .bannerItem .Txt .bannerVideo .videoBtn {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  bottom: 150px;
  right: 50%;
  transform: translateX(50%);
}
.bannerArea .bannerList .bannerItem .Txt .bannerVideo .videoBtn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 5px);
  z-index: 1;
}
.bannerArea .bannerList .bannerItem .Txt .bannerVideo .videoBtn::after {
  content: "";
  border: 1px dashed #fff;
  border-radius: 50%;
  z-index: 1;
  width: 75%;
  height: 75%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1440px) {
  .bannerArea .bannerList .bannerItem .Txt {
    padding: 20px 20px 85px;
  }
}
@media (max-width: 960px) {
  .bannerArea .bannerList .bannerItem .Txt {
    padding: 20px;
  }
}
.bannerArea .bannerList .bannerItem .Img {
  height: auto;
}
.bannerArea .bannerList .bannerItem .Img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
  position: relative;
}
@media (max-width: 1180px) {
  .bannerArea .bannerList .bannerItem .Img img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bannerArea .scrollDown {
  cursor: pointer;
  display: block;
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
@media (max-width: 1180px) {
  .bannerArea .scrollDown {
    display: none;
  }
}
.bannerArea .scrollDown span {
  display: block;
}
.bannerArea .scrollDown span.text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  letter-spacing: 1.76px;
}
.bannerArea .scrollDown span.line {
  width: 1px;
  height: 45px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.bannerArea .scrollDown span.line::before {
  content: "";
  width: 1px;
  height: 45px;
  animation: bannerScrollAnimation 2.5s linear infinite forwards;
  background-color: #362B20;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.aboutArea {
  background-color: #FEF8F0;
  background-image: url(../../images/tw/home/about_bg.jpg);
  position: relative;
  overflow: hidden;
  padding: 265px 0 93px;
}
@media (max-width: 1600px) {
  .aboutArea {
    padding: 200px 0 80px;
  }
}
@media (max-width: 1440px) {
  .aboutArea {
    padding: 150px 0 80px;
  }
}
@media (max-width: 1180px) {
  .aboutArea {
    padding: 100px 0 70px;
  }
}
@media (max-width: 900px) {
  .aboutArea {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .aboutArea {
    padding: 60px 0;
  }
}
.aboutArea::after {
  content: "";
  width: 1920px;
  aspect-ratio: 1920/1060;
  display: block;
  background-image: url(../../images/tw/home/bg_home_about.png);
  background-size: 1920px;
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 900px) {
  .aboutArea::after {
    background-size: 150%;
  }
}
@media (max-width: 480px) {
  .aboutArea::after {
    background-size: 220%;
    background-position: center top;
  }
}
.aboutArea::after {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.aboutArea .wrap {
  max-width: 1400px;
  position: relative;
  z-index: 2;
}
.aboutArea .aboutItem {
  display: flex;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.aboutArea .aboutItem.aboutItem1 {
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 80px;
  flex-direction: row;
}
@media (max-width: 1440px) {
  .aboutArea .aboutItem.aboutItem1 {
    padding-bottom: 40px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem.aboutItem1 {
    padding-top: 80px;
    padding-bottom: 0px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutItem.aboutItem1 {
    padding-top: 0px;
    padding-bottom: 48px;
    gap: 28px;
  }
}
.aboutArea .aboutItem.aboutItem1 .aboutText {
  padding-right: 100px;
  padding-bottom: 80px;
}
@media (max-width: 900px) {
  .aboutArea .aboutItem.aboutItem1 .aboutText {
    padding-right: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 640px) {
  .aboutArea .aboutItem.aboutItem1 .aboutText {
    padding-bottom: 24px;
  }
}
.aboutArea .aboutItem.aboutItem1 .aboutBody {
  padding-right: 90px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutItem.aboutItem1 .aboutBody {
    padding-right: 60px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem.aboutItem1 .aboutBody {
    padding-right: 0;
  }
}
.aboutArea .aboutItem.aboutItem2 {
  padding-top: 117px;
  padding-bottom: 100px;
  flex-direction: row;
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem.aboutItem2 {
    padding: 60px 0;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutItem.aboutItem2 {
    padding: 0px;
    gap: 20px;
    flex-direction: column;
  }
}
.aboutArea .aboutItem.aboutItem2 .aboutTxt {
  padding: 106px 70px 0 60px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutItem.aboutItem2 .aboutTxt {
    padding: 50px 20px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem.aboutItem2 .aboutTxt {
    width: calc(50% - 20px);
    padding: 0;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutItem.aboutItem2 .aboutTxt {
    width: 100%;
    padding: 0;
  }
}
.aboutArea .aboutItem.aboutItem2 .titleDecoHouse {
  margin-top: 44px;
}
.aboutArea .aboutItem.aboutItem2 .titleDecoHouse img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem.aboutItem2 .titleDecoHouse {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutItem.aboutItem2 .titleDecoHouse {
    display: none;
  }
}
.aboutArea .aboutItem.aboutItem2 .aboutBody {
  padding-top: 220px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutItem.aboutItem2 .aboutBody {
    padding-top: 150px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutItem.aboutItem2 .aboutBody {
    padding-top: 100px;
  }
}
@media (max-width: 900px) {
  .aboutArea .aboutItem.aboutItem2 .aboutBody {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutItem.aboutItem2 .aboutBody {
    padding: 20px 0 0;
  }
}
.aboutArea .aboutTxt {
  width: 510px;
  position: relative;
}
@media (max-width: 1180px) {
  .aboutArea .aboutTxt {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .aboutArea .aboutTxt {
    width: 100%;
  }
}
.aboutArea .aboutImg img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.aboutArea .aboutImg.aboutImg1 {
  width: calc(100% - 510px);
  max-width: 1240px;
  position: relative;
  overflow: visible;
  margin-top: 248px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutImg.aboutImg1 {
    margin-top: 160px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutImg.aboutImg1 {
    width: 80%;
    margin-top: 0;
    margin-left: auto;
  }
}
.aboutArea .aboutImg.aboutImg1 img {
  position: relative;
  width: 1030px;
}
@media (max-width: 1600px) {
  .aboutArea .aboutImg.aboutImg1 img {
    width: calc(100% + 400px);
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutImg.aboutImg1 img {
    width: 100%;
  }
}
.aboutArea .aboutImg.aboutImg2 {
  position: relative;
  width: 100%;
}
.aboutArea .aboutImg.aboutImg3 {
  width: 730px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutImg.aboutImg3 {
    width: 50%;
    max-width: 730px;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .aboutArea .aboutImg.aboutImg3 {
    width: 100%;
    max-width: 400px;
  }
}
.aboutArea .aboutImg2Box {
  position: absolute;
  width: 430px;
  margin-left: -90px;
  margin-top: -68px;
  position: relative;
}
@media (max-width: 1180px) {
  .aboutArea .aboutImg2Box {
    margin: 40px 0;
    width: 100%;
    max-width: 430px;
  }
}
.aboutArea .aboutVideo {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.aboutArea .aboutVideo iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .aboutVideo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutArea .aboutTitle {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(24px, 2.4vw, 46px);
  font-weight: 600;
  color: #362B20;
  letter-spacing: 0.25em;
  line-height: 1.6;
  margin-bottom: 19px;
}
@media (max-width: 768px) {
  .aboutArea .aboutTitle {
    font-size: clamp(20px, 4.5vw, 32px);
    letter-spacing: 0.2em;
  }
}
.aboutArea .aboutEnText {
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #D6802B;
  letter-spacing: 0.05em;
  line-height: 1.64;
  position: relative;
  padding-bottom: 11px;
}
.aboutArea .aboutEnText::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #D6802B;
  position: absolute;
  bottom: 0;
  left: 0;
}
.aboutArea .aboutEnText.aboutEn--green {
  color: #2D3F30;
}
.aboutArea .aboutEnText.aboutEn--green::before {
  background-color: #2D3F30;
}
.aboutArea .aboutBody {
  font-family: "Noto Sans TC", sans-serif;
  font-size: clamp(15px, 0.85vw, 16px);
  color: #434343;
  letter-spacing: 2.4px;
  line-height: 2.36;
  padding-top: 113px;
  position: relative;
}
.aboutArea .aboutBody .comma {
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .aboutArea .aboutBody {
    padding-top: 80px;
  }
}
@media (max-width: 1180px) {
  .aboutArea .aboutBody {
    padding-top: 40px;
  }
}
.aboutArea .bgDeco {
  position: absolute;
}
.aboutArea .bgDeco img {
  display: block;
  max-width: 100%;
}
.aboutArea .bgDeco.aboutDecoImg1 {
  left: -28%;
  bottom: -20%;
  transform-origin: bottom center;
  animation: grassSway 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.aboutArea .bgDeco.aboutDecoImg2 {
  left: 11.5%;
  bottom: -5.5%;
  animation: waterPulse 13s ease-in-out infinite;
}
@media (max-width: 1440px) {
  .aboutArea .bgDeco.aboutDecoImg2 {
    width: 40vw;
    bottom: 0;
    left: 15%;
  }
}
@media (max-width: 1180px) {
  .aboutArea .bgDeco.aboutDecoImg2 {
    display: none;
  }
}
.aboutArea .bgDeco.aboutDecoImg3 {
  left: -53%;
  bottom: -30%;
  transform-origin: bottom center;
  animation: grassSway 7.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
@media (max-width: 1440px) {
  .aboutArea .bgDeco.aboutDecoImg3 {
    left: -10%;
    bottom: -100%;
  }
}
@media (max-width: 840px) {
  .aboutArea .bgDeco.aboutDecoImg3 {
    left: -30%;
    bottom: -100%;
  }
}
@media (max-width: 768px) {
  .aboutArea .bgDeco.aboutDecoImg3 {
    display: none;
  }
}

.secHeader {
  display: inline-block;
  position: relative;
  padding: 20px 0 20px 120px;
}
.secHeader::before {
  content: "";
  display: block;
  width: 220px;
  height: 74px;
  background-image: url(../../images/tw/title_line_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40px;
  left: -12px;
  pointer-events: none;
}
.secHeader .secTitle {
  display: inline-block;
  font-family: "Noto Serif TC", serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 76px; /* 165.217% */
  letter-spacing: 11.5px;
  position: relative;
}
.secHeader .secTitle::after {
  content: "";
  display: block;
  width: 17px;
  height: 21px;
  background-image: url(../../images/tw/comma_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -4px;
  right: -6px;
  pointer-events: none;
}
.secHeader .secEntitle {
  font-size: 16px;
  line-height: 32px; /* 160% */
  padding-bottom: 4px;
  position: relative;
}
.secHeader .secEntitle::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #362B20;
  position: absolute;
  left: 0;
  bottom: 0;
}
.secHeader .secDesc {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 225% */
  letter-spacing: 2.4px;
}
.secHeader .secMore {
  margin-top: 28px;
}
.secHeader .secChar {
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
}
@media (max-width: 900px) {
  .secHeader .secChar {
    font-size: clamp(40px, 4.5vw, 64px);
  }
}
@media (max-width: 640px) {
  .secHeader .secChar {
    font-size: clamp(32px, 7vw, 48px);
  }
}

.marqueepicArea .itemImg {
  height: clamp(300px, 50vw, 960px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .marqueepicArea .itemImg {
    height: clamp(220px, 56vw, 360px);
  }
}
.marqueepicArea .itemImg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.marqueepicArea.parallaxSection {
  position: relative;
  height: 960px;
  max-height: 100vh;
  max-height: 100svh;
}
.marqueepicArea.parallaxSection .itemImg {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  background-color: #F5F0E8;
  opacity: 1;
}
html.is-touch .marqueepicArea.parallaxSection {
  position: sticky;
  top: 0;
}

.roomClsArea {
  background-color: #AF9A8E;
  color: #fff;
  padding: 160px 0 147px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .roomClsArea {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .roomClsArea {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .roomClsArea {
    padding: 30px 0 40px;
  }
}
.roomClsArea .bgDeco {
  position: absolute;
}
.roomClsArea .bgDeco img {
  display: block;
  max-width: 100%;
}
.roomClsArea .bgDeco.bgDeco1 {
  top: 10.8%;
  left: -5.3%;
  animation: rotate 100s infinite linear;
}
.roomClsArea .bgDeco.bgDeco2 {
  bottom: -24%;
  right: -18%;
  transform-origin: bottom center;
  animation: grassSway 20s infinite linear;
}
.roomClsArea .secHeader {
  max-width: 820px;
  margin: 0 auto;
  color: #FFF;
  display: flex;
  gap: 70px;
  padding-left: 100px;
  padding-top: 28px;
}
.roomClsArea .secHeader::before {
  top: 52px;
  left: -32px;
}
.roomClsArea .secHeader .secTitle::after {
  top: -20px;
  right: -20px;
}
.roomClsArea .secHeader .secEntitle::before {
  background-color: #fff;
}
@media (max-width: 768px) {
  .roomClsArea .secHeader {
    flex-direction: column;
    gap: 20px;
    padding-left: 80px;
    padding-top: 16px;
  }
  .roomClsArea .secHeader::before {
    left: -16px;
  }
}
@media (max-width: 480px) {
  .roomClsArea .secHeader {
    padding-left: 20px;
  }
}
.roomClsArea .secHeaderLeft {
  flex: 0 0 auto;
}
@media (max-width: 480px) {
  .roomClsArea .secHeaderLeft {
    padding-left: 60px;
  }
}
.roomClsArea .secHeaderRight {
  flex: 1;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .roomClsArea .secHeaderRight {
    width: 100%;
    padding-top: 0;
  }
}
.roomClsArea .secDesc {
  color: #FFF;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 36px; /* 225% */
  letter-spacing: 2.4px;
  padding-top: 38px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .roomClsArea .secDesc {
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1.5;
  }
}
.roomClsArea .roomSliderWrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 48px;
  padding-top: 90px;
  position: relative;
}
.roomClsArea .roomSliderWrap .arrowBox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 120px;
  height: 120px;
  background-color: rgba(243, 225, 205, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .roomClsArea .roomSliderWrap .arrowBox {
    display: none !important;
  }
}
.roomClsArea .roomSliderWrap .arrowBox.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.roomClsArea .roomSliderWrap .arrowBox.prev .arrowIcon {
  transform: scaleX(-1);
}
.roomClsArea .roomSliderWrap .arrowBox .arrowIcon {
  width: 52px;
  height: 10px;
  stroke: #fff;
}
@media (max-width: 1180px) {
  .roomClsArea .roomSliderWrap .arrowBox .arrowIcon {
    width: 40px;
  }
}
@media (min-width: 1181px) {
  .roomClsArea .roomSliderWrap .arrowBox:hover .arrowIcon {
    stroke: #D6802B;
  }
}
@media (max-width: 1180px) {
  .roomClsArea .roomSliderWrap {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .roomClsArea .roomSliderWrap {
    padding-top: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .roomClsArea .roomSliderWrap {
    padding-top: 30px;
  }
}
.roomClsArea .roomClsList {
  padding: 0 75px;
}
.roomClsArea .roomClsList .slick-list {
  overflow: visible;
}
.roomClsArea .roomClsList .roomClsItem.current .itemImg {
  padding: 0;
}
.roomClsArea .roomClsList .roomClsItem.current .itemOverlay {
  opacity: 1;
}
@media (max-width: 1440px) {
  .roomClsArea .roomClsList {
    padding: 0 40px;
  }
}
@media (max-width: 1180px) {
  .roomClsArea .roomClsList {
    padding: 0 20px;
  }
}
.roomClsArea .itemCard {
  position: relative;
  padding: 0 85px;
}
@media (max-width: 1440px) {
  .roomClsArea .itemCard {
    padding: 0 60px;
  }
}
@media (max-width: 1180px) {
  .roomClsArea .itemCard {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .roomClsArea .itemCard {
    padding: 0 10px;
  }
}
.roomClsArea .itemImg {
  position: relative;
  padding: 50px 0;
  aspect-ratio: 1180/650;
}
@media (max-width: 1180px) {
  .roomClsArea .itemImg {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .roomClsArea .itemImg {
    padding: 20px 0;
  }
}
.roomClsArea .itemImg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.roomClsArea .itemOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 52px 70px;
  opacity: 0;
}
@media (max-width: 1440px) {
  .roomClsArea .itemOverlay {
    padding: 40px 30px;
  }
}
@media (max-width: 1180px) {
  .roomClsArea .itemOverlay {
    padding: 20px 10px 30px;
  }
}
@media (max-width: 900px) {
  .roomClsArea .itemOverlay {
    padding: 48px 20px 20px;
  }
}
@media (max-width: 768px) {
  .roomClsArea .itemOverlay {
    position: relative;
    padding: 10px 0;
  }
}
.roomClsArea .itemOverlay .itemTitle {
  color: #FFF;
  font-family: "Noto Serif TC", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 32px; /* 69.565% */
  letter-spacing: 11.5px;
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  .roomClsArea .itemOverlay .itemTitle {
    font-size: clamp(22px, 5vw, 36px);
    letter-spacing: 0.2em;
    padding-bottom: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .roomClsArea .itemOverlay .itemTitle {
    padding-bottom: 0;
  }
}
.roomClsArea .itemOverlay .itemEntitle {
  color: #fff;
  font-size: 14px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .roomClsArea .itemOverlay .itemEntitle {
    margin-top: 5px;
  }
}
.roomClsArea .itemOverlay .itemExp {
  color: #FFF;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 36px; /* 225% */
  letter-spacing: 2.4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
  padding-top: 17px;
  margin-top: 26px;
}
.roomClsArea .itemOverlay .itemExp::before {
  content: "";
  width: 58px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .roomClsArea .itemOverlay .itemExp {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    margin-top: 15px;
    padding-top: 12px;
  }
}
.roomClsArea .itemOverlay .linkWrap {
  position: absolute;
  inset: 0;
}
.roomClsArea .secMore {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 28px;
}
@media (max-width: 1180px) {
  .roomClsArea .secMore {
    padding-top: 0;
  }
}

.marqueepic2Area .itemImg {
  height: clamp(200px, 35vw, 500px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .marqueepic2Area .itemImg {
    height: clamp(160px, 45vw, 280px);
  }
}
.marqueepic2Area .itemImg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.diningArea {
  background-color: #fff;
  padding: 197px 0 203px;
  position: relative;
  background-image: url(../../images/tw/home/bg_home_dining.png);
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .diningArea {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .diningArea {
    padding: 48px 0;
  }
}
.diningArea .wrap {
  max-width: 1480px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1180px) {
  .diningArea .wrap {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .diningArea .wrap {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .diningArea .wrap {
    flex-direction: column;
    gap: 0;
  }
}
.diningArea .diningLeft {
  width: 150px;
  position: relative;
}
.diningArea .diningLeft .secHeader {
  display: flex;
  align-items: flex-start;
  padding: 33px 0 0 6px;
}
.diningArea .diningLeft .secHeader::before {
  display: none;
}
.diningArea .diningLeft .secTitle {
  color: #362B20;
  font-family: "Noto Serif TC", serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 60px; /* 130.435% */
  letter-spacing: 11.5px;
  writing-mode: vertical-lr;
}
.diningArea .diningLeft .secTitle::after {
  display: none;
}
.diningArea .diningLeft .secEntitle {
  color: #D6802B;
  font-size: 16px;
  line-height: 28px; /* 175% */
  writing-mode: vertical-lr;
  position: relative;
  padding-bottom: 24px;
  margin-left: 15px;
}
.diningArea .diningLeft .secEntitle::before {
  content: "";
  display: block;
  background-color: #D6802B;
  width: 1px;
  height: 20px;
  position: absolute;
  left: 9px;
  bottom: 0;
}
.diningArea .diningRight {
  width: calc(100% - 200px);
  position: relative;
}
@media (max-width: 640px) {
  .diningArea .diningRight {
    padding-top: 24px;
  }
}
.diningArea .diningRight .bgDeco1 {
  position: absolute;
  bottom: 0;
  right: 60px;
}
.diningArea .diningRight .bgDeco1 img {
  display: block;
  max-width: 100%;
}
.diningArea .diningRight .secDesc {
  max-width: 500px;
  position: absolute;
  top: 0;
  right: 0;
  color: #434343;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 36px; /* 225% */
  letter-spacing: 2.4px;
}
@media (max-width: 900px) {
  .diningArea .diningRight .secDesc {
    font-size: clamp(13px, 0.75vw, 15px);
  }
}
.diningArea .diningDots {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 20%;
  right: 70px;
}
.diningArea .diningDots .diningDot {
  color: rgba(103, 73, 56, 0.3);
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px; /* 475% */
  letter-spacing: 4px;
  text-align: center;
}
.diningArea .diningDots .diningDot.current {
  color: #D6802B;
}
.diningArea .diningDots .diningDot::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
  background-color: rgba(103, 73, 56, 0.3);
  margin: 20px auto 0;
}
.diningArea .diningDots .diningDot:last-child::after {
  display: none;
}
@media (max-width: 900px) {
  .diningArea .diningRight .secDesc {
    position: static;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .diningArea .diningRight .bgDeco1 {
    display: none;
  }
}
@media (max-width: 768px) {
  .diningArea .diningLeft {
    width: 100%;
  }
  .diningArea .diningLeft .secHeader {
    display: flex;
    flex-direction: column;
    padding: 0 0 10px;
    gap: 8px 16px;
  }
  .diningArea .diningLeft .secTitle {
    writing-mode: horizontal-tb;
    font-size: clamp(24px, 6vw, 38px);
    line-height: 1.4;
    letter-spacing: 0.2em;
  }
  .diningArea .diningLeft .secEntitle {
    writing-mode: horizontal-tb;
    margin-left: 16px;
    padding-bottom: 0;
    padding-left: 16px;
    line-height: 1.5;
  }
  .diningArea .diningLeft .secEntitle::before {
    width: 1px;
    height: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  .diningArea .diningRight {
    width: 100%;
    padding-top: 0;
  }
  .diningArea .diningDots {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 32px;
    right: auto;
    top: auto;
  }
  .diningArea .diningDots .diningDot::after {
    display: none;
  }
}

.diningList {
  width: 100%;
}
.diningList .diningItem {
  width: 100%;
}
.diningList .item {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1440px) {
  .diningList .item {
    gap: 40px;
  }
}
@media (max-width: 1180px) {
  .diningList .item {
    flex-direction: column;
    gap: 0px;
  }
}
.diningList .Img {
  width: 580px;
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  .diningList .Img {
    width: 60%;
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .diningList .Img {
    margin-left: auto;
    max-width: 300px;
  }
}
.diningList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.diningList .Txt {
  max-width: calc(100% - 580px - 60px);
  padding: 60px 62px 80px 83px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 1440px) {
  .diningList .Txt {
    max-width: 100%;
    padding: 40px 0 80px 40px;
  }
}
@media (max-width: 1180px) {
  .diningList .Txt {
    padding: 20px 0 40px 30px;
  }
}
@media (max-width: 768px) {
  .diningList .Txt {
    padding: 20px 0 20px 30px;
  }
}
.diningList .itemTitle {
  color: #362B20;
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5; /* 316.667% */
  letter-spacing: 6px;
  padding: 0 0 20px;
  position: relative;
}
.diningList .itemTitle::after {
  content: "";
  display: block;
  width: 17px;
  height: 21px;
  background-image: url(../../images/tw/comma_orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -13px;
  left: -44px;
  pointer-events: none;
}
@media (max-width: 1180px) {
  .diningList .itemTitle::after {
    left: -30px;
  }
}
@media (max-width: 1180px) {
  .diningList .itemTitle {
    font-size: 22px;
    padding-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .diningList .itemTitle {
    font-size: 20px;
    letter-spacing: 1px;
    padding-bottom: 10px;
  }
}
.diningList .intro {
  color: #434343;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 36px; /* 225% */
  letter-spacing: 2.4px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .diningList .intro {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    padding-top: 0;
  }
}

.museumArea {
  background-color: #EAEAEA;
  position: relative;
  padding: 256px 0 2px;
  overflow: hidden;
}
.museumArea.is-active .museumRightBox .Img {
  opacity: 1;
  translate: 0 0;
}
.museumArea .bgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.museumArea .bgBox::before {
  content: "";
  width: 100%;
  height: calc(100% + 1px);
  display: block;
  background-color: rgba(255, 255, 255, 0.57);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.museumArea .bgBox::after {
  content: "";
  width: 100%;
  height: calc(100% + 1px);
  display: block;
  background-image: linear-gradient(180deg, rgba(234, 234, 234, 0) 75.34%, #EAEAEA 95.02%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.museumArea .bgBox .bgPoster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.museumArea .bgBox img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.museumArea .bgBox .bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 99%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}
@media (max-width: 1180px) {
  .museumArea {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .museumArea {
    padding: 60px 0 100px;
  }
}
@media (max-width: 480px) {
  .museumArea {
    padding: 48px 0;
  }
}
.museumArea .wrap {
  position: relative;
  max-width: 1480px;
  min-height: clamp(500px, 55vw, 800px);
  display: flex;
  z-index: 2;
}
@media (max-width: 1180px) {
  .museumArea .wrap {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 900px) {
  .museumArea .wrap {
    gap: 32px;
  }
}
.museumArea .museumLeftBox {
  width: 490px;
  padding-right: 100px;
  padding-top: 105px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1180px) {
  .museumArea .museumLeftBox {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
  }
}
.museumArea .secHeader {
  padding: 0;
}
.museumArea .secHeader::before {
  display: none;
}
@media (max-width: 1180px) {
  .museumArea .secHeader {
    position: static;
    transform: none;
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .museumArea .secHeader {
    text-align: center;
    max-width: 100%;
  }
}
.museumArea .secHeader .secTitleLogo {
  padding: 0 0 8px;
}
@media (max-width: 768px) {
  .museumArea .secHeader .secTitleLogo {
    max-width: 260px;
    margin: 0 auto;
  }
  .museumArea .secHeader .secTitleLogo img {
    display: block;
    max-width: 100%;
  }
}
.museumArea .secHeader .secEntitle {
  color: #35548C;
  padding-bottom: 10px;
}
.museumArea .secHeader .secEntitle::before {
  background-color: #35548C;
}
@media (max-width: 768px) {
  .museumArea .secHeader .secEntitle::before {
    left: calc(50% - 10px);
  }
}
.museumArea .secHeader .secDesc {
  color: #434343;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 36px; /* 225% */
  letter-spacing: 2.4px;
  padding-top: 37px;
}
@media (max-width: 1180px) {
  .museumArea .secHeader .secDesc {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .museumArea .secHeader .secDesc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 1.5px;
    text-align: center;
  }
}
.museumArea .secHeader .btnBox {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .museumArea .secHeader .btnBox {
    width: auto;
    margin: 24px auto 0;
  }
  .museumArea .secHeader .btnBox a {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .museumArea .secHeader .btnBox {
    margin-top: 16px;
  }
}
.museumArea .museumRightBox {
  width: calc(100% - 400px);
  position: relative;
}
@media (max-width: 1180px) {
  .museumArea .museumRightBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .museumArea .museumRightBox {
    padding-top: 60px;
  }
}
@media (max-width: 480px) {
  .museumArea .museumRightBox {
    padding-top: 40px;
  }
}
.museumArea .museumRightBox .Img {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 1.2s ease, translate 1.2s ease;
}
.museumArea .museumRightBox .Img:nth-child(1) {
  transition-delay: 0s;
}
.museumArea .museumRightBox .Img:nth-child(2) {
  transition-delay: 0.25s;
}
.museumArea .museumRightBox .Img:nth-child(3) {
  transition-delay: 0.5s;
}
.museumArea .museumRightBox .Img:nth-child(4) {
  transition-delay: 0.75s;
}
.museumArea .museumRightBox .Img:nth-child(5) {
  transition-delay: 1s;
}
.museumArea .museumRightBox .Img img {
  display: block;
}
@media (max-width: 768px) {
  .museumArea .museumRightBox .Img img {
    width: 100%;
  }
}
.museumArea .museumRightBox .Img:nth-child(1) {
  position: relative;
}
@media (max-width: 1180px) {
  .museumArea .museumRightBox .Img:nth-child(1) {
    transform: none;
    width: 50%;
    max-width: 456px;
    height: auto;
    z-index: 5;
  }
  .museumArea .museumRightBox .Img:nth-child(1) img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .museumArea .museumRightBox .Img:nth-child(1) {
    left: 0%;
    top: 0;
    width: 60%;
    transform: none;
  }
}
.museumArea .museumRightBox .Img:nth-child(2) {
  position: absolute;
  bottom: 7.5%;
  left: -36%;
  width: 18%;
  max-width: 141px;
}
.museumArea .museumRightBox .Img:nth-child(2) img {
  max-width: 100%;
}
@media (max-width: 1180px) {
  .museumArea .museumRightBox .Img:nth-child(2) {
    width: 20%;
    left: 5%;
  }
}
@media (max-width: 768px) {
  .museumArea .museumRightBox .Img:nth-child(2) {
    left: 3.6%;
    top: 244px;
    width: 29.7%;
    transform: rotate(-8deg);
  }
}
@media (max-width: 480px) {
  .museumArea .museumRightBox .Img:nth-child(2) {
    left: 0;
  }
}
.museumArea .museumRightBox .Img:nth-child(3) {
  position: absolute;
  top: -23.5%;
  right: 41.5%;
  width: 26%;
  max-width: 225px;
}
.museumArea .museumRightBox .Img:nth-child(3) img {
  max-width: 100%;
}
@media (max-width: 1180px) {
  .museumArea .museumRightBox .Img:nth-child(3) {
    right: 30%;
    top: -16%;
  }
}
@media (max-width: 768px) {
  .museumArea .museumRightBox .Img:nth-child(3) {
    left: 63.6%;
    top: -10%;
    width: 34.1%;
    transform: rotate(-6deg);
  }
}
.museumArea .museumRightBox .Img:nth-child(4) {
  position: absolute;
  top: 8.5%;
  right: 1%;
  width: 22%;
}
.museumArea .museumRightBox .Img:nth-child(4) img {
  max-width: 166px;
}
@media (max-width: 1180px) {
  .museumArea .museumRightBox .Img:nth-child(4) {
    right: 0%;
    top: 35%;
    width: 16%;
    z-index: 5;
  }
}
@media (max-width: 768px) {
  .museumArea .museumRightBox .Img:nth-child(4) {
    right: 7.2%;
    top: 45%;
    width: 25.6%;
    transform: rotate(5deg);
  }
}
@media (max-width: 480px) {
  .museumArea .museumRightBox .Img:nth-child(4) {
    right: 0;
  }
}
.museumArea .museumRightBox .Img:nth-child(5) {
  position: absolute;
  bottom: 10.5%;
  left: 41.5%;
  width: 14%;
}
@media (max-width: 1180px) {
  .museumArea .museumRightBox .Img:nth-child(5) {
    width: 15%;
    bottom: -10%;
    left: 50%;
    z-index: 6;
  }
}
@media (max-width: 768px) {
  .museumArea .museumRightBox .Img:nth-child(5) {
    width: 22%;
    left: 47.4%;
    bottom: -12%;
    transform: rotate(8deg);
  }
}

.aboutArea {
  z-index: 1;
}

.parallaxSection1 {
  z-index: 2;
}

.roomClsArea {
  z-index: 3;
}

.parallaxSection2 {
  z-index: 4;
}

.diningArea {
  z-index: 5;
}

.museumArea {
  z-index: 6;
}

.bannerItem .Txt .title.visible {
  opacity: 1;
}