@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+TC:wght@100..900&display=swap");
* {
  list-style: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  letter-spacing: 4px;
  line-height: 1.3;
  font-weight: 500;
}

h1 {
  font-size: calc(2rem + 0.5vw);
}

h2 {
  font-size: calc(1.7rem + 0.5vw);
}

h3 {
  font-size: calc(1.5rem + 0.5vw);
}

h4 {
  font-size: calc(1.2rem + 0.2vw);
}

h5 {
  font-size: calc(1.1rem + 0.2vw);
  font-weight: 400;
}

h6 {
  font-size: calc(1rem + 0.2vw);
  font-weight: 400;
}

p, span, li, small {
  font-size: calc(1rem + 0.1vw);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 2px;
  text-align: justify;
  margin: 0;
}

small {
  font-size: calc(1rem + 0.3vw);
}

.link-item {
  text-transform: uppercase;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler {
  border: none;
}

section {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
}

h2 {
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: #755946;
  padding: 70px 50px;
  letter-spacing: 0.4rem;
}
h2::before {
  content: "";
  width: 220px;
  height: 220px;
  background: url(../images/decorate/title_bg.png) no-repeat center/contain;
  opacity: 0.5;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
h2::after {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../images/decorate/title_bg-1.png) no-repeat center/contain;
  filter: hue-rotate(0) contrast(0.2);
  opacity: 1;
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 992px) {
  h2 {
    font-size: 28px;
  }
}
h2 .h2_dec {
  color: #CCAC85;
  font-size: calc(1rem + 0.3vw);
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  text-transform: capitalize;
  opacity: 0.7;
  margin-top: -4px;
}

.list-style {
  list-style: none;
  margin-bottom: 40px;
}
.list-style li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
  color: #ccc;
  transition: 0.4s;
}
.list-style li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #eee;
  border-radius: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.list-style li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 3px;
  height: 3px;
  background: #aaa;
  border-radius: 50%;
  transition: 1s;
}
.list-style li:hover {
  filter: brightness(2);
}

.sidebar {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 1000;
}
.sidebar * {
  transform: scaleX(1);
  letter-spacing: 0.15rem;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  margin-bottom: 16px;
}
.sidebar ul li a {
  width: 50px;
  height: 50px;
  background: #B97F4F;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.75;
  text-decoration: none;
  border-radius: 50%;
}
.sidebar ul li a:hover {
  opacity: 1;
}
.sidebar ul li a span {
  display: none;
  margin-left: 5px;
  font-size: 14px;
}
.sidebar ul li:last-child a {
  border: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax-object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat Alternates", "Noto Sans TC", sans-serif;
  color: #6a6765;
  background-color: #fff;
  background-blend-mode: multiply;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(../images/decorate/bg.jpg) repeat center/contain;
  filter: grayscale(0.5);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: 0.4s;
  z-index: 99;
}
@media (max-width: 992px) {
  header .navbar {
    background: #fff5e1;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.212);
  }
}
header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  transition: 0.5s;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand {
    margin-top: unset;
  }
}
header .navbar .navbar-brand h4 {
  color: #6a6765;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand h4 {
    color: white;
  }
}
header .navbar .navbar-brand small {
  letter-spacing: 0.3rem;
  color: #fff;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand small {
    color: #ffc248;
  }
}
header .navbar .navbar-brand img {
  width: 60px;
  box-shadow: -2px -2px 2px rgba(117, 89, 70, 0.3);
  transition: 0.3s;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand img {
    filter: unset;
    width: 40px;
    margin-right: unset;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  position: relative;
  color: white;
}
@media (max-width: 992px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #755946;
    text-align: center;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  background: #fff;
  width: 100%;
  height: 0px;
  transition: 0.5s;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  height: 8px;
}
header .scrolled {
  background: #fff5e1;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.212);
}
header .scrolled .navbar-brand {
  margin-top: unset;
}
header .scrolled .navbar-brand h4 {
  color: white;
}
header .scrolled .navbar-brand small {
  color: #ffc248;
}
header .scrolled .navbar-brand img {
  width: 50px;
  box-shadow: -2px -2px 2px rgba(117, 89, 70, 0.3);
}
@media (max-width: 992px) {
  header .scrolled .navbar-brand img {
    width: 30px;
  }
}
header .scrolled .nav-link {
  color: #755946 !important;
}
header .scrolled .nav-link::before {
  background: white !important;
  bottom: -15px !important;
}
header .scrolled .nav-link:hover::before {
  height: 8px;
}

.hero {
  color: #fff;
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow-y: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/banner/img-1.jpg) no-repeat center/cover;
  filter: blur(5px);
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero .bannerImgBox {
  height: 100%;
  position: relative;
}
@media (max-width: 991.98px) {
  .hero .bannerImgBox {
    height: 75%;
  }
}
.hero .bannerImgBox .bannerImg {
  width: 95%;
  height: 100%;
  text-align: center;
}
.hero .bannerImgBox .bannerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.hero .bannerImgBox .slick-list {
  width: 100%;
  height: 100%;
}
.hero .bannerImgBox .slick-list .slick-track {
  height: 100%;
}
.hero .bannerImgBox .slick-list .slick-slide {
  display: flex;
  justify-content: center;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .hero .bannerImgBox .slick-list .slick-slide {
    padding: 70px 0;
  }
}
.hero .bannerImgBox .slick-list .slick-slide:nth-child(odd) {
  align-items: end;
}
.hero .bannerImgBox .slick-list .slick-slide:nth-child(odd) .bannerImg {
  height: 85%;
}
.hero .bannerImgBox .slick-list .slick-slide:nth-child(even) .bannerImg {
  height: 85%;
}
.hero .bannerImgBox .hero_fade {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .hero .bannerImgBox .hero_fade {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    right: 0;
  }
}
.hero .txt-content {
  height: auto;
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  text-align: center;
  display: flex;
  align-items: center;
  text-shadow: -1px -1px 2px rgba(255, 255, 255, 0.5), 1px 1px 2px rgba(255, 255, 255, 0.5), 1px 1px 2px rgba(255, 255, 255, 0.5), 2px 2px 3px rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 3px rgba(255, 245, 225, 0.4);
}
.hero .txt-content h1 {
  font-size: calc(2rem + 1vw);
  color: #755946;
  letter-spacing: 6px;
  line-height: 1.3;
}
.hero .txt-content h1 small {
  font-size: 1rem;
}
.hero .txt-content span {
  font-size: calc(1rem + 0.4vw);
  color: #696969;
  margin: auto;
  display: inline-block;
  font-weight: 300;
  padding: 6px 10px;
}
.hero .txt-content-1 {
  color: #6a6765;
  position: absolute;
  bottom: 150px;
  right: 30px;
}
.hero .txt-content-1 h4 {
  font-size: calc(1.5rem + 0.3vw);
}

section .scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translateX(-50%);
  color: #fff5e1;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-top: 80px;
}
section .scroll-down:hover {
  opacity: 0.5;
}
section .scroll-down .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff5e1;
  border-bottom: 2px solid #fff5e1;
  transform: rotate(-45deg);
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
section .scroll-down .arrow:nth-of-type(1) {
  animation-delay: 0s;
}
section .scroll-down .arrow:nth-of-type(2) {
  top: 16px;
  animation-delay: 0.15s;
}
section .scroll-down .arrow:nth-of-type(3) {
  top: 32px;
  animation-delay: 0.3s;
}
@media (max-width: 991.98px) {
  section .scroll-down {
    color: white;
  }
  section .scroll-down .arrow {
    border-left: 2px solid white;
    border-bottom: 2px solid white;
  }
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.masonry-store {
  column-width: 300px;
  column-gap: 10px;
}
.masonry-store a {
  display: inline-block;
  padding: 5px;
  border: 1px solid #aaa;
  margin-bottom: 5px;
}
.masonry-store a img {
  filter: brightness(0.8);
  transition: 0.4s;
}
.masonry-store a img:hover {
  filter: brightness(1);
}
@media (max-width: 576px) {
  .masonry-store {
    column-width: 150px;
  }
  .masonry-store a img {
    filter: brightness(1);
  }
}

.about .aboutContext {
  max-width: 1000px;
}
.about b {
  font-weight: 700;
  color: #CCAC85;
}
.about img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.about a {
  background-color: #fff;
  color: #93856d;
  border: 2px solid #93856d;
  margin-top: 20px;
  width: fit-content;
  padding: 10px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.5s;
}
.about a:hover {
  background-color: #93856d;
  border: 2px solid transparent;
  color: #fff;
  transition: 0.5s;
}

.room span {
  font-size: 5rem;
  color: #fff5e1;
}
.room img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.room ul {
  list-style-position: inside;
}
.room li {
  font-size: 16px;
  line-height: 2.5;
  text-align: justify;
}
.room li::marker {
  content: "➤";
}
.room .btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #fff5e1;
  color: white;
}

.services .serviceCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services i {
  font-size: 52px;
  margin-bottom: 16px;
}
.services img {
  margin-bottom: 1rem;
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: center;
}
.services h5 {
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}
.services span {
  font-size: 1rem;
  color: white;
  background: #B97F4F;
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 2px;
  text-align-last: justify;
}

#process img {
  width: 70%;
  height: auto;
}
#process .note {
  font-size: 1.1rem;
  color: #755946;
  background: #B97F4F;
}
@media (max-width: 576px) {
  #process .note {
    text-align: center;
  }
}
#process .note i {
  font-size: 1.3rem;
}
#process p {
  width: auto;
  text-align: center;
  letter-spacing: 0.4rem;
  padding-left: 3rem;
}
#process h5 {
  color: #CCAC85;
  transform: scaleX(1);
  flex: 1;
  font-size: 1.4rem;
}
@media (max-width: 992px) {
  #process h5 {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}
#process h5 small {
  font-size: 16px;
  letter-spacing: 0.3rem;
  opacity: 0.7;
}
#process .step {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
}
#process .step h3 {
  letter-spacing: 0.25rem;
  font-style: italic;
  display: inline-block;
  width: 160px;
  height: fit-content;
  opacity: 0.5;
}
@media (max-width: 992px) {
  #process .step h3 {
    width: 100%;
  }
}
#process .step .line {
  width: 40px;
  flex: 1;
  border-right: dotted 3px #fff5e1;
  opacity: 0.3;
}
#process .item:not(:last-child) {
  margin-bottom: 0.5rem;
}
#process .item:not(:last-child) h5 {
  margin-bottom: 2rem;
}
#process .pay {
  background: #a1998c;
  padding: 2rem;
  padding-top: 0;
  margin-top: 3rem;
  border-radius: 5px;
}
#process .pay * {
  color: #fff;
}
#process .pay * {
  transform-origin: center;
}
#process .pay h5 {
  width: fit-content;
  white-space: nowrap;
}
@media (max-width: 992px) {
  #process .pay h5 {
    text-align: center;
    margin-top: 2rem;
  }
}
#process .pay .line {
  flex: 1;
}
@media (max-width: 992px) {
  #process .pay .line {
    display: none;
  }
}
#process .pay .dotted {
  position: relative;
}
#process .pay .dotted::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 50%;
  top: 0;
  right: 0;
  width: 100%;
  border-bottom: dotted 3px #fff;
  opacity: 0.5;
}
#process .pay p {
  padding-left: unset;
  border: solid 1px #fff;
  border-radius: 50%;
  padding: 1rem;
  width: 70%;
  min-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
#process .pay h3 {
  padding-bottom: 1.5rem;
  padding-top: 1rem;
  padding-left: 3rem;
  padding-right: 2.5rem;
  color: #a1998c;
  background: #fff;
  width: fit-content;
  border-radius: 0 0 5px 5px;
}

.portfolio * {
  transform-origin: left;
}
.portfolio .awards {
  margin-top: 2rem;
}
.portfolio .awards li {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 14px;
}
.portfolio .awards a {
  padding: 0 !important;
}
.portfolio .awards_logo img {
  height: 100px;
  object-fit: contain;
  width: fit-content;
}
.portfolio span {
  width: 60px;
  display: inline-block;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  background: #010101;
  border-radius: 20px;
  padding: 0.1rem 0.5rem;
}
.portfolio span.silver {
  background: rgb(155, 155, 155);
}
.portfolio h4 {
  display: inline-block;
  background: #fff5e1;
  padding: 8px 20px;
  border: 2px solid white;
  border-radius: 50px;
  box-shadow: rgba(117, 89, 70, 0.3) 0px 25px 20px -2px;
}
.portfolio h5 {
  width: auto;
  font-size: 24px;
}
.portfolio img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
@media (max-width: 576px) {
  .portfolio img {
    height: 200px;
  }
}
.portfolio .h-25 img {
  height: 200px;
}
@media (max-width: 992px) {
  .portfolio .h-25 img {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .portfolio .h-25 img {
    height: 100px;
  }
}
.portfolio .row a {
  padding: 0.5rem;
  display: block;
}
.portfolio .nav-link {
  color: #CCAC85;
}
.portfolio .nav-pills .nav-link.active,
.portfolio .nav-pills .show > .nav-link {
  background: #CCAC85;
}
.portfolio .slick_box a {
  padding: 0;
  width: 100%;
  transform: scaleX(1);
}
.portfolio .slick_box img {
  width: 100%;
  height: 50vh;
}
.portfolio .slick_box .slick-arrow {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  transition: 0.5s;
}
.portfolio .slick_box .slick-arrow::before {
  color: #fff;
  opacity: 0.8;
  font-size: 1.5rem;
}
.portfolio .slick_box .slick-prev {
  left: 0px;
}
.portfolio .slick_box .slick-next {
  right: 0px;
}
.portfolio .slick_box .slick-disabled {
  opacity: 0;
}
.portfolio .slick_box .slick-dots {
  bottom: 0px;
  transform: translateY(100%);
}

.contact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contact * {
  transform: scaleX(1);
  letter-spacing: 0.2rem;
}
.contact h2 {
  letter-spacing: 0.8rem;
}
.contact address ul li a {
  color: #6a6765;
  transition: 0.4s;
}
.contact address ul li a:hover {
  color: #755946 !important;
}
.contact address ul li a i {
  font-size: 18px;
  line-height: 24px;
}
.contact .sns a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  color: white;
  background: #B97F4F;
  text-decoration: none;
  font-size: 20px;
  transition: 0.5s;
}
.contact .sns a:hover {
  border: 1px solid #fff;
  color: #fff5e1;
  background: #755946;
}
.contact .sns i {
  letter-spacing: 0;
}
.contact .map iframe {
  display: block;
}

.sidebar .phone {
  display: block;
  font-size: 14px;
  font-weight: bolder;
  margin: 0;
  padding-top: 10px;
}

footer {
  background: #fff5e1;
  margin-bottom: 0px;
}
footer * {
  transform: scaleX(1);
  letter-spacing: 0.15rem;
  color: rgba(117, 89, 70, 0.6);
}
@media (max-width: 576px) {
  footer {
    font-size: 0.9rem;
  }
}
footer a:hover {
  color: #352820;
}

.navbar-dark .navbar-toggler {
  color: white;
  border: none;
}

.mp4 {
  width: 100%;
  height: 100%;
  text-align: center;
}
.mp4 video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}
.mp4 iframe {
  width: 100%;
  aspect-ratio: 9/16;
}
@media (min-width: 576px) {
  .mp4 iframe {
    width: 65%;
  }
}
@media (min-width: 768px) {
  .mp4 iframe {
    width: 50%;
    max-width: 400px;
  }
}/*# sourceMappingURL=all.css.map */