@charset "utf-8";

#hd_pop {
  font-size: 0;
} 

#hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #f5f5f5;
  background-color: #fff;
  z-index: 1000;
}

#hd #hd_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  height: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

#hd #logo {
  width: 40%;
}

#hd #gnb {
  width: 20%;
}

#hd #gnb .gnb_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  z-index: 1000;
}

#hd #gnb .gnb_wrap>div {
  width: 50%;
}

#hd #gnb .gnb_wrap>div>a {
  display: block;
}

#hd #gnb .gnb_menu_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  max-height: 45px;
  margin-left: 10%;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#hd #gnb .gnb_menu_btn span {
  display: inline-block;
  width: 100%;
  height: 5px;
  margin: 10% 0;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#hd #gnb .gnb_menu_btn span:first-child {
  width: 70%;
}

#hd #gnb .gnb_menu_btn span:last-child {
  width: 40%;
}

#hd #gnb .gnb_menu_btn:hover span:first-child {
  width: 100%;
}

#hd #gnb .gnb_menu_btn:hover span:nth-child(2) {
  width: 50%;
}

#hd #gnb .gnb_menu_btn:hover span:last-child {
  width: 60%;
}

#hd #gnb .gnb_open {
  position: fixed;
  top: 50vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

#hd #gnb .gnb_open ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

#hd #gnb .gnb_open li {
  width: 80%;
  text-align: left;
  overflow: hidden;
}

#hd #gnb .gnb_open li a {
  -webkit-transform: translateY(200%);
  -ms-transform: translateY(200%);
  transform: translateY(200%);
  display: inline-block;
  margin: 20px 0;
  color: #fff;
  font-size: clamp(30px, 9.375vw, 60px);
}

#hd #gnb.menuOpen .gnb_open li a {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s linear 0.2s;
  transition: -webkit-transform 0.4s linear 0.2s;
  -o-transition: transform 0.4s linear 0.2s;
  transition: transform 0.4s linear 0.2s;
  transition: transform 0.4s linear 0.2s, -webkit-transform 0.4s linear 0.2s;
}

#hd #gnb.menuOpen .gnb_open li a:hover {
  opacity: 0.5;
}

#hd #gnb.menuOpen .gnb_menu_btn span {
  width: 100%;
  background-color: #fff !important;
}

#hd #gnb.menuOpen .gnb_open {
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  z-index: 999;
}

#hd #gnb.menuOpen .gnb_menu_btn:hover span:last-child {
  width: 100%;
}

#ft {
  max-width: 640px;
  margin: 0 auto;
  background-color: #303134;
  font-family: 'NanumSquareNeo', 'Malgun Gothic', dotum, sans-serif !important;
}

#ft,
#ft a {
  color: #fff;
}

#ft .ft_inr {
  padding: 7.5% 0;
  text-align: center;
}

#ft .ft_inr a {
  display: block;
}

#ft .ft_inr .ft_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 58%;
  margin: 0 auto 3%;
}

#ft .ft_inr .ft_logo a~a {
  margin-left: 3%;
}

#ft .ft_inr .ft_logo a:last-child {
  margin-top: -2%;
}

#ft .ft_inr .privacy {
  margin-bottom: 3%;
  font-size: clamp(12px, 2.6vw, 17px);
}

#ft .ft_inr .privacy:hover {
  opacity: 0.7;
}

#ft .ft_inr .copy {
  font-size: clamp(12px, 2.6vw, 17px);
  text-align: center;
}

#ft .fixBan {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  max-width: 640px;
  width: 100%;
  font-size: clamp(15px, 5.7vw, 37px);
  text-align: center;
  z-index: 999;
}

#ft .fixBan a {
  display: block;
  padding: 6% 0 4.5%;
}

#ft .fixBan a span {
  display: inline-block;
  width: 6%;
}

@keyframes movFixBan {
  0% {
    bottom: 5%;
  }

  25% {
    bottom: 6%;
  }

  50% {
    bottom: 5%;
  }

  75% {
    bottom: 5.5%;
  }

  100% {
    bottom: 5%;
  }
}

#ft .fixBan01 {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 999;
  display: none;
}

#ft .fixBan01:hover {
  animation: movFixBan 0.6s linear 1;
}

@media screen and (max-width:640px) {
  #hd #gnb .gnb_menu_btn {
    min-height: 45px;
  }

  #ft {
    margin-bottom: 60px;
  }

  #ft .fixBan01 {
    display: none !important;
  }
}

@media screen and (min-width:641px) and (max-width:780px) {
  #ft .ft_inr .ft_logo {
    width: 40%;
  }

  #ft .ft_inr .ft_txt {
    display: block;
    text-align: left;
  }

  #ft .ft_inr .privacy {
    margin-bottom: 3%;
  }
}