html.lenis, html.lenis body {
  height: auto;
  overflow: visible;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.header {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent;
  z-index: 99;
  transition: all 0.4s;
  justify-content: center;
  height: var(--header-height);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header .logo.scroll {
  display: none;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  position: relative;
  width: 100%;
  transition: all 0.4s;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .header .nav {
    --header-height: 100px;
    margin-top: 10px;
  }
}
.header .nav-logo {
  display: flex;
  align-items: stretch;
  z-index: 1;
}
.header .nav-logo a {
  display: flex;
  align-items: center;
}
.header .nav-logo a .logo {
  height: auto;
  width: 181px;
}
.header .nav-gnb {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-grow: 1;
  position: absolute;
  width: 100%;
  margin-top: -2px;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .header .nav-gnb {
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
}
.header .nav-gnb .gnb {
  display: flex;
  gap: 57px;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .header .nav-gnb .gnb {
    display: none;
  }
}
.header .nav-gnb .gnb .menu {
  display: flex;
  align-items: stretch;
  position: relative;
}
.header .nav-gnb .gnb .menu-link {
  font-weight: 700;
  padding: 10px 20px;
  font-size: var(--fs18);
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.header .nav-gnb .gnb .menu-link:hover {
  color: var(--accent);
}
.header .nav-gnb .gnb .menu-link.active {
  color: var(--accent);
}
.header .nav-gnb .gnb .menu:has(> .menu-dropdown):hover > .menu-dropdown, .header .nav-gnb .gnb .menu:has(> .menu-dropdown) > a:hover + .menu-dropdown,
.header .nav-gnb .gnb .menu .menu-dropdown:hover {
  opacity: 1;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.header .nav-gnb .gnb .menu-dropdown {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: absolute;
  top: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--box-shadow);
  height: 0;
  overflow: hidden;
}
.header .nav-gnb .gnb .menu-dropdown li {
  display: flex;
}
.header .nav-gnb .gnb .menu-dropdown__link {
  padding: 15px 20px;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: var(--fs18);
  border-bottom: 1px solid var(--grey1);
  min-width: 200px;
}
.header .nav-gnb .gnb .menu-dropdown__link:hover {
  color: var(--accent);
}
.header .nav-gnb .mmenu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-left: auto;
  position: relative;
  height: 100%;
}
.header .nav-gnb .mmenu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;
  flex-shrink: 0;
  flex-basis: 35px;
  transition: all 0.4s;
  position: relative;
  height: 60%;
}
@media screen and (min-width: 1025px) and (max-width: 2560px) {
  .header .nav-gnb .mmenu-btn {
    display: none;
  }
}
.header .nav-gnb .mmenu-btn span {
  height: 3px;
  width: 100%;
  background: var(--white);
}
.header .nav-gnb .mmenu-btn:hover span:nth-child(2) {
  width: 100%;
  transition: all 0.4s;
}
.header .nav-gnb .mmenu-btn.active span:first-child {
  transform: rotate(45deg) translate(10px, 9px);
  transition: all 0.4s;
}
.header .nav-gnb .mmenu-btn.active span:nth-child(2) {
  opacity: 0;
  transition: all 0.4s;
}
.header .nav-gnb .mmenu-btn.active span:last-child {
  transform: rotate(-45deg) translate(2px, -1px);
  transition: all 0.4s;
}
.header .nav .deskmenu {
  display: flex;
  align-items: stretch;
  gap: 30px;
  z-index: 1;
  position: relative;
  margin-top: 2px;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .header .nav .deskmenu {
    display: none;
  }
}
.header .nav .deskmenu-btn {
  display: flex;
  flex-direction: column;
  justify-content: auto;
  align-items: flex-end;
  position: relative;
  padding-top: 14px;
}
.header .nav .deskmenu-btn span {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--white);
}
.header .nav .deskmenu-btn span:first-child {
  width: 30px;
  margin-bottom: 6px;
  transition: all 0.4s;
}
.header .nav .deskmenu-btn:hover span:first-child {
  width: 50px;
}
.header .nav .deskmenu .langmenu {
  display: flex;
  align-items: center;
}
.header .nav .deskmenu .langmenu ul {
  display: flex;
  gap: 22px;
  position: relative;
}
.header .nav .deskmenu .langmenu ul li a {
  color: var(--white);
}
.header .nav .deskmenu .langmenu ul li a.active {
  border: 1px solid var(--white);
  background:url(/images/common/call_icon.png) 10% 50% no-repeat;
  padding:8rem 15rem 8rem 35rem;
  font-weight: 700;
  border-radius: 100rem;
}
.header .nav .deskmenu .langmenu ul li a.active:hover{
  border: 1px solid #a58955;
  color:#a58955;
  background:url(/images/common/call_iconhover.png) 10% 50% no-repeat;
}
.header.fixed {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--box-shadow);
}
.header.fixed .nav {
  z-index: 2;
}
.header.fixed .nav .deskmenu .langmenu ul::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.header.fixed .nav .deskmenu .langmenu ul li a {
  color: var(--black);
}

.header.fixed .nav .deskmenu .langmenu ul li a.active {
  border: 1px solid var(--black);
  background:url(/images/common/call_iconblack.png) 10% 50% no-repeat;
  padding:8rem 15rem 8rem 35rem;
  font-weight: 700;
  border-radius: 100rem;
}
.header.fixed .nav .deskmenu .langmenu ul li a.active:hover{
  border: 1px solid #a58955;
  color:#a58955;
  background:url(/images/common/call_iconhover.png) 10% 50% no-repeat;
}

.header.fixed .logo {
  display: none;
}
.header.fixed .logo.scroll {
  display: block;
}
.header.fixed .nav-gnb .gnb .menu-link {
  color: var(--black);
}
.header.fixed .nav-gnb .gnb .menu-link:hover {
  color: var(--accent);
}
.header.fixed .nav-gnb .gnb .menu-link.active {
  color: var(--accent);
}
.header.fixed .nav-gnb .mmenu-btn span {
  background: var(--black);
}
.header.fixed .deskmenu-btn span {
  background: var(--black);
}

.header[type=fixed] {
  position: fixed;
}

.header[type=sticky] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.header[type=sticky].fixed {
  position: fixed;
  top: 0;
}

.header[type=scroll] {
  position: relative;
}

.footer {
  margin-top: auto;
  background: #161616;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .footer {
    height: auto;
  }
}
.footer .inr-narrow {
  display: flex;
  flex-direction: column;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-content {
    flex-direction: column-reverse;
  }
}
.footer-info img {
  width: 200px;
  height: auto;
}
.footer-info .ftext {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  color: #B8B8B8;
  margin-top: 40px;
  width: 70%;
  row-gap: 14px;
}
.footer-info .ftext li span {
  font-size: 16px;
}
.footer-info .ftext li span:first-child {
  font-weight: 600;
}
.footer-info .ftext li span:last-child:not(:empty) {
  margin-left: 10px;
}
.footer-info .fcopy {
  color: #B8B8B8;
  margin-top: 35px;
}
.footer-nav .fnav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-nav .fnav {
    flex-direction: row;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-nav .fnav li {
    display: flex;
    flex: 1 1 0;
  }
}
.footer-nav .fnav li a {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 12px 15px;
  min-width: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: all 0.4s;
}
.footer-nav .fnav li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .footer-nav .fnav li a {
    display: flex;
    width: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}

.mobilemenu {
  --header-height: 100px;
  position: absolute;
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  top: var(--header-height);
  left: 0;
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
}
.mobilemenu-content {
  background: var(--grey1);
  display: flex;
  flex-direction: column;
  width: 0;
  height: 100%;
  position: relative;
  margin-left: auto;
  transition: all 0.4s;
}
.mobilemenu-content.active {
  width: 70%;
}
.mobilemenu .mobile-menu .nav {
  display: flex;
  flex-direction: column;
}
.mobilemenu .mobile-menu .nav-link {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  font-size: var(--fs22);
  font-weight: 700;
  padding: 20px 20px;
  border-bottom: 1px solid var(--grey2);
}
.mobilemenu .mobile-menu .nav-link .icon {
  margin-left: auto;
  color: var(--grey5);
  transition: all 0.4s;
}
.mobilemenu .mobile-menu .nav-link .icon.open {
  transform: rotate(180deg);
  transition: all 0.4s;
}
.mobilemenu .mobile-menu .nav-link:hover {
  color: var(--accent);
}
.mobilemenu .mobile-menu .nav.active .nav-link {
  color: var(--accent);
}
.mobilemenu .mobile-menu .nav-submenu {
  display: flex;
  flex-direction: column;
  background: var(--grey2);
  overflow: hidden;
  display: none;
}
.mobilemenu .mobile-menu .nav-submenu-link {
  display: flex;
}
.mobilemenu .mobile-menu .nav-submenu-link .sub-link {
  font-size: var(--fs18);
  padding: 10px 30px;
  width: 100%;
}

.fullmenu {
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  background-color : rgb(0,0,0,0.9);
  background-position: right bottom;
  background-repeat: no-repeat;
  border-bottom:1px solid #000;

}
.fullmenu.active {
  -webkit-animation: slideIn 1s ease-in-out forwards;
  animation: slideIn 1s ease-in-out forwards;
}
.fullmenu-content {
  display: flex;
  justify-content: center;
  height: 100%;
  position: relative;
  width: 65%;
  opacity: 0;
  margin: 0 auto;
  padding-top: 165px;
}
.fullmenu-content.active {
  -webkit-animation: slideIn 1s ease-in-out forwards;
  animation: slideIn 1s ease-in-out forwards;
}
.fullmenu-content.close {
  -webkit-animation: slideOut 1s ease-in-out forwards;
  animation: slideOut 1s ease-in-out forwards;
}
.fullmenu-content .fmenu {
  display: flex;
}
.fullmenu-content .fmenu-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 100%;
  width: 230px;
  color: var(--white);

}
.fullmenu-content .fmenu-menu .nav-link {
  position: relative;
  font-weight: 700;
  font-size: clamp(24px, 34 / var(--inr) * 100vw, 34px);
  text-align: center;
  transition: all 0.4s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.fullmenu-content .fmenu-menu .nav-link:hover {
  color: var(--white);
}
.fullmenu-content .fmenu-submenu {
  display: flex;
  flex-direction: column;
  margin-top: 37px;
}
.fullmenu-content .fmenu-child {
  position: relative;
  display: flex;
  justify-content: center;
}
.fullmenu-content .fmenu-child-link {
  font-size: clamp(20px, 18 / var(--inr) * 100vw, 18px);
  padding: 0.36em 20px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  color: #efd3b3;
  transition: all 0.4s;
}
.fullmenu-content .fmenu-child-link:hover {
  color: var(--white);
}
.fullmenu-close {
  display: flex;
  background: var(--grey5);
  width: 50px;
  height: 50px;
  position: absolute;
  right: -0px;
  top: 35px;
  cursor: pointer;
  flex-direction: column;
  transition: all 0.4s;
}
.fullmenu-close:hover {
  background: var(--accent);
}
.fullmenu-close span {
  height: 1px;
  width: 80%;
  background: var(--white);
}
.fullmenu-close span:first-child {
  transform: rotate(45deg) translate(21px, 14px);
  transition: all 0.4s;
}
.fullmenu-close span:nth-child(2) {
  opacity: 0;
  transition: all 0.4s;
}
.fullmenu-close span:last-child {
  transform: rotate(-45deg) translate(-12px, 19px);
  transition: all 0.4s;
}
.fullmenu .inr {
  position: relative;
}

.quickmenu {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 22px;
  bottom: 80px;
  z-index: 30;
}
.quickmenu ul li a b { display:block; text-align:center; margin-top:10px; color:#bd8f5c;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .quickmenu {
    bottom: 1%;
    right: 1.5%;
  }
}
.quickmenu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quickmenu ul li a img {
  -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .quickmenu ul li a img {
    width: 60px;
    height: auto;
  }
}

.board .inr {
  display: nene;
  align-items: unset;
  line-height: unset;
  width: unset;
  max-width: unset;
  margin: unset;
}

@-webkit-keyframes slideIn {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes slideOut {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
}
@keyframes slideOut {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
}
@-webkit-keyframes growCircle {
  0% {
    -webkit-clip-path: circle(10% at 0% 50%);
    clip-path: circle(10% at 0% 50%);
    opacity: 0;
  }
  50% {
    -webkit-clip-path: circle(60% at 0% 50%);
    clip-path: circle(60% at 0% 50%);
    opacity: 1;
  }
  80% {
    -webkit-clip-path: circle(65% at 0% 50%);
    clip-path: circle(65% at 0% 50%);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: circle(70% at 0% 50%);
    clip-path: circle(70% at 0% 50%);
    opacity: 0;
  }
}
@keyframes growCircle {
  0% {
    -webkit-clip-path: circle(10% at 0% 50%);
    clip-path: circle(10% at 0% 50%);
    opacity: 0;
  }
  50% {
    -webkit-clip-path: circle(60% at 0% 50%);
    clip-path: circle(60% at 0% 50%);
    opacity: 1;
  }
  80% {
    -webkit-clip-path: circle(65% at 0% 50%);
    clip-path: circle(65% at 0% 50%);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: circle(70% at 0% 50%);
    clip-path: circle(70% at 0% 50%);
    opacity: 0;
  }
}
.isflex {
  display: flex;
}

.g10 {
  gap: 5px;
}

.data-spam .inr {
  width: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: inherit;
}

.designSelect select[name=cate] {
  width: 100% !important;
}

@-webkit-keyframes wx {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes wx {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}
.fp-tableCell .inr, .fp-tableCell .inr-full, .fp-tableCell .inr-narrow {
  height: 100%;
}

/*# sourceMappingURL=layout.css.map */
