#contentsWrap {
  padding-top: 80px;
}
@media (max-width: 1280px) {
  #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: 80px;
  display: flex;
  width: 95%;
  max-width: 1720px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
header .headWrap h1 a {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
header .headWrap h1 a img.transparent {
  display: none;
}
header .headWrap .gnb {
  display: flex;
}
header .headWrap .gnb > li {
  position: relative;
}
header .headWrap .gnb > li:not(:last-child):after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background-color: #eee;
  position: absolute;
  right: 0;
  top: 30px;
  transform: translate(50%, 0);
}
header .headWrap .gnb > li:hover h2 > a {
  color: #fff;
  background-color: #67c351;
  font-size: 1.25rem;
}
header .headWrap .gnb > li h2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 40px;
  height: 80px;
  position: relative;
  font-size: 1.125rem;
  color: #aaa;
  transition: 0.3s;
}
header .headWrap .gnb > li ul h3 > a:hover {
  color: #67c351;
}
header .headWrap .side {
  font-size: 0.875rem;
  border-radius: 20px;
  width: 140px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #19315b;
}
header .headWrap .side li {
  margin-left: 0;
}
header .headWrap .side li a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}
header .headWrap .side li a img {
  margin-right: 5px;
}
header .headWrap .side li a:hover {
  color: #67c351;
}
header .headWrap .hamBtn {
  height: 50px;
  width: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
  transition: 0.2s;
}
header .headWrap .hamBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #232323;
  margin: 2.5px 0;
  position: relative;
}
header .headWrap .hamBtn span em {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #232323;
}
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);
}

@media (min-width: 1280px) {
  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: 80px;
  }
  header.drop .headWrap {
    align-items: flex-start;
    transition: 0.6s;
    transition-timing-function: linear;
    overflow: hidden;
    height: auto;
    max-height: 80px;
  }
  header.drop .headWrap h1 {
    height: 80px;
    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;
    box-sizing: content-box;
  }
  header.drop .headWrap .gnb > li ul li:last-of-type h3 > a {
    padding-bottom: 20px;
    box-sizing: content-box;
  }
  header.drop .headWrap .gnb > li ul li h3 > a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    justify-content: flex-start;
    text-indent: 15px;
  }
  header.drop .headWrap .side {
    margin-top: 23px;
  }
  header.drop .headWrap:hover {
    max-height: 500px;
  }
}

@media (min-width: 1280px) {
  header.transparent {
    transition: 0.6s;
    background-color: transparent;
  }
  header.transparent h2 > a {
    color: #fff;
  }
  header.transparent .headWrap h1 a img {
    display: block;
  }
  header.transparent .headWrap h1 a img.transparent {
    display: none;
  }
  header.transparent .headWrap .side {
    font-size: 0.75rem;
    display: flex;
  }
  header.transparent .headWrap .side li {
    margin-left: 10px;
  }
  header.transparent .headWrap .side li a {
    color: #fff;
  }
  header.transparent .headWrap .side li a:hover {
    color: #67c351;
  }
  header.transparent .headWrap .hamBtn {
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    transition: 0.2s;
  }
  header.transparent .headWrap .hamBtn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #232323;
    margin: 2.5px 0;
    position: relative;
  }
  header.transparent .headWrap .hamBtn span em {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #232323;
  }
  header.transparent .headWrap .hamBtn.on {
    transform: rotate(45deg);
  }
  header.transparent .headWrap .hamBtn.on span em {
    transform: rotate(90deg);
  }
  header.transparent .headWrap .hamBtn.on span:first-of-type, header.transparent .headWrap .hamBtn.on span:last-of-type {
    transform: scaleX(0);
  }
  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: 1280px) {
  header .headWrap {
    align-items: center;
    height: 50px !important;
  }
  header .headWrap h1 {
    padding: 5px 0;
    box-sizing: border-box;
    height: 100%;
  }
  header .headWrap h1 a {
    height: 100%;
  }
  header .headWrap h1 a img {
    height: 100%;
  }
  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: 1280px) {
  .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 .top {
  background-color: #666;
}
footer .top ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
footer .top ul li {
  width: 20%;
}
footer .top ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: #fff;
}
footer .bot {
  background-color: #67c351;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .bot > a {
  display: block;
  margin-bottom: 3.75rem;
}
footer .bot ul {
  display: flex;
}
footer .bot ul.contract {
  margin-top: 20px;
  margin-bottom: 20px;
}
footer .bot ul.contract a {
  color: #fff;
}
footer .bot ul:not(:last-child) {
  margin-bottom: 10px;
}
footer .bot ul li {
  font-size: 0.875rem;
  color: #fff;
}
footer .bot ul li:not(:last-child) {
  margin-right: 20px;
  position: relative;
}
footer .bot ul li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
footer .bot p.copy {
  font-weight: 500;
  color: #fff;
}

@media (max-width: 768px) {
  footer .top ul li {
    width: 33.3333333333%;
  }
  footer .top ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-right: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    height: 50px;
    color: #fff;
  }
  footer .bot {
    background-color: #67c351;
    padding: 50px 0;
    display: flex;
  }
  footer .bot > a {
    margin-bottom: 2.5rem;
  }
  footer .bot ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .bot ul.contract {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: row;
  }
  footer .bot ul.contract li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #fff;
  }
  footer .bot ul.contract a {
    color: #fff;
  }
  footer .bot ul:not(:last-child) {
    margin-bottom: 0;
  }
  footer .bot ul li {
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 10px;
  }
  footer .bot ul li:not(:last-child) {
    margin-right: 0;
  }
  footer .bot ul li:not(:last-child):after {
    display: none;
  }
  footer .bot p.copy {
    font-weight: 500;
    color: #fff;
  }
}
.tobBtn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 20;
}/*# sourceMappingURL=nav.css.map */