.them {
  color: #2079c5;
}

.red {
  color: #ff2727;
}

.light {
  color: #666;
}

.fwb {
  font-weight: bold;
}

#contentsWrap {
  padding-top: 0;
}
@media (max-width: 1024px) {
  #contentsWrap {
    padding-top: 50px;
  }
}

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
  z-index: 100;
  background: #fff;
}

.m-headWrap {
  display: none;
}

header .headWrap {
  height: 100px;
  display: flex;
  align-items: center;
  width: 95%;
  max-width: 1720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
header .headWrap h1 a {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 65px;
  background: url("/img/logo.png") no-repeat 0 0;
}
@media (max-width: 1024px) {
  header .headWrap h1 a {
    height: 50px;
  }
}
header .headWrap .gnb {
  display: flex;
  margin-left: auto;
}
header .headWrap .gnb > li {
  position: relative;
}
header .headWrap .gnb > li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .headWrap .gnb > li h2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 30px;
  font-size: 18px;
  height: 100px;
  position: relative;
}
header .headWrap .gnb > li h2 a:before {
  content: "";
  display: block;
  width: 0%;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  background: #2079c5;
  transition: 0.2s;
}
header .headWrap .gnb > li h2 a:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  inset: 0;
  background: #2079c5;
  opacity: 0.05;
  z-index: -1;
  transition: transform 0.3s ease;
  transform-origin: bottom right;
  transform: scaleX(0);
}
header .headWrap .gnb > li h2 a:hover {
  color: #2079c5;
}
header .headWrap .gnb > li h2 a:hover:before {
  width: 100%;
}
header .headWrap .gnb > li h2 a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .headWrap .gnb > li ul h3 > a:hover {
  color: #2079c5;
}
header .headWrap .side {
  font-size: 1rem;
  margin-left: 20px;
  display: flex;
}
header .headWrap .side li {
  position: relative;
}
header .headWrap .side li:not(:last-child) {
  margin-right: 30px;
}
header .headWrap .side li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #ddd;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}
header .headWrap .side li a:hover {
  color: #2079c5;
}
header .headWrap .hamBtn {
  margin-left: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 40px;
  height: 40px;
  background-color: #2079c5;
  border-radius: 50%;
  transition: 0.2s;
}
@media (max-width: 1024px) {
  header .headWrap .hamBtn {
    margin-left: auto;
  }
}
header .headWrap .hamBtn span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  margin: 2.5px 0;
  position: relative;
}
header .headWrap .hamBtn span em {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
header .headWrap .hamBtn.on {
  transform: rotate(45deg);
}
header .headWrap .hamBtn.on span em {
  transform: rotate(90deg);
}
header .headWrap .hamBtn.on span:first-of-type, header .headWrap .hamBtn.on span:last-of-type {
  transform: scaleX(0);
}

header.each .headWrap .gnb > li {
  position: relative;
}
header.each .headWrap .gnb > li:hover ul {
  max-height: 500px;
  border: 1px solid #ddd;
  border-top: 0;
}
header.each .headWrap .gnb > li ul {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  max-height: 0;
  transition: 0.3s;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
}
header.each .headWrap .gnb > li ul li:first-of-type h3 > a {
  padding-top: 20px;
}
header.each .headWrap .gnb > li ul li:last-of-type h3 > a {
  padding-bottom: 20px;
}
header.each .headWrap .gnb > li ul li h3 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
}

@media (min-width: 1024px) {
  header.drop {
    border: 0;
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  header.drop:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: 100px;
  }
  header.drop .headWrap {
    align-items: flex-start;
    transition: 0.6s;
    transition-timing-function: linear;
    overflow: hidden;
    height: auto;
    max-height: 100px;
  }
  header.drop .headWrap h1 {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.drop .headWrap .gnb > li {
    position: relative;
  }
  header.drop .headWrap .gnb > li ul {
    display: block;
    width: 100%;
    text-align: center;
  }
  header.drop .headWrap .gnb > li ul li:first-of-type h3 > a {
    padding-top: 20px;
  }
  header.drop .headWrap .gnb > li ul li:last-of-type h3 > a {
    padding-bottom: 20px;
  }
  header.drop .headWrap .gnb > li ul li h3 > a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
  }
  header.drop .headWrap .side {
    height: 100px;
    align-items: center;
  }
  header.drop .headWrap:hover {
    max-height: 500px;
  }
}

@media (min-width: 1024px) {
  header.transparent {
    transition: 0.6s;
    background-color: transparent;
  }
  header.transparent .headWrap h1 a img {
    display: block;
  }
  header.transparent .headWrap h1 a img.transparent {
    display: none;
  }
  header.transparent .headWrap .gnb > li h2 a {
    color: #8e8e8e;
  }
  header.transparent .headWrap .side li a {
    color: #8e8e8e;
  }
  header.transparent .headWrap .side li a:hover {
    color: #2079c5;
  }
  header.transparent:hover, header.transparent.wheel {
    background-color: rgba(255, 255, 255, 0.65);
  }
  header.transparent:hover h1 a img, header.transparent.wheel h1 a img {
    display: none;
  }
  header.transparent:hover h1 a img.transparent, header.transparent.wheel h1 a img.transparent {
    display: block;
  }
  header.transparent:hover h2 > a, header.transparent.wheel h2 > a {
    color: #232323;
  }
  header.transparent:hover .side li a, header.transparent.wheel .side li a {
    color: #232323;
  }
}

@media (max-width: 1024px) {
  header .headWrap {
    height: 50px !important;
  }
  header .headWrap h1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .headWrap h1 a {
    width: 110px;
    background-size: contain;
    background-position: 0 center;
  }
  header .headWrap .gnb {
    display: none !important;
  }
  header .headWrap .side {
    display: none !important;
  }
  header .headWrap .hamBtn {
    display: flex !important;
  }
  header .m-headWrap {
    position: fixed;
    display: block;
    right: -120%;
    transition: 0.5s;
    top: 0;
    padding-top: 50px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    box-sizing: border-box;
    background-color: #fff;
  }
  header .m-headWrap.on {
    right: 0;
  }
  header .m-headWrap .side {
    display: flex;
    font-size: 12px;
    justify-content: center;
    background-color: #232323;
  }
  header .m-headWrap .side li {
    width: 25%;
  }
  header .m-headWrap .side li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #fff;
  }
  header .m-headWrap .gnb > li h2 > a {
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 55px;
    box-sizing: border-box;
    font-size: 16px;
    background: url("/img/ui/fold.png") no-repeat 95% 50%;
  }
  header .m-headWrap .gnb > li h2 > a.on {
    background: url("/img/ui/foldup.png") no-repeat 95% 50%;
  }
  header .m-headWrap .gnb > li ul {
    overflow: hidden;
    display: none;
  }
  header .m-headWrap .gnb > li ul li h3 > a {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: #444;
    background-color: #f2f4f8;
    padding: 12px 0;
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .blackbox {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    pointer-events: none;
    transition: 0.4s;
    opacity: 0;
  }
  .blackbox.on {
    opacity: 1;
  }
}
footer .wrap {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}
footer .foot_head {
  background-color: #141414;
}
footer .foot_head .wrap {
  display: flex;
  justify-content: space-between;
}
footer .foot_head .wrap ul.foot_nav {
  display: flex;
}
footer .foot_head .wrap ul.foot_nav li {
  position: relative;
}
footer .foot_head .wrap ul.foot_nav li:not(:last-child) {
  margin-right: 70px;
}
footer .foot_head .wrap ul.foot_nav li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}
footer .foot_head .wrap ul.foot_nav li a {
  height: 60px;
  display: flex;
  color: #fff;
  opacity: 0.5;
  align-items: center;
}
footer .foot_head .wrap .topBtn {
  background-color: #2079c5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}
footer .foot_body {
  padding: 65px 0;
}
footer .foot_body .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .foot_body .wrap .left .foot_logo {
  display: block;
  margin-bottom: 20px;
}
footer .foot_body .wrap .left .ent_infor {
  font-size: 14px;
  color: #666;
}
footer .foot_body .wrap .left .ent_infor ul {
  display: flex;
  margin-bottom: 12px;
}
footer .foot_body .wrap .left .ent_infor ul li:not(:last-child) {
  margin-right: 20px;
}
footer .foot_body .wrap .left .ent_infor ul li b {
  margin-right: 5px;
  color: #232323;
}
footer .foot_body .wrap .left .ent_infor .ent_infor2 {
  line-height: 1.4;
}
footer .foot_body .wrap .right .tel {
  text-align: right;
}
footer .foot_body .wrap .right .tel span {
  display: block;
  margin-bottom: 10px;
}
footer .foot_body .wrap .right .tel b {
  display: block;
  font-size: 32px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

@media (max-width: 768px) {
  footer {
    position: relative;
  }
  footer .foot_head .wrap ul.foot_nav li {
    position: relative;
  }
  footer .foot_head .wrap ul.foot_nav li:not(:last-child) {
    margin-right: 30px;
  }
  footer .foot_head .wrap ul.foot_nav li:not(:last-child):after {
    right: -15px;
  }
  footer .foot_head .wrap .topBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) and (max-width: 400px) {
  footer .foot_head .wrap ul.foot_nav {
    width: 100%;
    flex-wrap: wrap;
  }
  footer .foot_head .wrap ul.foot_nav li {
    position: relative;
    width: 33.333%;
  }
  footer .foot_head .wrap ul.foot_nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
  }
  footer .foot_head .wrap ul.foot_nav li:not(:last-child) {
    margin-right: 0;
  }
  footer .foot_head .wrap ul.foot_nav li:not(:last-child):after {
    display: none;
  }
  footer .foot_head .wrap .topBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) {
  footer .foot_body {
    padding: 35px 0;
  }
  footer .foot_body .wrap {
    flex-direction: column-reverse;
  }
  footer .foot_body .wrap .left .ent_infor ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  footer .foot_body .wrap .left .ent_infor ul li {
    margin-bottom: 6px;
  }
  footer .foot_body .wrap .left .ent_infor ul li:not(:last-child) {
    margin-right: 0;
  }
  footer .foot_body .wrap .left .ent_infor ul li b {
    margin-right: 5px;
    color: #232323;
  }
  footer .foot_body .wrap .left .ent_infor .ent_infor2 {
    line-height: 1.4;
  }
  footer .foot_body .wrap .right {
    margin-bottom: 20px;
  }
  footer .foot_body .wrap .right .tel {
    text-align: left;
  }
  footer .foot_body .wrap .right .tel span {
    font-weight: bold;
  }
  footer .foot_body .wrap .right .tel b {
    display: block;
    font-size: 32px;
    font-weight: bold;
    font-family: "Lato", sans-serif;
  }
}/*# sourceMappingURL=nav.css.map */