@charset "UTF-8";

html,
body {
  height: 100%;
}

body.fixed {
  overflow-y: hidden;
}

.main {
  width: 100%;
  height: 100%;
  padding-top: 80px;
}

#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 338px;
}

.container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 101;
  background-color: #fff;
  box-shadow: 0 4px 10px 0 #0000001a;
  transition: 0.35s;
}
.header__inner {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header__inner .logo {
  width: 142px;
  height: auto;
}
.header__inner .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__inner .nav_menu {
  display: flex;
  gap: 40px;
}
.header__inner .nav_menu li a {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
}
.header__inner .nav_menu li.active a {
  color: #0070c0;
}
/* Footer */
.footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -338px;
  height: 338px;
  transform: translateY(-100%);
  background-color: #333333;
}
.footer__inner {
  max-width: 1640px;
  padding: 40px 20px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer__inner .left img {
  width: 170.4px;
  margin-bottom: 24px;
  object-fit: contain;
}

.footer__inner .left .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__inner .left .text p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
}
.footer__inner .left .text .line {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer__inner .left .text .line p:first-child::after {
  content: "";
  height: 12px;
  width: 1px;
  background: #fff;
  opacity: 0.5;
  display: inline-block;
  margin-left: 8px;
}
.footer__inner .left .text span {
  color: #fff;
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.footer_menu {
  display: flex;
  gap: 40px;
  text-align: center;
}

.footer_menu li h1 {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.footer_menu .footer_sub_menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_menu .footer_sub_menu li {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}

aside.mo_sidebar {
  visibility: hidden;
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 900;
}
aside.mo_sidebar.open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.2);
}
.sidebar__inner {
  position: absolute;
  right: -100%;
  top: 0;
  width: 85%;
  height: 100%;
  padding: 40px 20px;
  transition: 0.35s;
  background-color: #fff;
}
aside.mo_sidebar.open .sidebar__inner {
  right: 0;
}
.sidebar__gnb {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  margin-bottom: 40px;
}

.sidebar__gnb li {
  width: 100%;
}
.sidebar__gnb li a {
  padding: 8px 16px;
  display: inline-block;
  border-radius: 8px;
  color: #505050;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  border-radius: 8px;
  width: 100%;
}
.sidebar__gnb li.active a {
  background: #f1f1f5;
  font-weight: 600;
  color: #111;
}
.btn_mo_menu {
  display: none;
}
/* Pad & Mobile */
@media screen and (max-width: 1200px) {
  .footer_menu {
    display: none;
  }
}
/* Mobile */
@media screen and (max-width: 768px) {
  .header .nav_menu {
    display: none;
  }
  .btn_mo_menu {
    background: url(../_img/icon/ham_btn.svg) no-repeat center center / contain;
    width: 24px;
    height: 24px;
    display: block;
  }
  .footer {
    height: 400px;
    bottom: -400px;
  }
  #wrap {
    padding-bottom: 400px;
  }
}
