@charset "UTF-8";
.layout {
  max-width: 968px;
  margin: auto;
  padding: 0 24px;
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-thumb {
  background: #666;
}

*::-webkit-scrollbar-track {
  background: #ddd;
}

html, body {
  word-break: keep-all;
  font-family: "Poppins";
  font-size: 16px;
  line-height: 1.4;
  background-color: #251819;
  color: #F3F2F2;
}
html.light, body.light {
  background-color: #fff;
  color: #282525;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* 이미지 선택 방지 */
  -webkit-user-drag: none;
}

#header .logo, #footer .logo {
  position: relative;
  font-family: "Poppins";
  font-size: 18px;
}
#header .logo > a, #footer .logo > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  #header .logo > a, #footer .logo > a {
    font-size: 16px;
  }
}
#header .logo > a::before, #footer .logo > a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/images/logo_img_3x.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: all 0.2s;
  background-color: transparent;
}
#header.fixed {
  background-color: #2F2223;
}
body.light #header.fixed {
  background-color: #fff;
}
#header .light-mode {
  width: 20px;
  height: 20px;
  background-image: url(/images/bx-moon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}
#header .light-mode.active {
  background-image: url(/images/bx-moon-light.svg);
}
body.light #header .light-mode {
  background-image: url(/images/bx-moon-light.svg);
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
@media screen and (min-width: 769px) {
  #header .header-inner {
    height: 72px;
  }
}
#header .pc-nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 769px) {
  #header .pc-nav {
    display: none;
  }
}
#header .pc-nav .nav-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
}
#header .pc-nav .nav-inner::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  background-color: #f8f8f8;
  transition: height 0.4s;
}
#header .pc-nav .nav-inner .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  font-size: 16px;
}
#header .pc-nav .nav-inner .nav-list > a {
  color: #fff;
  transition: color 0.4s;
}
body.light #header .pc-nav .nav-inner .nav-list > a {
  color: #282525;
}
#header .pc-nav .nav-inner .nav-list:hover > a, #header .pc-nav .nav-inner .nav-list.active > a {
  color: #999;
}
body.light #header .pc-nav .nav-inner .nav-list:hover > a, body.light #header .pc-nav .nav-inner .nav-list.active > a {
  color: #DC3845;
}
#header .mobile-menu-wrap {
  display: none;
  align-items: center;
  height: 100%;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #header .mobile-menu-wrap {
    display: flex;
    gap: 16px;
  }
}
#header .mobile-menu-wrap.open .menu-btn {
  width: 24px;
  height: 24px;
  background-image: url(/images/bx-x.svg);
}
body.light #header .mobile-menu-wrap.open .menu-btn {
  background-image: url(/images/bx-x-light.svg);
}
#header .mobile-menu-wrap .menu-btn {
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url(/images/bx-grid-alt.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
body.light #header .mobile-menu-wrap .menu-btn {
  background-image: url(/images/bx-grid-alt-light.svg);
}
#header .mobile-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  #header .mobile-nav.open {
    display: block;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.11), 0 10px 10px rgba(0, 0, 0, 0.11);
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .mobile-nav.open {
    top: 72px;
  }
}
@media screen and (max-width: 768px) {
  #header .mobile-nav.open .nav-inner {
    padding: 52px 20px;
    border-radius: 0 0 24px 24px;
    background: #2F2223;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .mobile-nav.open .nav-inner {
    padding: 80px 140px;
  }
}
@media screen and (max-width: 768px) {
  #header .mobile-nav.open .nav-inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 54px;
    background-image: url(/images/nav_bg_1_3x.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  body.light #header .mobile-nav.open .nav-inner {
    background-color: #fff;
  }
  #header .mobile-nav.open .nav-inner .nav-txt {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .mobile-nav.open .nav-inner .nav-txt {
    min-width: 240px;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  #header .mobile-nav.open .nav-inner .nav-txt.active + .sub-nav-inner {
    max-height: 500px;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .mobile-nav.open .nav-inner .nav-txt.active + .sub-nav-inner {
    max-height: unset;
  }
}
@media screen and (max-width: 768px) {
  #header .mobile-nav.open .nav-inner .nav-txt + .sub-nav-inner {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .mobile-nav.open .nav-inner .nav-txt + .sub-nav-inner {
    max-height: unset;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #header .mobile-nav.open .nav-inner .nav-list {
    display: flex;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (max-width: 768px) {
  #header .mobile-nav.open .nav-inner .sub-nav-list {
    padding: 20px;
  }
  #header .mobile-nav.open .nav-inner .sub-nav-list.active {
    color: #45bc2d;
  }
}

#footer {
  position: relative;
  background-color: #251819;
  padding: 50px 0 32px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #footer {
    padding: 72px 20px 48px;
  }
}
body.light #footer {
  background-color: #fff;
}
#footer .footer-inner {
  position: relative;
}
#footer .footer-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 201px;
  right: 31px;
  width: 100px;
  height: 110px;
  background-image: url(/images/footer1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  #footer .footer-inner::before {
    left: 12px;
    top: unset;
    bottom: 9px;
    width: 120px;
    height: 132px;
  }
}
#footer .footer-inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 159px;
  right: -63px;
  width: 100px;
  height: 118px;
  background-image: url(/images/footer2.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  #footer .footer-inner::after {
    top: 57px;
    right: -134px;
    width: 120px;
    height: 141px;
  }
}
#footer .logo {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  #footer .logo {
    margin-bottom: 24px;
  }
}
#footer .footer-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #footer .footer-nav {
    flex-direction: row;
  }
}
@media screen and (min-width: 1921px) {
  #footer .footer-nav {
    flex-direction: row;
  }
}
#footer .footer-nav .footer-logo-wrap {
  margin-bottom: 41px;
}
@media screen and (min-width: 769px) {
  #footer .footer-nav .footer-logo-wrap {
    width: 150px;
    margin-bottom: 0;
  }
}
#footer .footer-nav .footer-logo-wrap .logo-description {
  max-width: 133px;
  font-size: 13px;
  color: #C2BDBD;
}
@media screen and (min-width: 769px) {
  #footer .footer-nav .footer-logo-wrap .logo-description {
    max-width: 100%;
    font-size: 14px;
  }
}
body.light #footer .footer-nav .footer-logo-wrap .logo-description {
  color: #5D5656;
}
@media screen and (min-width: 769px) {
  #footer .footer-nav .footer-nav-wrap {
    width: 130px;
  }
}
#footer .footer-nav .footer-nav-wrap .footer-nav-title {
  margin-bottom: 16px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  #footer .footer-nav .footer-nav-wrap .footer-nav-title {
    margin-bottom: 24px;
    font-size: 20px;
  }
}
#footer .footer-nav .footer-nav-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .footer-nav .footer-nav-wrap ul li {
  font-size: 15px;
  color: #C2BDBD;
}
@media screen and (min-width: 769px) {
  #footer .footer-nav .footer-nav-wrap ul li {
    font-size: 16px;
  }
}
body.light #footer .footer-nav .footer-nav-wrap ul li {
  color: #5D5656;
}
#footer .copyright {
  text-align: center;
  margin-top: 80px;
  font-size: 14px;
  color: #918889;
}
@media screen and (min-width: 769px) {
  #footer .copyright {
    margin-top: 114px;
    font-size: 12px;
  }
}