@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&family=Tenor+Sans&display=swap");
.imh_opacity3::before, .imh_opacity::before, .pageBox .pageList.number a.firstBtn::before, .pageBox .pageList.number a.firstBtn::after, .pageBox .pageList.number a.lastBtn::before, .pageBox .pageList.number a.lastBtn::after, .pageBox .pageList a.prevBtn::before, .pageBox .pageList a.nextBtn::before, .m_menu .socialBox .socialList li a::before, .m_menu .socialBox .socialList li, .m_menu .sp .en, .m_menu .sp .ch, .m_menu .menu .en, .m_menu .menu .ch, .m_menu .menu li, .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after, .demoSideArea .socialBox .socialList li a::before, .demoSideArea .socialBox .socialList li, .demoSideArea .sp .en, .demoSideArea .sp .ch, .demoSideArea .menu .en, .demoSideArea .menu .ch, .demoSideArea .menu li, .demoSideArea .picBox .menuItemPic::before, .demoSideArea .picBox .menuItemPic, header .socialBox .socialList li a::before, header .socialBox .socialList li, header .demoSideMenu span::after, header .demoSideMenu span::before, header .demoSideMenu span, .loadingArea, .moduleBox .moduleClose {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bannerTxtAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate2 {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@-webkit-keyframes arrRight {
  0%, 100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  50% {
    -webkit-transform: translate(5px, 0%);
            transform: translate(5px, 0%);
  }
}
@keyframes arrRight {
  0%, 100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  50% {
    -webkit-transform: translate(5px, 0%);
            transform: translate(5px, 0%);
  }
}
body {
  background-color: #fff;
  font-size: 14px;
  font-family: "Noto Sans TC", "Tenor Sans", sans-serif;
}
body.overflow, body.popwinOverflow, body.popwinBrandOverflow, body.loadingOverflow {
  overflow: hidden;
}

address {
  font-style: normal;
}

a {
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:hover {
  color: #da9c2d;
}

div.titan {
  display: none;
}

[class*=col-] {
  float: left;
}

.col-1 {
  width: 100%;
}
.col-2 {
  width: 50%;
}
.col-3 {
  width: 33.33%;
}
.col-4 {
  width: 25%;
}
.col-5 {
  width: 20%;
}
@media (max-width: 480px) {
  .col-1, .col-2, .col-3, .col-4, .col-5 {
    float: none;
    width: 100%;
  }
}

.btn_color1 {
  color: #fff;
  background-color: #da9c2d;
}
.btn_color1:hover {
  background-color: #da9c2d;
}
.btn_color2 {
  color: #fff;
  background-color: #a0a0a0;
}
.btn_color2:hover {
  background-color: #999;
}

/*button*/
.btn1.center {
  text-align: center;
}
.btn1.full a {
  width: 100%;
  margin: 0;
}
.btn1 a {
  min-width: 190px;
  background-color: #0e0e0e;
  border: 1px solid #0e0e0e;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.01em;
  margin: 5px;
  padding: 13px 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.btn1 a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: #da9c2d;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn1 a:hover {
  border-color: #da9c2d;
}
.btn1 a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.btn1 a.white {
  background-color: #fff;
  border: 1px solid #68a9b1;
  color: #68a9b1;
}
.btn1 a.white::after {
  background-color: #68a9b1;
}
.btn1 a.white:hover {
  color: #fff;
}

input[type=text],
input[type=password],
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  padding: 0;
  margin: 0;
}

textarea {
  resize: vertical;
}

.outerWrap {
  padding-top: 0px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .outerWrap {
    padding-top: 60px;
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
  }
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/*module*/
.moduleBox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1005;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: top, opacity, visibility;
  transition-property: top, opacity, visibility;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.moduleBox.show {
  opacity: 1;
  visibility: visible;
}
.moduleBox.show .moduleWrap {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.moduleBox .moduleWrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  background-color: #fff;
  pointer-events: auto;
  padding-top: 60px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.moduleBox .moduleContent {
  width: 100%;
  max-height: calc(90vh - 50px);
  overflow-y: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
.moduleBox .moduleTitle {
  color: #000;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  text-align: center;
}
.moduleBox .moduleClose {
  width: 50px;
  height: 50px;
  background: none;
  background-color: #da9c2d;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.moduleBox .moduleClose::before, .moduleBox .moduleClose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -0.5px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
.moduleBox .moduleClose::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.moduleBox .moduleClose::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.moduleBox .moduleClose:hover {
  background-color: #da9c2d;
}

.moduleMask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1003;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*提醒使用cookie彈窗*/
.cookieArea .moduleWrap {
  max-width: 480px;
}
.cookieArea .text {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

#closeCart,
#closePrice,
#closeInquiry {
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 10px;
}
@media (max-width: 480px) {
  #closeCart,
  #closePrice,
  #closeInquiry {
    font-size: 25px;
    top: 5px;
  }
}

/*loading*/
.loadingArea {
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #151515;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.loadingArea .loadLogo {
  width: auto;
}
.loadingArea .loadLogo img {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.loadingArea.show {
  opacity: 1;
  pointer-events: auto;
}
.loadingArea.show .loadLogo img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.loadingArea.hide {
  opacity: 0;
}

/*header*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85px;
  height: 100vh;
  padding: 30px 0px 110px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  background-color: #fff;
}
@media (max-width: 1180px) {
  header {
    width: 100%;
    height: 65px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .text {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #000;
  margin: 50px auto 0;
}
@media (max-width: 1180px) {
  header .text {
    display: none;
  }
}
header .demoSideMenu {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  pointer-events: auto;
  top: 30px;
}
@media (max-width: 1180px) {
  header .demoSideMenu {
    width: 65px;
    height: 65px;
    top: 0;
    left: 0;
  }
}
header .demoSideMenu span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: calc(50% - 0.5px);
  left: 10px;
}
@media (max-width: 1180px) {
  header .demoSideMenu span {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
header .demoSideMenu span::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: -7px;
  left: 5px;
}
header .demoSideMenu span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 7px;
  left: 5px;
}
header .demoSideMenu.close span {
  width: 22px;
}
header .demoSideMenu.close span::before, header .demoSideMenu.close span::after {
  top: 0;
}
@media (min-width: 1201px) {
  header .demoSideMenu:hover span {
    width: 22px;
  }
  header .demoSideMenu:hover span::before, header .demoSideMenu:hover span::after {
    top: 0;
  }
}
header .socialBox {
  display: block;
  margin: 0 0 10px 0;
}
@media (max-width: 1180px) {
  header .socialBox {
    display: none;
  }
}
header .socialBox .socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .socialBox .socialList li {
  padding: 12.5px 0;
}
header .socialBox .socialList li a {
  margin: 0 auto;
  display: block;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 0 8px;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  pointer-events: auto;
}
header .socialBox .socialList li a::before {
  content: "";
  width: 1px;
  height: 0%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
header .socialBox .socialList li a:hover svg {
  color: #da9c2d;
}
header .socialBox .socialList li a.fb svg {
  color: transparent;
  stroke: #000;
}
header .socialBox .socialList li a.fb:hover svg {
  color: transparent !important;
  stroke: #da9c2d !important;
}
header .socialBox .socialList svg {
  width: 24px;
  height: 22px;
}
header .lenBox {
  border-top: 1px solid #969696;
  padding: 15px 0 0 0;
}
@media (max-width: 1180px) {
  header .lenBox {
    display: none;
  }
}
header .lenBox li:hover a, header .lenBox li.current a {
  color: #da9c2d;
}
header .lenBox a {
  font-family: "Tenor Sans";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
  display: block;
}
header .m_logo {
  margin: 0 auto;
}
header .m_logo img {
  display: block;
  width: 100%;
  max-width: 105px;
}
@media (min-width: 1181px) {
  header .m_logo {
    display: none;
  }
}
header .m_bookNowBox {
  background-color: #3b3b3b;
  z-index: 61;
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
}
header .m_bookNowBox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 65px;
}
header .m_bookNowBox svg {
  width: 29px;
  height: 21px;
  color: #fff;
}
@media (min-width: 1181px) {
  header .m_bookNowBox {
    display: none;
  }
}

.demoSideArea {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  padding: 0px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  background-image: url("../images/menu_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  width: 100%;
  height: 960px;
}
.demoSideArea.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.demoSideArea .demoSideMenuClose {
  position: absolute;
  left: 30px;
  top: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  padding: 30px 0px;
  display: block;
  z-index: 5;
}
@media (max-width: 1180px) {
  .demoSideArea .demoSideMenuClose {
    left: 20px;
  }
}
.demoSideArea .demoSideMenuClose::before {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: #000;
  position: absolute;
  top: 50px;
  left: 0;
}
.demoSideArea .demoSideMenuClose .text {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin: 50px auto 0;
}
@media (max-width: 1180px) {
  .demoSideArea .demoSideMenuClose {
    top: -20px;
  }
}
.demoSideArea .demoSideBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  overflow-y: auto;
  padding: 0px 0 0 185px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1366px) {
  .demoSideArea .demoSideBox {
    padding: 0px 0 0 120px;
  }
}
@media (max-width: 1180px) {
  .demoSideArea .demoSideBox {
    padding: 0 0 0 65px;
  }
}
.demoSideArea .demoSideBox::before {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #d5d5d5;
  top: 0;
  left: 85px;
}
@media (max-width: 1180px) {
  .demoSideArea .demoSideBox::before {
    left: 65px;
  }
}
@media (max-width: 1200px) {
  .demoSideArea .demoSideBox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.demoSideArea .infoBox {
  width: calc(100% - 765px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 200px 0 0 0;
}
@media (max-width: 1536px) {
  .demoSideArea .infoBox {
    width: calc(100% - 665px);
  }
}
@media (max-width: 1440px) {
  .demoSideArea .infoBox {
    width: calc(100% - 565px);
  }
}
@media (max-width: 1280px) {
  .demoSideArea .infoBox {
    width: calc(100% - 455px);
  }
}
@media (max-width: 1180px) {
  .demoSideArea .infoBox {
    width: 100%;
    padding: 160px 0 0 60px;
  }
}
@media (max-width: 1023px) {
  .demoSideArea .infoBox {
    padding: 60px 20px 60px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 320px) {
  .demoSideArea .infoBox {
    padding: 20px 20px 60px 25px;
  }
}
.demoSideArea .infoBox .leftBox {
  width: 50%;
}
@media (max-width: 1180px) {
  .demoSideArea .infoBox .leftBox {
    width: 40%;
  }
}
@media (max-width: 1023px) {
  .demoSideArea .infoBox .leftBox {
    width: 100%;
  }
  .demoSideArea .infoBox .leftBox .lenBox {
    display: none;
  }
}
.demoSideArea .infoBox .rightBox {
  width: 50%;
  padding: 165px 0 0 0;
}
@media (max-width: 1180px) {
  .demoSideArea .infoBox .rightBox {
    width: 40%;
  }
}
@media (max-width: 1023px) {
  .demoSideArea .infoBox .rightBox {
    width: 100%;
    padding: 30px 0 0 0;
  }
}
@media (min-width: 1023px) {
  .demoSideArea .infoBox .rightBox .lenBox {
    display: none;
  }
}
.demoSideArea .picBox {
  max-width: 765px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .demoSideArea .picBox {
    max-width: 665px;
  }
}
@media (max-width: 1440px) {
  .demoSideArea .picBox {
    max-width: 565px;
  }
}
@media (max-width: 1280px) {
  .demoSideArea .picBox {
    max-width: 465px;
  }
}
@media (max-width: 1180px) {
  .demoSideArea .picBox {
    display: none;
  }
}
.demoSideArea .picBox .menuItemPic {
  width: 0;
  height: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  transition: clip-path 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  position: relative;
}
.demoSideArea .picBox .menuItemPic::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 108px;
  opacity: 0;
}
.demoSideArea .picBox .menuItemPic.open {
  clip-path: inset(0 0 0 0);
  width: 100%;
  height: 100%;
}
.demoSideArea .picBox .menuItemPic.open::before {
  -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
          animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.demoSideArea .picBox .menuImg {
  width: 100%;
}
.demoSideArea .picBox .menuImg img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.demoSideArea .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.demoSideArea .topBox .logoBox {
  width: 90px;
}
.demoSideArea .topBox .logoBox a {
  display: block;
  width: 100%;
}
.demoSideArea .topBox .logoBox img {
  display: block;
  width: 100%;
}
@media (max-width: 1180px) {
  .demoSideArea .topBox {
    padding-top: 50px;
  }
  .demoSideArea .topBox .logoBox {
    display: none;
  }
}
@media (max-width: 400px) {
  .demoSideArea .topBox {
    padding-top: 40px;
  }
}
.demoSideArea .menuBox {
  width: 100%;
}
.demoSideArea .menu {
  position: relative;
  width: 100%;
}
.demoSideArea .menu li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 1023px) {
  .demoSideArea .menu li {
    margin: 0 0 15px 0;
  }
}
.demoSideArea .menu li:hover, .demoSideArea .menu li.current {
  color: #da9c2d;
}
.demoSideArea .menu li:hover .ch,
.demoSideArea .menu li:hover .en, .demoSideArea .menu li.current .ch,
.demoSideArea .menu li.current .en {
  color: #da9c2d;
}
.demoSideArea .menu .num {
  font-size: 14px;
  font-family: "Tenor Sans";
  margin: 0 30px 0 0;
}
@media (max-width: 320px) {
  .demoSideArea .menu .num {
    margin: 0 10px 0 0;
  }
}
.demoSideArea .menu .Txt a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.demoSideArea .menu .ch {
  color: #000;
  font-size: 22px;
  margin: 0 10px 0 0;
}
@media (max-width: 640px) {
  .demoSideArea .menu .ch {
    font-size: 18px;
    margin: 0 5px 0 0;
  }
}
@media (max-width: 320px) {
  .demoSideArea .menu .ch {
    font-size: 15px;
  }
}
.demoSideArea .menu .en {
  font-family: "Tenor Sans";
  font-size: 20px;
  color: #626262;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .demoSideArea .menu .en {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  .demoSideArea .menu .en {
    font-size: 14px;
  }
}
.demoSideArea .lenBox {
  padding: 0px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.demoSideArea .lenBox .lenList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
.demoSideArea .lenBox li {
  margin: 0 10px;
}
.demoSideArea .lenBox li:hover a, .demoSideArea .lenBox li.current a {
  color: #da9c2d;
}
.demoSideArea .lenBox a {
  font-family: "Tenor Sans";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
  display: block;
}
.demoSideArea .sp {
  margin: 0 0 35px 0;
  width: 100%;
}
.demoSideArea .sp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.demoSideArea .sp a:hover .ch,
.demoSideArea .sp a:hover .en, .demoSideArea .sp a.current .ch,
.demoSideArea .sp a.current .en {
  color: #da9c2d;
}
@media (max-width: 320px) {
  .demoSideArea .sp {
    margin: 0 0 15px 0;
  }
}
.demoSideArea .sp .ch {
  color: #000;
  font-size: 22px;
  margin: 0 10px 0 0;
}
@media (max-width: 1023px) {
  .demoSideArea .sp .ch {
    font-size: 18px;
  }
}
.demoSideArea .sp .en {
  font-family: "Tenor Sans";
  font-size: 20px;
  color: #626262;
}
@media (max-width: 1023px) {
  .demoSideArea .sp .en {
    font-size: 15px;
  }
}
.demoSideArea .infoList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 15px 0;
}
@media (max-width: 1023px) {
  .demoSideArea .infoList {
    margin: 0 0px 15px 0;
  }
}
.demoSideArea .infoList li {
  width: 100%;
  margin: 0 5px 15px;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .demoSideArea .infoList li {
    margin: 0 0 15px;
  }
}
@media (max-width: 320px) {
  .demoSideArea .infoList li {
    font-size: 15px;
  }
}
.demoSideArea .infoList li.half {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .demoSideArea .infoList li.half {
    width: 100%;
  }
}
.demoSideArea .infoList li.half a,
.demoSideArea .infoList li.half span {
  font-size: 15px;
}
.demoSideArea .infoList li .tit {
  color: #da9c2d;
  margin: 0 5px 0 0;
}
.demoSideArea .infoList li a,
.demoSideArea .infoList li span {
  font-size: 15px;
  line-height: 1;
  position: relative;
}
@media (min-width: 1201px) {
  .demoSideArea .infoList li a:hover {
    color: #da9c2d;
  }
}
.demoSideArea .socialBox {
  display: block;
  margin: 0 0 10px 0;
}
.demoSideArea .socialBox .socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1023px) {
  .demoSideArea .socialBox .socialList {
    margin: 0 -10px;
  }
}
.demoSideArea .socialBox .socialList li {
  padding: 20px 0;
}
@media (max-width: 1023px) {
  .demoSideArea .socialBox .socialList li {
    padding: 0px 10px;
  }
}
.demoSideArea .socialBox .socialList li a {
  display: block;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 0 8px;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .demoSideArea .socialBox .socialList li a {
    padding: 0;
  }
}
.demoSideArea .socialBox .socialList li a::before {
  content: "";
  width: 1px;
  height: 0%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.demoSideArea .socialBox .socialList li a:hover svg {
  color: #da9c2d;
}
.demoSideArea .socialBox .socialList li a.fb svg {
  color: transparent;
  stroke: #000;
}
.demoSideArea .socialBox .socialList li a.fb:hover svg {
  color: transparent !important;
  stroke: #da9c2d !important;
}
.demoSideArea .socialBox .socialList svg {
  width: 20px;
  height: 20px;
}

.demoSideAreaMask {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.demoSideAreaMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booknowInsBox {
  background-color: #3b3b3b;
  z-index: 61;
  position: relative;
}
@media (max-width: 1180px) {
  .booknowInsBox {
    display: none;
  }
}
.booknowInsBox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 85px;
}
.booknowInsBox svg {
  width: 29px;
  height: 21px;
  color: #fff;
}
.booknowInsBox .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -0.5px;
  width: 30px;
  height: 1px;
  background-color: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.booknowInsBox .close span:before, .booknowInsBox .close span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.booknowInsBox .close span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.booknowInsBox .close span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.booknowShowBox {
  position: relative;
  width: calc(100% - 85px);
  background-color: #da9c2d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.booknowShowBox a {
  color: #fff;
  line-height: 85px;
  font-family: "Tenor Sans";
  font-size: 17px;
  font-weight: 400;
  display: block;
  padding: 0 30px;
  text-transform: uppercase;
  background-color: #da9c2d;
}

/*手機menu*/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: block;
  width: 100%;
  -webkit-box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
          box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  /*手機menu內容*/
}
@media (min-width: 1181px) {
  .m_menu {
    display: none;
  }
}
.m_menu .mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}
.m_menu .controlBox {
  position: relative;
  z-index: 99;
  height: 65px;
  background-color: #e4e4e4;
}
.m_menu .controlBox a.main {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
.m_menu .controlBox a.main span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 5px;
}
.m_menu .controlBox a.main span:before {
  top: -7px;
}
.m_menu .controlBox a.main span:after {
  bottom: -7px;
}
.m_menu .controlBox a.main.show span {
  background-color: transparent;
}
.m_menu .controlBox a.main.show span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.m_menu .controlBox a.main.show span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.m_menu .controlBox .btn_cart {
  display: inline-block;
  vertical-align: middle;
}
.m_menu .controlBox .right {
  float: right;
  line-height: 60px;
  margin-right: 10px;
}
.m_menu .controlBox .right a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 13px;
  color: #fff;
}
.m_menu .controlBox .right a em {
  display: none;
}
.m_menu .controlBox .right i {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  background: #799a1b;
}
.m_menu .controlBox .right b {
  position: absolute;
  top: 6px;
  right: -5px;
  display: block;
  border-radius: 5px;
  line-height: normal;
  padding: 3px 5px;
  font-size: 13px;
  color: #fff;
  background-color: #c40000;
}
.m_menu .controlBox .language:hover .submenu {
  display: block;
}
.m_menu .hideBox {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  display: none;
  width: 100%;
  padding: 60px 0;
  overflow-y: auto;
}
.m_menu .hideBox .sp {
  display: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  background-color: #c80303;
}
.m_menu .m_menuBox {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background-image: url("../images/menu_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.m_menu .menu {
  position: relative;
  width: 100%;
}
.m_menu .menu li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.m_menu .menu li:hover, .m_menu .menu li.current {
  color: #da9c2d;
}
.m_menu .menu li:hover .ch,
.m_menu .menu li:hover .en, .m_menu .menu li.current .ch,
.m_menu .menu li.current .en {
  color: #da9c2d;
}
.m_menu .menu .num {
  font-size: 14px;
  font-family: "Tenor Sans";
  margin: 0 30px 0 0;
}
.m_menu .menu .Txt a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.m_menu .menu .ch {
  color: #000;
  font-size: 22px;
  margin: 0 10px 0 0;
}
.m_menu .menu .en {
  font-family: "Tenor Sans";
  font-size: 20px;
  color: #626262;
  text-transform: uppercase;
}
.m_menu .lenBox {
  padding: 15px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m_menu .lenBox .lenList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
.m_menu .lenBox li {
  margin: 0 10px;
}
.m_menu .lenBox li:hover a, .m_menu .lenBox li.current a {
  color: #da9c2d;
}
.m_menu .lenBox a {
  font-family: "Tenor Sans";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
  display: block;
}
.m_menu .sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 35px 0;
}
.m_menu .sp .ch {
  color: #000;
  font-size: 25px;
  margin: 0 10px 0 0;
}
.m_menu .sp .en {
  font-family: "Tenor Sans";
  font-size: 23px;
  color: #626262;
  text-transform: uppercase;
}
.m_menu .infoList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 15px 0;
}
.m_menu .infoList li {
  width: 100%;
  margin: 0 5px 15px;
  font-family: "Poppins";
  font-size: 18px;
}
.m_menu .infoList li.half {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m_menu .infoList li .tit {
  color: #da9c2d;
  margin: 0 5px 0 0;
}
.m_menu .infoList li a,
.m_menu .infoList li span {
  line-height: 1;
  position: relative;
}
@media (min-width: 1201px) {
  .m_menu .infoList li a:hover {
    color: #da9c2d;
  }
}
.m_menu .socialBox {
  display: block;
  margin: 0 0 10px 0;
}
.m_menu .socialBox .socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m_menu .socialBox .socialList li {
  padding: 20px 0;
}
.m_menu .socialBox .socialList li a {
  display: block;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 0 8px;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  pointer-events: auto;
}
.m_menu .socialBox .socialList li a::before {
  content: "";
  width: 1px;
  height: 0%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.m_menu .socialBox .socialList li a:hover svg {
  color: #da9c2d;
}
.m_menu .socialBox .socialList li a.fb svg {
  color: transparent;
  stroke: #000;
}
.m_menu .socialBox .socialList li a.fb:hover svg {
  color: transparent !important;
  stroke: #da9c2d !important;
}
.m_menu .socialBox .socialList svg {
  width: 20px;
  height: 20px;
}

/*banner*/
.bannerArea {
  clear: both;
  position: relative;
  z-index: 10;
}
.bannerArea .Img {
  width: 100%;
}
.bannerArea .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.bannerArea .wrap {
  max-width: 100%;
  padding: 0;
}
.bannerArea .bannerItem {
  position: relative;
}
.bannerArea .bannerItem .Txt {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 20px 85px;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bannerArea .bannerItem .Txt .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerArea .bannerItem .Txt .subtitle {
  color: #fff;
  display: block;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 1;
  font-family: "Tenor Sans";
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.bannerArea .bannerItem .Txt .text {
  color: #fff;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 1;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
}
.bannerArea.ins .logo {
  width: 175px;
  height: 108px;
  margin: 0 auto;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  z-index: 5;
}
@media (max-width: 1180px) {
  .bannerArea.ins .logo {
    display: none;
  }
}
.bannerArea.ins .logo img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 640px) {
  .bannerArea.ins .bannerItem .Txt {
    display: none;
  }
}

/*文字跑馬燈*/
.marqueeArea {
  padding: 15px 0;
  background-color: rgb(6, 21, 64);
}
.marqueeArea h2 {
  float: left;
  margin-right: 20px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}
@media (max-width: 640px) {
  .marqueeArea h2 {
    display: none;
  }
}
.marqueeArea h2 em {
  margin-left: 5px;
}
.marqueeArea .marqueeBox {
  max-height: 30px;
  overflow: hidden;
}
.marqueeArea ul {
  overflow: hidden;
}
.marqueeArea li {
  line-height: 20px;
}
.marqueeArea .date {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  font-size: 13px;
  color: #dbdbdb;
}
@media (max-width: 640px) {
  .marqueeArea .date {
    display: none;
  }
}
.marqueeArea h3 {
  display: inline-block;
  vertical-align: top;
}
.marqueeArea h3 a {
  display: block;
  width: 100%;
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*footer*/
footer {
  background-color: #fafafa;
  padding: 70px 0;
}
@media (max-width: 1023px) {
  footer {
    padding: 50px 0 70px;
  }
}
footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
}
footer .left {
  width: 50%;
  padding: 0 80px 0 135px;
}
@media (max-width: 1180px) {
  footer .left {
    padding: 0 90px 0 0;
  }
}
@media (max-width: 1023px) {
  footer .left {
    width: 100%;
    padding: 0;
    margin: 0 0 40px 0;
  }
  footer .left .copyright {
    display: none;
  }
}
footer .right {
  width: 50%;
  padding: 0 80px 0 80px;
}
@media (max-width: 1180px) {
  footer .right {
    padding: 0 0 0 90px;
  }
}
@media (max-width: 1023px) {
  footer .right {
    width: 100%;
    padding: 0;
  }
}
footer .infoList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
  width: 100%;
}
@media (max-width: 1023px) {
  footer .infoList {
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 60%;
  }
}
@media (max-width: 640px) {
  footer .infoList {
    width: 100%;
  }
}
footer .infoList li {
  width: 100%;
  padding: 5px 0px;
  font-family: "Poppins";
  font-size: 15px;
}
@media (max-width: 1023px) {
  footer .infoList li {
    text-align: center;
  }
}
footer .infoList li.half {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  footer .infoList li.half {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
footer .infoList li .tit {
  color: #da9c2d;
  margin: 0 5px 0 0;
}
footer .infoList li a,
footer .infoList li span {
  line-height: 1;
  position: relative;
}
@media (min-width: 1201px) {
  footer .infoList li a:hover {
    color: #da9c2d;
  }
}
footer .footerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}
@media (max-width: 1023px) {
  footer .footerMenu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .footerMenu li {
  padding: 5px;
}
@media (max-width: 1023px) {
  footer .footerMenu li {
    text-align: center;
  }
}
footer .footerMenu li a {
  display: block;
  font-size: 14px;
}
footer .copyright {
  font-size: 14px;
  color: #888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 40px 0 0 0;
}
footer .copyright a {
  color: #888;
}
@media (max-width: 480px) {
  footer .copyright {
    width: 100%;
    text-align: left;
  }
}
footer .copyrightMb {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1023px) {
  footer .copyrightMb {
    display: none;
  }
}
footer .footerInfo {
  color: #888;
  font-size: 14px;
}
@media (max-width: 480px) {
  footer .footerInfo {
    width: 100%;
    margin-bottom: 15px;
  }
}
footer .translateIbest .design {
  /*網頁設計‧愛貝斯*/
  font-size: 14px;
  color: #888;
}
footer .translateIbest .design a {
  /*網頁設計‧愛貝斯*/
  color: #888;
  text-decoration: none;
}
footer .translateIbest .design a:hover {
  text-decoration: underline;
}
footer .goTop {
  color: #000;
  font-size: 15px;
  font-family: "Tenor Sans";
  text-align: center;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 70px 0 0 0;
}
@media (max-width: 1180px) {
  footer .goTop {
    display: none;
  }
}
footer .goTop::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  background-color: #000;
  z-index: 2;
}
footer .goTop::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 170px;
  background-color: #c9c9c9;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.privacyArea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  padding: 40px 0 25px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 70;
  -webkit-transition: all 0.6s 0.1s;
  transition: all 0.6s 0.1s;
}
.privacyArea.check {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.privacyArea .wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.privacyArea .text {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.privacyArea .text a {
  color: #da9c2d;
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
}
.privacyArea .text a:hover {
  color: #da9c2d;
}
.privacyArea .btn {
  margin-left: 25px;
  padding-top: 0;
}
.privacyArea .btn a {
  color: #fff;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 15px 35px;
}
@media (max-width: 768px) {
  .privacyArea .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .privacyArea .text {
    width: 100%;
  }
  .privacyArea .btn {
    margin-top: 25px;
    margin-left: 0;
  }
}

/*share*/
.social {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  margin-right: -4px;
}
@media (max-width: 480px) {
  .social {
    width: 100%;
  }
}
.social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 5px;
  font-size: 19px;
  color: #929292;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px rgba(34, 34, 34, 0.2);
}
.social a:hover {
  opacity: 0.8;
}

/*手機快捷選單*/
.fixedQuickLink {
  width: 100%;
  background-color: #000;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  border-bottom: 2px solid #da9c2d;
}
@media (min-width: 1181px) {
  .fixedQuickLink {
    display: none;
  }
}
.fixedQuickLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fixedQuickLink li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.fixedQuickLink li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.fixedQuickLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  font-size: 13px;
  color: #fff;
}
.fixedQuickLink i {
  margin-bottom: 5px;
}

/*後台預覽模式*/
.adminPreviewArea {
  max-width: 320px;
  border: 4px solid #ffe2e2;
  border-radius: 5px;
  background: #fdc9c9;
  color: #000;
  padding: 20px;
  position: fixed;
  top: 15px;
  right: 0;
  z-index: 99999;
}
.adminPreviewArea a {
  text-decoration: underline;
}

/*後台登入模式*/
.adminLoginArea {
  width: 100%;
  background-color: rgba(180, 0, 0, 0.85);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  text-align: center;
}
.adminLoginArea p {
  padding: 20px 15px;
}

/*booking*/
.bookingArea {
  position: relative;
  top: -50px;
  margin: -175px auto 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 6;
}
@media (max-width: 1180px) {
  .bookingArea {
    top: 0;
    margin: -155px auto 0;
  }
}
@media (max-width: 1023px) {
  .bookingArea {
    margin: 0px auto;
  }
}
.bookingArea .wrap {
  max-width: 860px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bookingArea .bookingBox {
  background-color: #fff;
  width: calc(100% - 220px);
}
@media (max-width: 1023px) {
  .bookingArea .bookingBox {
    width: 100%;
  }
}
.bookingArea .bookingList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .bookingArea .bookingList {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }
}
.bookingArea .bookingList > li {
  position: relative;
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 40px;
}
@media (max-width: 767px) {
  .bookingArea .bookingList > li {
    padding: 25px;
  }
}
@media (max-width: 320px) {
  .bookingArea .bookingList > li {
    padding: 10px 20px 10px 10px;
  }
}
.bookingArea .bookingList > li:not(:nth-last-child(1)) {
  border-right: 1px solid #d6d6d6;
}
.bookingArea .bookingList .fieldTitle {
  margin: 0 60px 10px 0;
  color: #da9c2d;
  font-size: 14px;
  display: block;
}
@media (max-width: 767px) {
  .bookingArea .bookingList .fieldTitle {
    margin: 0;
  }
}
.bookingArea .bookingList .fieldTitle.ci {
  margin: 0 auto 10px;
}
@media (max-width: 767px) {
  .bookingArea .bookingList .fieldTitle.ci {
    margin: 0;
  }
}
.bookingArea .bookingList .fieldInput {
  height: 40px;
  display: block;
  padding-right: 25px;
  position: relative;
  width: 100%;
}
.bookingArea .bookingList .fieldInput:before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #787878;
  border-bottom: 1px solid #787878;
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 640px) {
  .bookingArea .bookingList .fieldInput:before {
    right: -15px;
  }
}
.bookingArea .bookingList .fieldInput .inputStr {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bookingArea .bookingList .fieldInput input {
  cursor: pointer;
  display: block;
  opacity: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bookingArea .bookingList .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Tenor Sans";
  color: #000;
  position: relative;
}
.bookingArea .bookingList .date .dd {
  font-size: 48px;
}
@media (max-width: 640px) {
  .bookingArea .bookingList .date .dd {
    font-size: 38px;
  }
}
@media (max-width: 320px) {
  .bookingArea .bookingList .date .dd {
    font-size: 30px;
  }
}
.bookingArea .bookingList .date .yy,
.bookingArea .bookingList .date .mm {
  display: block;
  margin: 0 0 0 5px;
  font-size: 15px;
  color: #888888;
}
@media (max-width: 640px) {
  .bookingArea .bookingList .date .yy,
  .bookingArea .bookingList .date .mm {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .bookingArea .bookingList .date .yy,
  .bookingArea .bookingList .date .mm {
    font-size: 13px;
  }
}
.bookingArea .bookingList .num {
  position: relative;
  color: #000;
  font-family: "Tenor Sans";
  font-size: 48px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .bookingArea .bookingList .num {
    font-size: 38px;
  }
}
@media (max-width: 320px) {
  .bookingArea .bookingList .num {
    font-size: 30px;
  }
}
.bookingArea .customSelect {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #da9c2d;
  display: block;
  opacity: 0;
  pointer-events: none;
  padding: 5px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.bookingArea .customSelect.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-box-shadow: 0 0 8px rgba(136, 136, 136, 0.5);
          box-shadow: 0 0 8px rgba(136, 136, 136, 0.5);
}
.bookingArea .customSelect li {
  width: 100%;
  color: #000;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 15px 5px;
  text-align: center;
}
.bookingArea .btn {
  width: 220px;
}
@media (max-width: 1023px) {
  .bookingArea .btn {
    width: 100%;
  }
}
.bookingArea .btn a {
  color: #fff;
  background-color: #2e2e2e;
  display: block;
  text-align: center;
  height: 155px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .bookingArea .btn a {
    height: 100px;
  }
}
.bookingArea .btn a:hover {
  background-color: #da9c2d;
}
.bookingArea .btn a .en {
  font-family: "Tenor Sans";
  font-weight: 400;
  font-size: 17px;
  margin: 0 0 20px 0;
}
.bookingArea .btn a .ch {
  font-size: 23px;
  font-weight: 400;
}

/*********內頁**********/
.mainArea {
  padding-bottom: 30px;
  position: relative;
  z-index: 5;
}
.mainArea404 {
  width: 100%;
  height: calc(100vh - 300px);
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mainArea404 .top {
  max-width: 380px;
  color: #da9c2d;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mainArea404 {
    height: 50vh;
    min-height: 350px;
  }
  .mainArea404 .top {
    font-size: 24px;
  }
}
.mainArea .contentBox {
  clear: both;
  padding: 60px 0 120px 0;
}
.mainArea.inPage {
  background-color: #fff;
}
.mainArea.inPage .titleBox {
  padding: 60px 0 0 0;
}
@media (min-width: 1023px) {
  .mainArea.inPage .titleBox {
    display: none;
  }
}

.titleBox {
  position: relative;
  text-align: center;
  color: #000;
}
.titleBox .titleTw {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.titleBox .titleEn {
  font-weight: 300;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Tenor Sans";
}

/*bread*/
.bread {
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
  margin-bottom: 50px;
  padding: 20px 0;
}
.bread .wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bread .wrap a,
.bread .wrap span {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.bread .wrap a {
  color: #a9a9a9;
}
.bread .wrap a:hover {
  color: #da9c2d;
}
.bread .wrap span {
  color: #666;
}
.bread .wrap span + a,
.bread .wrap a + span {
  padding-left: 25px;
  position: relative;
}
.bread.arrow .wrap span + a,
.bread.arrow .wrap a + span {
  padding-left: 25px;
  position: relative;
}
.bread.arrow .wrap span + a::before,
.bread.arrow .wrap a + span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid #a9a9a9;
  border-bottom: 1px solid #a9a9a9;
  position: absolute;
  top: 50%;
  left: 7px;
  z-index: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.bread.verticalLine .wrap span + a,
.bread.verticalLine .wrap a + span {
  padding-left: 20px;
  position: relative;
}
.bread.verticalLine .wrap span + a::before,
.bread.verticalLine .wrap a + span::before {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #a9a9a9;
  position: absolute;
  top: 10%;
  left: 10px;
  z-index: 1;
}
.bread.horizontalLine .wrap span + a,
.bread.horizontalLine .wrap a + span {
  padding-left: 25px;
  position: relative;
}
.bread.horizontalLine .wrap span + a::before,
.bread.horizontalLine .wrap a + span::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #a9a9a9;
  position: absolute;
  top: 50%;
  left: 8px;
  z-index: 1;
}
@media (max-width: 768px) {
  .bread {
    display: none;
  }
}

/*文章標題*/
.articleTitle {
  color: #000;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
  padding: 10px 0;
}

/*側邊標題字*/
.sectionTitle {
  margin-bottom: 20px;
  padding: 5px;
  border-bottom: 1px solid #d6d6d6;
  font-weight: 400;
  font-size: 15px;
  color: #232323;
}
.sectionTitle strong {
  display: block;
  position: relative;
  font-weight: 400;
}
.sectionTitle a {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

table.breakpoint > tbody > tr > td.expand {
  background: url("../images/plus.png") no-repeat 5px center;
  cursor: pointer;
  padding-left: 40px;
}

@-webkit-keyframes aniSlideLeft {
  0% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes aniSlideLeft {
  0% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*類別*/
.classBox {
  position: relative;
  z-index: 4;
}
.classBox .classCurrent {
  color: #da9c2d;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 30px 10px 10px;
  position: relative;
  border-bottom: 1px solid #da9c2d;
}
.classBox .classCurrent::before {
  content: "\f107";
  color: #da9c2d;
  font-size: 15px;
  font-family: FontAwesome;
  line-height: 1;
  margin-top: -6px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
}
@media (min-width: 1024px) {
  .classBox .classCurrent {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
.classBoxRow {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .classBoxRow .classLink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .classBoxRow .classLink li {
    margin-bottom: 10px;
    margin-right: 15px;
  }
  .classBoxRow .classLink a {
    display: block;
    margin: 0 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #000;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }
  .classBoxRow .classLink a.current, .classBoxRow .classLink a:hover {
    color: #da9c2d;
    border-bottom: 1px solid #da9c2d;
  }
}
.classBoxColumn {
  margin-bottom: 30px;
}
.classBoxColumn .classLink .linkHasItems::before, .classBoxColumn .classLink .linkHasItems::after {
  content: "";
  width: 13px;
  height: 1px;
  background-color: #2f2f2f;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.classBoxColumn .classLink .linkHasItems::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.classBoxColumn .classLink .linkHasItems::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.classBoxColumn .classLink .linkHasItems.open {
  background-color: #da9c2d;
  color: #fff;
}
.classBoxColumn .classLink .linkHasItems.open::before, .classBoxColumn .classLink .linkHasItems.open::after {
  background-color: #fff;
}
.classBoxColumn .classLink .linkHasItems.open::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.classBoxColumn .classLink .linkHasItems.open + ul {
  display: block;
}
.classBoxColumn .classLink .linkHasItems.open + ul > li {
  -webkit-animation: aniSlideLeft 0.5s 0.3s ease-out both;
          animation: aniSlideLeft 0.5s 0.3s ease-out both;
}
.classBoxColumn .classLink .linkHasItems.open + ul > li a {
  background-color: #f8f8f8;
  color: #2f2f2f;
}
.classBoxColumn .classLink .linkHasItems.open + ul > li a.current, .classBoxColumn .classLink .linkHasItems.open + ul > li a:hover {
  background-color: #e5e5e5;
  color: #da9c2d;
}
@media (min-width: 1024px) {
  .classBoxColumn .classLink > li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxColumn .classLink ul {
    display: none;
  }
  .classBoxColumn .classLink ul li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxColumn .classLink a {
    color: #2f2f2f;
    display: block;
    line-height: 1.2;
    letter-spacing: 0.5px;
    padding: 18px 15px;
    position: relative;
  }
  .classBoxColumn .classLink a.current, .classBoxColumn .classLink a:hover {
    background-color: #da9c2d;
    color: #fff;
  }
  .classBoxColumn .classLink a.current::before, .classBoxColumn .classLink a.current::after, .classBoxColumn .classLink a:hover::before, .classBoxColumn .classLink a:hover::after {
    background-color: #fff;
  }
}
@media (max-width: 1023px) {
  .classBoxRow .classLink, .classBoxColumn .classLink {
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }
  .classBoxRow .classLink.open, .classBoxColumn .classLink.open {
    display: block;
  }
  .classBoxRow .classLink > li:not(:first-child), .classBoxColumn .classLink > li:not(:first-child) {
    border-top: 1px solid #ccc;
  }
  .classBoxRow .classLink > li > a.current, .classBoxColumn .classLink > li > a.current {
    color: #da9c2d;
  }
  .classBoxRow .classLink > li ul, .classBoxColumn .classLink > li ul {
    display: none;
  }
  .classBoxRow .classLink a, .classBoxColumn .classLink a {
    color: #2f2f2f;
    background-color: #fff;
    display: block;
    font-size: 14px;
    padding: 14px 15px;
    position: relative;
  }
}

.pageBox .pageList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #cecece;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pageBox .pageList a {
  border: 1px solid #c2c2c2;
  color: #666;
  display: block;
  font-size: 15px;
}
.pageBox .pageList a.prevBtn::before, .pageBox .pageList a.nextBtn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #9e9e9e;
  border-bottom: 1px solid #9e9e9e;
  display: block;
  position: absolute;
}
.pageBox .pageList a.prevBtn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pageBox .pageList a.nextBtn::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.pageBox .pageList a:hover {
  border: 1px solid #da9c2d;
  background-color: #da9c2d;
  color: #fff;
}
.pageBox .pageList a:hover.prevBtn::before, .pageBox .pageList a:hover.nextBtn::before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.pageBox .pageList.number {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pageBox .pageList.number.oval a {
  width: 50px;
}
.pageBox .pageList.number li {
  margin: 5px;
}
.pageBox .pageList.number a {
  width: 30px;
  height: 30px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  text-align: center;
}
.pageBox .pageList.number a.prevBtn::before, .pageBox .pageList.number a.nextBtn::before {
  margin: auto;
  top: 0;
  bottom: 0;
}
.pageBox .pageList.number a.prevBtn::before {
  left: 5px;
  right: 0;
}
.pageBox .pageList.number a.nextBtn::before {
  left: 0;
  right: 5px;
}
.pageBox .pageList.number a.firstBtn::before, .pageBox .pageList.number a.firstBtn::after, .pageBox .pageList.number a.lastBtn::before, .pageBox .pageList.number a.lastBtn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #9e9e9e;
  border-bottom: 1px solid #9e9e9e;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
.pageBox .pageList.number a.firstBtn::before, .pageBox .pageList.number a.firstBtn::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pageBox .pageList.number a.firstBtn::before {
  left: -2px;
  right: 0;
}
.pageBox .pageList.number a.firstBtn::after {
  left: 12px;
  right: 0;
}
.pageBox .pageList.number a.lastBtn::before, .pageBox .pageList.number a.lastBtn::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.pageBox .pageList.number a.lastBtn::before {
  left: 0;
  right: -2px;
}
.pageBox .pageList.number a.lastBtn::after {
  left: 0;
  right: 12px;
}
.pageBox .pageList.number a.current {
  border: 1px solid #da9c2d;
  background-color: #da9c2d;
  color: #fff;
}
.pageBox .pageList.number a:hover.firstBtn::before, .pageBox .pageList.number a:hover.firstBtn::after, .pageBox .pageList.number a:hover.lastBtn::before, .pageBox .pageList.number a:hover.lastBtn::after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.pageBox .pageList.prevnext {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pageBox .pageList.prevnext a {
  width: 180px;
  height: 45px;
  font-weight: 300;
  line-height: 43px;
  padding: 0 20px;
  position: relative;
}
.pageBox .pageList.prevnext a.prevBtn::before, .pageBox .pageList.prevnext a.nextBtn::before {
  top: calc(50% - 5px);
}
.pageBox .pageList.prevnext a.prevBtn {
  text-align: right;
}
.pageBox .pageList.prevnext a.prevBtn::before {
  left: 15px;
}
.pageBox .pageList.prevnext a.nextBtn {
  margin-left: auto;
  text-align: left;
}
.pageBox .pageList.prevnext a.nextBtn::before {
  right: 15px;
}
@media (max-width: 768px) {
  .pageBox .pageList.prevnext a {
    width: 125px;
    padding: 0 15px;
  }
}
@media (max-width: 640px) {
  .pageBox .pageList.prevnext li {
    width: calc(50% - 15px);
  }
  .pageBox .pageList.prevnext a {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .pageBox .pageList.prevnext li {
    width: calc(50% - 10px);
  }
}
.pageBox .pageList.prevnext.circle a {
  width: 45px;
  padding: 0;
}
.pageBox .pageList.prevnext.circle a span {
  display: none;
}
.pageBox .pageList.prevnext.circle a.prevBtn::before {
  left: calc(50% - 3px);
}
.pageBox .pageList.prevnext.circle a.nextBtn::before {
  right: calc(50% - 3px);
}
.pageBox .pageList.circle a {
  border-radius: 50%;
  overflow: hidden;
}
.pageBox .pageList.oval a {
  border-radius: 30px;
  overflow: hidden;
}

/*標籤*/
.tagBox {
  padding: 20px 0;
}
.tagBox b {
  display: inline-block;
  margin-right: 10px;
}
.tagBox ul {
  display: inline-block;
}
.tagBox li {
  display: inline-block;
  margin-bottom: 5px;
}
.tagBox a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #da9c2d;
  font-size: 13px;
  color: #da9c2d;
}
.tagBox a:hover {
  color: #fff;
  background-color: #da9c2d;
}
.tagBox a.current {
  color: #fff;
  background-color: #da9c2d;
}
.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*頁籤*/
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px -10px 40px;
}
.tab li {
  padding: 0px;
  margin: 0 10px;
}
.tab a {
  color: #888;
  display: block;
  line-height: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 25px;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 640px) {
  .tab a {
    padding: 10px;
  }
}
.tab a.current {
  color: #da9c2d;
  border-bottom: 1px solid #da9c2d;
}

/*頁籤內容*/
.tabContent {
  margin-top: -1px;
  padding: 20px 5px;
}
.tabContent .tabContentItem {
  display: none;
}

/*側邊_menu*/
.side_menu {
  margin-bottom: 50px;
}
.side_menu li {
  border-bottom: 1px solid #e1e1e1;
  position: relative;
}
.side_menu li > a {
  display: block;
  font-size: 14px;
  padding: 10px 15px;
}
.side_menu li > a.current {
  background-color: #8c8c8c;
  color: #fff;
}
.side_menu li > a b {
  color: #808080;
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px;
}
.side_menu dl {
  padding-left: 25px;
}
.side_menu dl a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}
.side_menu dl a.current {
  color: #000;
  text-decoration: underline;
}

/*側邊_相簿*/
.side_album {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: -10px;
}
.side_album li {
  float: left;
  width: 33.33%;
  padding: 0 10px 10px 0;
}
.side_album a {
  display: block;
  -webkit-box-shadow: 2px 2px 5px #c3c3c3;
          box-shadow: 2px 2px 5px #c3c3c3;
}
.side_album a img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/*側邊_線上訂房*/
.side_booking {
  margin-bottom: 30px;
}
.side_booking a {
  display: block;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px #8d2121;
          box-shadow: 0 1px 1px #8d2121;
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  background-color: #f05b8f;
}
.side_booking a i {
  display: inline-block;
  font-size: 28px;
  padding: 10px 15px;
  margin-right: 15px;
  border-right: 1px solid #d33434;
  -webkit-box-shadow: 1px 0 #f38a8a;
          box-shadow: 1px 0 #f38a8a;
}
.side_booking a:hover {
  -webkit-box-shadow: inset 0 3px 3px #8d2121;
          box-shadow: inset 0 3px 3px #8d2121;
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
  margin-bottom: 20px;
}
.side_contactInfo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #414141;
}
.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 2px solid #a5a5a5;
  border-radius: 50%;
  font-size: 20px;
  color: #a5a5a5;
  text-align: center;
}
.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

/*側邊_房型*/
.side_room {
  margin-bottom: 50px;
}
.side_room .Img img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.side_room .Txt {
  margin-top: 5px;
}
.side_room .Txt .title a {
  font-size: 16px;
  font-weight: 400;
}
.side_room .Txt .text {
  max-height: 100px;
  font-size: 13px;
  color: #858383;
  line-height: 1.8;
  overflow: hidden;
}

/*側邊_其他相關訊息*/
.side_news {
  margin: 30px 0;
}
.side_news .sideNewsList {
  margin-top: 20px;
}
.side_news .sideNewsItem {
  margin-bottom: 25px;
}
.side_news .Img {
  float: left;
  width: 60px;
  margin-right: 12px;
  overflow: hidden;
}
.side_news .Img img {
  display: block;
  height: 60px;
}
.side_news .Txt {
  overflow: hidden;
}
.side_news .Txt a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}
.side_news .Txt a:hover {
  text-decoration: underline;
}
.side_news .Txt b {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #999;
}

/*社群分享*/
.sideShare {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.sideShare .shareList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sideShare .shareList .shareTitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
.sideShare .shareList .shareItem a {
  color: #666;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  padding: 5px 6px;
  text-align: center;
}
.sideShare .shareList .shareItem a:hover {
  opacity: 0.8;
}
.sideShare .shareList .shareItem a svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-top: -3px;
  vertical-align: middle;
}

/*滑動解鎖*/
.captchaArea {
  position: relative;
  width: 200px;
  height: 50px;
  background-color: #ddd;
}
.captchaArea.unlocking .sliderBtn {
  -webkit-transition: none;
  transition: none;
}
.captchaArea .note {
  position: absolute;
  top: 17px;
  right: 30px;
  z-index: 1;
  font-size: 15px;
  text-align: center;
  font-family: "微軟正黑體";
  color: #777;
  letter-spacing: 1px;
  pointer-events: none;
}

.sliderBtn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background-color: RoyalBlue;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sliderBtn::before {
  content: "\f105";
  position: absolute;
  top: 13px;
  left: 23px;
  color: #fff;
  font-size: 24px;
  font-family: FontAwesome;
  pointer-events: none;
}

/*Hover效果1: 放大淡出*/
.imh_opacity {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_opacity::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid rgba(218, 156, 45, 0.7);
  opacity: 0;
  pointer-events: none;
}
.imh_opacity img {
  opacity: 0.6;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_opacity:hover::before {
  opacity: 1;
  z-index: 2;
}
.imh_opacity:hover img {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0);
}

.imh_opacity3 {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_opacity3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  pointer-events: none;
}
.imh_opacity3 img {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_opacity3:hover::before {
  opacity: 1;
  z-index: 2;
}
.imh_opacity3:hover img {
  opacity: 0.6;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0);
}

.imh_opacity2 {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_opacity2 img {
  opacity: 0.6;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_opacity2:hover img {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0);
}

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_detail img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_detail a:before {
  content: "MORE DETAIL";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -45px;
  margin-top: -80px;
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}
.imh_detail:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.imh_detail2 {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_detail2 img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_detail2 a:before {
  content: "MORE DETAIL";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 65%;
  z-index: 99;
  display: block;
  font-size: 15px;
  font-weight: 400;
  font-family: "Tenor Sans";
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.imh_detail2 a::after {
  content: url("../images/more_icon.png");
  width: 28px;
  height: 28px;
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.imh_detail2:hover a:before {
  opacity: 1;
}
.imh_detail2:hover a::after {
  opacity: 1;
}
.imh_detail2:hover img {
  opacity: 0.6;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/*Hover效果1: 放大淡出zoom*/
.imh_zoom {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_zoom img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.imh_zoom a:before {
  content: "\f002";
  display: block;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 99;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  font-family: FontAwesome;
  text-align: center;
  background-color: #000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.imh_zoom:hover a:before {
  top: 50%;
}
.imh_zoom:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 1180px) {
  .fb_dialog iframe {
    bottom: 52px !important;
    right: 0 !important;
  }
  .fb_iframe_widget iframe {
    bottom: 75px !important;
  }
}