@import url(public/css/reset.css);

/*****網頁頭*****/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

header .wrap {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 0;
}

@media (max-width: 1180px) {
  header .wrap {
    height: 60px;
  }
}

header .logo {
  width: 110px;
  height: 52px;
  margin-left: 60px;
}

@media (max-width: 1740px) {
  header .logo {
    margin-left: 20px;
  }
}

@media (max-width: 640px) {
  header .logo {
    width: 70px;
    height: 33px;
  }
}

header .logo a {
  display: block;
}

header .logo img {
  display: block;
  width: 100%;
}

header .rightBox {
  display: flex;
  margin-left: auto;
  height: 100%;
}

header .bookingBtn {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  text-transform: uppercase;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 14px;
  letter-spacing: 0.05em;
  background-color: #272727;
}

@media (max-width: 1740px) {
  header .bookingBtn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1366px) {
  header .bookingBtn {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 480px) {
  header .bookingBtn {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

header .headerLink {
  display: flex;
  align-items: center;
  padding-left: 35px;
  padding-right: 35px;
  border-left: 1px solid #e5e5e5;
  font-size: 16px;
  letter-spacing: 0.06em;
}

@media (max-width: 1740px) {
  header .headerLink {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 1366px) {
  header .headerLink {
    font-size: 14px;
  }
}

header .languageBox .subItem a.current {
  color: #af8442;
}

header .menuBtn {
  position: relative;
  width: 140px;
  background-color: #fe5000;
}

@media (max-width: 1366px) {
  header .menuBtn {
    width: 100px;
  }
}

@media (max-width: 1180px) {
  header .menuBtn {
    width: 60px;
  }
}

header .menuBtn span {
  position: absolute;
  left: 50%;
  margin-left: -27.5px;
  top: 50%;
  margin-top: -1px;
  width: 55px;
  height: 2px;
  text-indent: -9999px;
  background-color: #fff;
}

@media (max-width: 1180px) {
  header .menuBtn span {
    width: 30px;
    margin-left: -15px;
  }
}

header .menuBtn span::before,
header .menuBtn span::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -27.5px;
  width: 55px;
  height: 2px;
  background-color: #fff;
}

@media (max-width: 1180px) {

  header .menuBtn span::before,
  header .menuBtn span::after {
    width: 30px;
    margin-left: -15px;
  }
}

header .menuBtn span::before {
  top: -8px;
}

header .menuBtn span::after {
  top: 8px;
}

header .menuBtn.open span {
  background-color: transparent;
}

header .menuBtn.open span::before {
  top: 0;
  transform: rotate(45deg);
  transition: all 0.3s ease, transform 0.25s 0.3s ease-out;
}

header .menuBtn.open span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.3s ease, transform 0.25s 0.3s ease-out;
}

@media (max-width: 1180px) {

  header .menuBox,
  header .headerLink,
  header .storeBox {
    display: none;
  }
}

@media (min-width: 376px) {
  header .storeBox {
    width: 120px;
  }
}

@media (max-width: 375px) {
  header .storeBox {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 375px) {
  header .storeBox .topBox .title.tw {
    font-size: 12px;
  }
}

.headerDrop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  border-left: 1px solid #e5e5e5;
}

@media (max-width: 1740px) {
  .headerDrop {
    width: 120px;
  }
}

@media (max-width: 1280px) {
  .headerDrop {
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.headerDrop .topBox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.headerDrop .topBox .icon {
  width: 20px;
  margin-right: 10px;
}

.headerDrop .topBox .icon img {
  display: block;
  width: 100%;
}

.headerDrop .topBox .title.tw {
  font-size: 16px;
  letter-spacing: 0.06em;
}

@media (max-width: 1366px) {
  .headerDrop .topBox .title.tw {
    font-size: 14px;
  }
}

.headerDrop .topBox .title.en {
  font-family: "Epilogue", "Noto Sans TC", sans-serif;
  font-weight: 600;
}

@media (max-width: 1366px) {
  .headerDrop .topBox .title.en {
    font-size: 13px;
  }
}

.headerDrop .topBox::after {
  content: "";
  position: relative;
  top: -3px;
  display: inline-block;
  margin-left: 10px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(45deg);
}

.headerDrop.open .topBox::after {
  top: 2px;
  transform: rotate(225deg);
}

.headerDrop .subItem {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
}

@media (max-height: 650px) {
  .headerDrop .subItem {
    height: 70vh;
    overflow-y: auto;
  }
}

.headerDrop .subItem a {
  display: block;
  padding: 8px;
  border-top: 1px solid #eae9e9;
  font-weight: 300;
  text-align: center;
  background-color: #fff;
}

.headerDrop .subItem a:not(:hover) {
  color: #a9a9a9;
}

.headerDrop.open .subItem {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.headerDrop.top .subItem {
  top: auto;
  bottom: 100%;
  height: auto;
  transform: translateY(20px);
}

.headerDrop.top.open .subItem {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}



.menu {
  display: flex;
}

.menu li>a {
  display: block;
  padding: 25px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

@media (max-width: 1740px) {
  .menu li>a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1480px) {
  .menu li>a {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 1366px) {
  .menu li>a {
    font-size: 14px;
  }
}

.menu li>a.current {
  color: #fe5000;
}

.popMenuArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-top: 150px;
  padding-bottom: 100px;
  background-image: url("../images/bg1.jpg");
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

@media (max-width: 1180px) {
  .popMenuArea {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

.popMenuArea .wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
  height: 100%;
}

@media (max-width: 1180px) {
  .popMenuArea .wrap {
    max-width: 100%;
    height: auto;
  }
}

.popMenuArea .bottomBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
}

.popMenuArea .bottomBox .right {
  display: flex;
  flex-direction: column;
}

.popMenuArea .socialBox {
  flex-wrap: wrap;
  text-align: right;
}

@media (max-width: 640px) {
  .popMenuArea .socialBox {
    text-align: left;
    justify-content: flex-start;
    padding-top: 10px;
  }
}

@media (max-width: 640px) {
  .popMenuArea .socialBox a {
    margin-left: 0;
    margin-right: 15px;
  }
}

.popMenuArea .copyright {
  margin-top: auto;
}

.popMenuArea .popMenuList,
.popMenuArea .popMenuBottomBox .left,
.popMenuArea .popMenuBottomBox .right {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s;
}

.popMenuArea.show {
  opacity: 1;
  pointer-events: auto;
}

.popMenuArea.show .popMenuList,
.popMenuArea.show .popMenuBottomBox .left,
.popMenuArea.show .popMenuBottomBox .right {
  transform: translateY(0);
  opacity: 1;
}

.popMenuArea.show .popMenuList {
  transition-delay: 0.3s;
}

.popMenuArea.show .popMenuBottomBox .left {
  transition-delay: 0.4s;
}

.popMenuArea.show .popMenuBottomBox .right {
  transition-delay: 0.5s;
}

.popMenuBottomBox {
  margin-top: auto;
  width: 100%;
}

.popMenuBottomBox_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1180px) {
  .popMenuBottomBox_top {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .popMenuBottomBox_top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.popMenuBottomBox_top .btn4 {
  margin-bottom: 15px;
}

.popMenuBottomBox_bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 1180px) {
  .popMenuBottomBox_bottom {
    margin-bottom: 30px;
  }
}

@media (min-width: 1181px) {
  .popMenuBottomBox_bottom {
    display: none;
  }
}

.popMenuBottomBox_bottom .headerLink {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #fff;
}

.popMenuBottomBox_bottom .headerDrop {
  width: 50%;
  height: 50px;
  background-color: #fff;
}

.popMenuBottomTitle {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}

.popMenuBox {
  position: relative;
  width: 100%;
}

@media (max-width: 1180px) {
  .popMenuBox {
    margin-bottom: 30px;
  }
}

.popMenuList {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .popMenuList {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.popMenuList li {
  width: calc(100% / 6);
}

@media (max-width: 767px) {
  .popMenuList li {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .popMenuList .subMenu {
    display: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.popMenuTitle {
  position: relative;
  display: block;
  font-size: 18px;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .popMenuTitle {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
  }
}

.popMenuTitle::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 5px;
  font-family: FontAwesome;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .popMenuTitle::before {
    display: none;
  }
}

.popMenuTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 3px;
  background-color: #fe5000;
}

@media (max-width: 767px) {
  .popMenuTitle::after {
    display: none;
  }
}

.popMenuTitle.open::before {
  transform: rotate(180deg);
}

.popMenuTitle span {
  display: inline-block;
  padding: 5px 8px;
  background-color: #000;
  color: #fff;
}

.popMenuSubTitle {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #555;
}

.popMenuSubTitle:hover {
  color: #fe5000;
}

.popMenuInfo {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}

.popMenuInfo li {
  display: flex;
  padding-bottom: 10px;
}

.popMenuInfo a:hover {
  text-decoration: underline;
}

.popMenuInfo .left {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-right: 15px;
}

.popMenuInfo svg {
  opacity: 0.8;
  margin-right: 10px;
}

.popMenuInfo .iconPhone {
  width: 15px;
  height: 15px;
}

.popMenuInfo .iconFax {
  width: 18px;
  height: 14px;
}

.popMenuInfo .iconMail {
  width: 17px;
  height: 12px;
}

/*****banner*****/
.bannerArea .wrap {
  max-width: 100%;
  padding: 0;
}

.bannerArea .bannerBox {
  position: relative;
}

.bannerArea .bannerBox .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.bannerArea .bannerBox .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bannerTxt .text p {
  font-size: 20px;
  color: #c66258;
  line-height: 48px;
  padding-bottom: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fbdfda), to(#fbdfda)) no-repeat;
  background: -webkit-linear-gradient(#fbdfda, #fbdfda) no-repeat;
  background: -o-linear-gradient(#fbdfda, #fbdfda) no-repeat;
  background: linear-gradient(#fbdfda, #fbdfda) no-repeat;
  background-size: 100% 1px;
  background-position: 0 28px;
}


.bookingArea {
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 100%;
}

@media (max-width: 1620px) {
  .bookingArea {
    position: relative;
    bottom: 0;
    background-color: #fff;
  }
}

@media (min-width: 641px) {
  .bookingArea {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .bookingArea {
    display: none;
  }
}

@media (max-width: 1180px) {
  .bookingArea .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}


.bookingList {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  height: 70px;
  background-color: #fff;
}

@media (max-width: 1420px) {
  .bookingList {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1180px) {
  .bookingList {
    flex-wrap: wrap;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 720px) {
  .bookingList {
    padding-left: 0;
    padding-right: 0;
  }
}

.bookingList>li {
  position: relative;
  flex: 1;
  height: 40px;
  padding-left: 25px;
  padding-right: 25px;
}

@media (max-width: 1420px) {
  .bookingList>li {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.bookingList>li.button {
  display: flex;
  justify-content: space-between;
  flex: 2;
}

@media (max-width: 1180px) {
  .bookingList>li.button {
    flex: auto;
    width: 50%;
  }
}

@media (max-width: 480px) {
  .bookingList>li.button {
    flex-wrap: wrap;
  }
}

.bookingList>li.button .dropStoreBox,
.bookingList>li.button .btn4 {
  width: 49%;
}

@media (max-width: 480px) {

  .bookingList>li.button .dropStoreBox,
  .bookingList>li.button .btn4 {
    width: 100%;
  }
}

@media (min-width: 1181px) {
  .bookingList>li:last-child::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .bookingList>li {
    flex: auto;
    width: 50%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .bookingList>li:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .bookingList>li {
    width: 100%;
  }

  .bookingList>li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }
}

.bookingList>li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
}

@media (max-width: 720px) {
  .bookingList>li::after {
    display: none;
  }
}

.bookingList .item {
  display: flex;
  align-items: center;
  width: 100%;
}

.bookingList .title {
  width: 90px;
  position: relative;
  font-size: 14px;
  padding-left: 20px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}

.bookingList .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-color: #fe5000;
}

.bookingList .box {
  position: relative;
  width: calc(100% - 90px);
}

.bookingList .box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: FontAwesome;
  font-size: 16px;
}

.bookingList input[type=text],
.bookingList select {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 0;
}

@media (max-width: 1280px) {

  .bookingList input[type=text],
  .bookingList select {
    font-size: 14px;
    letter-spacing: 0;
  }
}

.bookingList select {
  -webkit-appearance: none;
  appearance: none;
}

.bookingList .btn4 a {
  width: 100%;
  min-width: auto;
}















.bannerArea .arrowBox {
  position: absolute;
  right: 0;
  bottom: 0;
}

.bannerArea .arrowStyle1:not(.white) {
  background-color: #fe5000;
}

#banner {
  background-color: #000;
}

#banner li .bannerTxt {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 1s 0.3s;
  -o-transition: all 1s 0.3s;
  transition: all 1s 0.3s;
}

#banner li.show .bannerTxt {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.bannerTxt {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .bannerTxt {
    position: relative;
  }
}

.bannerTxt .ins {
  padding-bottom: 4%;
  width: 100%;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .bannerTxt .ins {
    padding: 20px 20px 50px;
  }
}

@media (max-width: 640px) {
  .bannerTxt .ins {
    padding-bottom: 50px;
  }
}

.bannerTxt .title {
  margin-bottom: 15px;
}

.bannerTxt .title span {
  display: inline-block;
  font-weight: 700;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  padding: 5px;
  background-color: #000;
}

@media (max-width: 640px) {
  .bannerTxt .title span {
    font-size: 22px;
  }
}

.bannerTxt .text span {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #000;
  padding: 5px;
}

@media (max-width: 640px) {
  .bannerTxt .text span {
    font-size: 13px;
  }
}











.privacyBox {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 500;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.privacyBox .wrap {
  position: relative;
  display: flex;
  padding-top: 35px;
  padding-bottom: 35px;
}

@media (max-width: 767px) {
  .privacyBox .wrap {
    flex-wrap: wrap;
  }
}

.privacyBox .textEditor {
  width: 75%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .privacyBox .textEditor {
    width: 100%;
    padding-top: 15px;
  }
}

.privacyBox .link {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 25%;
}

@media (max-width: 767px) {
  .privacyBox .link {
    width: 100%;
    justify-content: flex-start;
    padding-top: 12px;
  }
}

.privacyBox .link a {
  color: #fff;
}

.privacyBox .link a:hover {
  color: #fe5000;
}

.privacyBox .closeBtn {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background-color: #fe5000;
  cursor: pointer;
}

.privacyBox .closeBtn::before,
.privacyBox .closeBtn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.5px;
  margin-top: -9px;
  width: 1px;
  height: 18px;
  background-color: #fff;
}

.privacyBox .closeBtn::before {
  transform: rotate(45deg);
}

.privacyBox .closeBtn::after {
  transform: rotate(-45deg);
}