@charset "utf-8";
/* CSS Document */

/*pop*/
  .popWin{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -moz-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    -o-transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transition: all 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  }
  .popWin.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .popWin .mask{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .popWin.show .mask{
    opacity: 1;
  }
  .popWin .wrap{
    width: 100%;
    height: 100%;
    opacity: 0;
    color: #111;
    position: relative;
    padding: 0;
    z-index: 2;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .popWin.show .wrap{
    opacity: 1;
    -webkit-animation: bounceIn 0.75s 0.5s both;
    animation: bounceIn 0.75s 0.5s both;
  }
  @keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
      opacity: 0;
      -webkit-transform: scale3d(.3, .3, .3);
      transform: scale3d(.3, .3, .3);
    }

    20% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
      -webkit-transform: scale3d(.9, .9, .9);
      transform: scale3d(.9, .9, .9);
    }

    60% {
      opacity: 1;
      -webkit-transform: scale3d(1.03, 1.03, 1.03);
      transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
      -webkit-transform: scale3d(.97, .97, .97);
      transform: scale3d(.97, .97, .97);
    }

    to {
      opacity: 1;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  .popWin .popContent{
    /*background: #2c3236;*/
    overflow-y: auto;
    width: 100%;
    max-width: 960px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
  .popWin .popContent .Txt{
    /*padding: 20px 30px;*/
  }

  .popWin .close{
    width: 60px;
    height: 60px;
    background: #000;
    font-size: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .popWin .close:hover{
    background: #a30066;
  }
  .popWin .close::before,
  .popWin .close::after{
    content: '';
    width: 36px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: calc(50% - 18px);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .popWin .close::after{
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
/* loadingArea */
  .loadingArea .loadingMask{
    background: #171C61;
  }
  .loadingArea .loader .logo{
      width: 177px;
      height: 115px;
      position: absolute;
      top: calc(50% - 120px);
      left: calc(50% - 88px);
      -webkit-transition:all 0.6s ease, transform 0.8s ease;
      -moz-transition:all 0.6s ease, transform 0.8s ease;
      -o-transition:all 0.6s ease, transform 0.8s ease;
      transition:all 0.6s ease, transform 0.8s ease;
  }
  .loadingArea.go .loader .logo{
    opacity: 0;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px);
  }
  .spinner{
    margin: 30px 0 100px 0;
    width: 150px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: calc(50% - 75px);
  } 
  .loadingArea.go .spinner{
    opacity: 0;
    -webkit-transition:all 0.6s ease-out;
    -moz-transition:all 0.6s ease-out;
    -o-transition:all 0.6s ease-out;
    transition:all 0.6s ease-out;
  }
  .spinner > div{
    width: 10px;
    height: 10px;
    background-color: #232C92;
    border-radius: 100%;
    margin: 0 10px;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both;
  } 
  .spinner .bounce1{
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  } 
  .spinner .bounce2{
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  } 
  @-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
    } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    }
  }
  @keyframes bouncedelay {
    0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
    } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    }
  }

/* 首頁影片 */
  .bannerVideoBox{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    background-color: #0d0d0d;
  }
  .bannerVideoBox .innerBox {
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 3;
    width: 70%;
    height: 100%;
  }
  .bannerVideoBox .mb_YTPBar{
    visibility: hidden;
  }
  .controlVideo{
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.9);
    white-space: nowrap;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 25px);
    right: -80px;
    z-index: 4;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .controlVideo span{
    display: none;
  }
  .controlVideo:hover{
    background-color: #a30066;
  }
  .controlVideo.playing.open,
  .controlVideo.pauseing.open{
    right: 40px;
  }
  .controlVideo.playing::before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 4px);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .controlVideo.pauseing::before,
  .controlVideo.pauseing::after{
    content: '';
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: calc(50% - 6px);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .controlVideo.pauseing::before{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .controlVideo.pauseing::after{
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

.mainArea{
  padding: 0;
  position: relative;
}

.rectPrev::before,
.rectNext::before{
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
}

/* privacyArea */
  .privacyArea{
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 0 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 900;
  }
  .privacyArea.close{
    display: none;
  }
  .privacyArea .textEditor,
  .privacyArea .textEditor p{
    color: #fff;
    color: #fff;
    font-size: 13px;
  }
  .privacyArea .btn{
    text-align: center;
    margin-top: 15px;
  }
  .privacyArea .btn a{
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    letter-spacing: 1px;
  }


/* roomArea */
  .roomArea{
    padding: 10px 0 90px;
  }
  .roomArea .wrap{
    max-width: 1920px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .roomArea .rightBox{
    width: calc(50% + 140px);
  }
  .roomArea .leftBox{
    width: calc(50% - 140px);
    padding: 10px 50px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    -ms-align-items: center;
    align-items: center;
  }
  .roomArea .leftBox .innerTxt{
    width: 100%;
    max-width: 620px;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
  }
  ul.roomList{
    margin-top: 30px;
  }
  ul.roomList li{
    padding: 0;
    border: 0 !important;
  }
  ul.roomList li .item{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    position: relative;
    border-right: 4px solid rgba(163, 0, 102, 0);
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  ul.roomList li.show .item,
  ul.roomList li:hover .item{
    border-right: 3px solid #a30066;
  }
  ul.roomList li .item::before{
    content: '';
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
  }
  ul.roomList li.show .item::before,
  ul.roomList li:hover .item::before{
    opacity: 1;
  }
  ul.roomList li .item::after{
    content: '';
    width: 1px;
    height: 100%;
    background: #d7d7d7;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  ul.roomList li .Img{
    width: 255px;
    position: relative;
    overflow: hidden;
  }
  ul.roomList li .Img img{
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  ul.roomList li.show .Img img,
  ul.roomList li .Img:hover img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  ul.roomList li .Img a::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(163, 0, 102, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
  }
  ul.roomList li.show .Img a::before,
  ul.roomList li:hover .Img a::before{
    opacity: 1;
  }
  ul.roomList li .Img a::after{
    content: '';
    width: 43px;
    height: 45px;
    background: url(../images/detail.png) no-repeat;
    position: absolute;
    top: calc(50% - 23px);
    left: calc(50% - 21px);
    opacity: 0;
    z-index: 99;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  ul.roomList li.show .Img a::after,
  ul.roomList li:hover .Img a::after{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s cubic-bezier(1, 0.01, 0.04, 0.96);
    -moz-transition: all 0.8s cubic-bezier(1, 0.01, 0.04, 0.96);
    -o-transition: all 0.8s cubic-bezier(1, 0.01, 0.04, 0.96);
    transition: all 0.8s cubic-bezier(0.07, 0.51, 0.12, 1);
  }
  ul.roomList li .Txt{
    width: calc(100% - 255px);
    padding: 10px 35px;
  }
  ul.roomList li .Txt h3{
    color: #222;
    font-size: 21px;
    font-weight: normal;
    line-height: 45px;
  }
  ul.roomList li .Txt h3 a{
    color: #222;
  }
  ul.roomList li:hover .Txt h3 a{
    color: #a30066;
  }
  ul.roomList li .Txt .txtExp{
    color: #858484;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 21px;
    height: calc(21px * 2 + 1px);
    margin-top: 5px;
  }
  ul.roomList li .Txt .btn_detail a{
    color: #23272a;
    font-size: 13px;
    letter-spacing: 4px;
    text-decoration: underline;
  }
  ul.roomList li:hover .Txt .btn_detail a{
    color: #a30066;
  }

/* roomArea ani */
  .roomImgList.ani:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #a30066;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-animation: imgbgc_in 1s 0.3s cubic-bezier(0.97, 0.02, 0.5, 1.2) both;
    animation: imgbgc_in 1s 0.3s cubic-bezier(0.97, 0.02, 0.5, 1.2) both;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    z-index: 1;
  }
  @-webkit-keyframes imgbgc_in {
    0% {
      -webkit-transform-origin: right;
              transform-origin: right;
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
    }
    50% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
    }
    100% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
    }
  }
  @keyframes imgbgc_in {
    0% {
      -webkit-transform-origin: right;
              transform-origin: right;
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
    }
    50% {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
    }
    100% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
    }
  }
  .roomImgList li .Img{
    opacity: 0;
  }
  .roomImgList.ani li .Img{
  -webkit-animation: img_in 1s 0.3s cubic-bezier(0.97, 0.02, 0.5, 1.2) both;
          animation: img_in 1s 0.3s cubic-bezier(0.97, 0.02, 0.5, 1.2) both;
  }
  @-webkit-keyframes img_in {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    51% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes img_in {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    51% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }

/* roomArea coverImg */
  .roomArea .rightBox{
    position: relative;
  }
  .roomArea .rightBox .coverImg{
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .roomArea .rightBox.open .coverImg{
    opacity: 1;
    visibility: visible;
  }

/* restaurantArea */
  .restaurantArea{
    padding: 0;
  }
  .restaurantArea .arrowsBox{
    display: none;
  }
  .restaurantArea .rectPrev,
  .restaurantArea .rectNext{
    position: absolute;
    top: calc(50% - 200px);
  }
  .restaurantArea .rectPrev{
    left: 20px;
  }
  .restaurantArea .rectNext{
    right: 20px;
  }
  .restaurantArea .rectPrev:hover::before,
  .restaurantArea .rectNext:hover::before{
    border-color: #fff;
  }
  .restaurantArea .titleBox{
    text-align: center;
    margin-bottom: 50px;
  }
  .restaurantArea .titleBox h2::before{
    left: calc(50% - 16px);
  }
  .restaurantArea .restaurantBox{
    position: relative;
  }
  ul.restaurantList{}
  ul.restaurantList li{
    position: relative;
  }
  ul.restaurantList li .Img img{
    width: 100%;
  }
  ul.restaurantList li .Txt{
    width: 100%;
    background: #ab066b;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
  }
  ul.restaurantList li .Txt h3{
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.6;
  }
  ul.restaurantList li .Txt h3 a{
    color: #fff;
  }

/* restaurantArea coverImg */
  .restaurantBox .coverImg{
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .restaurantBox:hover .coverImg{
    opacity: 1;
    visibility: visible;
  }
  .restaurantBox .coverImg img{
      width: 100%;
      max-width: 100%;
  }

/* btn_restaurant */
  .btn_restaurant{
    width: 245px;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;  
    -ms-align-items: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 20%;
    z-index: 10;
  }
  .btn_restaurant::before{
    content: '';
    width: 100%;
    height: 0;
    background: url(../images/home/dec_restaurant.png) no-repeat top right,#a30066;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease, height 0.4s 0.3s ease;
    -moz-transition: all 0.4s ease, height 0.4s 0.3s ease;
    -o-transition: all 0.4s ease, height 0.4s 0.3s ease;
    transition: all 0.4s ease, height 0.4s 0.3s ease;
  }
  .btn_restaurant.open::before{
    height: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn_restaurant.open.slow::before{
    -webkit-transition: all 0.85s ease;
    -moz-transition: all 0.85s ease;
    -o-transition: all 0.85s ease;
    transition: all 0.85s ease;
  }
  .btn_restaurant .btn_close{
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 5;
  }
  .btn_restaurant .btn_close a{
    width: 245px;
    height: 65px;
    line-height: 65px;
  }
  .btn_restaurant.open .btn_close a,
  .btn_restaurant .btn_close:hover a{
    background: #db2886;
  }
  .btn_restaurant .btn_close a::before,
  .btn_restaurant .btn_close a::after{
    width: 30px;
    height: 2px;
    background: #fff;
    left: calc(50% - 15px);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .btn_restaurant .btn_close a:hover::after,
  .btn_restaurant .btn_close a::after{
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .btn_restaurant .btn_close a:hover::before,
  .btn_restaurant .btn_close a:hover::after{
    -webkit-animation: none;
    animation: none;
  }
  .btn_restaurant.open .btn_close a::before,
  .btn_restaurant.open .btn_close a::after{
    width: 36px;
    background: #a30066;
    left: calc(50% - 18px);
  }
  .btn_restaurant.open .btn_close a::before{
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .btn_restaurant.open .btn_close a::after{
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  ul.restaurantTxtList{
    width: 100%;
    padding: 10px 0 70px;
  }
  ul.restaurantTxtList li{
    text-align: center;
  }
  ul.restaurantTxtList li a{
    width: 161px;
    display: inline-block;
    color: #ea82c2;
    padding: 0 13px;
    position: relative;
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph; /*IE9*/
    -moz-text-align-last:justify; /*Firefox*/
    -webkit-text-align-last:justify; /*Chrome*/
  }
  ul.restaurantTxtList li:hover a,
  ul.restaurantTxtList li.slick-current a{
    color: #fff;
    padding: 0 0 0 26px;
  }
  ul.restaurantTxtList li a::after{
    content: '';
    display: inline-block;
    width: 100%;
  }
  ul.restaurantTxtList li a::before{
    content: '';
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 12px;
    left: -70px;
  }
  ul.restaurantTxtList li.show a::before{
    width: 80px;
    -webkit-transition: all 0.4s -0.1s ease;
    -moz-transition: all 0.4s -0.1s ease;
    -o-transition: all 0.4s -0.1s ease;
    transition: all 0.4s -0.1s ease;
  }
  /*隱藏後展開*/
  ul.restaurantTxtList{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s 3s ease;
    -moz-transition: all 0.4s 3s ease;
    -o-transition: all 0.4s 3s ease;
    transition: all 0.4s 3s ease;
  }
  .btn_restaurant.open ul.restaurantTxtList{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  ul.restaurantTxtList li{
    opacity: 0;
    -webkit-transform: translate(-10px,20px);
    transform: translate(-10px,20px);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn_restaurant.open ul.restaurantTxtList li{
    opacity: 1;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  .btn_restaurant.open ul.restaurantTxtList li:nth-of-type(1){
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  .btn_restaurant.open ul.restaurantTxtList li:nth-of-type(2){
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .btn_restaurant.open ul.restaurantTxtList li:nth-of-type(3){
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .btn_restaurant.open ul.restaurantTxtList li:nth-of-type(4){
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .btn_restaurant.open ul.restaurantTxtList li:nth-of-type(5){
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }

/* facArea */
  .facArea{
    background: url(../images/home/bg_fac.jpg) repeat top left;
  }
  .facArea .wrap{
    max-width: 100%;
  }
  ul.facList{}
  ul.facList li{}
  ul.facList li .item{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  ul.facList li .Img{
    width: calc(50% + 110px);
    position: relative;
    overflow: hidden;
  }
  ul.facList li .Img::before{
    content: '';
    width: 100%;
    height: 102%;
    background: url(../images/home/bg_fac.jpg) repeat top left;
    position: absolute;
    top: 0;
    right: calc(100% - 80px);
    z-index: 1;
    -webkit-transform: skewX(-12deg);
    transform: skewX(-12deg);
  }
  ul.facList li .Img img{
    width: 100%;
  }
  ul.facList li .Txt{    
    width: calc(50% - 110px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
    z-index: 1;
  }
  ul.facList li .Txt::before{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/home/bg_fac.jpg) repeat top left;
    position: absolute;
    top: 0;
    right: -80px;
    z-index: -1;
    -webkit-transform: skewX(-12deg);
    transform: skewX(-12deg);
    display: none;
  }
  ul.facList li .Txt::after{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/home/dec_fac.png) no-repeat top left;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: -1;
  }
  ul.facList li .Txt .innerTxt{
    width: 100%;
    max-width: 500px;
  }
  ul.facList li .Txt .titleBox h2{
    color: #23272a;
  }
  ul.facList li .Txt .txtExp{
    margin-top: 20px;
    line-height: 28px;
    height: calc(28px * 5 + 1px);
  }
  ul.facList li .Txt .btn_more{
    margin-top: 70px;
  }

/* about_mapArea */
  .about_mapArea{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }

/* mapArea */
  .mapArea{
    width: 50%;
  }
  .mapArea #gmap_s, .mapArea iframe{
    width: 100%;
    height: 680px;
  }
  .mapArea .mapbox{
    font-family: '微軟正黑體';
  }

/* aboutArea */
  .aboutArea{
    width: 50%;
    background: url(../images/home/bg_about.png) repeat top right;
    position: relative;
    padding: 100px 95px 20px;
    overflow: hidden;
  }
  .aboutArea::before{
    content: '';
    width: 591px;
    height: 331px;
    background: url(../images/home/dec_about.png) no-repeat center;
    position: absolute;
    top: -70px;
    right: 0;
  }
  .aboutArea .wrap{
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
  }
  .aboutArea .wrap .Txt{
    max-width: 570px;
  }
  .aboutArea .titleBox h2{
    color: #23272a;
    font-size: 33px;
  }
  .aboutArea .txtExp{
    margin-top: 55px;
    line-height: 33px;
    height: calc(33px * 4 + 1px);
  }
  .aboutArea .btn_more{
    margin-top: 40px;
  }


/**********響應式**********/
  @media (min-width: 1921px){
    ul.facList li .Txt::before{
      right: -110px;
    }
  }
  @media (max-width: 1650px){
    .roomArea .leftBox{
      width: calc(50% - 50px);
    }
    .roomArea .rightBox{
      width: calc(50% + 50px);
    }
  }
  @media (max-width: 1500px){
    .roomArea .leftBox{
      width: 50%;
    }
    .roomArea .rightBox{
      width: 50%;
    }
  }
  @media (max-width: 1450px){
    .roomArea .leftBox{
      width: calc(50% + 50px);
    }
    .roomArea .rightBox{
      width: calc(50% - 50px);
    }
  }
  @media (max-width: 1300px){

    .newsArea .rectPrev{
      left: 15px;
    }
    .newsArea .rectNext{
      right: 15px;
    }

    .aboutArea{
      padding: 100px 20px 20px;
    }

    .facArea .wrap{
      padding-right: 0;
    }

    .roomArea .leftBox{
      padding: 10px 30px 0 0;
    }
  }
  @media (max-width: 1180px){
    .aboutArea{
      padding: 100px 10px 20px;
    }

    ul.facList li .Img{
      width: calc(50% + 60px);
    }
    ul.facList li .Txt{
      width: calc(50% - 60px);
    }
    ul.facList li .Txt .btn_more{
      margin-top: 30px;
    }
    .roomArea .rightBox{
      display: none;
      width: 100%;
    }
    .roomArea .leftBox{
      width: 100%;
      padding: 0;
    }
    .roomArea .leftBox .innerTxt{
      max-width: 100%;
    }
    .roomArea .titleBox{
      text-align: center;
    }
    .roomArea .rightBox .coverImg{
      display: none;
    }
  }
  @media (max-width: 1100px){
    .btn_restaurant.open ul.restaurantTxtList li{
      margin-bottom: -10px;
    }
  }
  @media (max-width: 1024px){
    ul.facList li .Txt{
      padding: 30px 0;
    }
    ul.facList li .Txt .txtExp{
      height: auto;
    }
  }
  @media (max-width: 960px){
    .bookingArea{
      margin-top: -10px;
    }
    .about_mapArea{
      -webkit-flex-direction: column-reverse;
      -moz-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      -o-flex-direction: column-reverse;
      flex-direction: column-reverse;
    }
    .mapArea{
      width: 100%;
    }
    .mapArea #gmap_s, .mapArea iframe{
      height: 500px;
    }
    .aboutArea{
      width: 100%;
      padding: 100px 10px 60px;
    }
    .aboutArea::before{
      -webkit-background-size: 70%;
      background-size: 70%;
      right: -100px;
    }
    .aboutArea .txtExp{
      margin-top: 35px;
    }
    .aboutArea .btn_more{
      margin-top: 25px;
    }

    .facArea .wrap{
      padding: 0;
    }
    ul.facList li .item{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-flex-direction: column-reverse;
      -moz-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      -o-flex-direction: column-reverse;
      flex-direction: column-reverse;
    }
    ul.facList li .Img{
      width: 100%;
    }
    ul.facList li .Img::before{
      display: none;
    }
    ul.facList li .Txt{
      width: 100%;
      padding: 40px 50px;
    }
    ul.facList li .Txt .innerTxt{
      max-width: 100%;
    }

    .btn_restaurant{
      display: none;
    }
    ul.restaurantList li .Txt{
      display: block;
    }
    .restaurantArea .arrowsBox{
      display: block;
    }
    .restaurantArea .rectPrev, .restaurantArea .rectNext{
      top: calc(100% - 48px);
    }
    .restaurantBox .coverImg{
      display: none;
    }
  }
  @media (max-width: 768px){
    .newsArea{
      padding: 60px 0;
    }
    .aboutArea::before{
      top: -100px;
    }
    ul.roomList li .Txt{
      width: 100%;
      padding: 30px 25px;
      background: #f9f9f9;
    }
    ul.roomList li .Txt .txtExp{
      font-size: 14px;
      letter-spacing: 0.8px;
      line-height: 25px;
      height: auto;
      max-height: calc(25px * 4 + 1px);
    }
    ul.roomList li .Img{
      width: 100%;
    }
    ul.roomList li.show .Img a::before{
      opacity: 0;
    }
    ul.roomList li .Img a::after{
      display: none;
    }
    ul.roomList li .item,
    ul.roomList li.show .item,
    ul.roomList li:hover .item{
      border-bottom: 3px solid #a30066;
      border-right: 0;
    }
    ul.roomList li .btn_detail{
      margin-top: 15px;
    }
  }
  @media (max-width: 640px){
    .bookingArea{
      padding: 0 30px;
    }
    .newsArea .rectPrev,
    .newsArea .rectNext{
      background: #d4d4d4;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    .newsArea .rectPrev{
      left: 0;
    }
    .newsArea .rectNext{
      right: 0;
    }
    .newsArea .rectPrev::before{
      left: 14px;
    }
    .newsArea .rectNext::before{
      right: 14px;
    }
    .aboutArea .txtExp{
      height: auto;
    }

    ul.facList li .Txt{
      padding: 35px 25px;
    }

    ul.restaurantList li .Txt{
      position: relative;
    }
  }
  @media (max-width: 480px){
    .bookingArea a{
      line-height: 80px;
    }

    .newsArea .rectPrev, .newsArea .rectNext{
      top: calc(50% + 45px);
    }
  }
  @media (max-width: 400px){
    .controlVideo.playing.open,
    .controlVideo.pauseing.open{
      right: 20px;
    }
  }
