@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@400;500;700&family=Outfit:wght@300;500&display=swap");
.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 .translateBox ul, .m_menu .translateBox .currentLanguage svg, .m_menu .controlBox .btn_booking, .m_menu .controlBox .m_logo, .scrollHeader .translateBox ul, .scrollHeader .translateBox .currentLanguage svg, header .translateBox ul, header .translateBox .currentLanguage svg, .loadingArea, .moduleBox .moduleClose, .btn.hayata a::after, .btn.hayata a::before, .btn.hayata a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body {
  font-size: 14px;
  font-family: "Noto Sans Tc", Outfit, "微軟正黑體", sans-serif;
}
body.overflow, body.popwinOverflow, body.loadingOverflow {
  overflow: hidden;
}
body.privacyPage .contentBox {
  max-width: 1100px;
  margin: 0 auto;
}

address {
  font-style: normal;
}

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

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: #ab8e59;
}
.btn_color1:hover {
  background-color: #ab8e59;
}
.btn_color2 {
  color: #fff;
  background-color: #A0A0A0;
}
.btn_color2:hover {
  background-color: #999;
}
.btn.hayata {
  margin: 60px 0 20px 10px;
}
.btn.hayata a {
  position: relative;
  font-family: Outfit;
  color: #ffffff;
  background-color: #043248;
  padding: 15px 30px;
  letter-spacing: 1.3px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.btn.hayata a::after, .btn.hayata a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #043248;
}
.btn.hayata a::before {
  left: -8px;
}
.btn.hayata a::after {
  right: -8px;
}
@media (min-width: 1181px) {
  .btn.hayata a:hover {
    color: #043248;
    background-color: transparent;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transition-duration: 0.7s;
            transition-duration: 0.7s;
  }
  .btn.hayata a:hover::before {
    left: 0;
  }
  .btn.hayata a:hover::after {
    right: 0;
  }
}

/*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: #043248;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn1 a:hover {
  border-color: #043248;
}
.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 {
  position: relative;
}

.wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 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: #043248;
  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: #589000;
}

.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;
}

/*洽詢車&購物車*/
.cartArea .moduleWrap {
  max-width: 480px;
}
.cartArea .text {
  color: #373737;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
}
.cartArea .text b {
  padding-left: 4px;
  padding-right: 4px;
  font-weight: 400;
  font-size: 18px;
  color: #043248;
}
.cartArea .cart {
  border-top: 2px solid #043248;
  border-bottom: 2px solid #b4b4b4;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cartArea .buyList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cartArea .buyList li:not(:first-child) {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #d5d5d5;
}
.cartArea .buyList .Img {
  width: 90px;
}
.cartArea .buyList .Img img {
  display: block;
  width: 100%;
}
.cartArea .buyList .Txt {
  position: relative;
  width: calc(100% - 90px);
  padding-left: 15px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}
.cartArea .buyList h3 {
  width: 100%;
  margin-bottom: 3px;
}
.cartArea .buyList h3 a {
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cartArea .buyList .spec {
  color: #6a6a6a;
  margin-bottom: 3px;
}
.cartArea .buyList .del {
  position: absolute;
  right: 0;
  top: 25px;
  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: 35px;
  height: 35px;
  border: none;
  background-color: #eee;
  border-radius: 50%;
  color: #5f5f5f;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cartArea .buyList .del:hover {
  background-color: #043248;
  color: #fff;
}
.cartArea .buyList .del svg {
  width: 15px;
  height: 18px;
}

/*訂單查詢*/
.orderCheckArea .moduleWrap {
  max-width: 360px;
}
.orderCheckArea h4 {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  font-family: "微軟正黑體", "新細明體", sans-serif;
  color: #222;
  text-align: left;
}
.orderCheckArea input[type=text], .orderCheckArea input[type=password] {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  padding: 5px;
  border: 2px solid #ccc;
}
.orderCheckArea a.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
}

/*會員登入*/
.loginArea .moduleWrap {
  max-width: 360px;
}
.loginArea .forgetCheck,
.loginArea .resendCheck {
  display: none;
}
.loginArea input[type=text], .loginArea input[type=password] {
  display: block;
  width: 100%;
  height: 30px;
  padding: 5px;
  margin-bottom: 7px;
  border: 1px solid #ccc;
}
.loginArea .btn {
  /*送出按鈕*/
  margin-top: 15px;
  text-align: center;
}
.loginArea .btn a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 13px;
  color: #fff;
}
.loginArea .forget {
  clear: both;
  margin-top: 20px;
  font-size: 15px;
  color: #2f2f2f;
}
.loginArea .forget span {
  font-size: 13px;
  color: #e1e1e1;
}
.loginArea .forget strong a {
  font-weight: 400;
  color: #f93;
  text-decoration: underline;
}
.loginArea .forget b a {
  font-weight: 400;
  font-size: 18px;
  color: #09f;
  text-decoration: underline;
}
.loginArea .forgetCheck {
  display: none;
}
.loginArea .forgetCheck a.btn_relog {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  color: #09f;
  text-align: center;
  text-decoration: underline;
}

/*搜尋*/
.searchArea .moduleWrap {
  max-width: 480px;
}
.searchArea .searchBox {
  margin: 30px 0;
  position: relative;
}
.searchArea .searchBox input {
  width: 100%;
  display: block;
  border: 1px solid #e1e1e1;
  padding: 15px 55px 15px 15px;
}
.searchArea .searchBox a {
  width: 50px;
  height: 50px;
  background-color: #043248;
  color: #fff;
  display: block;
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

/*提醒使用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: #fff;
  background-image: url(../images/loadingbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -50% 100%;
  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: 190px;
}
.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 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  padding-top: 15px;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  /*menu*/
}
header.close {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}
@media (max-width: 1180px) {
  header {
    display: none;
  }
}
header .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menuBox {
  margin: 0 auto;
}
header .menu > li {
  position: relative;
  display: inline-block;
}
header .menu > li a {
  position: relative;
  color: #ffffff;
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 25px 28px;
  letter-spacing: 3px;
  text-align: center;
}
header .menu > li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
header .menu > li a.current {
  color: #043248;
}
@media (min-width: 1181px) {
  header .menu > li a:hover {
    color: #043248;
  }
}
header .menu > li:nth-child(1) a::after {
  display: none;
}
header .menu .submenu {
  width: 150px;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 99;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .menu .submenu a {
  border-bottom: 1px solid #dadada;
  background-color: #fff;
  color: #666;
  padding: 10px;
}
header .menu .submenu a::after {
  display: none;
}
header .menu .submenu a.current {
  color: #fff;
  background-color: #043248;
}
@media (min-width: 1181px) {
  header .menu .submenu a:hover {
    color: #fff;
    background-color: #043248;
  }
}
header .translateBox {
  position: absolute;
  right: 0;
  border: 1px solid #ffffff;
  cursor: pointer;
}
header .translateBox .currentLanguage {
  padding: 10px 25px 10px 30px;
}
header .translateBox .currentLanguage p {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 400;
}
header .translateBox .currentLanguage svg {
  fill: #ffffff;
  width: 8px;
  height: 6px;
  margin: 0 0 2px 8px;
}
header .translateBox .currentLanguage svg.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .translateBox ul {
  position: absolute;
  width: 100%;
  bottom: -30px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}
header .translateBox ul.appear {
  bottom: -42px;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
header .translateBox ul li {
  border: 1px solid #ffffff;
}
header .translateBox ul a {
  display: block;
  font-family: Outfit, "Noto Sans Tc";
  letter-spacing: 1.2px;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 0;
}
@media (max-width: 1560px) {
  header {
    padding-top: 5px;
  }
  header .menu > li a {
    padding: 20px 25px;
    letter-spacing: 4px;
  }
  header .translateBox {
    right: 20px;
  }
}
@media (max-width: 1280px) {
  header {
    padding-top: 5px;
  }
  header .menu > li a {
    padding: 20px;
    letter-spacing: 4.5px;
  }
}

/*scrollHeader*/
.scrollHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  background: #ffffff;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  /*menu*/
}
.scrollHeader.appear {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 1180px) {
  .scrollHeader.appear {
    display: none;
  }
}
.scrollHeader.hold {
  -webkit-transform: none;
          transform: none;
}
.scrollHeader .wrap {
  position: relative;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0;
}
.scrollHeader .logo {
  width: 140px;
  margin: 0 142px 0 20px;
}
.scrollHeader .logo a {
  display: block;
  width: 100%;
  height: 45px;
  background: url("../images/colorlogo.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}
.scrollHeader .menuBox {
  margin: 0 auto;
}
.scrollHeader .menu > li {
  position: relative;
  display: inline-block;
}
.scrollHeader .menu > li a {
  position: relative;
  color: #525252;
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 23px 28px;
  letter-spacing: 3px;
}
.scrollHeader .menu > li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 12px;
  background-color: #525252;
}
.scrollHeader .menu > li a.current, .scrollHeader .menu > li a:hover {
  color: #043248;
}
.scrollHeader .menu > li:nth-child(1) a::after {
  display: none;
}
.scrollHeader .menu .submenu {
  width: 150px;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 99;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.scrollHeader .menu .submenu a {
  border-bottom: 1px solid #dadada;
  background-color: #fff;
  color: #666;
  padding: 10px;
}
.scrollHeader .menu .submenu a::after {
  display: none;
}
.scrollHeader .menu .submenu a.current, .scrollHeader .menu .submenu a:hover {
  color: #fff;
  background-color: #043248;
}
.scrollHeader .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.scrollHeader .translateBox {
  position: relative;
  border: 1px solid #dbdbdb;
  margin-right: 20px;
  cursor: pointer;
}
.scrollHeader .translateBox .currentLanguage {
  position: relative;
  padding: 10px 25px 10px 30px;
}
.scrollHeader .translateBox .currentLanguage p {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #262626;
  font-weight: 400;
}
.scrollHeader .translateBox .currentLanguage svg {
  fill: #262626;
  width: 8px;
  height: 6px;
  margin: 0 0 2px 8px;
}
.scrollHeader .translateBox .currentLanguage svg.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.scrollHeader .translateBox ul {
  position: absolute;
  width: 100%;
  bottom: -30px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}
.scrollHeader .translateBox ul.appear {
  bottom: -42px;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.scrollHeader .translateBox ul li {
  border: 1px solid #dbdbdb;
  background: #ffffff;
}
.scrollHeader .translateBox ul a {
  display: block;
  font-family: Outfit, "Noto Sans Tc";
  letter-spacing: 1.2px;
  font-size: 14px;
  color: #262626;
  padding: 10px 0;
}
.scrollHeader .btn_booking a {
  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;
  padding: 23.5px 35px;
  font-size: 16px;
  font-family: Outfit;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1.5px;
  background-color: #ab8e59;
}
.scrollHeader .btn_booking a:hover {
  background-color: #5f4f32;
}
@media (max-width: 960px) {
  .scrollHeader .btn_booking a {
    padding: 12px;
  }
}
@media (max-width: 1680px) {
  .scrollHeader {
    /*menu*/
  }
  .scrollHeader .logo {
    margin: 0 107px 0 20px;
  }
  .scrollHeader .menu > li a {
    padding: 23px 20px;
    letter-spacing: 5px;
  }
  .scrollHeader .translateBox {
    margin-right: 15px;
  }
  .scrollHeader .btn_booking a {
    padding: 23.5px 20px;
  }
}
@media (max-width: 1440px) {
  .scrollHeader {
    /*menu*/
  }
  .scrollHeader .logo {
    margin: 0 67px 0 20px;
  }
  .scrollHeader .menu > li a {
    padding: 23px 15px;
    letter-spacing: 4px;
  }
  .scrollHeader .translateBox {
    margin-right: 15px;
  }
  .scrollHeader .translateBox .currentLanguage {
    position: relative;
    padding: 10px 15px 10px 20px;
  }
  .scrollHeader .btn_booking a {
    padding: 25px 15px;
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .scrollHeader {
    /*menu*/
  }
  .scrollHeader .logo {
    margin: 0 42px 0 20px;
  }
  .scrollHeader .menu > li a {
    padding: 23px 12px;
    letter-spacing: 3px;
  }
  .scrollHeader .translateBox {
    margin-right: 15px;
  }
  .scrollHeader .translateBox .currentLanguage {
    position: relative;
    padding: 10px;
  }
  .scrollHeader .btn_booking a {
    padding: 25px 10px;
    font-size: 14px;
  }
}
@media (max-width: 1180px) {
  .scrollHeader {
    display: none;
  }
}

/*手機menu*/
.m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: block;
  width: 100%;
  /*手機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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
  height: 65px;
  background-color: #fff;
}
@media (max-width: 360px) {
  .m_menu .controlBox {
    height: 50px;
  }
}
.m_menu .controlBox.hide {
  background-color: transparent;
}
.m_menu .controlBox.hide .m_logo,
.m_menu .controlBox.hide .btn_booking {
  opacity: 0;
  pointer-events: none;
}
.m_menu .controlBox a.main {
  position: absolute;
  left: 0;
  width: 65px;
  height: 65px;
  background: #043248;
}
.m_menu .controlBox a.main span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -0.5px;
  width: 26px;
  height: 1px;
  background-color: #dfc6a6;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #dfc6a6;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.m_menu .controlBox a.main span:before {
  top: -7px;
  height: 2px;
}
.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;
  height: 1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.m_menu .controlBox a.main.show span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 360px) {
  .m_menu .controlBox a.main {
    width: 50px;
    height: 50px;
  }
}
.m_menu .controlBox .m_logo {
  margin: 0 auto;
}
.m_menu .controlBox .m_logo img {
  display: block;
  width: 140px;
}
@media (max-width: 460px) {
  .m_menu .controlBox .m_logo img {
    width: 120px;
  }
}
@media (max-width: 360px) {
  .m_menu .controlBox .m_logo img {
    width: 100px;
  }
}
.m_menu .controlBox .btn_booking {
  position: absolute;
  right: 10px;
}
@media (max-width: 360px) {
  .m_menu .controlBox .btn_booking {
    right: 5px;
  }
}
.m_menu .controlBox .btn_booking a {
  display: block;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  font-family: Outfit;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1.5px;
  background-color: #ab8e59;
}
.m_menu .controlBox .btn_booking a:hover {
  background-color: #5f4f32;
}
@media (max-width: 960px) {
  .m_menu .controlBox .btn_booking a {
    padding: 12px;
  }
}
@media (max-width: 460px) {
  .m_menu .controlBox .btn_booking a {
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
@media (max-width: 360px) {
  .m_menu .controlBox .btn_booking a {
    padding: 8px;
    letter-spacing: 0.8px;
  }
}
.m_menu .hideBox {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  display: none;
  width: 100%;
  padding: 60px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url(../images/hideBoxbg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.m_menu .hideBox_logo {
  width: 190px;
  margin: 20px auto;
}
.m_menu .hideBox_logo a {
  display: block;
  width: 100%;
  height: 60px;
  background: url("../images/logo_m.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}
.m_menu .translateBox {
  position: relative;
  border: 1px solid #dbdbdb;
  width: 150px;
  margin: 30px auto;
  cursor: pointer;
}
.m_menu .translateBox .currentLanguage {
  position: relative;
  text-align: center;
  padding: 10px 20px;
}
.m_menu .translateBox .currentLanguage p {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #262626;
  font-weight: 400;
}
.m_menu .translateBox .currentLanguage svg {
  fill: #262626;
  width: 8px;
  height: 6px;
  margin: 0 0 2px 8px;
}
.m_menu .translateBox .currentLanguage svg.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.m_menu .translateBox ul {
  position: absolute;
  width: 150px;
  left: -1px;
  bottom: -30px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}
.m_menu .translateBox ul.appear {
  bottom: -42px;
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.m_menu .translateBox ul li {
  border: 1px solid #dbdbdb;
}
.m_menu .translateBox ul a {
  display: block;
  font-family: Outfit, "Noto Sans Tc";
  letter-spacing: 1.2px;
  font-size: 14px;
  color: #262626;
  padding: 10px 0;
}
.m_menu .mfun {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m_menu .mfun a {
  display: inline-block;
  margin: 0 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  color: #043248;
  text-align: center;
  border: 2px solid #043248;
}
@media (min-width: 641px) {
  .m_menu .mfun a:hover {
    background: #043248;
    color: #ffffff;
  }
}
.m_menu .mfun svg {
  width: 17px;
  height: 17px;
  margin-top: 8px;
}
.m_menu .mfun i {
  font-size: 17px;
}
.m_menu .m_nav a {
  position: relative;
  display: block;
  padding: 20px 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #043248;
  text-align: center;
}
.m_menu .m_nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  display: block;
  width: 150px;
  height: 15px;
  opacity: 0;
  background: #e0ceb3;
}
.m_menu .m_nav a:hover::before, .m_menu .m_nav a.current::before {
  opacity: 1;
}
.m_menu .m_nav a i {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  margin-top: -7px;
}
.m_menu .m_nav .dropDown {
  position: relative;
}
.m_menu .m_nav .dropDown span > a::after {
  content: "+";
  position: absolute;
  right: 4.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: FontAwesome;
}
.m_menu .m_nav .dropDown .menuMask {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% + 20px);
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  pointer-events: all;
  cursor: pointer;
}
.m_menu .m_nav .dropDown.current span > a::after, .m_menu .m_nav .dropDown:hover span > a::after {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background-color: #043248;
  right: 5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m_menu .m_nav .dropDown.current span > a::before, .m_menu .m_nav .dropDown:hover span > a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  display: block;
  width: 150px;
  height: 15px;
  background: #e0ceb3;
}
.m_menu .m_nav .submenu {
  display: none;
}
.m_menu .m_nav .submenu a {
  position: relative;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.1);
}
.m_menu .m_nav .submenu a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  display: block;
  width: 150px;
  height: 15px;
  background: #e0ceb3;
  opacity: 0;
}
.m_menu .m_nav .submenu a:active::before {
  opacity: 1;
}
.m_menu .btn {
  margin: 40px 0 20px;
  text-align: center;
}

/*banner*/
.bannerArea {
  clear: both;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bannerArea .wrap {
  max-width: 100%;
  padding: 0;
}
@media (max-width: 640px) {
  .bannerArea .bannerBox .Img {
    height: 200px;
  }
}
.bannerArea .bannerBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerArea .bannerItem {
  position: relative;
}
.bannerArea .bannerItem .Txt {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding-top: 150px;
}
@media (max-width: 960px) {
  .bannerArea .bannerItem .Txt {
    padding-top: 100px;
  }
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .Txt {
    padding-top: 110px;
  }
}
@media (max-width: 360px) {
  .bannerArea .bannerItem .Txt {
    padding-top: 100px;
  }
}
.bannerArea .bannerItem .titleTw {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 8.5px;
  color: #ffffff;
}
@media (max-width: 640px) {
  .bannerArea .bannerItem .titleTw {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .bannerArea .bannerItem .titleTw {
    font-size: 30px;
  }
}
.bannerArea .bannerItem .logo {
  width: 100px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .bannerArea .bannerItem .logo {
    display: none;
  }
}
.bannerArea .bannerLink {
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*文字跑馬燈*/
.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 {
  position: relative;
  z-index: 5;
  padding: 140px 0 60px;
  background-image: url(../images/footerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  background-position: 80% 10%;
  overflow: hidden;
}
@media (max-width: 1366px) {
  footer {
    background-position: 80% 20%;
    padding-top: 40px;
  }
}
@media (max-width: 640px) {
  footer {
    padding-top: 40px;
    margin-top: -250px;
  }
}
footer .wrap {
  max-width: 1670px;
  padding: 150px 60px 0;
}
@media (max-width: 1366px) {
  footer .wrap {
    max-width: 1200px;
    padding-top: 100px;
  }
}
@media (max-width: 1080px) {
  footer .wrap {
    padding-top: 200px;
  }
}
@media (max-width: 640px) {
  footer .wrap {
    padding: 200px 20px 0;
  }
}
@media (max-width: 460px) {
  footer .wrap {
    padding: 200px 10px 0;
  }
}
footer .footerContentBox {
  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;
  pointer-events: auto;
}
@media (max-width: 1080px) {
  footer .footerContentBox {
    -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;
  }
}
footer .left {
  margin-top: 20px;
}
footer .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1080px) {
  footer .right {
    padding-left: 0;
  }
}
footer .bottom {
  width: 100%;
}
footer .downLogo {
  width: 100%;
  max-width: 115px;
}
footer .downLogo img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
footer .footerTitle {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 5.8px;
  color: #ffffff;
}
@media (max-width: 1080px) {
  footer .footerTitle {
    text-align: center;
    margin: 30px 0;
  }
}
footer .infoList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px -10px 0;
  height: 85px;
  width: calc(100% - 480px);
}
@media (max-width: 1366px) {
  footer .infoList {
    width: 100%;
  }
}
@media (max-width: 800px) {
  footer .infoList {
    margin: 0;
    height: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
footer .infoList li {
  position: relative;
  padding: 5px 10px;
}
footer .infoList li p, footer .infoList li a, footer .infoList li span {
  position: relative;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 5.8px;
  color: #ffffff;
}
@media (max-width: 640px) {
  footer .infoList li p, footer .infoList li a, footer .infoList li span {
    letter-spacing: 4px;
  }
}
@media (max-width: 460px) {
  footer .infoList li p, footer .infoList li a, footer .infoList li span {
    font-size: 12px;
  }
}
@media (min-width: 1201px) {
  footer .infoList li a:hover {
    color: #09f;
  }
}
@media (max-width: 800px) {
  footer .infoList li {
    padding: 10px;
  }
  footer .infoList li.tel {
    width: 50%;
    text-align: right;
  }
  footer .infoList li.tel::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: rotate(35deg) translateY(-50%);
            transform: rotate(35deg) translateY(-50%);
    display: block;
    width: 1px;
    height: 15px;
    background: #ffffff;
  }
  footer .infoList li.fax {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 460px) {
  footer .infoList li {
    padding: 15px 10px;
    text-align: center;
  }
  footer .infoList li p, footer .infoList li a, footer .infoList li span {
    line-height: 1.5;
    letter-spacing: 1.5px;
  }
  footer .infoList li.tel {
    width: 50%;
    text-align: center;
  }
}
footer .connectList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 480px;
  margin-left: auto;
}
@media (max-width: 1366px) {
  footer .connectList {
    width: 100%;
    margin: 15px 0 0 -20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1080px) {
  footer .connectList {
    margin: 15px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  footer .connectList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 20px auto 0;
  }
}
footer .connectList .connectleft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  footer .connectList .connectleft {
    margin-top: 10px;
  }
}
footer .connectList .connectleft a {
  padding: 20px;
  display: block;
}
footer .connectList .connectleft a:hover {
  fill: #09f;
  color: #09f;
}
footer .connectList .connectleft svg {
  width: 17px;
  height: 17px;
}
footer .connectList .connectleft i {
  font-size: 17px;
}
footer .connectList .connectBtn {
  max-width: 200px;
  margin-left: 100px;
  text-align: center;
}
@media (max-width: 1440px) {
  footer .connectList .connectBtn {
    margin-left: 40px;
  }
}
@media (max-width: 480px) {
  footer .connectList .connectBtn {
    margin-left: 0;
    width: 100%;
  }
}
footer .connectList .connectBtn a {
  display: block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1.8px;
  padding: 20px 40px;
  border: 1px solid #ffffff;
}
footer .connectList .connectBtn a:hover {
  color: #09f;
  border: 1px solid #09f;
}
@media (max-width: 460px) {
  footer .connectList .connectBtn a {
    font-size: 12px;
    padding: 18px 20px;
  }
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 800px) {
  footer .copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .copyright .footerInfo,
footer .copyright .design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #9a9a9a;
  font-size: 14px;
  font-family: Outfit;
  font-weight: 300;
  letter-spacing: 1.2px;
  margin: 0 5px;
}
footer .copyright .footerInfo a,
footer .copyright .design a {
  color: #9a9a9a;
  font-size: 14px;
}
footer .copyright .footerInfo a:hover,
footer .copyright .design a:hover {
  color: #ffffff;
}
@media (max-width: 1440px) {
  footer .copyright {
    margin: 40px 0 0;
  }
  footer .copyright .footerInfo {
    margin-left: 0;
  }
}
@media (max-width: 460px) {
  footer .copyright {
    margin: 0;
  }
}

/*sideBox*/
.sideBox {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 180px;
  background: #ffffff;
  -webkit-box-shadow: -1px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: -1px 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  -webkit-transition: all 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: all 0.8s cubic-bezier(0, 0.55, 0.45, 1);
}
@media (max-width: 1180px) {
  .sideBox {
    display: none;
  }
}
.sideBox.appear {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sideBox li:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 25px;
  height: 1px;
  background-color: #dcdcdc;
}
.sideBox li:first-child a:hover {
  background: #ab8e59;
}
.sideBox li a {
  position: relative;
  display: block;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 6px;
  padding: 20px 18px 10px 18px;
}
.sideBox li a:hover {
  background: #043248;
  color: #fff;
}

.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: 50;
  -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: #043248;
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
}
.privacyArea .text a:hover {
  color: #043248;
}
.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;
}
.social a:hover {
  opacity: 0.8;
}

.translateIbest {
  display: inline-block;
  vertical-align: middle;
}
.translateIbest .design {
  /*網頁設計‧愛貝斯*/
  display: block;
  line-height: 22px;
  font-size: 9pt;
  color: #000;
}
.translateIbest .design a {
  /*網頁設計‧愛貝斯*/
  color: #000;
  text-decoration: none;
}
.translateIbest .design a:hover {
  text-decoration: underline;
}

/*手機快捷選單*/
.fixedQuickLink {
  width: 100%;
  background-color: #000;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
}
@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: 55px;
  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 {
  margin-top: -165px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1880px) {
  .bookingArea {
    margin-top: 0px;
  }
}
@media (max-width: 640px) {
  .bookingArea {
    margin-top: 10px;
  }
}
.bookingArea::after {
  content: "";
  position: absolute;
  bottom: -85px;
  z-index: 1;
  display: block;
  background-image: url(../images/bannerBottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  pointer-events: none;
}
@media (max-width: 1880px) {
  .bookingArea::after {
    bottom: 0px;
    height: 420px;
  }
}
@media (max-width: 1770px) {
  .bookingArea::after {
    bottom: -40px;
    height: 420px;
  }
}
@media (max-width: 1680px) {
  .bookingArea::after {
    bottom: -100px;
    height: 420px;
  }
}
@media (max-width: 1280px) {
  .bookingArea::after {
    bottom: -110px;
    height: 420px;
  }
}
@media (max-width: 960px) {
  .bookingArea::after {
    bottom: -80px;
    height: 300px;
  }
}
@media (max-width: 800px) {
  .bookingArea::after {
    bottom: -80px;
    height: 220px;
  }
}
@media (max-width: 640px) {
  .bookingArea::after {
    bottom: 0px;
    height: 150px;
    background-position: 40% 50%;
  }
}
.bookingArea .wrap {
  position: relative;
  z-index: 5;
  max-width: 800px;
  /*1005*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background-color: #fff;
}
@media (max-width: 960px) {
  .bookingArea .wrap {
    display: none;
  }
}
.bookingArea .title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: #d4e4eb;
  background-color: #043248;
  padding: 50px 40px;
}
.bookingArea .title svg {
  fill: none;
  width: 40px;
  height: 30px;
  margin-bottom: 5px;
}
@media (max-width: 960px) {
  .bookingArea .title {
    display: none;
  }
}
.bookingArea .bookingList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  padding-left: 185px;
  padding-right: 40px;
}
.bookingArea .bookingList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}
.bookingArea .bookingList li:not(:last-child) {
  border-right: 1px solid #dcdcdc;
}
@media (max-width: 960px) {
  .bookingArea .bookingList li {
    margin-bottom: 15px;
  }
}
.bookingArea .bookingList li:not(:first-child) {
  margin-left: 10px;
}
@media (max-width: 960px) {
  .bookingArea .bookingList li:not(:first-child) {
    margin-left: 0;
  }
}
.bookingArea .bookingList li:nth-child(3) {
  border-right: transparent;
}
.bookingArea .bookingList li svg {
  width: 23px;
  height: 23px;
  fill: #d9d9d9;
}
.bookingArea .btn {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.bookingArea .btn a {
  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;
  height: 100%;
  font-size: 16px;
  font-family: Outfit;
  font-weight: 300;
  color: #fff;
  letter-spacing: 1.5px;
  background-color: #ab8e59;
}
.bookingArea .btn a:hover {
  background-color: #5f4f32;
}
@media (max-width: 960px) {
  .bookingArea .btn a {
    padding: 12px;
  }
}
.bookingArea input,
.bookingArea select {
  height: 45px;
  width: 150px;
  padding: 5px 10px;
  font-size: 16px;
  letter-spacing: 2.2px;
  font-family: Outfit;
  color: #545454;
  font-weight: 300;
  cursor: pointer;
}
.bookingArea select {
  border: transparent;
}

/*********內頁**********/
.mainArea {
  margin: -285px 0 -280px;
  z-index: 2;
  position: relative;
  padding: 350px 0 300px;
  background-image: url(../images/aboutbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 40% 275px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .mainArea {
    margin-top: -290px;
  }
}
@media (max-width: 640px) {
  .mainArea {
    margin-top: 0;
    padding-top: 30px;
    background-position: 40% 0;
  }
}
.mainArea::after {
  content: "";
  position: absolute;
  top: 0px;
  z-index: 1;
  display: block;
  background-image: url(../images/bannerBottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  pointer-events: none;
}
@media (max-width: 1880px) {
  .mainArea::after {
    height: 420px;
  }
}
@media (max-width: 1680px) {
  .mainArea::after {
    height: 300px;
    top: 50px;
  }
}
@media (max-width: 1560px) {
  .mainArea::after {
    height: 400px;
    top: 60px;
  }
}
@media (max-width: 1280px) {
  .mainArea::after {
    height: 420px;
  }
}
@media (max-width: 1080px) {
  .mainArea::after {
    height: 420px;
    background-position: 20% 10px;
  }
}
@media (max-width: 960px) {
  .mainArea::after {
    height: 250px;
    top: 140px;
  }
}
@media (max-width: 640px) {
  .mainArea::after {
    display: none;
  }
}
.mainArea .wrap {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.mainArea404 {
  margin: 0 0 -150px;
  padding-top: 320px;
  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;
  background-position: 50% 30%;
}
.mainArea404 .top {
  max-width: 380px;
  color: #043248;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto;
}
.mainArea404 .top a {
  color: #09f;
}
@media (min-width: 1181px) {
  .mainArea404 .top a:hover {
    color: #043248;
    background: rgb(224, 206, 179);
  }
}
.mainArea404::after {
  display: none;
}
@media (max-width: 768px) {
  .mainArea404 {
    height: 50vh;
    min-height: 350px;
  }
  .mainArea404 .top {
    font-size: 24px;
  }
}
.mainArea .contentBox {
  clear: both;
}

.titleBox {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.titleBox .titleTw {
  position: relative;
  z-index: 5;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 8.5px;
  color: #043248;
}
.titleBox .titleEn {
  font-weight: 300;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 414px) {
  .titleBox .titleTw {
    font-size: 28px;
  }
  .titleBox .titleEn {
    font-size: 38px;
  }
}

/*bread*/
.bread {
  position: absolute;
  top: 320px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 50px;
  padding: 20px 0;
}
@media (max-width: 1280px) {
  .bread {
    top: 200px;
  }
}
@media (max-width: 960px) {
  .bread {
    top: 150px;
  }
}
.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: #ffffff;
}
.bread .wrap a:hover {
  color: #043248;
}
.bread .wrap span {
  color: #ffffff;
}
.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 #ffffff;
  border-bottom: 1px solid #ffffff;
  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: #ffffff;
  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: #ffffff;
  position: absolute;
  top: 50%;
  left: 8px;
  z-index: 1;
}
@media (max-width: 768px) {
  .bread {
    display: none;
  }
}

/*文章標題*/
.articleTitle {
  color: #232323;
  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 {
  background-color: #043248;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 30px 10px 10px;
  position: relative;
}
.classBox .classCurrent::before {
  content: "\f107";
  color: #fff;
  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 a {
    display: block;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 700;
    color: #043248;
    letter-spacing: 4px;
    text-align: center;
  }
  .classBoxRow .classLink a::after {
    content: "";
    display: block;
    position: relative;
    z-index: -1;
    height: 15px;
    margin: -10px auto 0;
    background: #e0ceb3;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .classBoxRow .classLink a.current:after, .classBoxRow .classLink a:hover:after {
    opacity: 1;
  }
}
.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: #043248;
  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: #043248;
}
@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: #043248;
    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: #043248;
  }
  .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 #043248;
  background-color: #043248;
  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 #043248;
  background-color: #043248;
  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 #043248;
  font-size: 13px;
  color: #043248;
}
.tagBox a:hover {
  color: #fff;
  background-color: #043248;
}
.tagBox a.current {
  color: #fff;
  background-color: #043248;
}
.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*頁籤*/
.tab {
  border-top: 1px solid #d6d6d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.tab li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tab a {
  color: #333;
  display: block;
  line-height: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 10px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.tab a.current {
  background-color: #043248;
  color: #fff;
}

/*頁籤內容*/
.tabContent {
  margin-top: -1px;
  padding: 20px 5px;
  border-top: 1px solid #d6d6d6;
}
.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;
}
.imh_opacity img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_opacity:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.imh_detail img {
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}
.imh_detail:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

/*Hover效果1: 放大淡出zoom*/
.imh_zoom {
  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:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}