body {
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #EBDBD5;
  font-weight: normal;
  height: 200vh;
  position: relative;
}
body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
body.offcanvas-menu:before {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

p {
  color: #b3b3b3;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
  transition: 0.3s all ease;
}
a, a:hover {
  text-decoration: none !important;
}

.hero {
  height: 95vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero_text {
  position: absolute;
  color: #fff;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .hero_text h3 {
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.2rem;
}
.hero .hero_text .btn {
  margin-top: 0.7rem;
  background-color: #AB7575;
  color: #fff;
  font-size: 1.2rem;
  padding: 7px 30px;
  border-radius: 0px;
  transition: 0.5s;
  border: none;
  letter-spacing: 0.1rem;
}
.hero .hero_text .btn:hover {
  background-color: #fff;
  color: #AB7575;
  transition: 0.5s;
}

.site-navbar-wrap {
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
}
.site-navbar-wrap a {
  color: #fff;
}
.site-navbar-wrap .site-navbar-top {
  font-size: 0.8rem;
}

.site-navbar-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-navbar {
  margin-bottom: 0px;
  width: 100%;
}
.site-navbar .site-logo {
  transition: 0.5s;
  font-weight: 200;
  line-height: 0;
  position: relative;
  top: 3px;
}
.site-navbar .site-logo a {
  font-weight: 200;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .site-navbar .site-logo a {
    font-size: 1rem;
    white-space: nowrap;
  }
}
.site-navbar .site-navigation .icon-menu {
  color: #fff;
  transition: 0.5s;
}
.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}
.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  font-weight: 300;
}
.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
  padding: 20px 10px 5px 10px;
}
.site-navbar .site-navigation .site-menu > li > a {
  padding: 10px 10px;
  color: white;
  font-size: 15px;
  text-decoration: none !important;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
}
.site-navbar .site-navigation .site-menu > li > a.active {
  border-bottom: 1px solid #fff;
  transition: 0.2s;
}
.site-navbar .site-navigation .site-menu > li > a:hover {
  border-bottom: 1px solid #fff;
  transition: 0.2s;
}
.site-navbar .site-navigation .site-menu > li:last-child {
  padding-right: 0;
}
.site-navbar .site-navigation .site-menu > li:last-child > a {
  padding-right: 0;
}
.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}
.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "icomoon";
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #EBDBD5;
  transition: 0.2s 0s;
  border-radius: 4px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: transparent;
  border-bottom-color: #EBDBD5;
  border-width: 10px;
  margin-left: -10px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  transition: 0s all;
  color: #343a40;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #AB7575;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  color: #fff !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li:first-child > a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child > a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
  background: #CE9898;
  color: #fff;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
  content: "\e315";
  right: 20px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
  left: 100%;
  top: 0;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
  background: #ebeef0;
  color: #212529;
}
.site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #fff;
}
.site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #EBDBD5;
  height: 100vh;
  transform: translateX(110%);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transition: 0.3s all ease-in-out;
}
.offcanvas-menu .site-mobile-menu {
  transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s all ease;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #dee2e6;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}
.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.site-mobile-menu .site-nav-wrap a {
  padding: 20px;
  display: block;
  position: relative;
  color: #835B5A;
}
.site-mobile-menu .site-nav-wrap a.active, .site-mobile-menu .site-nav-wrap a:hover {
  color: #000;
}
.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}
.site-mobile-menu .site-nav-wrap li.active > a {
  color: #AB7575;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: 0.3s all ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}
.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 18px;
}
.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}

.sticky-wrapper {
  transition: 0.8s;
  position: absolute;
  z-index: 100;
  width: 100%;
}
.sticky-wrapper + .site-blocks-cover {
  margin-top: 96px;
}
.sticky-wrapper .site-navbar {
  transition: 0.3s all ease;
}
.sticky-wrapper .site-navbar ul li.active a {
  color: #fff;
}
.sticky-wrapper.is-sticky .site-navbar {
  background-color: #CE9898;
  transition: 1s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #fff;
  transition: 0.5s;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .icon-menu {
  transition: 0.8s;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li {
  display: inline-block;
  padding: 10px 5px;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child {
  padding-right: 0;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li:last-child > a {
  padding-right: 0;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.has-children > a {
  padding-right: 20px;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a {
  padding: 10px 10px;
  color: white;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: 0, 2s;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a:hover {
  color: #fff !important;
  transition: 0, 2s;
  border-bottom: 1px solid #fff;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a.active {
  color: #fff !important;
  transition: 0, 2s;
  border-bottom: 1px solid #fff;
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.active a {
  color: #fff;
}
#about {
  background: url(../../public/about/bg/1.png);
  background-attachment: fixed;
  background-size: cover;
}
#about .about_pic {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  opacity: 1;
  transition: 0.5s;
  width: 100%;
  height: 500px;
  background: url(../../public/about/1.jpg) no-repeat;
  background-size: contain;
  background-position: center center;
}
#about h2 {
  font-family: "Poiret One", sans-serif;
  color: #AB7575;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  border-bottom: 1px solid #AB7575;
  padding-bottom: 10px;
  text-align: center;
  margin: auto;
  font-weight: bold;
}
#about span {
  background-color: #AB7575;
  font-size: 15px;
  color: #fff;
  padding: 8px 40px;
  border-radius: 50px;
}
#about p {
  line-height: 2.5rem;
  font-size: 15px;
}
#about img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  margin: auto;
  position: relative;
}
#about h3 {
  line-height: 2rem;
}
#about .text_S {
  display: none;
}
#about .about_content {
  font-weight: normal;
  width: 100%;
  margin-top: 20px;
  line-height: 2.5rem;
  font-size: 15px;
}
#about .about_content p {
  color: rgba(171, 117, 117, 0.8);
}
#about .about_content p:nth-child(2), #about .about_content p:nth-child(4) {
  color: #835B5A;
  font-size: 1.02rem;
  background-color: rgba(206, 152, 152, 0.2);
  width: 100%;
  padding: 20px 0px;
  max-width: 300px;
  border-radius: 20px;
  position: relative;
}
#about .about_content p:nth-child(2)::after, #about .about_content p:nth-child(4)::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 0;
  right: -0.6rem;
  background: url(../../public/about/quote/quote-right-solid.svg);
}
#about .about_content p:nth-child(2)::before, #about .about_content p:nth-child(4)::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  bottom: 0;
  left: -1.6rem;
  background: url(../../public/about/quote/quote-left-solid.svg);
}
#about .about_content .about_pic img {
  max-width: 600px;
}
#about .about_content ul {
  padding: 0;
  text-align: start;
}
#about .about_content ul li {
  list-style: none;
  text-align: start;
}

@media (max-width: 576px) {
  #about {
    background: url(../../public/about/bg/2.png);
    background-size: contain;
    background-position: 10% 0%;
  }
  #about .title {
    width: 100%;
  }
  #about .title hr {
    width: 40%;
    margin: 15px auto;
  }
  #about .text_L {
    display: none;
  }
  #about .text_S {
    display: block;
  }
  #about .about_content {
    width: 100%;
    font-size: 13px;
  }
}
#case .heading-section h2 {
  font-family: "Poiret One", sans-serif;
  color: #AB7575;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  border-bottom: 1px solid #AB7575;
  padding-bottom: 10px;
  text-align: center;
  margin: auto;
  font-weight: bold;
  text-transform: uppercase;
}
#case .heading-section a {
  margin-left: -20px;
}
#case .heading-section a:hover p {
  color: #A46C9C;
  transition: 0.5s;
}
#case .heading-section a, #case .heading-section p {
  color: #AB7575;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
#case h4 {
  color: #835B5A;
}
#case .case_box {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 10px;
  transition: 0.5s;
  overflow: hidden;
  transform: scale(1);
  color: rgba(0, 0, 0, 0.7333333333);
}
#case .case_box:hover {
  transition: 0.5s;
  transform: scale(1.05);
  color: #AB7575;
}
#case .case_box .case_pic {
  height: 300px;
}
#case .case_box .case_detail {
  height: 150px;
  background-color: #fff;
  margin: auto 0px;
}
#case .case_box ul {
  line-height: 2rem;
  font-size: 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #case .case_box ul {
    font-size: 15px;
    transition: 0.5s;
  }
}
#case .more_arrow {
  letter-spacing: 5px;
  color: #AB7575;
  font-size: 1rem;
  animation: more_arrow_move 1s infinite;
  margin-right: 20px;
}
@keyframes more_arrow_move {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(20px);
  }
}

#process {
  background: url(../../public/process/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
}
#process .heading-section h2 {
  font-family: "Poiret One", sans-serif;
  color: #AB7575;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  border-bottom: 1px solid #AB7575;
  padding-bottom: 10px;
  text-align: center;
  margin: auto;
  font-weight: bold;
  text-transform: uppercase;
}
#process .heading-section a, #process .heading-section p {
  color: #AB7575;
}
#process img {
  width: 100%;
  margin-bottom: 1rem;
  transform: scale(1);
  transition: 0.5s;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#process img:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

@media (max-width: 768px) {
  #process {
    background: url(../../public/process/bg_s.jpg);
    background-size: contain;
  }
}
#contact .heading-section h2 {
  font-family: "Poiret One", sans-serif;
  color: #AB7575;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  border-bottom: 1px solid #AB7575;
  padding-bottom: 10px;
  text-align: center;
  margin: auto;
  font-weight: bold;
  text-transform: uppercase;
}
#contact .heading-section a {
  color: #AB7575;
}

#location .heading-section h2 {
  font-family: "Poiret One", sans-serif;
  color: #AB7575;
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
  max-width: 300px;
  border-bottom: 1px solid #AB7575;
  padding-bottom: 10px;
  text-align: center;
  margin: auto;
  font-weight: bold;
  text-transform: uppercase;
}
#location .heading-section a {
  color: #AB7575;
}
#location .heading-section p {
  color: #AB7575;
  letter-spacing: 0.3rem;
}

.contact {
  background: rgba(255, 255, 255, 0.5);
  padding-top: 3rem;
}

.contact address a {
  color: #AB7575;
  transition: 0.4s;
}

.contact address a:hover {
  color: #A46C9C;
}

.contact address ul li a i {
  font-size: 18px;
  line-height: 24px;
}

.contact .sns {
  padding-left: 20px;
}

.contact .sns a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #AB7575;
  color: #AB7575;
  text-decoration: none;
  font-size: 20px;
  transition: 0.5s;
}

.contact .sns a:hover {
  border: 1px solid #575755;
  color: #575755;
}

@media (max-width: 992px) {
  .contact .sns {
    padding-left: 0;
    padding-top: 1rem;
  }
}
.contact .map {
  transition: 0.4s;
}

.contact h5 {
  background-color: #AB7575;
  color: #fff;
  border-radius: 50px;
  width: fit-content;
  padding: 7px 40px;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

.contact .map:hover {
  filter: grayscale(0);
}

footer {
  background-color: #CE9898;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border-top: #fff 0.5px solid;
  color: #fff;
  padding-bottom: 20px;
}
footer a {
  color: #fff;
}
footer p {
  color: #fff;
  margin: 0;
  padding: 20px 0px;
}/*# sourceMappingURL=style.css.map */