header {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  width: 100%;
}

header .headWrap {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

header .headWrap h1 {
  margin-left: 100px;
}

@media (max-width: 1024px) {
  header .headWrap h1 {
    margin-left: 50px;
  }
}

@media (max-width: 768px) {
  header .headWrap h1 {
    margin-left: 20px;
  }
}

header .headWrap .gnb {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1024px) {
  header .headWrap .gnb {
    display: none;
  }
}

header .headWrap .gnb > li {
  position: relative;
  margin-right: 40px;
}

header .headWrap .gnb > li:nth-of-type(2) li:first-of-type {
  font-size: .875rem;
}

header .headWrap .gnb > li:last-of-type {
  margin-right: 0;
}

header .headWrap .gnb > li:hover h2 > a {
  color: #555;
}

header .headWrap .gnb > li:hover h2 > a:after {
  opacity: 1;
}

header .headWrap .gnb > li:hover ul {
  max-height: 400px;
}

header .headWrap .gnb > li h2 > a {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  padding: 0 40px;
  position: relative;
}

header .headWrap .gnb > li h2 > a:after {
  content: '';
  border-radius: 50%;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ccc;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}

header .headWrap .gnb > li ul {
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  top: 100px;
  -webkit-transition: .5s;
  transition: .5s;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}

header .headWrap .gnb > li ul li h3 > a {
  display: block;
  height: 40px;
  line-height: 24px;
  -webkit-transition: .3s;
  transition: .3s;
}

header .headWrap .gnb > li ul li h3 > a:hover {
  color: #db1212;
}

header .headWrap .hamBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  background-color: #db1212;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  header .headWrap .hamBtn {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}

header .headWrap .hamBtn span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: relative;
}

header .headWrap .hamBtn span:before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  right: 0;
}

header .headWrap .hamBtn span:after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -10px;
  right: 0;
}

.viewAll {
  width: 100vw;
  height: 100vh;
  position: fixed;
  right: 0;
  -webkit-transition: top 1s;
  transition: top 1s;
  top: -120%;
  background: #fff url("/img/sideImg.jpg") no-repeat 0 0/auto 100%;
  z-index: 11;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1280px) {
  .viewAll {
    background: #fff;
  }
}

.viewAll.on {
  top: 0;
}

.viewAll .closeBtn {
  width: 56px;
  height: 56px;
  background: #db1212;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 60px;
  top: 60px;
}

.viewAll .closeBtn span {
  width: 17px;
  height: 2px;
  background: #fff;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.viewAll .closeBtn span:after {
  content: '';
  display: block;
  width: 2px;
  height: 17px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.viewAll .w-gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-right: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1280px) {
  .viewAll .w-gnb {
    width: 75%;
  }
}

.viewAll .w-gnb > li h2 > a {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 80px;
  font-weight: 500;
}

.viewAll .w-gnb > li ul li h3 > a {
  display: block;
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 30px;
}

.viewAll .w-gnb > li ul li h3 > a:hover {
  color: #db1212;
}

@media (max-width: 768px) {
  .viewAll {
    width: 100vw;
  }
  .viewAll .w-gnb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 20px;
  }
  .viewAll .w-gnb > li h2 > a {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 80px;
    font-weight: 500;
  }
  .viewAll .w-gnb > li ul li h3 > a {
    font-size: .93rem;
  }
}

@media (max-width: 560px) {
  .viewAll {
    width: 100%;
  }
  .viewAll .w-gnb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 0;
  }
  .viewAll .w-gnb > li {
    width: 50%;
    margin-bottom: 20px;
  }
  .viewAll .w-gnb > li h2 > a {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .viewAll .w-gnb > li ul li h3 > a {
    font-size: .93rem;
    margin-bottom: 20px;
  }
}

footer {
  background-color: #2e3336;
  padding: 80px 0;
}

footer .wrap {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

footer .wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

footer .wrap ul li {
  margin-right: 20px;
  position: relative;
  color: #888;
  font-size: .875rem;
}

footer .wrap ul li:last-of-type {
  margin-right: 0;
}

footer .wrap ul li:last-of-type:after {
  display: none;
}

footer .wrap ul li:after {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background-color: #888;
  position: absolute;
  right: -10px;
  top: 0;
}

footer .wrap p {
  color: #888;
  font-size: .875rem;
}

footer .wrap > a {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

footer .fixInquiry {
  position: fixed;
  right: 0;
  top: calc(50% - 180px);
  width: 180px;
  height: 100px;
  z-index: 999;
  background-color: #db1212;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

footer .fixInquiry a {
  display: block;
  text-align: center;
  line-height: 100px;
  width: 100%;
  height: 100%;
  color: #fff;
}

@media (max-width: 1024px) {
  footer {
    background-color: #2e3336;
    padding: 80px 0;
  }
  footer .wrap {
    width: 95%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  footer .wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  footer .wrap ul li {
    margin-right: 0;
    margin-bottom: 10px;
    position: relative;
    color: #888;
    font-size: .875rem;
  }
  footer .wrap ul li:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }
  footer .wrap ul li:last-of-type:after {
    display: none;
  }
  footer .wrap ul li:after {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background-color: #888;
    position: absolute;
    right: -10px;
    top: 0;
  }
  footer .wrap p {
    color: #888;
    font-size: .875rem;
  }
  footer .wrap > a {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  footer .fixInquiry {
    display: none;
    position: fixed;
    right: 0;
    top: calc(50% - 180px);
    width: 180px;
    height: 100px;
    z-index: 999;
    background-color: #db1212;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  footer .fixInquiry a {
    display: block;
    text-align: center;
    line-height: 100px;
    width: 100%;
    height: 100%;
    color: #fff;
  }
}

.blackbox {
  width: 100%;
  height: 100vh;
  z-index: 10;
  position: fixed;
  -webkit-transition: .5s;
  transition: .5s;
  opacity: 0;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.568);
  pointer-events: none;
}

.blackbox.on {
  opacity: 1;
}

br.mobile {
  display: none;
}

@media (max-width: 768px) {
  br.mobile {
    display: block;
  }
}

.agree {
  display: none;
}
/*# sourceMappingURL=nav.css.map */