@font-face {
	font-family: 'PB_B';
	font-weight: bold;
	font-style: bold;
	src: url("./fonts/Pretendard-Bold.woff")  format('woff');
}

@font-face {
	font-family: 'PB_M';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Pretendard-Medium.woff")  format('woff');
}

@font-face {
	font-family: 'PB_R';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Pretendard-Regular.woff")  format('woff');
}

@font-face {
	font-family: 'PB_L';
	font-weight: 100;
	font-style: normal;
	src: url("./fonts/Pretendard-Light.woff")  format('woff');
}

@font-face {
  font-family: 'TNR';
  font-weight: bold;
  font-style: normal;
  src: url("./fonts/times-new-roman.ttf") format('truetype');
}

@font-face {
  font-family: 'TNB';
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/times-new-roman-bold.ttf") format('truetype');
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all !important;
}

a {
  text-decoration: none;
}

ul,li,ol {
  list-style: none;
}

body {
  overflow-x: hidden;
}

#header {
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #000;
  background: #fff !important;
}

#header .wrap {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .wrap .logo {
  width: auto;
  height: auto;
  cursor: pointer;
}

#header .wrap .logo img {
  width: auto;
  height: auto;
}

#header .wrap #pc_menu {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

#header .wrap #pc_menu .main_category {
  width: auto;
  height: 100%;
  margin-right: 56px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .wrap #pc_menu .main_category:last-of-type {
  margin-right: 0;
}

#header .wrap #pc_menu .main_category .main_category_link {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  color: #000;
}

#header .wrap #pc_menu .main_category.active .sub_category {
  max-height: 1000px;
  padding: 20px;
  border-top: 2px solid #000;
}

#header .wrap #pc_menu .main_category .sub_category {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  width: auto;
  height: auto;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  max-height: 0px;
  padding: 0;
}

#header .wrap #pc_menu .main_category .sub_category li {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  text-align: center;
}

#header .wrap #pc_menu .main_category .sub_category li:last-of-type {
  margin-bottom: 0;
}

#header .wrap #pc_menu .main_category .sub_category li .sub_category_link {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 18px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

#header .wrap .fast_icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header .wrap .fast_icon span {
  width: auto;
  height: auto;
  cursor: pointer;
  margin-right: 32px;
  position: relative;
}

#header .wrap .fast_icon span:last-of-type {
  margin-right: 0;
}

#header .wrap .fast_icon span i {
  font-size: 18px;
  color: #000;
}

#header .wrap .fast_icon span .h_tooltip {
  position: absolute;
  left: 50%;
  top: 210%;
  transform: translateX(-50%);
  padding: 5px;
  background: #000;
  text-align: center;
  border-radius: 3px;
  opacity: 0;
  transition: all 0.3s;
  font-size: 14px;
  font-family: 'PB_L';
  font-weight: 100;
  display: block;
  white-space: nowrap;
  color: #fff;
}

#header .wrap .fast_icon span:hover .h_tooltip {
  opacity: 1;
}

#header .wrap .fast_icon span .h_tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 5px 10px 5px;
  border-color: transparent transparent #000 transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}

#header .wrap .hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 999;
}

#header .wrap .hamburger span {
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

#header .wrap .hamburger span:nth-of-type(1) {
  top: 0;
} 

#header .wrap .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

#header .wrap .hamburger span:nth-of-type(3) {
  bottom: 0;
} 

#header .wrap .hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);  
} 

#header .wrap .hamburger.active span:nth-of-type(2) {
  max-width: 0;
}

#header .wrap .hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);  
} 

#header .wrap .mb_group {
  width: 60vw;
  height: 100vh;
  position: fixed;
  right: -100vw;
  top: 0;
  padding: 100px 50px;
  background: #fff;
  z-index: 998;
  transition: all 0.3s;
}

#header .wrap .mb_group.active {
  right: 0;
}

#header .wrap .mb_group .inner {
  width: 100%;
  height: auto;
}

#header .wrap .mb_group .inner .information {
  padding-bottom: 20px;
  border-bottom: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

#header .wrap .mb_group .inner .information a {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 18px;
  color: #000;
  display: block;
  width: 33.333%;
}

#header .wrap .mb_group .inner #mb_menu {
  width: 100%;
  height: auto;
}

#header .wrap .mb_group .inner #mb_menu .main_category {
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
}

#header .wrap .mb_group .inner #mb_menu .main_category.gnb_al_li_plus {
  position: relative;
}

#header .wrap .mb_group .inner #mb_menu .main_category.gnb_al_li_plus::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
}

#header .wrap .mb_group .inner #mb_menu .main_category.gnb_al_li_plus::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

#header .wrap .mb_group .inner #mb_menu .main_category.gnb_al_li_plus .main_category_link {
  pointer-events: none;
}

#header .wrap .mb_group .inner #mb_menu .main_category .main_category_link {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 16px;
  color: #000;
  padding: 15px 0;
  display: inline-block;
}

#header .wrap .mb_group .inner #mb_menu .main_category .sub_category {
  width: 100%;
  height: auto;
  padding: 15px 20px;
  background: #000;
  border-top: 1px solid #000;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: all 0.3s;
}

#header .wrap .mb_group .inner #mb_menu .main_category.active .sub_category {
  padding: 15px 20px;
  max-height: 1000px;
}

#header .wrap .mb_group .inner #mb_menu .main_category .sub_category li {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

#header .wrap .mb_group .inner #mb_menu .main_category .sub_category li:last-of-type {
  margin-bottom: 0;
}

#header .wrap .mb_group .inner #mb_menu .main_category .sub_category li .sub_category_link {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 16px;
  color: #EBE7DD;
}

#out_login_form {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(000,000,000,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  display: none;
}

#side_bar {
  width: 80px;
  height: auto;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #fff;
  z-index: 9999;
  border-radius: 10px 0 0 10px;
  transition: all 0.3s;
}

#side_bar.active {
  right: -80px;
}


#side_bar a {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom:  1px solid #d9d9d9;
}

#side_bar a:first-of-type {
  background: #222C77;
}

#side_bar a:first-of-type span {
  color: #fff;
}

#side_bar a span {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 14px;
}

#side_bar a span img {
  width: auto;
  height: 25px;
  display: block;
  margin: 0 auto 5px;
}

#side_bar .close_btn {
  width: 32px;
  height: 148px;
  border-radius: 10px 0 0 10px;
  background: #222C77;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
}

#side_bar .close_btn img {
  width: auto;
  height: auto;
}

#footer {
  width: 100%;
  height: auto;
  border-top: 1px solid #000;
  padding: 50px 0 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .wrap {
  width: 100%;
  height: auto;
  max-width: 1400px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#footer .wrap .container_1 {
  width: auto;
  height: auto;
}

#footer .wrap .container_1 h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
}

#footer .wrap .container_1 .ff_info_wrap {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 11px;
  line-height: 20px;
  color: #000;
}

#footer .wrap .container_2 {
  width: auto;
  height: auto;
}

#footer .wrap .container_2 .inner_wrap {
  display: flex;
  align-items: flex-start;
}

#footer .wrap .container_2 .inner_wrap .box {
  width: auto;
  height: auto;
}

#footer .wrap .container_2 .inner_wrap .box:first-of-type {
  margin-right: 100px;
}

#footer .wrap .container_2 .inner_wrap .box:first-of-type h3 {
  margin-bottom: 10px;
}

#footer .wrap .container_2 .inner_wrap .box h3 {
  font-family: 'PB_M';
  font-weight: normal;
  font-size: 15px;
  margin-bottom: 5px;
}

#footer .wrap .container_2 .inner_wrap .box h4 {
  font-family: 'PB_M';
  font-weight: normal;
  font-size: 15px;
  margin-bottom: 20px;
}

#footer .wrap .container_2 .inner_wrap .box h5 {
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 11px;
  color: #000;
  margin-bottom: 8px;
  line-height: 20px;
}

#footer .wrap .container_2 .inner_wrap .box h5:last-of-type {
  margin-bottom: 0;
}

#footer .wrap .container_2 img {
  width: auto;
  height: auto;
  margin-top: 40px;
  display: block;
  float: right;
}

#btn_of_top {
  background: none;
  border: none;
  width: auto;
  height: auto;
  position: fixed;
  right: 12px;
  bottom: 50px;
  z-index: 999;
}

#btn_of_top img {
  width: auto;
  height: auto;
}

@media (max-width: 1400px) {
  #header .wrap {
    max-width: 90%;
  }

  #footer .wrap {
    max-width: 95%;
  }
}

@media (max-width: 1200px) {
  #header .wrap #pc_menu {
    display: none;
  }

  #header .wrap .fast_icon {
    display: none;
  }

  #header .wrap .hamburger {
    display: block;
  }

  #header {
    height: 60px;
  }

}

@media (max-width: 900px) {
  #footer .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #footer .wrap .container_1 {
    width: 100%;
    margin-bottom: 30px;
  }

  #footer .wrap .container_2 {
    width: 100%;
  }
}

@media (max-width: 700px) {
  #header .wrap .mb_group .inner .information a {
    font-size: 14px;
  }

  #header .wrap .mb_group .inner #mb_menu .main_category .main_category_link {
    font-size: 14px;
  }

  #header .wrap .mb_group .inner #mb_menu .main_category .sub_category li .sub_category_link {
    font-size: 14px;
  }

  #header .wrap .mb_group .inner #mb_menu .main_category.active .sub_category {
    padding: 15px;
  }

  #header .wrap .mb_group .inner #mb_menu .main_category {
    margin-bottom: 10px;
  }

  #login_before {
    width: 90%;
  }
  #side_bar {
    width: 60px;
  }  
  #side_bar a{
    height: 60px;
  }
  #side_bar a span{
    font-size: 12px;
  }
  #side_bar a span img{
    height: 20px;
  }
  #side_bar .close_btn{
    height: 100px;
    left: -32px;
  }
  #side_bar.active {
    right: -60px;
}
}

@media (max-width: 500px) {
  #header {
    height: 50px;
  }

  #header .wrap .hamburger {
    width: 25px;
    height: 15px;
  }

  #header .wrap .hamburger span:nth-of-type(2) {
    top: 49.5%;
  }

  #header .wrap .mb_group {
    padding: 100px 30px;
    width: 90vw;
  }

  #header .wrap .mb_group .inner #mb_menu .main_category.gnb_al_li_plus::after {
    width: 15px;
  }

  #header .wrap .mb_group .inner #mb_menu .main_category.gnb_al_li_plus::before {
    width: 15px;
  }

  #header .wrap .logo img {
    width: 80px;
  }

  #footer .wrap .container_1 h2 {
    text-align: center;
  }

  #footer .wrap .container_1 .ff_info_wrap {
    text-align: center;
  }

  #footer .wrap .container_2 .inner_wrap {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  #footer .wrap .container_2 .inner_wrap .box:first-of-type {
    margin-right: 0;
    margin-bottom: 30px;
  }

  #footer .wrap .container_2 .inner_wrap .box {
    width: 100%;
  }

  #footer .wrap .container_2 img {
    float: unset;
    margin: 40px auto 0;
  }

  #login_before {
    padding: 30px;
  }

  #ol_id {
    height: 30px;
  }

  #ol_pw {
    height: 30px;
  }

  #ol_submit {
    height: 30px;
    font-size: 12px;
  }

  #ol_svc {
    line-height: 15px;
  }

  #ol_svc a {
    font-size: 10px;
  }

  #sns_login .sns-icon {
    height: 30px !important;
    line-height: 30px !important;
  }

  #login_before form fieldset #sns_login .sns-naver {
    background-position: 30px 0px;
  }

  #login_before form fieldset #sns_login .sns-kakao {
    background-position: 30px 0px;
  }

  #sns_login .sns-google .ico {
    top: 0px !important;
    width: 30px !important;
    height: 28px !important;
    background-size: 24px 24px !important;
  }

  #login_before_od h2 {
    height: 30px;
  }

  #login_before_od input {
    height: 30px;
  }

  #login_before_od button {
    height: 30px;
  }

  #login_before form fieldset #sns_login .txt {
    font-size: 12px;
  }

  #login_before_od h2 {
    font-size: 12px;
  }

  #login_before_od input {
    padding: 0 10px;
    font-size: 12px;
  }

  #btn_of_top {
    right: 10px;
    bottom: 10px;
  }

  #btn_of_top img {
    width: 35px;
  }
    #side_bar {
    width: 50px;
  }  
  #side_bar a{
    height: 50px;
  }
  #side_bar a span{
    font-size: 10px;
  }
  #side_bar a span img{
    height: 15px;
  }
  #side_bar .close_btn{
    height: 80px;
    left: -20px;
    width: 20px;
  }
  #side_bar.active {
    right: -50px;
}
}

@media (max-width: 400px) {

}