@charset "utf-8";

/* ºÎÆ®½ºÆ®·¦ Áßº¹ */
.nav > li > a:focus,
.nav > li > a:hover {
  background: none;
}

/* header */
#header {
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  z-index: 1000;
  -webkit-transition: all .500s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

/* ·Î°í */
#header .logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  height: 153px;
  margin: 0 auto;
}
#header .logo-wrap .logo a {
  display: block;
}

/* ÀüÈ­¹øÈ£ */
#header .logo-wrap .header-contact-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#header .logo-wrap .header-contact-btn a {
  display: block;
  width: 190px;
  height: 40px;
  background-color: #00479d;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 900;
  line-height: 40px;
  color: #fff;
  text-align: center;
}

/* ³×ºñ°ÔÀÌ¼Ç */
#header .navWrap nav {
  position: relative;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}

#header .navWrap nav .gnb {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 1400px;
}

#header .navWrap nav .gnb a {
  display: block;
  padding: 20px 5px;
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  letter-spacing: -.04rem;  
  text-align: center;
  transition: color .3s;
}

#header .navWrap nav .gnb a:hover {
  color: #666;
}

/* °íÁ¤ ³×ºñ°ÔÀÌ¼Ç */
#header .navWrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}


/* ¸ð¹ÙÀÏ¿ë ¸Þ´º ¹öÆ° */
#header .btn-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 0;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  z-index: 999;
  cursor: pointer;
}

#header .btn-nav > span {
  position: absolute;
  left: 50%;
  margin-left: -11px;
  width: 22px;
  height: 2px;
  background: #000;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

#header #headerInner .btn-nav > span:nth-of-type(1) {top: 9px;}
#header #headerInner .btn-nav > span:nth-of-type(2) {top: 17px;}
#header #headerInner .btn-nav > span:nth-of-type(3) {top: 25px;}
/* ¸ð¹ÙÀÏ¿ë ¸Þ´º ¹öÆ° Å¬¸¯½Ã */
#header #headerInner .btn-nav.mNav_open > span:nth-of-type(1) {transform: rotate(45deg); top: 18px;}
#header #headerInner .btn-nav.mNav_open > span:nth-of-type(2) {opacity: 0;}
#header #headerInner .btn-nav.mNav_open > span:nth-of-type(3) {transform: rotate(-45deg); top: 18px;}

/* ¸ð¹ÙÀÏ¿ë ¿¬¶ôÃ³ ¹öÆ° */
#header .m-contact {display: none;}


/* ¸ð¹ÙÀÏ¿ë ¸Þ´º ¹è°æ */
#header .gnbMenuBg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
}


@media (max-width: 1199px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
  }
  
  #header .logo-wrap {
    height: 100px;
  }
  
  #header .logo-wrap .logo img {
    max-width: 60vw;
  }
  
  #header .logo-wrap .header-contact-btn {
    display: none;
  }
  
  #header .btn-nav {
    display: block;
  }
  
  #header .navWrap {
    position: fixed;
    top: 0;
    transform: translateY(0);
    right: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,1);
    z-index: 100;
    -webkit-transition: all .3s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }

  #header .navWrap.mNav_open {
    right: 0;
  }
  
  #header .navWrap nav {
    overflow-y: auto;
    position: absolute;
    top: 100px;
    bottom: 120px;
    left: 0;
    right: 0;
    padding: 20px;
    width: 100%;
    border-top: none;
    border-bottom: none;
  }
  
  #header .navWrap nav .gnb {
    overflow-y: auto;
    display: block;
    justify-content: initial;
    align-items: initial;
    max-width: 1140px;
    max-height: 80vh;
    padding: 20px 0 30px;
  }
  
  #header .navWrap nav .gnb li {padding: 10px 0;}
  #header .navWrap nav .gnb a {
    display: inline-block;
    padding: 0;
    font-size: 20px;
    color: #000;
    letter-spacing: -.04rem;  
    text-align: center;
    transition: color .3s;
  }
  
  #header .m-contact {
    display: block;
  }
  
  #header .m-contact a {
    display: block;
    width: 180px;
    height: 40px;
    background-color: #00479d;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 900;
    line-height: 40px;
    color: #fff;
    text-align: center;
  }
  
}



@media (max-width: 991px) {
  #header .logo-wrap {
    height: 60px;
  }
  
  #header .logo-wrap .logo img {
    max-height: 40px;
  }
}

@media (max-width: 767px) {
  #header .logo-wrap .logo img {
    position: relative;
    z-index: 9999;
  }
  #header .navWrap {
    right: -100%;
    width: 100%;
  }
}


/* footer */
#footer ul.sns-icons {}

#footer ul.sns-icons li {
  display: inline-block;
  margin: 0 12px;
}

#footer ul.sns-icons li a {
  font-size: 25px;
  color: #757575;
}

#footer ul.sns-icons li a:hover {color: #b7b7b7;}
#footer ul.footer-info li span {
  margin-right: 5px;
  margin-left: 10px;
  color: #b7b7b7;
}

#footer ul.footer-info li span:first-of-type {margin-left: 0;}


/* go-to-top */
@media (min-width:992px) {
  .go-to-top {display: none; position: fixed; right: 50px; bottom: 50px; padding: 0; width: 30px; height: 30px; line-height:30px; background-color: #000; border-radius: 2px; text-align: center; font-weight: bold; cursor:pointer; z-index: 5555;}
  .go-to-top:hover {opacity: .5;}
  .go-to-top i {margin: 0 6px; font-size: 15px; color: #fff; vertical-align: middle;}


}




.main-btn {
   position: relative;
    display: block;
    margin: 16px auto 0 auto;
    width: 100%;
    max-width: 300px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;  
     background: #00479d;

    text-align: center;
    line-height: 60px;
    z-index: 10;
}

