@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500&family=Petit+Formal+Script&display=swap");
@keyframes zoomon {
  0% {
    transform: scale(1.2);
    filter: blur(50px);
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
  }
}
@keyframes titleUp {
  0% {
    margin-top: 44px;
    opacity: 0;
    filter: opacity(0);
  }
  100% {
    margin-top: 0px;
    opacity: 1;
    filter: opacity(100);
  }
}
@keyframes explainUp {
  0% {
    margin-top: -84px;
    opacity: 0;
    filter: opacity(0);
  }
  100% {
    margin-top: 0px;
    opacity: 1;
    filter: opacity(100);
  }
}
@keyframes line-image {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  50% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes scroll-line-top {
  0% {
    bottom: calc(100% + 20px + 90px);
    height: 0;
  }
  50% {
    bottom: calc(100% + 20px);
    height: 90px;
  }
  100% {
    bottom: calc(100% + 20px);
    height: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes mt1 {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mt2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.account_input {
  border: 1px solid #666;
  border-radius: 0.5rem;
  background: #FFF;
  padding: 6px;
  width: 110px;
}

.rwd-table tr td button {
  padding: 6px;
  font-size: 15px;
}

.rwd-table tr td button.btn03 {
  min-width: 75px;
}

.view {
  margin-bottom: 60px;
  background: #000;
}
.view .imgbox {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1882352941);
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
  background: #FFF;
}
.view .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.view .imgbox .infobox {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  padding: 10px 4px;
  background: rgba(26, 26, 26, 0.8470588235);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: 1;
}
.view .imgbox .infobox p {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFF;
}
.view:hover .imgbox {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3137254902);
}
.view:hover .imgbox img {
  transform: translate(-50%, -50%) scale(1.1);
}

main .bn {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 24%;
}
main .bn img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
main .bn .page-title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.1254901961) 0em 0.1em 0.1em;
}
main .bn .page-title h4 {
  font-size: 35px;
  font-weight: 400;
}
main .bn .page-title p {
  font-size: 20px;
  margin-top: 10px;
  font-family: "Comfortaa";
}
main .bn::after {
  content: "";
  position: absolute;
  top: 42%;
  right: calc(50% - 1px);
  width: 2px;
  height: 12%;
  background: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.checkbox-detail-ajax-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4392156863);
  width: 100%;
  height: 100%;
  z-index: 3000;
}
.checkbox-detail-ajax-box .ajax-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 50px;
  max-height: 600px;
  width: 900px;
  height: auto;
  overflow: auto;
}
.checkbox-detail-ajax-box .ajax-box .ajax-box-btn {
  position: absolute;
  top: 4px;
  right: 15px;
  font-size: 28px;
  transform: rotateX(45deg);
  color: #D4BC83;
}

.w100 {
  width: 100px;
}

.border-bottom {
  border-bottom: solid 1px #000000;
}

.bookingstyle .btn {
  background: #987B37 !important;
}
.bookingstyle .btn:hover {
  background: #505050 !important;
}

.btn {
  font-size: 18px !important;
  letter-spacing: 2px !important;
  background: #D4BC83 !important;
  color: #FFF !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1254901961) !important;
  padding: 10px 80px 10px 20px !important;
  position: relative !important;
}
.btn::after {
  position: absolute;
  background: url(../img/more.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(50% - 7px);
  right: 19px;
  width: 9px;
  height: 8px;
  content: "";
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 45px;
  height: 1px;
  background: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn:hover {
  background: #987B37 !important;
}
.btn:hover::before {
  width: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn_back {
  font-size: 18px !important;
  letter-spacing: 2px !important;
  background: #D4BC83 !important;
  color: #FFF !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1254901961) !important;
  padding: 10px 20px 10px 80px !important;
  position: relative !important;
}
.btn_back::after {
  position: absolute;
  background: url(../img/back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(50% - 7px);
  left: 19px;
  width: 9px;
  height: 8px;
  content: "";
}
.btn_back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 45px;
  height: 1px;
  background: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn_back:hover {
  background: #987B37 !important;
}
.btn_back:hover::before {
  width: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn01 {
  color: #FFF;
  background: #D4BC83;
  border: solid 1px #D4BC83;
}
.btn01:hover {
  box-shadow: inset -4em 0 0 0 #987B37, inset 4em 0 0 0 #987B37;
}

.btn02 {
  background: #D4BC83 !important;
  color: #FFF !important;
  border: solid 1px #D4BC83 !important;
}
.btn02:hover {
  background: #707070 !important;
  border: solid 1px #707070 !important;
}

.btn_gray {
  background: #707070 !important;
  color: #FFF !important;
  border: solid 1px #707070 !important;
}
.btn_gray:hover {
  background: #343434 !important;
  border: solid 1px #343434 !important;
}

.btn_reset {
  background: #b2b2b2 !important;
  border: solid 1px #b2b2b2 !important;
  color: #FFF !important;
}
.btn_reset:hover {
  background: #505050 !important;
  border: solid 1px #505050 !important;
}

.btn_submit {
  background: #987B37 !important;
  border: solid 1px #987B37 !important;
  color: #FFF !important;
}
.btn_submit:hover {
  background: #505050 !important;
  border: solid 1px #505050 !important;
}

.btn_forget {
  background: rgba(255, 255, 255, 0) !important;
  color: #707070 !important;
}
.btn_forget:hover {
  background: #ebebeb !important;
  color: #505050 !important;
}

.l-h {
  line-height: 26px;
}

.bar-graph, .bar-graph-text {
  width: 80%;
  margin: 0 auto;
}

.bar-graph {
  background: #d8d8d8;
  height: 12px;
  box-sizing: content-box;
  margin-bottom: 10px;
  margin-top: 20px;
}
.bar-graph .bar-graph-bg, .bar-graph .bar-graph-bg02, .bar-graph .bar-graph-bg03, .bar-graph .bar-graph-bg04, .bar-graph .bar-graph-bg05 {
  background: #D4BC83;
  height: 12px;
}
.bar-graph .bar-graph-bg {
  width: 20%;
}
.bar-graph .bar-graph-bg02 {
  width: 40%;
}
.bar-graph .bar-graph-bg03 {
  width: 60%;
}
.bar-graph .bar-graph-bg04 {
  width: 80%;
}
.bar-graph .bar-graph-bg05 {
  width: 100%;
}

.bar-graph-text {
  display: flex;
  flex-wrap: wrap;
}
.bar-graph-text h2 {
  width: 20%;
  color: #505050;
  font-size: 16px;
  font-weight: 400;
  margin: 15px 0 30px 0;
  text-align: center;
}

.square01, .square02 {
  width: 26px;
  height: 26px;
  border: solid 1px #505050;
  margin-right: 10px;
}

.square01 {
  background: #ECECEC;
}

.square02 {
  background: #F3A9AA;
}

.color01 {
  color: #D4BC83;
}

.color02 {
  color: #987B37;
}

.color03 {
  color: #FF0000;
}

.color_gray {
  color: #505050;
}

.color_w {
  color: #FFF !important;
}

.top-member {
  padding: 10% 0;
}

.top-alla {
  padding: 5% 0;
}

.top-allb {
  padding: 5% 0 8% 0;
}

.push {
  padding-top: 120px;
}

.box {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1254901961);
  background: rgba(255, 255, 255, 0.7882352941);
}

.bg {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 60%, rgb(255, 238, 238) 61%, rgb(255, 238, 238) 100%);
  position: relative;
}
.bg::before {
  position: absolute;
  background: url(../img/bg_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 40px;
  width: 236px;
  height: 292px;
  content: "";
}
.bg::after {
  position: absolute;
  background: url(../img/bg_a.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 55px;
  right: 40px;
  width: 220px;
  height: 270px;
  content: "";
}

.bg01 {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-image: url("../img/bg01.jpg");
  background-size: contain;
  background-repeat: repeat;
}

.bg02 {
  background-image: url("../img/bg02.jpg");
  background-repeat: repeat;
  position: relative;
}
.bg02::before {
  position: absolute;
  background: url(../img/point.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 42%;
  left: 0px;
  width: 242px;
  height: 324px;
  content: "";
}

.bg03 {
  background-image: url("../img/bg03.jpg");
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg04 {
  background-image: url("../img/bg04.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_page {
  background-image: url("../img/page.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_member {
  padding: 20px 0px;
  background-image: url("../img/bg_member.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
}
.bg_member::before {
  position: absolute;
  content: "";
  width: 96%;
  height: 90%;
  border: solid 1px #505050;
  right: 2%;
  top: 5%;
}

.form_bg {
  background-image: url("../img/form_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.about-logo {
  padding-left: 1rem;
}

.banner-all img {
  width: 100%;
}

.maker {
  background: #D4BC83;
  color: #ffffff;
  padding: 8px 25px;
  width: -moz-fit-content;
  width: fit-content;
}

/*BANNER */
.banner {
  margin: 0;
  padding: 0;
  background: #000000;
}
.banner .swiper-banner {
  width: 100%;
}
.banner .swiper-banner .swiper-slide {
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
}
.banner .swiper-banner .swiper-slide .swiper-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #FFF;
  text-shadow: 0 0 15px #555;
  text-align: center;
}
.banner .swiper-banner .swiper-slide .swiper-text h2, .banner .swiper-banner .swiper-slide .swiper-text h4, .banner .swiper-banner .swiper-slide .swiper-text p {
  margin: 10px auto;
  margin-top: 0;
}
.banner .swiper-banner .swiper-slide .swiper-text h2 {
  font-size: 64px;
  font-family: "Cormorant SC", serif;
  font-weight: 400;
}
.banner .swiper-banner .swiper-slide .swiper-text h4 {
  font-size: 40px;
  letter-spacing: 4px;
}
.banner .swiper-banner .swiper-slide .swiper-img {
  width: 100%;
  position: relative;
}
.banner .swiper-banner .swiper-slide .swiper-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner .swiper-banner .swiper-slide .swiper-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner .swiper-banner .swiper-slide .swiper-line::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  width: 1px;
  height: 90px;
  background-color: #bcbcbc;
  animation: scroll-line-top 2.7s ease infinite;
  background-color: #FFF;
  z-index: 1;
}
.banner .swiper-banner .swiper-slide img {
  position: relative;
  width: 100%;
  display: block;
}
.banner .swiper-banner .swiper-slide a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 102%;
}
.banner .swiper-banner .swiper-slide-active {
  opacity: 1;
}
.banner .swiper-banner .swiper-slide-active img {
  animation: zoomon 2s linear;
}
.banner .swiper-banner .swiper-slide-active h2 {
  animation: titleUp 1.5s ease-in-out;
}
.banner .swiper-banner .swiper-slide-active h4 {
  animation: explainUp 1.5s ease-in-out;
}
.banner .swiper-banner .swiper-button-next, .banner .swiper-banner .swiper-button-prev {
  color: #707070;
}
.banner .swiper-banner .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: solid 2px #b2b2b2;
}
.banner .swiper-banner .swiper-pagination .swiper-pagination-bullet-active {
  border: solid 2px #ffffff;
}

.index_bk {
  background: #B5A274;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3333333333);
}

.about-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  align-items: center;
}
.about-box .leftbox {
  width: 42%;
  padding: 20px;
  position: relative;
}
.about-box .leftbox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 95%;
  border: 1px solid #A57C52;
  z-index: 1;
}
.about-box .leftbox .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 70%;
  z-index: 1;
}
.about-box .leftbox .imgbox:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.about-box .leftbox .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.about-box .textbox {
  width: 58%;
  height: 100%;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  background-color: #970209;
}
.about-box .textbox span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-align: left;
}

.roompage:hover .imgbox img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform: translate(-50%, -50%) scale(1.1);
}
.roompage .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 55%;
}
.roompage .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.mobbutton {
  display: none;
}

.qmap {
  position: relative;
  background-image: url("../img/roombg.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 500px;
  width: 100%;
}
.qmap .rooms {
  position: absolute;
  cursor: pointer;
  z-index: 2;
}
.qmap .rooms:hover .roominfo .roomname {
  opacity: 1;
}
.qmap .rooms .roominfo {
  text-align: center;
}
.qmap .rooms .roominfo img {
  width: 97px;
  height: 54.2px;
}
.qmap .rooms .roominfo .roomname {
  opacity: 0;
  font-size: 16px;
  line-height: 22px;
  padding: 12px;
  color: #987B37;
  position: relative;
  width: 100px;
  margin: 0 auto;
}
.qmap .rooms .roominfo .roomname::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8745098039);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.568627451);
  border-radius: 6px;
  content: "";
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: -1;
}
.qmap .rooms .roominfo .roomname::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  width: 0px;
  height: 0px;
  border-top: 10px solid rgba(255, 255, 255, 0.8745098039);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.qmap .no1 {
  left: 2%;
  top: 20%;
}
.qmap .no2 {
  left: 16%;
  top: 2%;
}
.qmap .no3 {
  left: 42%;
  top: -5%;
}
.qmap .no4 {
  left: 67%;
  top: 2%;
}
.qmap .no5 {
  right: 2%;
  top: 20%;
}
.qmap .no6 {
  right: 6%;
  top: 42%;
}
.qmap .no7 {
  right: 20%;
  top: 60%;
}
.qmap .no8 {
  right: 43%;
  top: 63%;
}
.qmap .no9 {
  left: 17%;
  top: 60%;
}
.qmap .no10 {
  left: 6%;
  top: 42%;
}

.roomsrooms .leftbox {
  width: 600px;
  margin: 0 10px;
}
.roomsrooms .rightbox {
  width: calc(100% - 620px);
}

.date_select dd {
  margin-bottom: 0 !important;
  padding: 20px 10px;
  cursor: pointer;
  border: dashed 2px #fff;
  position: relative;
}
.date_select dd::after {
  content: "";
  position: absolute;
  font-size: 20px;
  color: #b2b2b2;
  content: "\e81c";
  font-family: "fontello";
  bottom: calc(50% - 20px);
  right: 15px;
}
.date_select dd:hover {
  background: #ebebeb;
  border: dashed 2px #A57C52;
}
.date_select dd:hover::after {
  color: #D4BC83;
}
.date_select dd select {
  width: 90% !important;
}
.date_select dd.select {
  background: #ECE6DD;
  border: dashed 2px #ECE6DD;
}
.date_select dd.select::after {
  color: #D4BC83;
}
.date_select dd.last {
  cursor: auto;
}
.date_select dd.last::after {
  display: none !important;
}
.date_select dd.last:hover {
  background: #FFF;
  border: dashed 2px #fff;
}

table.roomtable {
  table-layout: fixed;
  width: 100%;
  border: 1px solid gray;
  width: 100px;
  height: 30px;
}
table.roomtable thead tr th {
  position: sticky;
  top: 0;
}
table.roomtable td:first-child, table.roomtable th:first-child {
  position: sticky;
  left: 0;
  /* 首行永遠固定於左 */
  z-index: 1;
  background-color: lightpink;
}
table.roomtable div {
  overflow: auto;
  width: 100%;
  height: 108px;
  /* 固定高度 */
}

.video {
  width: 100%;
  background: rgba(255, 255, 255, 0.7882352941);
  display: block;
  margin-top: 140px;
  position: relative;
}
.video::before {
  position: absolute;
  content: "";
  width: 36%;
  height: 86%;
  border: solid 1px #D4BC83;
  left: 2%;
  top: 7%;
}
.video .leftbox {
  width: 40%;
  height: 100%;
  position: relative;
}
.video .leftbox .textbox {
  width: 90%;
  margin: auto;
}
.video .video-pic {
  width: 60%;
  position: relative;
}
.video .video-pic .pic {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 51%;
}
.video .video-pic .pic img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.video .video-pic .pic::after {
  position: absolute;
  content: "";
  width: 110px;
  height: 65px;
  background: url(../img/play_yt.svg);
  left: calc(50% - 55px);
  top: calc(50% - 32px);
}

/*大標*/
.title, .title01 {
  text-align: center;
  margin: 30px auto;
}
.title h2, .title01 h2 {
  font-size: 35px;
  color: #A57C52;
  letter-spacing: 2px;
  padding: 6px 20px;
  position: relative;
  display: inline-block;
}
.title h2::before, .title h2::after, .title01 h2::before, .title01 h2::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 1px;
  background: #A57C52;
  top: 50%;
  transform: translateY(-50%);
}
.title h2::before, .title01 h2::before {
  left: -15%;
}
.title h2::after, .title01 h2::after {
  right: -15%;
}
.title span, .title01 span {
  margin-top: 10px;
  display: block;
  font-size: 16px;
}
.title p, .title01 p {
  font-size: 24px;
  color: #A57C52;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  font-family: "Petit Formal Script", cursive;
  font-weight: 600;
}
.title p::before, .title01 p::before {
  content: "";
  position: absolute;
  background: url(../img/title.svg);
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 69px;
  height: 31px;
}

.title01 {
  text-align: left;
}
.title01 h2 {
  padding: 6px 0px;
}
.title01 p::before {
  display: none;
}

.form_bg .title02 h2 {
  color: #505050;
}
.form_bg .title02 h2::after {
  background: #505050;
}

.title02 h2 {
  font-size: 25px;
  color: #D4BC83;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 40px;
}
.title02 h2::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background: #D4BC83;
  left: 0px;
  bottom: -10px;
}

.title03 {
  margin: 40px 0px;
}
.title03 h2 {
  text-align: center;
  font-size: 30px;
  color: #707070;
  letter-spacing: 2px;
}
.title03 p {
  text-align: center;
  letter-spacing: 0px;
  color: #707070;
  font-size: 18px;
  margin-top: 6px;
  font-family: "Comfortaa";
  position: relative;
}
.title03 p::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background: #707070;
  left: calc(50% - 30px);
  bottom: -10px;
}

.cartbox2 {
  border: solid 1px #707070;
  padding-bottom: 60px;
}
.cartbox2 img {
  width: 40px;
}
.cartbox2 .title_cart h2 {
  text-align: left;
  background: #707070;
  padding: 12px 0px 12px 12px;
}

.title_cart h2 {
  font-size: 25px;
  letter-spacing: 2px;
  color: #fff;
  background: #987B37;
  text-align: center;
  padding: 12px 2px;
}

.title_line hr {
  background: #E8E8E8;
  height: 4px;
  position: relative;
}
.title_line hr::before {
  content: "";
  background: #D4BC83;
  width: 120px;
  height: 4px;
  left: 0;
  bottom: 0;
  position: absolute;
}
.title_line h3 {
  color: #707070;
  font-size: 24px;
}

.company {
  padding: 36px;
}
.company .company-text {
  text-align: center;
  padding: 10px;
  margin-top: -20px;
}
.company .company-text h4 {
  color: #FFF;
  display: inline;
  background: #D4BC83;
  padding: 12px 50px;
  border-radius: 30px;
  position: relative;
  letter-spacing: 2px;
}
.company .company-img {
  box-shadow: 0px 0px 10px rgba(70, 53, 53, 0.1882352941);
  border-radius: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.company .company-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.company:hover .company-img img {
  transform: scale(1.1);
}

.links {
  margin-top: 30px;
}
.links .links-img {
  box-shadow: 0px 0px 10px rgba(70, 53, 53, 0.1882352941);
  position: relative;
  display: block;
  overflow: hidden;
}
.links .links-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.links:hover .links-img img {
  transform: scale(1.1);
}

article section .container .index-links-prev-next {
  position: relative;
}
article section .container .index-links-prev-next .swiper-button-next, article section .container .index-links-prev-next .swiper-button-prev {
  top: -50px;
  background: #D4BC83;
  outline: none;
  border-radius: 40px;
  width: 40px;
  height: 40px;
}
article section .container .index-links-prev-next .swiper-button-next:after, article section .container .index-links-prev-next .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}
article section .container .index-links-prev-next .swiper-button-next {
  left: auto;
  right: -45px;
}
article section .container .index-links-prev-next .swiper-button-prev {
  left: -45px;
  right: auto;
}

.product {
  background: #FFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1882352941);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 10px;
}
.product .product-text {
  padding: 10px;
}
.product .product-text p {
  margin: 10px 0px;
  font-size: 16px;
}
.product .product-text span {
  color: #987B37;
}
.product .product-text span i {
  margin-left: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.product .product-img {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 10px;
}
.product .product-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.product:hover {
  background: #D4ECFF;
}
.product:hover .product-img img {
  transform: scale(1.1);
}
.product:hover .product-text span {
  color: #D4BC83;
}
.product:hover .product-text span i {
  margin-left: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.product2 {
  background: #FFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1882352941);
  padding: 10px;
}
.product2 .product-text {
  padding: 10px;
}
.product2 .product-text h4 {
  line-height: 24px;
}
.product2 .product-img {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 10px;
}
.product2 .product-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.product2:hover .product-img img {
  transform: scale(1.1);
}
.product2:hover .product-text {
  color: #D4BC83;
}

.buttonbox .swiper-button-next, .buttonbox .swiper-button-prev {
  top: 25px;
  background: #fff;
  border: solid 1px #D4BC83;
  outline: none;
  border-radius: 0px;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
}
.buttonbox .swiper-button-next:hover, .buttonbox .swiper-button-prev:hover {
  background: #ECE6DD;
}
.buttonbox .swiper-button-next:after, .buttonbox .swiper-button-prev:after {
  font-size: 14px;
  font-weight: 400;
  color: #D4BC83;
  font-family: "fontello";
}
.buttonbox .swiper-button-next:after {
  content: "→" !important;
}
.buttonbox .swiper-button-prev:after {
  content: "←" !important;
}
.buttonbox .swiper-button-prev {
  left: 0px !important;
  right: auto !important;
}
.buttonbox .swiper-button-prev:hover {
  left: -4px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.buttonbox .swiper-button-next {
  left: auto !important;
  right: 0px !important;
}
.buttonbox .swiper-button-next:hover {
  right: -4px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #D4BC83;
}

.swiper-news {
  padding-top: 60px !important;
}
.swiper-news .swiper-slide:nth-child(odd) {
  animation: mt1 1s linear;
}
.swiper-news .swiper-slide:nth-child(even) {
  animation: mt2 2s linear;
}

.newsbox {
  margin: 0px 0px 40px 0px;
}
.newsbox .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  padding-bottom: 75%;
}
.newsbox .imgbox:hover::before {
  background: rgba(0, 0, 0, 0);
}
.newsbox .imgbox:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.newsbox .imgbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.newsbox .imgbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  height: 96%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.newsbox .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.newsbox .textbox {
  margin-top: 20px;
  color: #FFF;
}
.newsbox .textbox span {
  padding: 6px 20px;
  background: #970209;
}
.newsbox .textbox time {
  padding: 6px 20px;
  background: #c7c7c7;
}
.newsbox .textbox h4 {
  margin-top: 16px;
  font-weight: 500;
  color: #505050;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 26px;
}

.section-rooms .buttonbox .swiper-button-next, .section-rooms .buttonbox .swiper-button-prev {
  top: 50%;
}

.section-rooms {
  padding-top: 15px;
}
.section-rooms .swiper-container {
  padding: 20px 50px;
}
.section-rooms .swiper-container .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
}
.section-rooms .swiper-container .swiper-wrapper .swiper-slide {
  flex-shrink: 1;
  width: 100%;
  position: relative;
  transition-property: transform;
  transform: translate3d(0, 0, 0);
}
.section-rooms .swiper-tabs-nav .swiper-slide {
  text-align: center;
  padding: 10px 0;
  background-color: #ebebeb;
  color: #A57C52;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.section-rooms .swiper-tabs-nav .swiper-slide-thumb-active {
  font-weight: 700;
  background-color: #A57C52;
  color: #ffffff;
  border: 0;
}
.section-rooms .swiper-tabs-content .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
}
.section-rooms .swiper-tabs-content .swiper-wrapper .swiper-slide-next, .section-rooms .swiper-tabs-content .swiper-wrapper .swiper-slide-prev {
  opacity: 0;
}
.section-rooms .swiper-tabs-content .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}

.roombox {
  width: 100%;
  display: flex;
  align-items: center;
}
.roombox .left {
  width: 70%;
  position: relative;
}
.roombox .left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #A57C52;
  width: 102%;
  height: 103%;
}
.roombox .left .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 56%;
}
.roombox .left .imgbox:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.roombox .left .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.roombox .info {
  position: relative;
  width: 30%;
  background: #ebebeb;
  color: #000000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3333333333);
  padding: 50px 30px;
}
.roombox .info h4 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}
.roombox .info p {
  margin-bottom: 20px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.roombox .info::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px;
  border-color: transparent transparent #970209;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.roombox .info::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background: #970209;
  left: 0;
  bottom: 0;
}

.circlelogo {
  position: relative;
}
.circlelogo img {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -80px;
  animation: spin 12s linear infinite;
}

.index-deco {
  background: #A57C52;
}
.index-deco h4 {
  font-size: 40px;
  font-family: "Cormorant SC", serif;
  font-weight: 400;
}

.index-restaurant {
  width: 85%;
  padding: 4%;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.restaruantbox {
  position: relative;
  background-color: #000000;
}
.restaruantbox .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 118%;
}
.restaruantbox .imgbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
}
.restaruantbox .imgbox:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.restaruantbox .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
.restaruantbox .active img {
  animation: line-image 3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0s;
}
.restaruantbox .imgbox .infobox {
  position: absolute;
  bottom: 50px;
  left: 10px;
  width: 90%;
  color: #ffffff;
  z-index: 1;
}
.restaruantbox .imgbox .infobox h3 {
  font-size: 22px;
  margin: 15px 0;
}
.restaruantbox .imgbox .infobox p:last-child {
  background-color: #D4BC83;
  color: #000000;
}

.curtains__slider {
  position: relative;
  display: block;
  width: 100%;
  height: 620px;
  margin: 0;
  overflow: hidden;
}

.curtains {
  position: relative;
  display: block;
  width: 50%;
  height: 100%;
  margin: 0 auto;
  z-index: 10;
}

.curtain {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.2;
}

.curtain.active {
  opacity: 1;
}

.curtain__sides {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.half__left {
  position: absolute;
  top: 5%;
  left: 0;
  width: 52%;
  height: 95%;
  margin-left: -3%;
  overflow: hidden;
  padding: 0;
}
.half__left .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 122%;
}
.half__left .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
.half__left .number {
  position: absolute;
  z-index: 1;
  font-size: 9em;
  color: #fff;
}

.half__right {
  position: absolute;
  top: 7%;
  right: 0;
  width: 52%;
  height: 90%;
  margin-right: -3%;
  overflow: hidden;
}
.half__right .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 115%;
}
.half__right .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}

.curtain:nth-child(odd) .half__left,
.curtain:nth-child(odd) .half__right {
  background-color: #000000;
}

.curtain:nth-child(even) .half__left,
.curtain:nth-child(even) .half__right {
  background-color: #505050;
}

.infos__holder {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.slide__infos {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 40%;
  height: auto;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
}

.slide__infos h2 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide__infos p {
  position: relative;
  display: inline;
  color: #222;
  padding-bottom: 3px;
  border-bottom: 2px solid #b1aba2;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#next__arrow,
#previous__arrow {
  position: absolute;
  top: 0;
  display: block;
  width: 23%;
  height: 100%;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0.8;
  z-index: 10;
}

#next__arrow.disable,
#previous__arrow.disable {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

#next__arrow {
  right: 0;
}

#previous__arrow {
  left: 0;
}

.no-touch #next__arrow:hover,
.no-touch #previous__arrow:hover {
  opacity: 1;
}

#next__arrow span, #previous__arrow span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border: solid 1px #D4BC83;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #D4BC83;
  font-family: "fontello";
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#next__arrow span:hover, #previous__arrow span:hover {
  background: #ECE6DD;
}

#previous__arrow span {
  right: 40px;
}

#next__arrow span {
  left: 40px;
}

#previous__arrow span::after, #next__arrow span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#previous__arrow span::after {
  content: "←" !important;
}

#next__arrow span::after {
  content: "→" !important;
}

.index-facility {
  width: 85%;
  margin: 0 auto;
}

.section-facility {
  padding-top: 15px;
  width: 100%;
  display: flex;
  align-items: center;
}
.section-facility .left {
  width: 50%;
  background-color: #ffffff;
  padding: 25px 45px;
}
.section-facility .left .swiper-tabs-nav-fac .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
}
.section-facility .left .swiper-tabs-nav-fac .swiper-wrapper .swiper-slide {
  text-align: center;
  padding: 10px 0;
  background-color: #ebebeb;
  color: #A57C52;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  width: 25% !important;
  height: 100%;
  position: relative;
  transition-property: transform;
  transform: translate3d(0, 0, 0);
  flex-shrink: 1;
}
.section-facility .left .swiper-tabs-nav-fac .swiper-wrapper .swiper-slide-thumb-active {
  font-weight: 700;
  background-color: #A57C52;
  color: #ffffff;
  border: 0;
}
.section-facility .left .buttonbox {
  display: none !important;
  position: relative;
  bottom: -10%;
  display: flex;
  margin: 60px auto 20px;
}
.section-facility .right {
  width: 50%;
}
.section-facility .right .swiper-tabs-content-fac .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
}
.section-facility .right .swiper-tabs-content-fac .swiper-wrapper .swiper-slide-next {
  opacity: 0;
}
.section-facility .right .swiper-tabs-content-fac .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}

.facilitybox {
  width: 100%;
  align-items: center;
}
.facilitybox .rightbox .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 56%;
}
.facilitybox .rightbox .imgbox:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.facilitybox .rightbox .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.index-contact {
  position: relative;
}
.index-contact .info {
  width: 30%;
  background-color: #ffffff;
  border-radius: 1.5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  padding: 10px 5px 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  z-index: 10;
  padding: 30px 45px;
}
.index-contact .info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #970209 transparent transparent transparent;
}
.index-contact .info h2 {
  font-size: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
  text-align: center;
}
.index-contact .info ul li {
  text-align: left;
  position: relative;
  padding-left: 30px;
  margin: 20px auto;
}
.index-contact .info ul li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}
.index-contact .info ul li.phone::before {
  background: url(../img/icon_phone.svg) left 50% no-repeat;
}
.index-contact .info ul li.mail::before {
  background: url(../img/icon_mail.svg) left 50% no-repeat;
}
.index-contact .info ul li.add::before {
  background: url(../img/icon_add.svg) left 50% no-repeat;
}
.index-contact .map {
  filter: grayscale(100%);
  position: relative;
  padding-bottom: 25%;
  height: 0;
  overflow: hidden;
}
.index-contact .map iframe, .index-contact .map object, .index-contact .map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-logo {
  text-align: center;
}
.c-logo img {
  width: 80%;
  max-width: 350px;
  margin-top: 40px;
}

.contact_page .frame {
  padding: 0px 0px;
}

.frame {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1254901961);
  background: rgba(255, 255, 255, 0.6980392157);
  padding: 40px 0px;
  margin-top: 30px;
}

.cartbox {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1254901961);
  background: rgba(255, 255, 255, 0.6980392157);
  padding: 0px 0px 40px 0px;
}

.aboutimg img {
  width: 100%;
}

.moreimg {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.moreimg img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.col-12 .meal:nth-child(even)::before {
  left: 1%;
  right: auto;
}
.col-12 .meal:nth-child(even) .leftbox .imgbox {
  margin-left: 100%;
}
.col-12 .meal:nth-child(even) .rightbox {
  position: absolute;
}

.meal {
  width: 100%;
  background: rgba(255, 255, 255, 0.7882352941);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
}
.meal::before {
  position: absolute;
  content: "";
  width: 48%;
  height: 94%;
  border: solid 1px #D4BC83;
  right: 1%;
  top: 3%;
}
.meal .rightbox {
  width: 50%;
  height: 100%;
  position: relative;
}
.meal .rightbox .info {
  width: 90%;
  margin: auto;
}
.meal .rightbox .info .meal-title {
  color: #D4BC83;
  margin: 40px 0px 20px 0px;
}
.meal .rightbox .info .meal-title p {
  font-size: 18px;
  position: relative;
  margin-bottom: 20px;
  font-family: "Comfortaa";
  padding: 0;
}
.meal .rightbox .info .meal-title p::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background: #D4BC83;
  left: 0px;
  bottom: -5px;
}
.meal .rightbox .info .meal-title h2 {
  font-size: 30px;
}
.meal .rightbox .info p {
  font-size: 18px;
}
.meal .leftbox {
  width: 50%;
  position: relative;
}
.meal .leftbox .imgbox {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 55%;
}
.meal .leftbox .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.c-info {
  display: flex;
  align-items: center;
  margin: 10px 0px;
}
.c-info p span {
  font-size: 18px;
  line-height: 26px;
}
.c-info img {
  width: 35px;
  margin-right: 15px;
}

.product_d-money ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  font-size: 20px;
}

.number-p .shopify-buy {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.number-p .shopify-buy button {
  background: #D4BC83;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  padding: 0 0 4px 0;
  font-size: 25px;
  line-height: 14px;
}
.number-p .shopify-buy input[type=number] {
  height: 30px;
  width: 60px;
  text-align: center;
  margin: 0 8px;
}

/*產品 */
.product__carousel {
  display: block;
  max-width: 700px;
  margin: 1em auto 3em;
}
.product__carousel a {
  display: block;
  margin-bottom: 15px;
}
.product__carousel .gallery-top {
  margin-bottom: 5px;
  height: 540px !important;
}
.product__carousel .gallery-top .swiper-slide {
  position: relative;
  overflow: hidden;
}
.product__carousel .gallery-top .swiper-slide a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.product__carousel .gallery-top .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
  min-width: 100%;
  min-height: 100%;
}
.product__carousel .swiper-button-next.swiper-button-white, .product__carousel .swiper-button-prev.swiper-button-white {
  color: #E6E6E6;
}
.product__carousel .gallery-thumbs .swiper-slide {
  position: relative;
  transition: border 0.15s linear;
  border: 1px solid #E6E6E6;
  cursor: pointer;
  overflow: hidden;
  height: calc(100% - 2px);
  margin-top: 5px;
}
.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #D4BC83 !important;
}
.product__carousel .gallery-thumbs .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.swiper-slide-thumb-active {
  border: solid 3px #D4BC83;
  box-sizing: border-box;
}

.products-img {
  display: none;
}
.products-img img {
  width: 100%;
}

.products_detail-money .products_detail-money-text, .products_detail-money .products_detail-money-quantity {
  margin: 20px 0;
}
.products_detail-money .products_detail-money-text span {
  margin-right: 10px;
  font-size: 25px;
}
.products_detail-money .products_detail-money-quantity p {
  margin-right: 10px;
}

.shop-btn {
  display: flex;
  margin: 30px 0;
}
.shop-btn .shop-btn-basket, .shop-btn .shop-btn-shop {
  padding: 8px 30px;
  margin-right: 10px;
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
}
.shop-btn .shop-btn-basket:hover, .shop-btn .shop-btn-shop:hover {
  background: #707070;
  border: solid 1px #707070;
}
.shop-btn .shop-btn-basket:hover a, .shop-btn .shop-btn-shop:hover a {
  color: #FFF;
}
.shop-btn .shop-btn-basket {
  background: #D4ECFF;
  border: solid 1px #D4ECFF;
}
.shop-btn .shop-btn-basket a {
  color: #ffffff;
}
.shop-btn .shop-btn-shop {
  background: #C49015;
  border: solid 1px #C49015;
}
.shop-btn .shop-btn-shop a {
  color: #ffffff;
}

ul.tabs {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  height: 50px;
  border-bottom: 1px solid #D4BC83;
  width: 100%;
  justify-content: center;
  display: flex;
}
ul.tabs li {
  float: left;
  margin: 0;
  cursor: pointer;
  padding: 10px 30px;
  height: 50px;
  line-height: 31px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  position: relative;
  background: #ebebeb;
  border-bottom: 1px solid #D4BC83;
}

ul.tabs li:hover {
  opacity: 0.9;
}
ul.tabs li.active {
  background: #D4BC83;
  color: #FFF;
  display: block;
}

.tab_container {
  clear: both;
  float: left;
  width: 100%;
  overflow: auto;
}

.tab_content {
  display: none;
}

.tab_drawer_heading {
  display: none;
}

.Recipient-Information .text h4, .Subscriber-Information .text h4, .payment-method .text h4 {
  font-size: 18px;
}

.payment-methoda .payment-method-div:nth-child(2n) {
  background: #ebebeb;
}

.payment-methoda .payment-method-div {
  border: solid 1px #ebebeb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 15px;
  font-size: 20px;
  background: #FFF;
}
.payment-methoda .payment-method-div .payment-method-way {
  width: 200px;
}
.payment-methoda .payment-method-div .payment-method-way .answer {
  display: flex;
  align-items: center;
}
.payment-methoda .payment-method-div .payment-method-way .answer label, .payment-methoda .payment-method-div .payment-method-way .answer input {
  width: 50%;
}
.payment-methoda .payment-method-div .payment-method-way .answer label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.payment-methoda .payment-method-div .payment-method-way .answer input {
  content: "";
  background: #fff;
  border: 2px solid #ccc;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
}
.payment-methoda .payment-method-div .payment-method-text {
  width: calc(100% - 200px);
}

.successfully-ordered-div {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5647058824);
  border: solid 1px #D4BC83;
  margin: 40px auto;
  padding: 80px 30px;
}
.successfully-ordered-div .successfully-ordered-div-img {
  width: 150px;
  text-align: center;
}
.successfully-ordered-div .successfully-ordered-div-img img {
  width: 120px;
  height: 120px;
}
.successfully-ordered-div .successfully-ordered-div-text {
  width: calc(100% - 150px);
  padding: 0 30px;
}
.successfully-ordered-div .successfully-ordered-div-text p {
  padding: 6px 0;
  font-size: 20px;
}

@media screen and (max-width: 576px) {
  .order-center tr td {
    text-align: left !important;
  }
  .tab_drawer_heading {
    background-color: #ccc;
    color: #fff;
    border-top: 1px solid #333;
    margin: 0;
    padding: 5px 20px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
}
.order-center tr td {
  text-align: center;
}

.rwd-table {
  width: 100%;
  margin-top: 5px;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: 0.5em;
}
.rwd-table td:last-child {
  padding-bottom: 0.5em;
}
.rwd-table td:before {
  content: attr(data-th) "";
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
}
.rwd-table th, .rwd-table td {
  text-align: left;
}

/* ------------------ */
/* ----- Design ----- */
/* ------------------ */
.rwd-table {
  color: White;
  overflow: hidden;
}
.rwd-table th, .rwd-table td {
  margin: 0.5em 1em;
}
.rwd-table th {
  color: #ffffff;
}
.rwd-table td:before {
  color: #000000;
}
.rwd-table thead th {
  background: #707070;
}
.rwd-table tbody tr {
  background: #ffffff;
}
.rwd-table tbody tr td {
  color: #000000;
}
.rwd-table tbody tr td a {
  border-bottom: solid 1px;
}
.rwd-table tbody tr td button {
  border: solid 1px #000000;
}
.rwd-table tbody tr td button:hover {
  background: #000000;
  color: #ffffff;
}

.rwd-table.rwd-table-order2 {
  border: solid 1px #000000;
}
.rwd-table.rwd-table-order2 thead {
  background: #707070;
}
.rwd-table.rwd-table-order2 tr {
  border: none;
}
.rwd-table.rwd-table-order2 tbody tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.rwd-table.rwd-table-order2 tbody tr .rwd-table-order2-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.rwd-table.rwd-table-order2 tbody tr .rwd-table-order2-img img {
  width: 100px;
  height: 100px;
  margin: 5px 10px;
}

.rwd-table.rwd-table-order2 tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.rwd-table.rwd-table-order2 tbody .fare td, .rwd-table.rwd-table-order2 tbody .total td {
  width: 50%;
}
.rwd-table.rwd-table-order2 tbody .fare td:nth-child(2), .rwd-table.rwd-table-order2 tbody .total td:nth-child(2) {
  text-align: right;
}
.rwd-table.rwd-table-order2 tbody .fare {
  border-top: solid 1px #ebebeb;
}
.rwd-table.rwd-table-order2 tbody .total {
  background: #ebebeb;
}
.rwd-table.rwd-table-order2 tbody .total td {
  color: #b81b23;
  font-weight: bold;
}

.rwd-table.rwd-table-order3 th:nth-child(1), .rwd-table.rwd-table-order3 td:nth-child(1) {
  width: 60%;
}
.rwd-table.rwd-table-order3 th:nth-child(2), .rwd-table.rwd-table-order3 td:nth-child(2) {
  width: 20%;
}
.rwd-table.rwd-table-order3 th:nth-child(3), .rwd-table.rwd-table-order3 td:nth-child(3), .rwd-table.rwd-table-order3 th:nth-child(4), .rwd-table.rwd-table-order3 td:nth-child(4) {
  width: 10%;
}
.rwd-table.rwd-table-order3 td:nth-child(4) i {
  font-size: 25px;
}
.rwd-table.rwd-table-order3 td .shopify-buy {
  display: flex;
  margin: 0 10px;
}
.rwd-table.rwd-table-order3 td .shopify-buy input.shopify-buy__quantity {
  width: calc(100% - 80px);
  margin: 0 10px;
  text-align: center;
}
.rwd-table.rwd-table-order3 td .shopify-buy button {
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #000000;
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 575px) {
  .rwd-table td:before {
    display: none;
  }
  .rwd-table thead th {
    text-align: center;
  }
  .rwd-table th, .rwd-table td {
    display: table-cell;
    padding: 1em 0.3em !important;
  }
  .rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table.rwd-table-order2 th, .rwd-table.rwd-table-order2 td {
    display: table-cell;
    padding: 1em !important;
    margin: 0;
  }
  .rwd-table.rwd-table-order2 th:nth-child(1), .rwd-table.rwd-table-order2 td:nth-child(1) {
    width: 55%;
  }
  .rwd-table.rwd-table-order2 th:nth-child(2), .rwd-table.rwd-table-order2 td:nth-child(2), .rwd-table.rwd-table-order2 th:nth-child(3), .rwd-table.rwd-table-order2 td:nth-child(3) {
    width: 22%;
    text-align: center;
  }
  .rwd-table.rwd-table-order3 th:nth-child(1), .rwd-table.rwd-table-order3 td:nth-child(1) {
    width: 45%;
  }
  .rwd-table.rwd-table-order3 th:nth-child(2), .rwd-table.rwd-table-order3 td:nth-child(2) {
    width: 30%;
  }
  .rwd-table.rwd-table-order3 th:nth-child(3), .rwd-table.rwd-table-order3 td:nth-child(3), .rwd-table.rwd-table-order3 th:nth-child(4), .rwd-table.rwd-table-order3 td:nth-child(4) {
    width: 12%;
    text-align: center;
  }
}
@media screen and (max-width: 1440px) {
  .meal .rightbox .info p {
    font-size: 16px;
  }
  .video .video-pic .pic::after {
    width: 66px;
    height: 39px;
    left: calc(50% - 33px);
    top: calc(50% - 19.5px);
    background-size: contain;
  }
  .roombox .left {
    width: 65%;
  }
  .roombox .info {
    width: 35%;
    padding: 20px 30px;
  }
  .curtains__slider {
    height: 420px;
  }
  .curtains {
    width: 75%;
  }
  .slide__infos {
    width: 50%;
    padding: 30px;
  }
  .curtains .curtain.active .slide__info {
    visibility: visible;
  }
  #next__arrow,
  #previous__arrow {
    width: 65px;
  }
  #previous__arrow span {
    right: 10px;
  }
  #next__arrow span {
    left: 10px;
  }
  .bg::before {
    top: 0;
    left: 14px;
    width: 150px;
    height: 186px;
  }
}
@media screen and (max-width: 1366px) {
  /*產品 */
  .product__carousel .gallery-top {
    height: 400px !important;
  }
}
@media screen and (max-width: 1200px) {
  .col-12 .meal:nth-child(even) .leftbox .imgbox {
    margin-left: 0%;
  }
  .col-12 .meal:nth-child(even) .rightbox {
    position: relative;
  }
  .meal {
    display: block;
  }
  .meal::before {
    display: none !important;
  }
  .meal .rightbox {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .meal .rightbox .info .meal-title {
    margin: 20px 0px 20px 0px;
  }
  .meal .rightbox .info p {
    padding-bottom: 20px;
    font-size: 16px;
  }
  .meal .leftbox {
    width: 100%;
  }
  main .bn .page-title {
    top: 75%;
  }
  main .bn .page-title h4 {
    font-size: 30px;
  }
  main .bn .page-title p {
    font-size: 18px;
    margin-top: 6px;
  }
  main .bn::after {
    top: 42%;
    right: calc(50% - 1px);
    width: 2px;
    height: 12%;
  }
  .about-box .textbox span {
    -webkit-line-clamp: 3;
  }
  .roombox .left {
    width: 60%;
  }
  .roombox .info {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  article section .container .index-links-prev-next {
    position: relative;
  }
  article section .container .index-links-prev-next .swiper-button-next, article section .container .index-links-prev-next .swiper-button-prev {
    top: -150px;
    background: #D4BC83;
    outline: none;
    border-radius: 40px;
    width: 40px;
    height: 40px;
  }
  article section .container .index-links-prev-next .swiper-button-next:after, article section .container .index-links-prev-next .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
  }
  article section .container .index-links-prev-next .swiper-button-next {
    left: auto;
    right: 0px;
  }
  article section .container .index-links-prev-next .swiper-button-prev {
    left: auto;
    right: 50px;
  }
  .Recipient-Information form.forms-group input:nth-child(1) {
    margin-top: 0px;
  }
  /*產品 */
  .product__carousel .gallery-top {
    height: 300px !important;
  }
  .cord04 .cord04-img {
    height: 300px;
  }
  .rwd-table.rwd-table-order3 tbody .fare td:last-child, .rwd-table.rwd-table-order3 tbody .total td:last-child {
    padding-right: 17% !important;
  }
}
@media screen and (max-width: 991px) {
  .roombox {
    flex-wrap: wrap;
  }
  .roombox .left {
    width: 100%;
  }
  .roombox .info {
    width: 100%;
  }
  .roomsrooms .leftbox {
    width: 100%;
    margin: 10px;
  }
  .roomsrooms .leftbox .qmap {
    display: none;
  }
  .roomsrooms .leftbox .mobbutton {
    display: flex;
    flex-wrap: wrap;
  }
  .roomsrooms .leftbox .mobbutton .col-6 {
    padding: 0 2px;
  }
  .roomsrooms .leftbox .mobbutton .col-6 p {
    font-size: 16px;
    line-height: 22px;
    padding: 8px 4px;
    margin: 2px 0;
    color: #FFF;
    background: #D4BC83;
    text-align: center;
  }
  .roomsrooms .leftbox .mobbutton .col-6 p:hover {
    background: #000;
  }
  .roomsrooms .rightbox {
    width: 100%;
    margin: 10px;
  }
  .section-facility {
    flex-wrap: wrap;
  }
  .section-facility .left {
    width: 100%;
  }
  .section-facility .left .swiper-tabs-nav-fac .swiper-wrapper .swiper-slide {
    width: 50% !important;
  }
  .section-facility .left .buttonbox {
    display: block;
  }
  .section-facility .right {
    width: 100%;
  }
  .index-contact .info {
    width: 50%;
  }
  .index-contact .map {
    padding-bottom: 65%;
  }
  .cartbox .roomsrooms .rightbox {
    display: none;
  }
  .checkbox-detail-ajax-box .ajax-box {
    width: 90%;
    padding: 50px 20px 50px 20px;
  }
  .about-box {
    flex-wrap: wrap;
  }
  .about-box .leftbox {
    width: 100%;
  }
  .about-box .textbox {
    width: 100%;
    position: relative;
  }
  /*大標*/
  .title, .title01 {
    margin: 30px auto;
  }
  .title h2, .title01 h2 {
    font-size: 30px;
    letter-spacing: 6px;
    padding: 6px 20px;
  }
  .title p, .title01 p {
    font-size: 16px;
  }
  .title01 h2 {
    padding: 6px 0px;
  }
  .btn, .btn_back {
    font-size: 16px !important;
  }
  ul.tabs {
    flex-direction: column;
    height: auto;
  }
  .bg::before {
    top: 0;
    left: 14px;
    width: 150px;
    height: 186px;
  }
  .bg::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-slide .swiper-text h2 {
    font-size: 24px;
  }
  .banner .swiper-banner .swiper-slide .swiper-text h4 {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .banner .swiper-banner .swiper-slide .swiper-img {
    height: 100vh;
  }
  .banner .swiper-banner .swiper-slide img {
    width: auto;
    height: 100%;
  }
  .bar-graph, .bar-graph-text {
    width: 90%;
  }
  .bar-graph-text h2 {
    font-size: 14px;
    margin: 10px 0 30px 0;
  }
  .meal {
    margin-bottom: 40px;
  }
  .meal .rightbox .info .meal-title p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .meal .rightbox .info .meal-title p::after {
    width: 60px;
    bottom: -5px;
  }
  .meal .rightbox .info .meal-title h2 {
    font-size: 22px;
  }
  .meal .rightbox .info p {
    font-size: 16px;
    padding-bottom: 20px;
  }
  main .bn .page-title {
    top: 75%;
  }
  main .bn .page-title h4 {
    font-size: 28px;
  }
  main .bn .page-title p {
    font-size: 14px;
    margin-top: 4px;
  }
  main .bn::after {
    top: 42%;
    right: calc(50% - 1px);
    width: 2px;
    height: 12%;
  }
  .newsbox {
    margin: 0px 0px 40px 0px;
  }
  .newsbox .textbox {
    margin-top: 20px;
    color: #FFF;
  }
  .newsbox .textbox span {
    padding: 6px 12px;
  }
  .newsbox .textbox time {
    padding: 6px 12px;
  }
  .newsbox .textbox h2 {
    font-size: 22px;
  }
  .newsbox .imgbox .more .more-info {
    font-size: 16px;
  }
  .newsbox .imgbox .more .more-info i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 6px;
    font-size: 20px;
  }
  .newsbox .imgbox .more .more-info span {
    width: 100%;
  }
  a:hover .newsbox .imgbox {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border-radius: 20px;
  }
  .video {
    width: 100%;
    background: rgba(255, 255, 255, 0.7882352941);
    display: block;
    margin-top: 140px;
    position: relative;
  }
  .video::before {
    display: none;
  }
  .video .leftbox {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .video .leftbox .textbox {
    width: 90%;
    margin: auto;
  }
  .video .video-pic {
    width: 86%;
    margin: 0px 7% 30px 7%;
    position: relative;
  }
  .video .video-pic .pic {
    padding-bottom: 46%;
  }
  .swiper-tabs-nav .swiper-slide {
    width: 50% !important;
  }
  .section-rooms .swiper-container .swiper-wrapper {
    flex-wrap: wrap;
  }
  .section-rooms .swiper-container .swiper-wrapper .swiper-slide {
    margin: 2px auto;
  }
  .curtains__slider {
    padding: 50px 0 0px;
    background: none;
    height: 580px;
    overflow: hidden;
  }
  .curtains__slider::after {
    display: none;
  }
  .curtains {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    z-index: 10;
  }
  .curtain {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    display: block;
  }
  .curtain__sides {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
  }
  .half__left {
    top: 0%;
    left: 0;
    width: 50%;
    height: 100%;
    margin-left: 0%;
  }
  .half__left .number {
    font-size: 5em;
    left: 50%;
    transform: translateX(-50%);
  }
  .half__right {
    top: 0%;
    right: 0;
    width: 50%;
    height: 100%;
    margin-right: 0%;
  }
  .half__right img {
    top: 0%;
  }
  .infos__holder {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }
  .slide__infos {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px;
    padding-bottom: 20px;
    text-align: center;
    transform: none;
  }
  #next__arrow,
  #previous__arrow {
    top: 50px;
    width: 44px;
    height: 300px;
    background-color: #000;
  }
  #previous__arrow span {
    right: 0px;
  }
  #next__arrow span {
    left: 5px;
  }
  #previous__arrow span::after {
    left: 12px;
  }
  #next__arrow span::after {
    right: 17px;
  }
  #previous__arrow span::before,
  #next__arrow span::befor {
    display: none;
  }
  .index-deco h4 {
    font-size: 24px;
  }
  .index-deco img {
    width: 20%;
  }
  .restaruantbox .imgbox {
    padding-bottom: 118%;
  }
  .restaruantbox .imgbox .infobox {
    bottom: 5px;
    left: 5px;
  }
  .restaruantbox .imgbox .infobox h3 {
    font-size: 16px;
    margin: 10px 0;
  }
  .index-contact .info {
    width: 100%;
    padding: 20px 25px;
    left: 0;
    display: none;
  }
  .index-contact .info h2 {
    font-size: 20px;
    padding-top: 20px;
  }
  .links {
    margin-top: 60px;
  }
  article section .container .index-links-prev-next {
    position: relative;
  }
  article section .container .index-links-prev-next .swiper-button-next, article section .container .index-links-prev-next .swiper-button-prev {
    top: -120px;
    background: #D4BC83;
    outline: none;
    border-radius: 40px;
    width: 40px;
    height: 40px;
  }
  article section .container .index-links-prev-next .swiper-button-next:after, article section .container .index-links-prev-next .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
  }
  article section .container .index-links-prev-next .swiper-button-next {
    left: auto;
    right: 0px;
  }
  article section .container .index-links-prev-next .swiper-button-prev {
    left: auto;
    right: 50px;
  }
  .download .download-box a .download-left p {
    font-size: 20px;
  }
  form.book-search dl dd {
    margin-bottom: 0rem !important;
  }
  .rwd-table.rwd-table-order3 th:nth-child(1), .rwd-table.rwd-table-order3 td:nth-child(1) {
    width: 30%;
  }
  .rwd-table.rwd-table-order3 th:nth-child(2), .rwd-table.rwd-table-order3 td:nth-child(2) {
    width: 39%;
  }
  .rwd-table.rwd-table-order3 th:nth-child(3), .rwd-table.rwd-table-order3 td:nth-child(3), .rwd-table.rwd-table-order3 th:nth-child(4), .rwd-table.rwd-table-order3 td:nth-child(4) {
    width: 15%;
  }
  .rwd-table.rwd-table-order3 tbody .fare td:last-child, .rwd-table.rwd-table-order3 tbody .total td:last-child {
    padding-right: 13.5% !important;
  }
  .successfully-ordered-div {
    width: 80%;
    padding: 15px;
    margin: 20px auto;
  }
  .successfully-ordered-div .successfully-ordered-div-img img {
    padding: 20px;
  }
  .successfully-ordered-div .successfully-ordered-div-img, .successfully-ordered-div .successfully-ordered-div-text {
    width: 100%;
  }
  .successfully-ordered-div .successfully-ordered-div-img p, .successfully-ordered-div .successfully-ordered-div-text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 667px) {
  main .bn {
    position: relative;
    display: block;
    overflow: hidden;
    height: auto;
    width: auto;
    padding: inherit;
  }
  main .bn img {
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    transform: none;
    top: auto;
    left: auto;
    position: relative;
    height: 250px;
  }
  .push {
    padding-top: 100px;
  }
  .top-member {
    padding: 40% 0 50px 0;
  }
  .news-date p {
    letter-spacing: 0px;
    font-size: 20px;
  }
  /*產品 */
  .product__carousel {
    display: none;
  }
  .products-img {
    display: block;
  }
  .cord04 .cord04-img {
    height: 390px;
  }
  .form-1 img#imgcode {
    padding-left: 10px;
  }
  .form-1 input {
    margin-top: 10px;
  }
  .form-1 #xcode {
    margin-top: 10px;
  }
  .payment-methoda .payment-method-div .payment-method-way, .payment-methoda .payment-method-div .payment-method-text {
    width: 100%;
  }
  .payment-methoda .payment-method-div .payment-method-way {
    border-bottom: solid 1px #707070;
    padding-bottom: 10px;
  }
  .payment-methoda .payment-method-div .payment-method-text {
    margin: 15px 0;
  }
}
@media screen and (max-width: 575px) {
  .searchroombtn .btn {
    padding: 10px 20px !important;
  }
  .searchroombtn .btn::before, .searchroombtn .btn::after {
    display: none;
  }
  .searchroombtn .btn_back {
    padding: 10px 20px !important;
  }
  .searchroombtn .btn_back::before, .searchroombtn .btn_back::after {
    display: none;
  }
  .bar-graph-text h2 {
    margin: 5px 0 30px 0;
  }
  .bar-graph-text h2 span {
    display: block;
    margin-top: 4px;
  }
  .rwd-table.rwd-table-order2 {
    border-collapse: inherit;
  }
  .rwd-table.rwd-table-order2 tbody tr td {
    width: 100%;
  }
  .rwd-table.rwd-table-order2 tbody .fare td, .rwd-table.rwd-table-order2 tbody .total td {
    width: 50% !important;
    margin: 10px 0;
    padding: 0 10px;
  }
  .rwd-table.rwd-table-order2 tbody .fare td::before, .rwd-table.rwd-table-order2 tbody .total td::before {
    content: "";
    display: none;
  }
  .rwd-table.rwd-table-order2 tbody tr .rwd-table-order2-img img {
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .rwd-table.rwd-table-order2 tbody tr .rwd-table-order2-img p {
    width: 100%;
    font-size: 25px;
  }
  .rwd-table.rwd-table-order3 th, .rwd-table.rwd-table-order3 td {
    width: 100% !important;
  }
  .rwd-table.rwd-table-order3 td .shopify-buy {
    margin: 10px 0;
  }
  .rwd-table.rwd-table-order2 tbody .fare td:last-child, .rwd-table.rwd-table-order2 tbody .total td:last-child {
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 575px) {
  .cartbox2 {
    padding-bottom: 30px;
  }
  .title_cart h2 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  .bg_member::before {
    width: 96%;
    height: 96%;
    right: 2%;
    top: 2%;
  }
  .newsbox .textbox {
    margin-top: 20px;
    color: #FFF;
  }
  .newsbox .textbox span {
    padding: 6px 6px;
  }
  .newsbox .textbox time {
    padding: 6px 8px;
  }
  /*大標*/
  .title, .title01 {
    margin: 30px auto;
  }
  .title h2, .title01 h2 {
    font-size: 28px;
    letter-spacing: 6px;
    padding: 6px 20px;
  }
  .title p, .title01 p {
    font-size: 16px;
  }
  .title01 h2 {
    padding: 6px 0px;
  }
  .case .case-text {
    padding: 70px 10px 20px 10px;
  }
  .case .case-img {
    cursor: pointer;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 10px;
    margin-bottom: -60px;
  }
  .product .product-text .money {
    display: block;
  }
  .product .product-text .money p {
    font-size: 16px;
  }
  .product .product-text .money span {
    display: block;
    margin-top: 10px;
  }
  .product .product-text .money span::before {
    width: 100%;
    margin-left: 0px;
  }
  .product .product-text .money span input {
    width: 100%;
  }
  .btn_guide, .btn_guide02 {
    padding: 6px 2px !important;
    margin: 6px;
  }
  .guide_img {
    margin: 0 auto;
  }
  .guide_text {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  main .bn img {
    height: 200px;
  }
  article section .container .index-links-prev-next {
    position: relative;
  }
  article section .container .index-links-prev-next .swiper-button-next, article section .container .index-links-prev-next .swiper-button-prev {
    top: -100px;
    background: #D4BC83;
    outline: none;
    border-radius: 40px;
    width: 40px;
    height: 40px;
  }
  article section .container .index-links-prev-next .swiper-button-next:after, article section .container .index-links-prev-next .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
  }
  article section .container .index-links-prev-next .swiper-button-next {
    left: auto;
    right: 0px;
  }
  article section .container .index-links-prev-next .swiper-button-prev {
    left: auto;
    right: 50px;
  }
  .download .download-box a .download-left {
    width: calc(100% - 45px);
    padding-right: 20px;
  }
  .download .download-box a .download-left p {
    font-size: 18px;
  }
  .download .download-box a .download-right {
    width: 45px;
  }
  .download .download-box a .download-right i {
    font-size: 30px;
  }
  .bg_page::after {
    width: 300px;
    height: 192px;
  }
  .shop-btn .shop-btn-basket, .shop-btn .shop-btn-shop {
    padding: 8px 12px;
  }
  .info-box {
    padding: 20px 10px 20px 10px;
    line-height: 26px;
  }
  .btn_guide, .btn_guide02 {
    font-size: 17px;
  }
}/*# sourceMappingURL=all.css.map */