/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  height: 100%;
}

body {
  line-height: 1;
  color: black;
  background: white;
  overflow-x: hidden;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body ::-moz-selection {
  background: #111111;
  color: #fff;
}

body ::selection {
  background: #111111;
  color: #fff;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: " ";
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
}

img {
  max-width: 100%;
  height: auto;
}

a img {
  border: none;
}

input, textarea, select, div, ul, li, a {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* # Font Setting
================================================== */
/* @import url(../fonts/HelveticaNeueLTStd-UltLt/styles.css);
@import url(../fonts/HelveticaNeueLTStd-MdCn-67/styles.css);
@import url(../fonts/HelveticaNeue-Light/styles.css); */
/* # Root Setting
================================================== */
:root {
  --ff-body:	'Jost', Georgia, serif;
  --ff-header:	'Cormorant Garamond', Georgia, serif;
  --ff-option:	'Cormorant Garamond', Georgia, serif;
  --cl-tx-body:	#6F7C6A;
  --cl-tx-header:	rgb(74, 79, 69);
  --cl-tx-alink:	#000000;
  --cl-tx-ahover:	#555555;
  --cl-tx-option:	#000000;
  --cl-bg-section1: #f5f6f6;
  --cl-bg-section2: #10656e;
  --cl-bg-section3: #4d4d4d;
  --cl-gray:	#888888;
  --cl-highlight:	#000000;
  --cl-white:	#ffffff;
  --cl-black:	#000000;
  --cl-error:	#f0506e;
  --cl-warning:	#faa05a;
  --cl-success:	#32d296;
}

/* # Set SASS Function
================================================== */
/* #Basic Set
================================================== */
body {
  color: var(--cl-tx-body);
  text-align: center;
  background-color: #ffffff;
}
body {
  font-size: 14px;
}
@media screen and (min-width: 480px) {
  body {
    font-size: calc(14px + 2 * (100vw - 480px) / 840);
  }
}
@media screen and (min-width: 1320px) {
  body {
    font-size: 16px;
  }
}
body {
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: var(--cl-tx-header);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: 400;
}

h1 {
  font-size: 6rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 1320px) {
  h1 {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 4rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 650px) {
  h1 {
    font-size: 3.6rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 375px) {
  h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}

h2 {
  font-size: 36px;
}
@media screen and (min-width: 480px) {
  h2 {
    font-size: calc(36px + 6 * (100vw - 480px) / 840);
  }
}
@media screen and (min-width: 1320px) {
  h2 {
    font-size: 42px;
  }
}
h2 {
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 3.6rem;
  }
}

h3 {
  font-size: 36px;
}
@media screen and (min-width: 480px) {
  h3 {
    font-size: calc(36px + 14 * (100vw - 480px) / 840);
  }
}
@media screen and (min-width: 1320px) {
  h3 {
    font-size: 50px;
  }
}
h3 {
  margin-bottom: 20px;
}
@media screen and (min-width: 480px) {
  h3 {
    margin-bottom: calc(20px + 15 * (100vw - 480px) / 840);
  }
}
@media screen and (min-width: 1320px) {
  h3 {
    margin-bottom: 35px;
  }
}
h3 {
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  h3 {
    font-size: 3.6rem;
  }
}

h4 {
  font-size: 30px;
}
@media screen and (min-width: 480px) {
  h4 {
    font-size: calc(30px + 20 * (100vw - 480px) / 840);
  }
}
@media screen and (min-width: 1320px) {
  h4 {
    font-size: 50px;
  }
}
h4 {
  line-height: 1.2;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  h4 {
    font-size: 3rem;
  }
}

strong {
  font-weight: 700;
}

hr {
  position: relative;
  clear: both;
  margin: 0 10px;
  height: 0;
  border-top: 1px solid var(--cl-gray);
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

ol {
  list-style: decimal;
  margin-left: 30px;
}

ul {
  list-style: none;
  margin-left: 0;
}
ul.square {
  list-style: square;
}
ul.circle {
  list-style: circle;
}
ul.disc {
  list-style: disc;
}

.detail p {
  margin-bottom: 15px;
}
.detail p:last-child {
  margin-bottom: 0;
}
.detail ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 15px;
}
.detail ul ul, .detail ul ol {
  font-size: 90%;
}
.detail ul:last-child {
  margin-bottom: 0;
}

a {
  position: relative;
  cursor: pointer;
  color: var(--cl-alink);
  text-decoration: none;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
a:hover, a:active {
  color: var(--cl-ahover);
}

.photo img {
  width: 100%;
}

/* #Set Font
================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-header);
}

body, input, textarea, select, button, p {
  font-family: var(--ff-body);
}

/* #Textbox style
================================================== */
input,
textarea,
select {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-white);
  outline: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--cl-tx-header);
}

button {
  background-color: var(--cl-gray);
  border: 1px solid var(--cl-gray);
  color: var(--cl-tx-option);
  cursor: pointer;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
button:hover {
  background-color: var(--cl-tx-option);
  border: 1px solid var(--cl-tx-option);
  color: var(--cl-white);
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 13px 10px 12px;
  outline: 0px;
  background: url(../images/icon--select.svg) right center no-repeat var(--cl-white);
  background-size: 35px auto;
}

button::-moz-focus-inner {
  border: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px var(--cl-white) inset; /* Change bg */
  -webkit-text-fill-color: var(--cl-tx-body) !important; /*Change text */
}

.custom-select {
  position: relative;
}
.custom-select select {
  display: none;
}
.custom-select .select-hide {
  display: none;
}
.custom-select .select-selected {
  background-color: var(--cl-white);
  border: 1px solid #172625;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 10px 10px;
  text-align: left;
  color: var(--cl-tx-body);
}
.custom-select .select-selected:after {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  right: 5px;
  top: 8px;
  background: url(../images/icon--select.svg) center center no-repeat;
  background-size: 40px auto;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.custom-select .select-selected.select-arrow-active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.custom-select .select-items {
  position: absolute;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 2px 2px 4px 0px #f1f1f1;
  padding: 5px;
}
.custom-select .select-items div {
  color: var(--cl-tx-body);
  padding: 8px 16px;
  cursor: pointer;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-select .select-items div:hover {
  font-weight: bold;
  background-color: #f1f1f1;
}
.custom-select .same-as-selected {
  font-weight: bold;
}

/* #Helper Class
================================================== */
.__sm {
  font-size: 0.6em;
}

.__danger, .__red {
  color: var(--cl-error);
}

.__warning {
  color: var(--cl-warning);
}

.__success {
  color: var(--cl-success);
}

.__txl {
  text-align: left;
}

.__txr {
  text-align: right;
}

.__txc {
  text-align: center;
}

/* #Grid
================================================== */
section {
  position: relative;
  z-index: 0;
}

.box {
  position: relative;
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1320px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .container {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 560px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container_full {
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.pd__m_intro {
  padding-top: 160px;
  padding-bottom: 160px;
}
.pd__s_intro {
  padding-top: 160px;
  padding-bottom: 160px;
}

/* #Button and Link style
================================================== */
.a__readmore {
  color: var(--cl-white);
}
.a__readmore:before {
  background-color: rgba(0, 0, 0, 0.6);
}
.a__booknow {
  color: var(--cl-white);
  background-color: var(--cl-tx-option);
  padding: 6px 20px 4px;
  display: inline-block;
  min-width: 90px;
  text-align: center;
  text-transform: initial;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
}
.a__booknow:before {
  height: 0;
}
.a__booknow:hover {
  background-color: var(--cl-tx-option);
}

/* #Font style
================================================== */
/* #Icon
================================================== */
i.ic {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
}

/* #Photo Effect
================================================== */
._bg-full {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
._bg-full img {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* #Etc
================================================== */
.fixed_scroll {
  height: 100%;
  overflow: hidden;
}

.clear {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  width: 0;
  height: 0;
}

/* # background Color
================================================== */
.bg1 {
  background-color: var(--cl-bg-section1);
}

.bg2 {
  background-color: var(--cl-bg-section2);
}

.bg2 {
  background-color: var(--cl-bg-section3);
}

/* # google recaptcha
================================================== */
.grecaptcha-badge {
  visibility: hidden;
}

/* #Slide slide
================================================== */
.slick-list {
  height: auto !important;
}

.slick-track {
  height: 100%;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  background: none;
  border: 0;
  width: 150px;
  z-index: 400;
  font-size: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}
.slick-arrow:hover {
  border: 0;
  background-color: inherit;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.slick-arrow:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 130px;
  top: 50%;
  background-color: var(--cl-white);
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.slick-arrow:hover:before {
  width: 80px;
}

.slick-prev {
  left: 30px;
  background: url(../images/icon--arrow-prev.png) no-repeat left center;
}
.slick-prev:before {
  left: 10px;
}

.slick-next {
  right: 30px;
  background: url(../images/icon--arrow-next.png) no-repeat right center;
}
.slick-next:before {
  right: 10px;
}

.slick-dots {
  width: 50%;
  bottom: 70px;
  left: 80px;
  position: absolute;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li button {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 4px;
  border: 1px solid var(--cl-white);
  background: none;
  font-size: 0;
}
.slick-dots li.slick-active button {
  background-color: var(--cl-white);
  width: 10px;
  height: 10px;
}

/* #Back to top
================================================== */
#back-to-top {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 35px;
  height: 33px;
  cursor: pointer;
  background-color: rgba(102, 102, 102, 0.7);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
#back-to-top:before {
  height: 0;
}

#back-to-top.show {
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

#back-to-top:hover {
  background-color: #202020;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

#back-to-top i.icon--backtotop {
  background: url(../images/icon--arrow-backtotop.svg) no-repeat center center;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 15px;
}

/* #box layout
================================================== */
:root {
  --column-gap:	60px;
  --row-gap:	30px;
}

.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-between;
}
.col2 .col {
  width: 50%;
}

.col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-between;
}
.col3 .col {
  width: 33.33%;
}

.col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-between;
}
.col4 .col {
  width: 25%;
}

.box2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
}
.box3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
}
.box4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
}
.box3-last-op {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: var(--column-gap);
}
.box3-last-op .box {
  width: auto;
  grid-column: 2 span;
}
.box3-last-op .box:nth-child(1), .box3-last-op .box:nth-child(2) {
  width: auto;
}
.box3-last-op .box:nth-child(3n+1):nth-last-child(-n+2), .box3-last-op .box:nth-child(3n+1):nth-last-child(-n+2) ~ .box {
  grid-column: span 3;
}
.box3-last-op .box:nth-child(3n+1):nth-last-of-type(1) {
  grid-column: span 6;
}

/* # Style Layout
================================================== */
/* #Header
================================================== */
/* #footer
================================================== */
/* # Newsletter
================================================== */
.newsletter input {
  text-align: center;
  margin-bottom: 1px;
}
.newsletter .subject {
  text-align: right;
}

.wrap--loading {
  position: absolute;
  width: 320px;
  font-size: 1.2rem;
  display: none;
}
.wrap--loading .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.wrap--loading svg {
  width: 40px;
}
.wrap--loading.active {
  display: block;
}

/* #Main slide -- fullpage
================================================== */
.sd__mainslide {
  background-color: var(--cl-black);
  position: relative;
}
.sd__mainslide:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../images/bg--slidemain-top.png) repeat-x top;
  z-index: 2000;
}
.sd__mainslide:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: url(../images/bg--slidemain-bottom.png) repeat-x bottom;
  z-index: 2000;
}
.sd__mainslide .box {
  height: 100vh;
  width: 100%;
}

/* #Home
================================================== */
/* #Contact us
================================================== */
.sec__contactform {
  max-width: 800px;
  margin: auto;
}
.sec__contactform .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin-bottom: 20px;
}
.sec__contactform .subject {
  width: 30%;
  text-align: right;
  padding: 0 20px 0 0;
}
.sec__contactform .inputfield {
  width: 60%;
}
.sec__contactform .-pass .inputfield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sec__contactform .-pass .wrap_verify {
  width: 80px;
  background-color: #efefef;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sec__contactform .-pass .wrap_pass {
  width: calc(100% - 90px);
}
.sec__contactform .-btn button[value=Submit] {
  width: calc(50% - 5px);
  margin-right: 10px;
  float: left;
}
.sec__contactform .-btn button[value=Reset] {
  width: calc(50% - 5px);
  float: left;
}
.sec__contactform .-remark {
  font-size: 1.4rem;
  text-align: left;
}
.sec__contactform label.error {
  color: var(--cl-error);
  font-size: 0.9em;
  float: left;
  padding: 5px 0 0;
}

/* #Map
================================================== */
#sec__map .wrap__map {
  height: 35vw;
}
#sec__map #map-canvas {
  height: 100%;
}
#sec__map #product-right {
  padding: 20px 12px 20px 10px;
  text-align: center;
}
#sec__map #product-right img {
  margin-bottom: 15px;
  width: 120px;
}

/* #Gallery
================================================== */
#page__gallery .sec__maincontentpage {
  padding-bottom: 50px;
}
#page__gallery #sec__gallery {
  padding-bottom: 40px;
}

.filter-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  padding: 0 0 30px;
}
.filter-button-group button {
  background: none;
  border: 0;
  border-top: 1px solid var(--cl-tx-body);
  border-bottom: 1px solid var(--cl-tx-body);
  color: var(--cl-tx-body);
  display: inline-block;
  width: auto;
  font-size: 1.6rem;
  height: 30px;
  margin: 0 7px;
  padding: 5px 10px;
  position: relative;
  margin-bottom: 15px;
}
.filter-button-group button:hover {
  color: var(--cl-white);
  border-top: 1px solid var(--cl-tx-body);
  border-bottom: 1px solid var(--cl-tx-body);
}
.filter-button-group button.active {
  color: var(--cl-white);
}
.filter-button-group button:before {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0%;
  background: var(--cl-tx-body);
  bottom: 0;
  left: 0;
  position: absolute;
  -webkit-transition: height 250ms;
  transition: height 250ms;
}
.filter-button-group button:hover:before, .filter-button-group button.active:before {
  height: 100%;
}

.box_gallery-list .box {
  width: 20%;
  padding: 5px;
  position: relative;
}
.box_gallery-list .box img {
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.box_gallery-list .box ._detail {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--cl-white);
  z-index: 110;
  font-size: 1.6rem;
  line-height: 1.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.box_gallery-list .box a {
  display: block;
  border: 0;
  background-color: var(--cl-black);
  padding: 0;
}
.box_gallery-list .box a:before {
  border: 1px solid rgba(255, 255, 255, 0);
  z-index: 99;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 0;
  left: 0;
  background: none;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.box_gallery-list .box a:hover:before {
  border: 1px solid rgb(255, 255, 255);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.box_gallery-list .box a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}
.box_gallery-list .box a:hover ._detail {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$alpha*100)";
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

body.fullpage {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#sec__fullpage {
  position: relative;
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}
#sec__fullpage .container_full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}
#sec__fullpage .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #c4a77d;
}
#sec__fullpage .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  position: relative;
}
#sec__fullpage .bg img.mob {
  display: none;
}
@media screen and (max-width: 480px) {
  #sec__fullpage .bg img.mob {
    display: block;
  }
}
#sec__fullpage .bg img.dsk {
  display: block;
}
@media screen and (max-width: 480px) {
  #sec__fullpage .bg img.dsk {
    display: none;
  }
}
#sec__fullpage .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(246, 242, 234, 0.96) 0%, rgba(246, 242, 234, 0.9) 30%, rgba(246, 242, 234, 0.62) 52%, rgba(244, 238, 228, 0.14) 76%, rgba(60, 45, 30, 0.1) 100%);
}
@media screen and (max-width: 480px) {
  #sec__fullpage .bg::after {
    background: linear-gradient(0deg, rgba(246, 242, 234, 0.96) 0%, rgba(246, 242, 234, 0.9) 30%, rgba(246, 242, 234, 0.62) 52%, rgba(244, 238, 228, 0.14) 76%, rgba(60, 45, 30, 0.1) 100%);
  }
}

.sty__content-underconstruction {
  padding: 100px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 160px;
  transition: padding 0.6s ease;
}
@media screen and (max-width: 1320px) {
  .sty__content-underconstruction {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .sty__content-underconstruction {
    padding: 60px;
  }
}
@media screen and (max-width: 480px) {
  .sty__content-underconstruction {
    text-align: center;
    padding: 40px 30px;
    gap: 20px;
    justify-content: flex-end;
  }
}
.sty__content-underconstruction .logo {
  width: clamp(190px, 30vw, 320px);
}
@media screen and (max-width: 480px) {
  .sty__content-underconstruction .logo {
    margin: 0 auto;
  }
}
.sty__content-underconstruction .content {
  max-width: 600px;
}
@media screen and (max-width: 1024px) {
  .sty__content-underconstruction .content {
    max-width: 55%;
  }
}
@media screen and (max-width: 480px) {
  .sty__content-underconstruction .content {
    max-width: 100%;
    width: 370px;
    margin: 0 auto;
  }
}
.sty__content-underconstruction h1 {
  font-size: clamp(3rem, 4vw, 5.2rem);
  line-height: 1.1;
  padding-bottom: 30px;
  color: rgb(74, 79, 69);
}
.sty__content-underconstruction h2 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  line-height: 1.2;
  font-weight: 400;
  font-family: var(--ff-body);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cl-tx-body);
  margin-bottom: 10px;
}
.sty__content-underconstruction .description {
  font-size: 17px;
  line-height: 2;
  color: var(--cl-tx-body);
  letter-spacing: 0.5px;
  font-weight: 300;
}
.sty__content-underconstruction .description a {
  color: var(--cl-tx-body);
  position: relative;
}
.sty__content-underconstruction .description a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all 0.6s ease 0s;
  background-color: rgba(195, 155, 109, 0.5);
}
.sty__content-underconstruction .description a:hover {
  font-weight: normal;
}/*# sourceMappingURL=main.css.map */