@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  color: #31251B;
  font-family: 'Noto Sans TC', sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs {
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #faf1ec;
}

#loading img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#loading span {
  -webkit-animation: load 1.5s infinite alternate;
          animation: load 1.5s infinite alternate;
  display: block;
  position: absolute;
  top: calc(50% + 150px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #a9805e;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 180px;
  color: #a9805e;
}

@-webkit-keyframes load {
  from {
    letter-spacing: 2px;
  }
  to {
    letter-spacing: 10px;
  }
}

@keyframes load {
  from {
    letter-spacing: 2px;
  }
  to {
    letter-spacing: 10px;
  }
}

.container {
  max-width: 1140px;
  width: 95%;
  margin: auto;
}

hr {
  background-color: #a9805e;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #31251B;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  display: inline-block;
  position: relative;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 40px;
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (min-width: 992px) {
  h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

h3 {
  color: #a9805e;
  font-size: 18px;
  letter-spacing: 1.6px;
  font-weight: 400;
  line-height: 1.5;
}

p {
  line-height: 2em;
}

img {
  width: 100%;
}

.row:not(:last-child) {
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .row:not(:last-child) {
    margin-bottom: 100px;
  }
}

.btn {
  width: 100%;
  line-height: 40px;
  margin: 16px 8px;
  border: 1px solid #C2A58D;
  background-color: #C2A58D;
  border-radius: 50vh;
  color: white;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  right: 0;
  line-height: 40px;
  font-size: 18px;
}

.btn span {
  display: block;
  width: 100px;
}

.btn.secondary {
  border: 1px solid white;
  background-color: transparent;
  color: white;
}

.link-btn {
  display: block;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: white;
  background-color: #a9805e;
  border-radius: 50vh;
}

section:not(:first-child) {
  padding: 40px 0;
}

#banner {
  position: relative;
}

#banner .img-box {
  background: url(../image/banner/img-01.jpg) no-repeat center/cover, #676767;
  background-blend-mode: overlay;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  #banner .img-box {
    background-attachment: fixed;
  }
}

#banner .img-content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: white;
}

#banner .img-content strong {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
}

#banner .img-content strong small {
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 12px;
  font-weight: 300;
}

#banner .img-content .animate__fadeIn {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#about {
  background-color: #faf1ec;
}

#about hr {
  background-color: gray;
}

#about figure:not(.logo) {
  position: relative;
  display: block;
}

#about figure:not(.logo):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), color-stop(20%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 20%);
}

#about figure:not(.logo) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about figure:not(.logo) figcaption {
  z-index: 1;
  font-weight: 300;
  color: #e0d6cd;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}

#about h2 {
  font-size: 24px;
}

@media (min-width: 992px) {
  #about h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
}

#about p {
  margin-top: 10px;
}

#service {
  background-color: #F9F6F4;
}

#service .row {
  background-color: white;
  border: 1px solid #a9805e;
  padding: 20px;
}

#service .row hr {
  margin: 1rem 0;
  opacity: 0.1;
}

#service .row dd {
  margin-bottom: 0;
  line-height: 2;
  text-align: center;
}

#service .row * {
  padding: 0;
}

#service .row:not(:last-child) {
  margin-bottom: 40px;
}

#service .row dt {
  display: block;
  line-height: 2;
  font-size: 20px;
  color: #C2A58D;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

#service .row dd.item {
  font-weight: 300;
}

#service .row dd.price .price-detail span {
  font-size: 14px;
}

#service .row dd.price .price-detail span small {
  font-size: 12px;
}

#service .row dd.price span {
  display: inline-block;
  line-height: 1.5;
  padding: 0 8px;
  font-weight: 300;
  color: gray;
}

#service .row dd.price small {
  display: block;
  text-align: center;
  text-decoration: line-through;
  font-size: 14px;
  color: gray;
  font-weight: 300;
}

#service .row dd.price strong {
  display: block;
  text-align: center;
  line-height: 1.2;
  font-size: 20px;
  color: #daa19e;
}

#portfolios {
  background-color: #faf1ec;
}

#portfolios hr {
  opacity: 0.2;
  background-color: #C2A58D;
}

#portfolios h3 {
  display: inline-block;
  margin-top: 30px;
  color: #C2A58D;
  font-size: 20px;
}

#portfolios h3 span {
  font-size: 16px;
}

#portfolios .slick-next:before,
#portfolios .slick-prev:before {
  font-size: 24px;
}

#portfolios a {
  display: block;
  height: 300px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  background-color: white;
}

#portfolios img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

footer {
  padding: 40px 5px 80px;
  background-color: white;
}

footer p,
footer a {
  margin: 0;
  font-size: 14px;
  color: #31251B;
}

.quick-link-l {
  z-index: 99;
  position: fixed;
  bottom: 100px;
  right: 0;
  display: none;
}

.quick-link-l .link-btn {
  font-size: 20px;
  background-color: #C2A58D;
  color: white;
  width: 50px;
  line-height: 50px;
  padding: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 12px;
}

.quick-link-l .link-btn:not(:last-child) {
  border-bottom: 1px solid #C9E0F220;
}

.quick-link-l .link-btn i {
  padding: 4px;
}

.quick-link-l .link-btn:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.quick-link-s {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #a9805e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 -2px 4px rgba(104, 104, 104, 0.2);
  box-shadow: 0 -2px 4px rgba(104, 104, 104, 0.2);
  display: none;
}

.quick-link-s .link-btn {
  line-height: 30px;
  width: 40%;
  color: #C2A58D;
  text-align: center;
  background-color: #faf1ec;
  border: 0;
  border-radius: unset;
  padding: 8px 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  float: left;
  margin: 0;
  font-size: 20px;
  letter-spacing: 1.2px;
}

.quick-link-s .link-btn.top {
  width: 20%;
}

.quick-link-s .link-btn:not(:last-child) {
  border-right: 1px solid #a9805e10;
}

.quick-link-s .link-btn i {
  margin: auto;
}

@media screen and (min-width: 768px) {
  #banner .img-box {
    height: 90vh;
  }
  #banner .img-content {
    bottom: 100px;
    font-size: 24px;
  }
  #banner .img-content strong {
    font-size: 60px;
    margin-bottom: 100px;
    letter-spacing: 5px;
  }
  #banner .img-content strong small {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}

@media screen and (min-width: 992px) {
  body {
    font-size: 18px;
  }
  section:not(:first-child) {
    padding: 100px 0;
  }
  .hover-border {
    padding-bottom: 5px;
    position: relative;
  }
  .hover-border::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: #C2A58D;
    width: 0;
    height: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .hover-border:hover::after {
    width: 100%;
  }
  .btn {
    -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
  }
  .btn:hover {
    color: white;
    -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  .btn:hover i {
    right: -8px;
  }
  #banner .img-box {
    height: 100vh;
  }
  #banner .img-content strong small {
    font-size: 28px;
  }
  #banner .img-content strong {
    font-size: 76px;
  }
  #banner a.scroll {
    z-index: 10;
    font-size: 24px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    font-size: 16px;
    height: 120px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-align: center;
    letter-spacing: 2px;
  }
  #banner a.scroll:hover {
    color: white;
  }
  #banner a.scroll::after {
    content: "";
    position: absolute;
    left: -10px;
    height: 80px;
    width: 0.1px;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0.1;
    -webkit-animation: scroll 1.2s ease-in-out infinite;
    animation: scroll 1.2s ease-in-out infinite;
  }
  @-webkit-keyframes scroll {
    0% {
      opacity: 0.6;
      height: 60px;
      bottom: 80px;
    }
    100% {
      opacity: 0.1;
      height: 0;
      bottom: 0;
    }
  }
  @keyframes scroll {
    0% {
      opacity: 0.6;
      height: 60px;
      bottom: 80px;
    }
    100% {
      opacity: 0.1;
      height: 0;
      bottom: 0;
    }
  }
  #about {
    position: relative;
    z-index: 0;
    background: url(../image/about/img-01.jpg) no-repeat center/cover, #f1f1f1;
    background-blend-mode: overlay;
    background-attachment: fixed;
  }
  #about .about-box {
    width: 80%;
    margin: 0 auto;
  }
  #about figure:not(.logo) img {
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #about figure.logo img {
    max-width: 600px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #about p,
  #about h2 {
    padding: 0;
    margin-top: 0;
  }
  #about p::after,
  #about h2::after {
    width: 0;
  }
  #about hr {
    background-color: white;
    opacity: 0.2;
  }
  #about:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background-color: #faf1ec;
    margin-left: auto;
    z-index: -1;
  }
  #service .wrapper {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #service .row {
    border: 0;
    padding: 0;
    position: relative;
    z-index: 0;
  }
  #service .row.bs {
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
  }
  #service .row:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin-left: auto;
    background-color: #F3EDE8;
    width: calc(100% / 12 * 4);
    z-index: -10;
  }
  #service .row * {
    padding: 0;
  }
  #service .row:not(:last-child) {
    margin-bottom: 0;
  }
  #service .row:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 3px dotted #F9F6F4;
    height: 1px;
  }
  #service .row dt {
    display: block;
    line-height: 2;
    margin: 0;
    position: relative;
    padding-left: 40px;
  }
  #service .row dd {
    text-align: left;
    padding-left: 40px;
  }
  #service .row dd.item {
    font-size: 15px;
  }
  #service .row dd.price {
    padding: 40px;
    text-align: center;
  }
  #service .row dd.price .price-detail span {
    font-size: 15px;
  }
  #service .row dd.price .price-detail span small {
    font-size: 14px;
  }
  #portfolios a {
    overflow: hidden;
  }
  #portfolios a img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #portfolios a:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  footer {
    padding: 20px 0;
  }
  footer p,
  footer a {
    font-size: 15px;
  }
  footer a:hover {
    color: #C2A58D;
  }
}
/*# sourceMappingURL=style.css.map */