:root {
  --navBgColor: rgba(255, 255, 255, 0.653);
  --opacitynavBgColor: rgba(255, 255, 255, 0);
  --navTextColor: #434343;
  --navhoverColor: #dd9b49;
  --highLightColor: rgba(38, 43, 157, 1);
  --hoverColor: rgba(255, 255, 255, 1);
  --darkColor: #000;
  --titleColor: #565656;
  --mainFontColor: rgba(30, 30, 30, 1);
  --opacityFontColor: rgba(30, 30, 30, 0.5);
  --mainBorder: 1.5px solid var(--opacityFontColor);
}
article {
  padding: 80px 0px;
}
article>h3::before {
  display: none;
}
article>h3::after {
  display: none;
}
#about article {
  margin: 0px;
  padding: 0px;
  width: 100%;
}
#nav-icon span {
  background: var(--darkColor);
}
h3 {
  font-weight: 700;
  letter-spacing: 1.6px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Serif TC',
    serif;
}
.navbar-nav>li>a {
  font-family: 'Noto Serif TC',
    serif;
  font-weight: 700;
}
.trafficText ul li b,
.aboutText h6 {
  color: var(--navhoverColor);
}
.aboutText h6 {
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 28px;
  font-size: 20px;
}
p {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 28px;
  font-weight: 300;
  text-align: justify;
}
#about h5 {
  color: white;
}
#about p {
  color: white;
  opacity: 0.9;
}
.navbar {
  background-color: transparent;
  /* box-shadow: 0px 2px 5px rgba(0,0,0,0.2); */
}
#nav-icon span {
  background: var(--darkColor);
}
/* #home,#myCarousel{
  margin-top: 88px;
} */
body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 2.3cm;
  width: 100%;
  height: 100%;
  z-index: -10;
  /* background: url(../img/bg.jpg) no-repeat center center; */

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-bottom: 20%;
  background-color: #434343;
}
.section:nth-child(odd) {
  background-color: #d6d6d6
}
.mainMask {
  background-color: rgba(255, 255, 255, 0.789);
}
.banner-full {
  background-image: url(../img/banner1.jpg)
}
#sns ul li {
  filter: brightness(0);
}
/* .aboutText {
  width: 44%;
  margin: auto;
} */
.aboutItem {
  width: 48%;
  margin: 0 auto 0px;
}
.aboutText .padding {
  padding-left: 38px;
}
#QA {
  background-color: white;
}
.QAArea {
  display: flex;
  flex-wrap: wrap;
}
.QAArea .menuPic {
  width: 50%;
}
.roomTypeArea {
  margin-top: 40px;
}
.newsArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mnewsArea .item3 {
  width: 33.33%;
}
#menu {
  background-color: white;
}
#menu .menuArea {
  display: flex;
  flex-wrap: wrap;
}
#menu .menuPic {
  width: 50%;
}
#picture2 .item4 {
  width: 33.33%;
}
.picText {
  width: 94%;
}
#copyright {
  background-color: #000;
  color: #FFF;
}
/* swiper */
.swiper-container {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 80px 150px;
}
.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.swiper-slide .title {
  font-size: 41px;
  font-weight: 300;
  color: white;
  margin-bottom: 50px;
}
.swiper-slide .subtitle {
  font-size: 21px;
}
.swiper-slide .text {
  font-size: 14px;
  max-width: 800px;
  line-height: 1.3;
}

#traffic1 {
  display: grid;
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  place-items: center;
  background: linear-gradient(315deg, #ffffff, #909090);
}

#traffic1 .trafficArea{
  display: flex;
  justify-content: center;
}


.wrapper {
  display: inline-flex;
  list-style: none;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: auto 50px;
  width: 120px;
  height: 120px;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}



.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



.wrapper .icon:hover a,
.wrapper .icon:hover .tooltip {
  color: #ffffff;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #00479d;
  color: #ffffff;
}


.wrapper .facebook a,
.wrapper .facebook .tooltip {
  color: #00479d;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}


.wrapper .line:hover,
.wrapper .line:hover .tooltip,
.wrapper .line:hover .tooltip::before {
  background: #3ace01;
  color: #ffffff;
}


.wrapper .line a,
.wrapper .line .tooltip {
  color: #3ace01;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}


.wrapper .globe:hover,
.wrapper .globe:hover .tooltip,
.wrapper .globe:hover .tooltip::before {
  background: #104968;
  color: #ffffff;
}


.wrapper .globe a,
.wrapper .globe .tooltip {
  color: #065c8a;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}


.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #a639a0;
  color: #ffffff;
}


.wrapper .instagram a,
.wrapper .instagram .tooltip {
  color: #a639a0;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}





.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1DA1F2;
  color: #ffffff;
}



.wrapper .globe:hover,
.wrapper .globe:hover .tooltip,
.wrapper .globe:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: #CD201F;
  color: #ffffff;
}
/* swiper */

/* 響應式選單*/
@media (max-width:1200px) {
  #logo {
    width: 100%;
  }
  .navbar>.container-fluid .navbar-brand {
    margin-left: 0;
  }
  .navbar-brand>img {
    margin: auto;
  }
  .shop1688 {
    left: 15px;
  }
  .navbar-nav {
    text-align: center;
  }
  .navbar .container-fluid {
    background-color: var(--navBgColor);
  }
  .navbar-header {
    float: none;
  }
  .navbar-right {
    margin-right: 0;
  }
  .navbar-left,
  .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none !important;
    padding-bottom: 20px;
  }
  .navbar-nav {
    float: none !important;
    margin-top: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  }
  .navbar-nav>li {
    float: none;
  }
  .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .collapse.in {
    display: block !important;
  }
}
/*響應式調整*/
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {}
@media screen and (max-width:991px) {}
@media screen and (max-width:770px) {
  .con{
    font-size: 27px;
  }
  .navbar-nav {
    margin: 7.5px 0px;
  }
  .navbar .container-fluid {
    background-color: rgba(255, 255, 255, 0.85);
  }
  #home,
  #myCarousel {
    margin-top: 88px;
  }
  .mnewsArea .item3 {
    width: 80%;
  }
  /* swiper */
  .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 50px;
  }
  .swiper-slide .title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .swiper-slide .subtitle {
    font-size: 18px;
  }
  /* swiper */
  .QAArea .menuPic {
    width: 100%;
  }
  .nav-justified>li {
    width: 100%;
  }
  .nav-pills>li+li {
    margin-bottom: 20px;
  }
  #menu .menuPic {
    width: 100%;
  }
  #picture .item4 {
    width: 80%;
  }
  #picture2 .item4 {
    width: 80%;
  }
  .picText {
    width: 100%;
  }

  .wrapper {
    display: inline-flex;
    list-style: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.wrapper .icon {
  margin-bottom: 50px;
}
}
@media screen and (max-width:576px) {
  .aboutText {
    width: 90%;
    margin: auto;
  }
  .aboutText .padding {
    padding-left: 0px;
  }
  .aboutItem {
    width: 90%;
    margin: 20px auto;
  }
}
@media screen and (max-width:414px) {}
@media screen and (max-width:375px) {}