.mainArea {
  padding: 0;
}

@media (min-width: 1181px) {
  .aniArea .aniItem {
    opacity: 0;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }

  .aniArea .aniUp {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  .aniArea.show .aniItem {
    opacity: 1;
  }

  .aniArea.show .aniUp {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .parkArea::before,
  .travelArea::before,
  .weddingArea::before {
    opacity: 0;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }

  .parkArea.show::before,
  .travelArea.show::before,
  .weddingArea.show::before {
    opacity: 1;
  }

  .restaurantListBox,
  .evaluationArea .wrap::before {
    opacity: 0;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }

  .restaurantArea.show .restaurantListBox {
    opacity: 1;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
  }

  .evaluationArea.show .wrap::before {
    opacity: 1;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
  }
}

/*pop*/
.popWin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10002;
  width: 100%;
  height: 100vh;
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.popWin .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.popWin .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  max-height: 85vh;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.popWin .popContent {
  max-height: 85vh;
  overflow-y: auto;
}

.popWin img {
  display: block;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.popWin .Txt {
  padding: 30px;
  text-align: left;
}

.popWin .Txt .popTitle {
  font-size: 25px;
  margin-bottom: 25px;
}

.popWin .close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: #fff; */
  border-radius: 50%;
}

.popWin .close::before,
.popWin .close::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 23px;
  width: 25px;
  height: 1px;
  background-color: #bca480;
  /* border-radius:  50%; */
}

.popWin .close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popWin.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popWin.show .mask,
.popWin.show .inner {
  opacity: 1;
}

.popWin .close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .popWin .close {
    right: 0;
    top: 0;
    border-radius: 0;
  }

  .popWin .popContent {
    max-height: calc(100vh - 150px);
  }
}

.bannerArea::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 320px;
  background-image: url("../images/bannerMaskAni.png");
  /* background-repeat: no-repeat; */
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center bottom;
  pointer-events: none;
  animation: cloudAni 400s infinite linear;
  
  display: none !important; /*20221129客戶需求隱藏*/
}

@keyframes cloudAni {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 3800px;
  }
}

@media (max-width: 1023px) {
  .bannerArea::before {
    bottom: -40px;
  }
}

.bannerArea a {
  display: block;
}

.bannerArea .Img img {
  display: block;
  width: 100%;
  min-height: 530px;
  -o-object-fit: cover;
  object-fit: cover;
}

.bannerArea .Txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.bannerArea .ins {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: -120px;
}

@media (max-width: 960px) {
  .bannerArea .ins {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.bannerArea .ins::before,
.bannerArea .ins::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  height: 60px;
  background-color: #fff;
  opacity: 0.5;
}

@media (max-width: 1280px) {

  .bannerArea .ins::before,
  .bannerArea .ins::after {
    display: none;
  }
}

.bannerArea .ins::before {
  top: -60px;
}

.bannerArea .ins::after {
  bottom: -60px;
}

.bannerArea .title {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: .15em;
}

@media (max-width: 960px) {
  .bannerArea .title {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .bannerArea .title {
    font-size: 20px;
    letter-spacing: 0;
  }
}

.bannerArea .subTitle {
  margin-bottom: 14px;
  font-family: "Times New Roman", "Noto Sans TC", sans-serif;
  font-size: 18px;
  letter-spacing: .02em;
}

@media (max-width: 960px) {
  .bannerArea .subTitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .bannerArea .subTitle {
    letter-spacing: 0;
  }
}

.bannerArea .text {
  font-size: 14px;
  letter-spacing: .02em;
  font-weight: 300;
  line-height: 1.7;
}

.bannerArea .ins::before,
.bannerArea .ins::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  height: 60px;
  background-color: #fff;
}

.bannerArea .ins::before,
.bannerArea .ins::after {
  opacity: 0;
  transition: all 1s;
}

.bannerArea .ins::before {
  transform: translateY(-30px);
}

.bannerArea .ins::after {
  transform: translateY(30px);
}

.bannerArea .show .ins::before,
.bannerArea .show .ins::after {
  opacity: 0.5;
  transform: translateY(0);
}

.bannerArea .title,
.bannerArea .subTitle,
.bannerArea .text {
  transform: translateY(12px);
  opacity: 0;
  transition: all 1s;
}

.bannerArea .show .title,
.bannerArea .show .subTitle,
.bannerArea .show .text {
  transform: translateY(0);
  opacity: 1;
}

.bannerArea .show .title {
  transition-delay: .3s;
}

.bannerArea .show .subTitle {
  transition-delay: .4s;
}

.bannerArea .show .text {
  transition-delay: .5s;
}

.informationArea {
  margin-bottom: 110px;
}

@media (max-width: 1023px) {
  .informationArea {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .informationArea {
    margin-bottom: 30px;
  }
}

.informationArea .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eae4d7;
  border-left: none;
  border-right: none;
  padding: 55px 25px;
  max-width: 1270px;
}

@media (max-width: 1023px) {
  .informationArea .wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 10px;
  }
}

.informationArea .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

@media (max-width: 1180px) {
  .informationArea .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 12px;
  }
}

@media (max-width: 1023px) {
  .informationArea .top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .informationArea .top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
}

.informationArea .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: calc((100% - 250px) / 2);
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .informationArea .item {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.informationArea .Txt .title {
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: .05em;
}

@media (max-width: 480px) {
  .informationArea .Txt .title {
    font-size: 15px;
  }
}

.informationArea .Txt .text {
  font-size: 14px;
  letter-spacing: .02em;
  color: #333;
}

@media (max-width: 480px) {
  .informationArea .Txt .text {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .informationArea .left {
    width: 100%;
  }
}

.informationArea .time {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #916f2d;
  text-align: center;
  margin-right: 15px;
}

@media (max-width: 1180px) {
  .informationArea .time {
    margin-bottom: 5px;
  }
}

@media (max-width: 1023px) {
  .informationArea .time {
    margin-right: 0;
  }
}

.informationArea .time .minute {
  font-size: 40px;
  letter-spacing: .02em;
  line-height: 1;
}

.informationArea .time .text {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.informationArea .distance {
  position: relative;
  margin-top: 12px;
  margin-left: 30px;
  margin-right: 30px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 1023px) {
  .informationArea .distance {
    display: none;
  }
}

.informationArea .distance .title {
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .05em;
  position: relative;
}

.informationArea .distance .title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: -0.5px;
  width: 100%;
  height: 1px;
  background-color: #e2d8ba;
}

.informationArea .distance .title::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: 0;
  margin-bottom: -4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border: 1px solid #e0c77b;
  border-left: none;
  border-bottom: none;
}

.informationArea .distance .text {
  font-size: 12px;
}

@media (max-width: 1366px) {
  .informationArea .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.informationArea .bottom a {
  display: inline-block;
  min-width: 150px;
  text-align: center;
  background-color: #ac8e5a;
  margin-right: 2px;
  padding: 10px 20px;
  font-size: 14px;
  letter-spacing: .1em;
  color: #fff;
}

@media (max-width: 1366px) {
  .informationArea .bottom a {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .informationArea .bottom a {
    width: 100%;
    min-width: auto;
  }
}

.informationArea .bottom a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

.informationArea .bottom a:last-child {
  background-color: #dcac00;
}

.informationArea .bottom a:hover {
  background-color: #000;
}

.informationArea .center {
  width: 250px;
}

@media (max-width: 1023px) {
  .informationArea .center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 100%;
  }
}

.informationArea .logo {
  text-align: center;
  margin-bottom: 5px;
}

.informationArea .logo .title {
  font-size: 16px;
  letter-spacing: .05em;
  font-weight: 400;
}

.informationArea .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.informationArea .link a {
  position: relative;
  display: inline-block;
  padding: 15px;
  min-width: 125px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .1em;
  border-bottom: 2px solid #eae2d5;
}

.informationArea .link a:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background-color: #e6e6e6;
}

.informationArea .link a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}

.newsArea .slick-list {
  text-align: center;
}

.newsArea .slick-track {
  display: inline-block;
}

.newsArea .titleBox {
  margin-bottom: 50px;
}

@media (max-width: 1023px) {
  .newsArea .titleBox {
    margin-bottom: 30px;
  }
}

.newsArea .wrap {
  position: relative;
}

@media (max-width: 1366px) {
  .newsArea .wrap {
    max-width: 100%;
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 1023px) {
  .newsArea .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.newsArea .arrowStyle {
  position: absolute;
  top: 50%;
  margin-top: -21px;
}

@media (max-width: 1023px) {
  .newsArea .arrowStyle {
    display: none !important;
  }
}

.newsArea .prevArrow {
  left: -60px;
}

@media (max-width: 1366px) {
  .newsArea .prevArrow {
    left: 10px;
  }
}

.newsArea .nextArrow {
  right: -60px;
}

@media (max-width: 1366px) {
  .newsArea .nextArrow {
    right: 10px;
  }
}

@media (min-width: 1024px) {
  .newsArea .dotsBox {
    display: none;
  }
}

.newsList {
  margin-left: -10px;
  margin-right: -10px;
}

.newsList li {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 1024px) {
  .newsList li:nth-child(even) {
    padding-top: 40px;
  }
}

.newsList .Img img {
  display: block;
  width: 100%;
}

.newsList .Txt {
  padding-top: 20px;
}

.newsList h3 {
  margin-bottom: 10px;
}

.newsList h3 a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.newsList p {
  max-height: 46px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .02em;
  color: #333;
  line-height: 1.8;
  overflow: hidden;
}

.newsList .date {
  font-size: 14px;
  color: #826b42;
}

.sectionArea {
  position: relative;
  padding-top: 180px;
  padding-bottom: 30px;
  margin-bottom: 60px;
  background-repeat: no-repeat;
}

@media (max-width: 1480px) {
  .sectionArea {
    padding-top: 80px;
  }
}

@media (max-width: 960px) {
  .sectionArea {
    padding-top: 50px;
  }
}

.sectionArea::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  height: 60px;
  background-color: #e5e5e5;
}

.sectionArea .textNoteBox {
  margin-bottom: 70px;
  max-width: 460px;
}

@media (max-width: 960px) {
  .sectionArea .textNoteBox {
    margin-bottom: 20px;
  }
}

.sectionArea .textNoteBox .title {
  margin-bottom: 5px;
  font-size: 25px;
  letter-spacing: .15em;
  color: #916f2d;
}

.sectionArea .textNoteBox .en {
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: .02em;
  color: #916f2d;
  font-family: "Times New Roman", "Noto Sans TC", sans-serif;
}

.sectionArea .textNoteBox .Txt {
  font-size: 14px;
  letter-spacing: .02em;
  color: #7f7f7f;
  line-height: 1.7;
}

.sectionArea .Img img {
  display: block;
  max-width: 100%;
}

.sectionArea .list {
  margin-bottom: 40px;
}

.sectionArea .list .Txt {
  padding-top: 20px;
}

.sectionArea .list .title {
  margin-bottom: 10px;
  color: #916f2d;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em;
}

.sectionArea .list .text {
  font-size: 14px;
  letter-spacing: .02em;
  color: #7f7f7f;
  line-height: 1.7;
}

.sectionArea .list .en {
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: .02em;
  font-family: "Times New Roman", "Noto Sans TC", sans-serif;
  color: #ac946b;
}

.parkArea {
  position: relative;
  z-index: 0;
}

.parkArea::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/homeImg1.png");
  background-position: right top;
  background-repeat: no-repeat;
}

@media (max-width: 1480px) {
  .parkArea::before {
    opacity: 0.3;
  }
}

@media (max-width: 960px) {
  .parkArea::before {
    opacity: 0.15;
    background-size: cover;
  }
}

.parkArea .textNoteBox {
  margin-bottom: 90px;
  max-width: 460px;
}

@media (max-width: 960px) {
  .parkArea .textNoteBox {
    margin-bottom: 20px;
  }
}

.parkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 960px) {
  .parkList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.parkList li {
  width: 50%;
}

@media (max-width: 960px) {
  .parkList li {
    width: 100%;
  }
}

.parkList li:nth-child(1) {
  margin-bottom: 50px;
}

@media (max-width: 960px) {
  .parkList li:nth-child(1) {
    margin-bottom: 30px;
  }
}

@media (min-width: 961px) {
  .parkList li:nth-child(2) {
    padding-left: 20px;
  }
}

.parkList li:nth-child(2) .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 1180px) {
  .parkList li:nth-child(2) .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.parkList li:nth-child(2) .Img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 250px;
}

.parkList li:nth-child(2) .Txt {
  padding-left: 30px;
}

@media (max-width: 1180px) {
  .parkList li:nth-child(2) .Txt {
    padding-left: 0px;
  }
}

/* @media (max-width: 480px) {
  .parkList li:nth-child(2) .Txt {
    padding-left: 0;
  }
} */

.travelArea {
  position: relative;
  z-index: 3;
}

.travelArea::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/homeImg2.png");
  background-position: left top;
  background-repeat: no-repeat;
}

@media (max-width: 1800px) {
  .travelArea.show::before {
    background-position-x: -180px;
  }
}
@media (max-width: 1480px) {
  .travelArea.show::before {
    opacity: 0.5;
  }
}

@media (max-width: 1180px) {
  .travelArea.show::before {
    opacity: 0.15;
  }
}

.travelArea .textNoteBox {
  max-width: 630px;
}

@media (min-width: 1181px) {
  .travelArea .textNoteBox {
    margin-left: auto;
  }
}

.travelList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 640px) {
  .travelList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 641px) {
  .travelList li:nth-child(1) {
    width: 41%;
  }
}

.travelList li:nth-child(2) {
  margin-top: 30px;
}

@media (min-width: 641px) {
  .travelList li:nth-child(2) {
    width: 59%;
    padding-left: 20px;
  }
}

@media (max-width: 640px) {
  .travelList li {
    width: 100%;
  }
}

.weddingArea {
  position: relative;
  z-index: 4;
  padding-top: 120px;
}

@media (max-width: 1580px) {
  .weddingArea {
    padding-top: 50px;
  }
}

@media (max-width: 960px) {
  .weddingArea {
    padding-top: 0;
  }
}

.weddingArea::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/homeImg3.png");
  background-position: left top;
  background-repeat: no-repeat;
}

@media (max-width: 1680px) {
  .weddingArea::before {
    opacity: 0.4;
  }
}

@media (max-width: 1180px) {
  .weddingArea::before {
    opacity: 0.15;
  }
}

.weddingArea .textNoteBox {
  width: 50%;
  max-width: 100%;
  margin-bottom: 0;
  padding-left: 25px;
  padding-right: 130px;
}

@media (min-width: 1181px) {
  .weddingArea .textNoteBox {
    margin-left: auto;
  }
}

@media (max-width: 1180px) {
  .weddingArea .textNoteBox {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

.weddingArea .list .title {
  font-size: 16px;
  letter-spacing: .02em;
  color: #535353;
}

.weddingList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 640px) {
  .weddingList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.weddingList li {
  width: 50%;
}

@media (min-width: 641px) {
  .weddingList li:nth-child(2) {
    padding-left: 25px;
    margin-top: 50px;
  }
}

@media (max-width: 640px) {
  .weddingList li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.evaluationArea {
  position: relative;
  z-index: 0;
}

.evaluationArea::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/homeFooterBg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

@media (max-width: 1124px) {
  .evaluationArea::before {
    display: none;
  }
}

.evaluationArea .wrap {
  position: relative;
  z-index: 0;
  padding-bottom: 700px;
}

@media (max-width: 1124px) {
  .evaluationArea .wrap {
    padding-bottom: 50px;
  }
}

.evaluationArea .wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/homeImg4.png");
  background-repeat: no-repeat;
  background-position: center top;
}

@media (max-width: 1124px) {
  .evaluationArea .wrap::before {
    opacity: 0.15;
    background-position: right -800px top;
  }
}

.evaluationArea .textNoteBox {
  position: relative;
  width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1124px) {
  .evaluationArea .textNoteBox {
    text-align: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.evaluationArea .textNoteBox .Img {
  width: 100%;
  max-width: 360px;
}

@media (max-width: 1124px) {
  .evaluationArea .textNoteBox .Img {
    display: none;
  }
}

.evaluationArea .textNoteBox .Img img {
  display: block;
  width: 100%;
}

@media (min-width: 1125px) {
  .evaluationArea .textNoteBox .right {
    position: absolute;
    left: 400px;
    top: 70px;
    width: 340px;
  }
}

.evaluationArea .textNoteBox .title {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: .15em;
  color: #916f2d;
}

.evaluationArea .textNoteBox .en {
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: .02em;
  color: #916f2d;
  font-family: "Times New Roman", "Noto Sans TC", sans-serif;
}

.evaluationArea .textNoteBox .Txt {
  font-size: 14px;
  letter-spacing: .02em;
  color: #6c6c6c;
  line-height: 1.7;
}

.evaluationListBox {
  position: relative;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  padding: 50px 40px 40px;
}

@media (min-width: 1125px) {
  .evaluationListBox {
    position: absolute;
    right: 110px;
    top: 320px;
  }
}

@media (max-width: 1124px) {
  .evaluationListBox {
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
  }
}

.evaluationListBox .titleIns {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.evaluationListBox .titleIns::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #bda981;
}

.evaluationListBox .titleIns .en {
  padding-bottom: 5px;
  font-size: 28px;
  letter-spacing: .02em;
  font-family: "Times New Roman", "Noto Sans TC", sans-serif;
}

.evaluationListBox .titleIns .title {
  font-size: 14px;
  letter-spacing: .05em;
  color: #525252;
}

.evaluationListBox .arrows {
  position: absolute;
  top: 50%;
  margin-top: -9.5px;
  width: 10px;
  height: 19px;
  opacity: 0.5;
}

.evaluationListBox .arrows:hover {
  opacity: 1;
}

.evaluationListBox .arrows svg {
  width: 100%;
  height: 100%;
}

.evaluationListBox .prevArrow {
  left: 10px;
}

.evaluationListBox .nextArrow {
  right: 10px;
}

.evaluationListBox .nextArrow svg {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.evaluationList .title {
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: .02em;
  color: #434343;
  line-height: 1.7;
  max-height: 46px;
}

.evaluationList .starBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px;
}

.evaluationList .starBox .no {
  font-size: 20px;
  letter-spacing: .1em;
  margin-right: 10px;
}

.evaluationList .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  color: #000;
}

.evaluationList .link a {
  color: #1967d2;
}

.evaluationList .link a:hover {
  text-decoration: underline;
}

.evaluationList .left {
  position: relative;
  margin-right: 5px;
  padding-right: 5px;
}

.evaluationList .left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: #828282;
}

.evaluationList .starRatingBox {
  font-size: 16px;
  color: #bcbcbc;
}

.evaluationList .starRatingBox i {
  position: relative;
  margin-right: 1px;
}

.evaluationList .starRatingBox .current {
  color: #fbbc04;
}

.evaluationList .starRatingBox .half::after {
  content: '\f089';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-family: FontAwesome;
  color: #fbbc04;
}

.restaurantArea {
  position: relative;
}

.restaurantArea::before,
.restaurantArea::after {
  content: '';
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
}

.restaurantArea::before {
  top: -50px;
  background-position: center top;
  background-image: url("../images/restaurantTopMask.png");
}

@media (max-width: 480px) {
  .restaurantArea::before {
    top: -80px;
  }
}

.restaurantArea::after {
  bottom: -50px;
  background-position: center bottom;
  background-image: url("../images/restaurantBottomMask.png");
}

@media (max-width: 480px) {
  .restaurantArea::after {
    bottom: -80px;
  }
}

.restaurantArea .wrap {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 960px;
}

.restaurantArea .textNoteBox {
  width: 100%;
  max-width: 430px;
  padding: 70px;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 1023px) {
  .restaurantArea .textNoteBox {
    background-color: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 480px) {
  .restaurantArea .textNoteBox {
    padding: 40px 20px;
  }
}

.restaurantArea .titleIns {
  margin-bottom: 30px;
  color: #916f2d;
}

.restaurantArea .title {
  font-size: 25px;
  letter-spacing: .15em;
  padding-bottom: 5px;
}

.restaurantArea .en {
  font-size: 16px;
  letter-spacing: .02em;
  font-family: "Times New Roman", "Noto Sans TC", sans-serif;
}

.restaurantArea .subTitle {
  font-size: 18px;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.restaurantArea .text {
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1.7;
  color: #585858;
}

.restaurantListBox {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

.restaurantListBox * {
  height: 100%;
}

.restaurantListBox .Txt {
  display: none;
}

.restaurantListBox .Img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.restaurantTxtList {
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
}

.restaurantTxtList a {
  position: relative;
  display: inline-block;
  padding: 8px;
  text-align: center;
  color: #7b7b7b;
  font-size: 14px;
  letter-spacing: .02em;
}

.restaurantTxtList a::before,
.restaurantTxtList a::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
  width: 13px;
  height: 1px;
  background-color: #d5c6ac;
  opacity: 0;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.restaurantTxtList a::before {
  left: -13px;
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.restaurantTxtList a::after {
  right: -13px;
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

.restaurantTxtList a.current,
.restaurantTxtList a:hover {
  color: #343434;
}

.restaurantTxtList a.current::before,
.restaurantTxtList a.current::after,
.restaurantTxtList a:hover::before,
.restaurantTxtList a:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}