@charset "UTF-8";
/* 공통 */
* {
  font-family: 'nexon';
}

.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

.header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 11;
  border-bottom: 1px solid #ededed;
  transition: transform .3s ease;
}

.header.fix {
  transform: translateY(-44px);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.header .header-menu {
  background-color: #132E55;
  padding: 12px 0;
}

.header .header-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-menu .inner nav {
  margin-left: auto;
}

.header .header-menu .inner nav a {
  color: #fff;
  font-size: 14px;
  position: relative;
  margin-left: 20px;
}

.header .header-menu .inner nav a:not(:last-child)::before {
  position: absolute;
  content: '';
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: #fff;
}

.header .header-gnb .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header-gnb .inner .h_logo {
  margin: 14px 0;
  width: 80px;
  height: auto;
}
.header .header-gnb .inner .h_logo img {
  width: 100%;
}
.header .header-gnb .h_search {
  margin-left: auto;
  width: 22px;
  height: 22px;
}
.header .header-gnb .h_search img{
  width: 100%;
}

.header .h_search_box {
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fff;
  padding: 15px 0;
  border-top: 1px solid #ededed;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.dim {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: none;
}

.header .h_search_box > img {
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: auto;
}

.header .h_search_box > div {
  background-color: #fafafa;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .h_search_box input {
  height: auto;
  border: 0;
  background-color: transparent;
  font-size: 14px;
  color: #777;
  padding: 0;
  font-family: 'nexon';
}
.header .h_search_box input[type=image] {
  width: 20px;
}

.header .h_search_box .inner img {
  width: 18px;
}

.header .header-gnb .inner .h_ham {
  margin-left: 20px;
}

.allMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 293px;
  background-color: #ededed;
  z-index: 999;
  transform: translateX(293px);
  transition: all 0.3s;
}
.allMenu.show {
  transform: translateX(0px);
}
.allMenu-dim {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.allMenu-dim.show {
  opacity: 1;
  visibility: visible;
}

.allMenu_top {
  padding: 20px 0;
  background-color: #132e55;
}
.allMenu_top .inner {
  display: flex;
  align-items: center;
}
.allMenu_top .close{
  font-size: 20px;
  color: #fff;
}

.allmenu_greet {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.allmenu_login {
  margin-left: auto;
  margin-right: 15px;
  font-size: 14px;
  color: #fff;
}

.allmenu_gnb li h3 {
  padding: 20px;
  font-family: 'nexon-bold';
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
}
.allmenu_gnb li h3.active {
  color: #1f4784;
}
.allmenu_gnb li h3.active i {
  transform: rotate(180deg);
}
.allmenu_gnb .allmenu_gsnb {
  background-color: #f7f9fd;
  padding: 20px;
  border-bottom: 1px solid #efefef;
  display: none;
}
.allmenu_gnb .allmenu_gsnb a {
  display: table;
  color: #555555;
}
.allmenu_gnb .allmenu_gsnb a:not(:last-child) {
  margin-bottom: 10px;
}

.allmenu_eduBox {
  margin-top: 12px;
  background-color: #fff;
  padding: 20px;
}

.allmenu_links {
  padding: 15px;
  border-top: 1px solid #d1d1d1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.allmenu_links a {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 5px;
  font-size: 11px;
  width: 48%;
}
.allmenu_links a.blog {
  background-color: #00c73c;
}
.allmenu_links a.homepage {
  background-color: #218fcd;
}
.allmenu_links img {
  width: 15px;
  margin-right: 3px;
}
.allmenu_links i {
  margin-left: auto;
  font-size: 12px;
}


.fix_btn {
  position: fixed;
  z-index: 9;
  right: 25px;
  bottom: 25px;
}

.fix_btn a {
  margin-bottom: 10px;
  display: block;
}

.fix_btn a.kakao-btn{
  background-color: #fddc3f;
  border-radius: 30px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix_btn a img {
  margin: auto;
}

.footer {
  background-color: #3d3d3d;
}

.footer .footer-top {
  border-bottom: 1px solid #555555;
  padding: 12px 0;
}
.footer .footer-top nav a {
  font-size: 13px;
  color: #bbbbbb;
}

.footer .footer-top nav a:last-child {
  margin-left: 25px;
  font-weight: 600;
  position: relative;
}

.footer .footer-top nav a:last-child::before {
  position: absolute;
  content: '';
  left: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: #bbb;
}

.footer .footer-bottom {
  padding: 20px 0 30px;
}

.footer .footer-bottom .inner .f_info {
  color: #999;
  font-size: 14px;
}

.footer .footer-bottom .inner .f_info p {
  margin-bottom: 5px;
}

.footer .footer-bottom .inner .f_info p.copy {
  margin-top: 15px;
  color: #777777;
}

.footer .footer-bottom .inner .f_info p span {
  margin-right: 15px;
  position: relative;
}

.footer .footer-bottom .inner .f_info p span em {
  color: #777777;
  margin-right: 5px;
}

.footer .footer-bottom .inner .f_info p span.line::before {
  position: absolute;
  content: '';
  right: -9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: #505050;
}

.footer .footer-bottom .inner .f_selectBox .list_header {
  padding: 10px 18px;
  font-size: 13px;
  width: 100%;
  color: #bbbbbb;
  border: 1px solid #777777;
  cursor: pointer;
  position: relative;
  line-height: 1.5em;
  border-radius: 5px;
  margin-bottom: 20px;
}

.footer .footer-bottom .inner .f_selectBox .list_header::before {
  content: "";
  background-image: url(/image/common/selectDown_arrow.png);
  background-repeat: no-repeat;
  width: 8px;
  height: 6px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.footer .footer-bottom .inner .f_selectBox .list_header.active::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.footer .footer-bottom .inner .f_selectBox .list_data {
  background-color: #222222;
  display: none;
  transform: translateY(-20px);
}

.footer .footer-bottom .inner .f_selectBox .list_data a {
  font-size: 14px;
  color: #777;
  line-height: 1.5em;
  display: block;
  padding: 15px 20px 0;
}

.footer .footer-bottom .inner .f_selectBox .list_data a:last-child {
  padding-bottom: 15px;
}

.footer .footer-bottom .inner .f_selectBox .list_data a:hover {
  color: #eee;
}

/* 태블릿 */
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
}

/* 태블릿 ~ 모바일 가로 */
@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }
}

/* 모바일 세로 */
@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }
}
