body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.58;
  min-width: 320px;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
#wrap {
  margin: 0 auto;
}

#header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
}

#header .header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--layout-padding-horizontal);
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}
#header .header_wrap .right_side {
  flex: 0 0 auto;
}
#header .logo_wrap .logo {
  height: 40px;
}

#header .header_nav_inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3em;
}
#header .header_nav {
  height: 100%;
}

#header .header_nav_list {
  display: flex;
  height: 100%;
  font-size: 16px;
}

#header .header_nav_list .nav_item {
  height: 100%;
}
#header .header_nav_list .link_text {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
  color: #fff;
  padding: 0 1.6em;
  transition: var(--common-transition);
}
#header .header_nav_list .nav_item.active .link_text,
#header .header_nav_list .nav_item:hover .link_text {
  color: var(--color-theme-purple-light);
}
#header .btn_apply .icn_box.icn_apply {
  width: 1.4em;
  height: 1.4em;
  margin-top: 0.15em;
  margin-right: 0.4em;
  background-image: url("../img/icon/icn_apply.svg");
}

#header .btn_nav_toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1101;
  flex-direction: column;
  gap: 6px;
}

#header .nav_bar {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

#header .btn_nav_toggle.active .nav_bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#header .btn_nav_toggle.active .nav_bar:nth-child(2) {
  opacity: 0;
}

#header .btn_nav_toggle.active .nav_bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#right_nav {
  position: fixed;
  right: 0;
  top: var(--header-height);
  display: none;
  width: 100%;
  height: calc(100% - var(--header-height));
  backdrop-filter: blur(10px);
}

#right_nav .right_nav_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.5em;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 1.5em;
  background-color: rgba(0, 0, 0, 0.8);
}
#right_nav .right_nav_wrap .right_nav_list {
  width: 100%;
  flex-direction: column;
  gap: 1.5em;
}
#right_nav .right_nav_wrap .link_text {
  display: block;
  padding: 0.6em 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--common-transition);
}

#right_nav .right_nav_wrap .link_text:hover {
  color: #fff;
}
#footer {
  width: 100%;
  padding: 40px var(--layout-padding-horizontal);
  line-height: 1.8;
  box-sizing: border-box;
  background-color: #121212;
}

#footer .company_title {
  font-size: 18px;
  margin-bottom: 1em;
  font-weight: bold;
}

#footer .copyright {
  margin-top: 2em;
  color: #666666;
  font-size: 14px;
}

@media screen and (min-width: 1025px) {
  #right_nav {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  #header .logo_wrap .logo {
    height: 30px;
  }
  #header .header_nav_list {
    font-size: 14px;
  }
  #header .header_nav_inner {
    gap: 1em;
  }
  #header .header_nav_list .link_text {
    padding: 0 1.2em;
  }
}

@media screen and (max-width: 768px) {
  #header .header_nav_inner {
    display: none;
  }
  #footer {
    font-size: 12px;
  }
  #footer .company_title {
    font-size: 16px;
  }
  #header .btn_nav_toggle {
    display: flex;
  }
}
