
/* font- 폰트 */
@font-face {
  font-family: "AppleSDGothicNeoT";
  font-weight: 100;
  src: local(★),
  url(~@/assets/fonts/AppleSDGothicNeoT.eot) fotmat('eot'),
  url(~@/assets/fonts/AppleSDGothicNeoT.woff) fotmat('woff'),
  url(~@/assets/fonts/AppleSDGothicNeoT.ttf) fotmat('truetype');
}
@font-face {
  font-family: "AppleSDGothicNeoR";
  font-weight: 400;
  src: local(★),
  url(~@/assets/fonts/AppleSDGothicNeoR.eot) fotmat('eot'),
  url(~@/assets/fonts/AppleSDGothicNeoR.woff) fotmat('woff'),
  url(~@/assets/fonts/AppleSDGothicNeoR.ttf) fotmat('truetype');
}@font-face {
  font-family: "AppleSDGothicNeoB";
  font-weight: 700;
  src: local(★),
  url(~@/assets/fonts/AppleSDGothicNeoB.eot) fotmat('eot'),
  url(~@/assets/fonts/AppleSDGothicNeoB.woff) fotmat('woff'),
  url(~@/assets/fonts/AppleSDGothicNeoB.ttf) fotmat('truetype');
}
@font-face {
  font-family: "AppleSDGothicNeoEB";
  font-weight: 900;
  src: local(★),
  url(~@/assets/fonts/AppleSDGothicNeoEB.eot) fotmat('eot'),
  url(~@/assets/fonts/AppleSDGothicNeoEB.woff) fotmat('woff'),
  url(~@/assets/fonts/AppleSDGothicNeoEB.ttf) fotmat('truetype');
}
* {font-family: 'AppleSDGothicNeo', sans-serif;}


/* layout 레이아웃 */
body{
  margin: 0;
  padding: 0;
  color: #282828;
}
a{
  color: #282828;
  text-decoration: none;
  outline: none;
  font-size: 18px;
}
a:hover, a:active, a:visited{
  text-decoration: none;
  color: #282828;
}
ol,ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
p{
  padding: 0;
  margin: 0;
}
*:focus{
  outline: 0;
  outline: none;
}

.feedback_red{
	color:red;
	font-size: 14px;
	margin: 0 0 15px 0;
}

/* 부트스트랩 수정 공통 */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl{
  padding-right: 0;
  padding-left: 0;
}
.nav-tabs{
  border-bottom: 1px solid transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  border-color: transparent transparent transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  color: #282828;
}
.form-control{
  color: #282828;
}
.form-control:focus{
  color: #282828;
}
.form-group{
  margin-bottom: 0;
}

/* header */
.header{
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 41;
  background-color: transparent;
}
.header .header_inner{
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  max-width: 1160px;
  height: 70px;
  padding: 20px;
}
.header .category_form .form-control{
  cursor: pointer;
  border: 1px solid #282828;
  color: #282828;
  font-size: 16px;
  border-radius: 30px;
  padding: 5px 15px;
}

/* header pc메뉴 */
.header_nav .nav-link{
  color: #282828;
}
.dropdown-menu{
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 10px;
}
.dropdown-menu > a:last-child{
  margin-bottom: 15px;
}
.dropdown-menu .dropdown-item{
  padding: 10px 20px;
  border-radius: 10px;
  color: #282828 !important;
}
.dropdown-menu .dropdown-item:hover{
  background-color: #eee;
}

/* header 스크롤시 붙는 클래스 */
.header_down{
  background-color:rgba(0,0,0,.5);
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
.header_down .header_inner a{
  color: #fff;
}
.header_down .gnb ul li span{
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 3px;
  background: url(../images/link_ico_scroll.png) no-repeat 0 0 / contain;
}
.header_down .header_nav_wrapper .header_nav .nav-link{
  color: #282828;
}
.btn-toggle {
  margin: 0 1rem;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  width: 3rem;
  border-radius: 1.5rem;
  color: #bbb;
  background: #8ab4f8;
}
.btn-toggle:focus,.btn-toggle.focus,.btn-toggle:focus.active,.btn-toggle.focus.active{
  outline: none;
}
.btn-toggle:before,.btn-toggle:after{
  line-height: 1.5rem;
  width: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
.btn-toggle > .handle{
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left 0.25s;
}
.btn-toggle.active{
  transition: background-color 0.25s;
}
.btn-toggle.active > .handle{
  left: 1.6875rem;
  transition: left 0.25s;
}
.btn-toggle.active:before{
  opacity: 0.5;
}
.btn-toggle.active:after{
  opacity: 1;
}
.btn-toggle.btn-xs:before,.btn-toggle.btn-xs:after{
  display: none;
}
.btn-toggle.active{
  background-color: #ffd100;
}

/* main footer 하단 */
.footer{
  width: 100%;
  background-color: #f8f8f8;
  text-align: center;
}
.footer .footer_inner{
  max-width: 1160px;
  margin: 0 auto;
}
.footer .footer_img img{
  width: 120px;
  image-rendering: -webkit-optimize-contrast;
}
.footer .footer_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0;
}
.footer .footer_bottom{
  font-size: 15px;
}
.footer .footer_bottom > p:nth-child(1){
  margin: 30px 0;
}
.footer .footer_bottom > p span{
  display: inline-block;
  margin-top: 20px;
}
.footer .footer_top > p a{
  color: #999;
}

/* pc */
@media (min-width: 1024px) {

  /* header pc메뉴 */
  .header_nav{
    display: flex;
    transform: translateX(50px);
  }
  .header_nav .nav-link{
    font-size: 16px;
  }

  /*  header 검색창 */
  .srch_input{
    width: 300px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border: 1px solid #282828;
    font-size: 15px;
    border-radius: 30px;
    padding: 0 13px;
  }
  .srch_input .form-control{
    width: 200px;
    border: 1px solid transparent;
  }
  .srch_input .form-control::placeholder{
    font-size: 15px;
  }
  .srch_input .form-control:focus{
    outline: none;
  }
  .srch_input i{
    vertical-align: middle;
  }

  /* header gnb */
  .gnb{
    margin: 0 0 0 auto;
  }
  .gnb ul{
    display: flex;
  }
  .gnb ul li{
    margin-left: 30px;
  }
  .gnb ul li a{
    font-size: 16px;
    color: #282828;
  }
  .gnb ul li a:hover{
    color: #282828;
  }
  .gnb ul li span{
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 3px;
    background: url(../images/link_ico.png) no-repeat 0 0 / contain;
  }
  
  /* header hamburger */
  .hamburger{
    display: none;
  }

  /* header mobile_menu */
  .mobile_menu{
    display: none;
  }

  /* main footer 하단 */
  .footer .footer_inner{
    padding: 100px 20px;
  }
  .footer .footer_top > p{
    margin: 0 10px;
  }
  .footer .footer_top > p a{
    font-size: 18px;
  }

}


/* mobile */
@media (max-width: 1023px) {

  /* header pc메뉴 */
  .header_nav{
    display: none;
  }

  /* header gnb */
  .gnb{
    display: none;
  }

  /* header hamburger */
  .hamburger{
    z-index: 51;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 28px;
    height: 27px;
    cursor: pointer;
    transition: opacity .25s ease;
  }
  .hamburger:hover{
    opacity: .7;
  }
  .hamburger.active .top{
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #282828;
  }
  .hamburger.active .middle{
    opacity: 0;
    background: #282828;
  }
  .hamburger.active .bottom{
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #282828;
  }
  .hamburger span{
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    height: 3px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .35s ease;
  }
  .hamburger span:nth-of-type(2){
    top: 11px;
  }
  .hamburger span:nth-of-type(3){
    top: 22px;
  }

  /* header mobile_menu */
  .mobile_menu .menu{
    z-index: 50;
    position: fixed;
    right: -300px;
    top: 0px;
    width: 250px;
    height: 100%;
    list-style: none;
    padding: 0;
    background-color: #fff;
    transition: all 0.2s 0s cubic-bezier(1, 0.17, 0.07, 0.71);
  }
  .mobile_menu .menu.active{
    position: fixed;
    right: 0px;
    top: 0;
    border: 1px solid #ccc;
  }
  .mobile_menu .menu li:first-child{
    margin-top: 45px;
  }
  .mobile_menu .menu li a{
    display: block;
    font-size: 20px;
    color: #282828;
    font-weight: 700;
    padding: 20px 50px;
  }
  .mobile_menu .menu li a:hover{
    opacity: .7;
  }

  /* main footer 하단 */
  .footer .footer_inner{
    padding: 30px 20px;
  }
  .footer .footer_top > p{
    margin: 0 5px;
  }
  .footer .footer_top > p a{
    font-size: 16px;
  }


}

