@charset "UTF-8";

:root {
  --theme-color: #c8a97e;
  --theme-color-dark: #a6865a;
  --box-shadow: 0px 4px 24px rgba(0, 0, 0, .07);
  --box-shadow-hover: 0px 8px 32px rgba(0, 0, 0, .13);
  --bg-color: #f7f5f2;
  --content-bg-color: #fff;
  --transition-all: all 0.24s cubic-bezier(.4,0,.2,1);
  --bg-footer-color: #1a1b22;
  --footer-text-color: #8a8f9a;
  --footer-border-color: rgba(255,255,255,.08);
  --radius: 0.25rem;
  --radius2x: 0.5rem;
}

html,
body,
table,
th,
td,
button,
select,
input,
textarea {
  font-size: 16px;
}

@media (min-width: 1024px) {
  html,
body,
table,
th,
td,
button,
select,
input,
textarea {
    font-size: 14px;
  }

  body.cursor {
    cursor: none;
  }
}
::-webkit-scrollbar {
  display: none;
}

.animated {
  opacity: 0;
  animation-delay: 0.1s;
}

body {
  color: var(--text-strong-color);
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

.xet-layout {
  overflow: hidden;
  background-color: var(--bg-color);
  transition: var(--transition-all);
}
.xet-layout a:not(.btn) {
  color: var(--text-strong-color);
}
.xet-layout .flex-container {
  display: flex;
}
.xet-layout .xet-btn.bg-theme, .xet-layout .xet-btn.btn-theme {
  background-color: var(--theme-color) !important;
  color: #fff !important;
}
.xet-layout .xet-btn.text-theme {
  color: var(--theme-color) !important;
}
@media (min-width: 1024px) {
  .xet-layout .xet-btn:not(.btn-text):hover {
    border-color: var(--theme-color) !important;
    background-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .xet-layout .xet-btn:not(.btn-text):hover svg {
    fill: #fff !important;
  }
  .xet-layout .xet-btn.btn-text:hover {
    color: var(--theme-color) !important;
  }
  .xet-layout .xet-btn.btn-text:hover svg {
    fill: var(--theme-color) !important;
  }
}
.xet-layout .layout__container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh);
}
.xet-layout .layout__body-page-top {
  position: fixed;
  width: 100%;
  height: calc(100vh);
  padding-top: 6rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #1a1d2e;
  color: #fff;
}
.xet-layout .layout__body-page-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.xet-layout .layout__body-page-top .page-top__title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.xet-layout .layout__body-content {
  z-index: 1;
  margin-top: 11.5rem;
  padding: var(--gap) 0;
  flex: 1 0 auto;
  border-radius: 0rem 0rem 0 0;
  background-color: var(--content-bg-color);
  transition: var(--transition-all);
  box-shadow: var(--box-shadow);
}
.xet-layout .layout__body-content .page-path {
  display: none;
  margin-bottom: var(--gap);
}
.xet-layout .layout__body-content .page-path ul li {
  position: relative;
  float: left;
  padding: 0 20px 0 0;
  margin: 0 0 0 10px;
}
.xet-layout .layout__body-content .page-path ul li::after {
  content: "";
  font-family: xeicon !important;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-base-color);
}
.xet-layout .layout__body-content .page-path ul li:first-child {
  margin-left: 0;
}
.xet-layout .layout__body-content .page-path ul li:last-child {
  padding-right: 0;
}
.xet-layout .layout__body-content .page-path ul li:last-child::after {
  display: none;
}
.xet-layout .layout__body-content .page-path ul li a {
  display: flex;
  align-items: center;
  height: 24px;
  text-transform: uppercase;
  color: var(--text-base-color);
}
.xet-layout .layout__body-content .lnb {
  position: relative;
}
.xet-layout .layout__body-content .lnb .lnb__list {
  text-align: center;
  margin-bottom: var(--gap2x);
  white-space: nowrap;
  overflow-x: auto;
}
.xet-layout .layout__body-content .lnb .lnb__list.is-active {
  white-space: normal;
  text-align: left;
}
.xet-layout .layout__body-content .lnb .lnb__list a {
  display: inline-flex;
  align-items: center;
  height: var(--button-height);
  font-size: 1rem;
  margin-right: 1rem;
  border-bottom: 1px solid transparent;
}
.xet-layout .layout__body-content .lnb .lnb__list a.is-active {
  font-weight: 700;
  color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}
.xet-layout .layout__body-content .lnb .lnb__list .lnb__list-btn-open {
  z-index: 3;
  display: none;
  position: absolute;
  top: 0;
  right: -2px;
  width: var(--button-height);
  padding: 0;
  border-radius: 40px;
  background-color: var(--content-bg-color);
  border-color: var(--btn-border-color);
}
.xet-layout .layout__body-content .lnb .lnb__list .lnb__list-btn-open.is-active svg {
  transform: rotate(180deg);
}
.xet-layout .layout__body-content .lnb-child {
  text-align: center;
  margin-bottom: var(--gap);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.xet-layout .layout__body-content .lnb-child a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5rem;
  height: 3.25rem;
  font-size: 1rem;
  margin-right: -1px;
  margin-bottom: -1px;
  border: 1px solid var(--border-color);
}
.xet-layout .layout__body-content .lnb-child a.is-active {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #eaedf2 !important;
}
.xet-layout .layout__body-content .xet-content .xet-layout__article .article-title .h2 {
  color: var(--text-strong-color);
}
.xet-layout .layout__body-content .xet-content .xet-layout__article .article-customer {
  color: var(--text-base-color);
}
.xet-layout .layout__body-content .xet-content .xet-layout__article .article-customer .h4 {
  color: var(--text-strong-color);
}
.xet-layout .layout__body-content .xet-content .xet-layout__article .article-customer div > strong {
  color: var(--text-strong-color);
}
.xet-layout .layout__body-content .xet-content .btnArea {
  padding: 0 !important;
}
.xet-layout .layout__footer {
  z-index: 1;
  padding: 3rem 0 2rem;
  font-size: 0.8125rem;
  color: var(--footer-text-color, #8a8f9a);
  line-height: 1.8;
  transition: var(--transition-all);
  background-color: var(--bg-footer-color, #1a1b22);
}
.xet-layout .layout__footer > div > div + div {
  margin-top: 1.25rem;
}
.xet-layout .layout__footer .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--footer-border-color, rgba(255,255,255,.08));
}
.xet-layout .layout__footer .h3 {
  order: 2;
  color: rgba(255,255,255,.75);
}
.xet-layout .layout__footer .h3 > img {
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: .8;
  max-height: 36px;
}
  display: none;
}
.xet-layout .layout__footer .tel {
  order: 1;
}
.xet-layout .layout__footer .tel > span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--theme-color) !important;
}
.xet-layout .layout__footer .tel > span > i {
  font-size: 1.3rem;
  margin-right: 6px;
  opacity: .7;
}
.xet-layout .layout__footer .tel > span > strong {
  display: block;
  margin-left: 4px;
  font-weight: 700;
}
.xet-layout .layout__footer ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
}
.xet-layout .layout__footer ul li {
  white-space: nowrap;
  font-size: 0.8rem;
}
.xet-layout .layout__footer ul li a {
  display: inline-flex;
  align-items: center;
  color: var(--footer-text-color, #8a8f9a);
  transition: color .2s;
}
.xet-layout .layout__footer ul li a:hover {
  color: var(--theme-color);
}
.xet-layout .layout__footer ul li strong {
  display: inline-block;
  margin-right: 5px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}
.xet-layout .layout__footer p {
  color: var(--footer-text-color, #8a8f9a);
}
.xet-layout .layout__footer .mg-t1rem {
  margin-top: 1rem;
}

.xet-layout.sub.is-scroll .layout__body-content {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.xet-layout.sub.is-scroll .layout__footer {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.xet-layout.member-act .layout__body-content {
  margin: 0 !important;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.xet-layout.member-act .layout__footer {
  margin: 0 !important;
}

.xet-layout-mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}
.xet-layout-mouse-cursor.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme-color);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.xet-layout-mouse-cursor.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: var(--theme-color);
  opacity: 0.3;
}
.xet-layout-mouse-cursor.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--theme-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}
.xet-layout-mouse-cursor.cursor-outer.cursor-hover {
  opacity: 0;
}

#xet-layout-scrolltop-btn {
  position: fixed;
  bottom: 1rem;
  right: 4px;
  width: var(--button-height);
  height: var(--button-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  border: 0 solid var(--btn-border-color);
  color: #eaedf2;
  border-radius: 10%;
}
#xet-layout-scrolltop-btn > i {
  font-size: 1rem;
}

body.quickbutton .xet-layout {
  padding-bottom: 4rem;
}
body.quickbutton #xet-layout-scrolltop-btn {
  bottom: 4.5rem;
}


@media (min-width: 768px) {
  .xet-layout .layout__body-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .xet-layout.sub .layout__footer {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 1024px) {
  .xet-layout .layout__body-page-top {
    padding-top: 10rem;
  }
  .xet-layout .layout__body-page-top .page-top__title {
    font-size: 2rem;
  }
  .xet-layout .layout__body-content {
    margin-top: 18rem;
    margin-left: 20px;
    margin-right: 20px;
    padding: var(--gap2x) 0;
  }
  .xet-layout .layout__body-content .page-path {
    display: block;
    margin-bottom: var(--gap2x);
  }
  .xet-layout .layout__body-content .lnb .lnb__list {
    margin-bottom: var(--gap2x);
  }
  .xet-layout .layout__body-content .lnb .lnb__list a {
    font-size: 1.2rem;
    margin: 0 1rem;
  }
  .xet-layout .layout__body-content .lnb-child {
    margin-bottom: var(--gap2x);
  }
  .xet-layout .layout__footer {
    padding: var(--gap2x) 0;
    font-size: 1rem;
  }
  .xet-layout .layout__footer .footer-logo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .xet-layout .layout__footer .footer-logo .h3 {
    order: 1;
  }
  .xet-layout .layout__footer .footer-logo .tel {
    order: 2;
  }

  .xet-layout.sub .layout__footer {
    margin-left: 20px;
    margin-right: 20px;
  }

  .xet-layout.member-act .layout__body-content {
    padding-top: 10rem;
  }

  #xet-layout-scrolltop-btn {
    right: 1rem;
  }

  body.quickbutton .xet-layout {
    padding-bottom: 0;
  }
  body.quickbutton #xet-layout-scrolltop-btn {
    bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .xet-layout .layout__body-page-top {
    padding-top: 12rem;
  }
  .xet-layout .layout__body-page-top .page-top__title {
    font-size: 3rem;
  }
  .xet-layout .layout__body-content {
    margin-top: 24rem;
    margin-left: 24px;
    margin-right: 24px;
    padding: var(--gap3x) 0;
  }
  .xet-layout .layout__body-content .page-path {
    margin-bottom: var(--gap3x);
  }
  .xet-layout .layout__body-content .lnb {
    margin-bottom: var(--gap3x);
  }
  .xet-layout .layout__body-content .lnb-child {
    margin-bottom: var(--gap3x);
  }
  .xet-layout .layout__footer {
    padding: var(--gap3x) 0;
  }
  .xet-layout .layout__footer > div > div + div {
    margin-top: var(--gap2x);
  }
  .xet-layout.sub .layout__footer {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 1440px) {
  .xet-layout .layout__body-content {
    margin-left: 30px;
    margin-right: 30px;
    padding: var(--gap4x) 0;
  }

  .xet-layout.sub .layout__footer {
    margin-left: 30px;
    margin-right: 30px;
  }
}
/* ============================================================
   Footer 추가 블록
   ============================================================ */
.xet-layout .layout__footer .footer-info {
  margin-top: 1.25rem;
}
.xet-layout .layout__footer .footer-disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--footer-border-color, rgba(255,255,255,.06));
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(255,255,255,.22);
}
.xet-layout .layout__footer .footer-copy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .03em;
}
