@charset "utf-8";

body {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

header {
  width: 100%;
  position: relative;
}

header .inner {
/*      border: 1px solid #000;*/
  position: relative;
  width: 80vw;
  height: 140px;
  margin: 0 auto;
}

header .inner .logo {
  position: absolute;
  left: 0;
  bottom: 10px;
}
header .inner .logo img {
  width: 240px;
}

header .welcome{
    position: absolute;
    left: 40%;
    top: 36px;
}
header .welcome p{
    font: normal 14px/1 "Nanum Gothic";
    color: #eee;
}
header .welcome p span{
    font-weight: bold;
}

header .inner .top_menu {
  position: absolute;
  top: 30px;
  right: 2.1vw;
}
header .inner .top_menu li {
  float: left;
}
header .inner .top_menu li a {
  display: block;
  font: bold 12px/1 "Nanum Gothic";
  color: #eee;
  padding: 6px 0.625vw;
  transition: all 0.5s;
}
header .inner .top_menu li a:hover {
  color: #00979c;
  font-weight: bold;
}
header .inner .top_menu li:nth-child(1) a{
    background: #00979c;
    border-radius: 2px;
}
header .inner .top_menu li:nth-child(1) a:hover{
    background: #eee;
    transition: all 0.5s;
}

header .inner .nav {
  position: absolute;
  bottom: 0;
  right: 0;
}
header .inner .nav li {
  float: left;
}
header .inner .nav li a {
  display: block;
  font: 800 18px/1 "Nanum Gothic";
  color: #eee;
  padding: 1vw 2.5vw;
  transition: all 0.5s;
}
header .inner .nav li a:hover {
  background-color: #00979c;
  color: #eee;
}
header .inner .btn{
    display: none;
}
header .inner .cover{
    display: none;
}
header .inner #menu{
    display: none;
}

/*로그인 폼 - 모달*/
.login_box{
    display: none;
    width: 100%;
    height: calc(100vh - 176px);
    position: relative;
    overflow: hidden;
    padding: 200px 0;
/*    border: 1px solid #f00;*/
}
.login_box .inner{
    width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}
.login_box .inner .login_title{
    font: 800 36px/1 "Nanum Gothic";
    color: #eee;
    text-align: center;
    padding: 24px 0;
}
.login_box .inner .login_title img{
/*    border: 1px solid #f00;*/
    height: 40px;
}
.login_box .inner .close{
    position: absolute;
/*    width: 100px;*/
    top: 40px;
    right: 20px;
    cursor: pointer;
}
.login_box .inner form{
    padding: 32px 0;
    border: 1px solid #eee;
    border-radius: 4px;
}
.login_box .inner form .form-group{
    padding: 18px 0;
}
.login_box .inner form .form-group label{
    display: inline-block;
    width: 22%;
    text-align: center;
    font: bold 18px/1 "Nanum Gothic";
    color: #eee;
}
.login_box .inner form .form-group label img{
    height: 20px;
}
.login_box .inner form .form-group input{
    width: 70%;
    height: 42px;
    padding-left: 12px;
    font: normal 16px/1 "Nanum Gothic";
    color: #555;
}
.login_box .inner form .btn_box{
    padding: 24px 0;
    text-align: center;
}
.login_box .inner form .btn_box input{
    width: 30%;
    height: 48px;
    border: none;
    font: bold 18px/1 "Nanum Gothic";
    background-color: #00979c;
    color: #eee;
    cursor: pointer;
}
.login_box .inner .info_find{
    padding: 8px;
    text-align: right;
    font: normal 14px/1 "Nanum Gothic";
    color: #ccc;
}
.login_box .inner .info_find a{
    color: #eee;
    transition: all 0.5s;
}
.login_box .inner .info_find a:hover{
    color: #00979c;
}

/*모달창 배경*/
.modal_bg{
    display: none;
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 99;
}

/*관리자 메뉴 페이지*/
.admin_manage{
   width: 100%;
   height: calc(100vh - 176px);
   position: relative;
   overflow: hidden;
   padding: 72px 0;
}
.admin_manage .inner{
    width: 50%;
    margin: 0 auto;
}
.admin_manage .inner h1{
    font: bold 36px/1 "Nanum Gothic";
    color: #eee;
    padding: 28px 0;
    position: relative;
    text-align: center;
}
.admin_manage .inner ul{
    width: 70%;
    margin: 0 auto;
}
.admin_manage .inner li a{
    display: block;
    margin: 16px 0;
    padding: 28px 0;
    text-align: center;
    font: bold 28px/1 "Nanum Gothic";
    background-color: #00979c;
    opacity: 0.9;
    border: 2px solid #176669;
    color: #eee;
    transition: all 0.5s;
}
.admin_manage .inner li a:hover{
    background-color: #eee;
    color: #00979c;
    border: 2px solid #176669;
}


/*관리 페이지 공통*/
.manage{
   width: 100%;
   height: calc(100vh - 176px);
   position: relative;
   overflow: hidden;
   padding: 72px 0;
}
.manage .title{
    font: bold 36px/1 "Nanum Gothic";
    color: #eee;
    padding: 28px 0;
    position: relative;
    text-align: center;
}

.manage .inner{
    width: 70%;
    margin: 0 auto;
    position: relative;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
    overflow: auto;
    padding: 0 8px 24px 8px;
   /* border: 1px solid #aaa; */
}
.manage .inner::-webkit-scrollbar {
    width: 10px;
}
.manage .inner::-webkit-scrollbar-thumb {
    background-color: #00979c;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.manage .inner::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}
.manage .inner form{
    width: 60%;
    margin: 0 auto;
}
.manage .inner form .title{
    font: bold 36px/1 "Nanum Gothic";
    text-align: center;
    padding: 36px 0 18px 0;
    color: #eee;
}
.manage .inner form .title img{
    height: 40px;
}
.manage .inner form #pwConfirm{
    width: 80%;
    margin: 0 auto;
    text-align: right;
    font: bold 16px/1 "Nanum Gothic";
    color: #eee;
    padding-right: 10px;
}
/*관리 폼 양식*/
.manage .form-add{
    width: 80%;
    margin: 0 auto;
    padding: 6px 0;

}
.manage .form-add label{
    display: inline-block;
    width: 30%;
    text-align: center;
    padding: 16px 0;
    font: bold 18px/1 "Nanum Gothic";
    color: #eee;
}
.manage .form-add span{
    display: inline-block;
    padding: 0 12px 0 6px;
    font: bold 16px/1 "Nanum Gothic";
    color: #eee
}
.manage .form-add input{
    width: 68%;
    padding: 10px;
    font: normal 14px/1 "Nanum Gothic";
    border: 1px solid #888;
    outline: none;
}
.manage .form-add select{
    width: 80px;
    padding: 10px;
    font: bold 14px/1 "Nanum Gothic";
    border: 1px solid #888;
    color: #555;
    outline: none;
    background: #fff;
}
.manage .form-add .info_select{
    width: 68%;
}

/*비밀번호 변경 버튼 및 팝업창*/
.manage .form-add .pwUpdateBtn{
    display: inline-block;
    padding: 10px;
    font: bold 14px/1 "Nanum Gothic";
    border: 1px solid #888;
    color: #555;
    background-color: #eee;
}
.popup .inner{
    width: 100%;
}
.popup .inner form .title{
    font: bold 36px/1 "Nanum Gothic";
    text-align: center;
    padding: 36px 0 18px 0;
    color: #eee;
}
.popup .inner form .title img{
    height: 40px;
}
.popup .form-add{
    width: 80%;
    margin: 0 auto;
    padding: 6px 0;
}
.popup .form-add label{
    display: inline-block;
    width: 30%;
    text-align: center;
    padding: 16px 0;
    font: bold 18px/1 "Nanum Gothic";
    color: #eee;
}
.popup .form-add input{
    width: 68%;
    padding: 10px;
    font: normal 14px/1 "Nanum Gothic";
    border: 1px solid #888;
    outline: none;
}
.popup .form-add select{
    width: 80px;
    padding: 10px;
    font: bold 14px/1 "Nanum Gothic";
    border: 1px solid #888;
    color: #555;
    outline: none;
    background: #fff;
}
.popup .form-add .info_select{
    width: 140px;
}
.popup .btn_box{
    position: relative;
    width: 40%;
    margin: 0 auto;
    text-align: center;
    padding: 24px 0;
}
.popup .btn_box .btnUpdate{
    font: bold 16px/1 "Nanum Gothic";
    padding: 8px 18px;
    transition: all 0.5s;
    margin: 0 4px;
    cursor: pointer;
    background: #edc47e;
    border: 1px solid #e6aa43;
}
.popup .btn_box .btnUpdate:hover{
    background: #e6aa43;
    color: #fff;
}
.popup .inner form #pwConfirm{
    width: 80%;
    margin: 0 auto;
    text-align: right;
    font: bold 16px/1 "Nanum Gothic";
    color: #eee;
    padding-right: 10px;
}


.manage .form-textarea{
    width: 80%;
    height: 300px;
    margin: 0 auto;
    padding: 8px 0;
}
.manage .form-textarea label{
    display: block;
    float: left;
    width: 30%;
    text-align: center;
    padding: 16px 0;
    font: bold 18px/1 "Nanum Gothic";
    color: #eee;
}
.manage .form-textarea textarea{
    display: block;
    float: left;
    width: 68%;
    height: 100%;
    margin: 0 auto;
    resize: none;
    border: none;
    font: normal 16px/1.8 "Nanum Gothic";
    background: #e8f6fa;
    padding: 10px;
    outline: none;
}

.manage .btn_box{
    position: relative;
    width: 40%;
    margin: 0 auto;
    text-align: center;
    padding: 24px 0;
}
.manage .btn_box .btnAddition, .manage .btn_box .btnUpdate, .manage .btn_box .btnDelete{
    font: bold 16px/1 "Nanum Gothic";
    padding: 8px 18px;
    transition: all 0.5s;
    margin: 0 4px;
    cursor: pointer;
    color: #fff;
    border: none;
}
/*관리 버튼 양식*/
.manage .manage_table .btnAddition, .manage .manage_table .btnUpdate, .manage .manage_table .btnDelete{
    font: bold 14px/1 "Nanum Gothic";
    padding: 6px 10px;
    transition: all 0.5s;
    margin: 0 4px;
    cursor: pointer;
    color: #fff;
    border: none;
}
.manage .btnAddition{
    background: #e75786;
}
.manage .btnUpdate {
    background: #1d7cd8;
}
.manage .btnDelete{
    background: #3e444b;
}

.inner .writeBtn{
    position: absolute;
    top: 92px;
    left: 8px;
}
.inner .writeBtn a{
    display: inline-block;
    font: bold 16px/1 "Nanum Gothic";
    padding: 10px 16px;
    color: #eee;
    background: #e75786;
    border-radius: 4px;
    transition: all 0.5s;
    box-sizing: border-box;
} 
.inner .dateInfo{
    width: 100%;
    text-align: right;
    font: normal 16px/1 "Nanum Gothic";
    padding: 14px 0;
    color: #eee;
} 
.inner .productInfo{
    position: absolute;
    top: 98px;
    left: 140px;
}
.inner .productInfo a{
    font: bold 14px/1 "Nanum Gothic";
    color: #eee;
    background: #176669;
    padding: 10px 16px;
    border-radius: 2px;
}
.inner .productInfo img{
    width: 16px;
}
.inventory_box{
    display: none;
    width: 70%;
    margin: 0 auto;
    height: calc(100vh - 176px);
    position: relative;
    overflow: hidden;
    padding: 36px;
}
.inventory_box .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 54px 72px;
    position: relative;
    z-index: 999;
    opacity: 0.9;
}

.inventory_box .inner .close{
    position: absolute;
    top: 40px;
    right: 20px;
    cursor: pointer;
}
.inventory_box .inner ul{
    display: none;
    height: 100%;
    position: relative;
    overflow: auto;
}
.inventory_box .inner ul::-webkit-scrollbar {
    width: 10px;
}
.inventory_box .inner ul::-webkit-scrollbar-thumb {
    background-color: #00979c;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.inventory_box .inner ul::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}
.inventory_box .inner ul li{
    font: normal 14px/1 "Nanum Gothic";
    color: #121212;
    padding: 10px 0;
}
/*모달창 배경*/
.inventoryModal_bg{
    display: none;
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 99;
}

.main_section .inner .ul_section{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.main_section .inner .ul_section li{
    width: 24%;
    height: 100%;
    border: 2px solid transparent;
    border-image: linear-gradient(to top, #00979c 0%, #aaa 100%);
    border-image-slice: 1;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.5s;
}
.main_section .inner .ul_section li:nth-child(1){
    background-image: url(../img/main_section_01.jpg);
}
.main_section .inner .ul_section li:nth-child(2){
    background-image: url(../img/main_section_02.jpg);
}
.main_section .inner .ul_section li:nth-child(3){
    background-image: url(../img/main_section_03.jpg);
}
.main_section .inner .ul_section li:nth-child(4){
    background-image: url(../img/main_section_04.jpg);
}
.main_section .inner .ul_section li a{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    transition: all 0.5s;
}
.main_section .inner .ul_section li:hover{
    border-image: linear-gradient(to bottom, #00979c 0%, #aaa 100%);
    border-image-slice: 1;
    background-color: #000;
    background-image:none;
    box-shadow: 1px 1px 6px #555;
}
.main_section .inner .ul_section li a:hover{
    opacity: 0;
    
}
.main_section .inner .ul_section li .section_title{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%);
    font: bold 36px/1 "Nanum Gothic";
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

/*다운로드 페이지*/

.download .inner ul{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: center;
}
.download .inner li{
    width: 380px;
    height: 480px;
    background-image: url(../img/reference_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid #00979c;
    padding-top: 28px;
    margin-bottom: 30px;
    box-sizing: border-box;
    transition: all 0.5s;
}
.download .inner li:hover{
/*    border: none;*/
    box-shadow: 4px 4px 6px #555;
}
.download .inner .download_img{
    position: relative;
    width: 320px;
    height: 320px;

    margin: 0 auto;
}
.download .inner .download_img .kit_img{
    width: 100%;
    border-radius: 8px;
}
.download .inner .download_img .kit_symbol{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
}
.download .inner .download_title{
    padding-top: 18px;
    text-align: center;
    font: bold 18px/1 "Nanum Gothic";
    color: #eee;
}
.download .inner .download_box{
    padding-top: 24px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: center;
    text-align: center;
}
.download .inner .download_box a{
    font: normal 14px/1 "Nanum Gothic";
    color: #eee;
    line-height: 30px;
}

/*모달창 배경*/
.reference_modal{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 99;
}
.reference_modal .close{
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}
.reference_modal iframe{
    position: absolute;
    width: 87%;
    height: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*표 테이블*/
.manage .manage_table{
    width: 100%;
    font: normal 14px/1 "Nanum Gothic";
    border-collapse: collapse;
    border: 1px solid #70c9cf;
}
.manage .manage_table tr{
    height: 48px;
    text-align: center;
    background: #eee;
}
.manage .manage_table tr:nth-child(2n){
    background-color: #f9f9f9;
}
.manage .manage_table th {
    background: #00979c;
    color: #f8f7ea;
}
.manage .manage_table td:last-child form{
    display: inline;
}

/*회원 목록 테이블*/
.member_table .info th:nth-child(1){
    width: 5%;
}
.member_table .info th:nth-child(2){
    width: 14%;
}
.member_table .info th:nth-child(3){
    width: 14%;
}
.member_table .info th:nth-child(4){ 
    width: 14%;
}
.member_table .info th:nth-child(5){  
    width: 14%;
}
.member_table .info th:nth-child(6){  
    width: 8%;
}
.member_table .info th:nth-child(7){  
    width: 16%;
}

/*재고 관리 테이블*/

.inventory_table .info th:nth-child(1){
    width: 5%;
}
.inventory_table .info th:nth-child(2){
    width: 9%;
}
.inventory_table .info th:nth-child(3){
    width: 22%;
}
.inventory_table .info th:nth-child(4){
    width: 14%;
}
.inventory_table .info th:nth-child(5){
    width: 9%;
}
.inventory_table .info th:nth-child(6){
    width: 9%;
}
.inventory_table .info th:nth-child(7){
    width: 14%;
}


/*재고 관리 테이블*/
.purchase_table .info th:nth-child(1){
    width: 5%;
}
.purchase_table .info th:nth-child(2){
    width: 8%;
}
.purchase_table .info th:nth-child(3){
    width: 22%;
}
.purchase_table .info th:nth-child(4){
    width: 14%;
}
.purchase_table .info th:nth-child(5){
    width: 8%;
}
.purchase_table .info th:nth-child(6){
    width: 10%;
}
.purchase_table .info th:nth-child(7){
    width: 15%;
}

/*키트 및 자체생산제품 관리 테이블*/
.kit_table .info th:nth-child(1){
    width: 6%;
}
.kit_table .info th:nth-child(2){
    width: 24%;
}
.kit_table .info th:nth-child(3){
    width: 12%;
}
.kit_table .info th:nth-child(4){
    width: 12%;
}
.kit_table .info th:nth-child(5){
    width: 12%;
}

/*구성품 관리 테이블*/
.components_table .info th:nth-child(1){
    width: 6%;
}
.components_table .info th:nth-child(2){
    width: 30%;
}
.components_table .info th:nth-child(3){
    width: 16%;
}
.components_table .info th:nth-child(4){
    width: 14%;
}
.components_table .info th:nth-child(5){
    width: 14%;
}


/*학습 공지 테이블*/
.noticeTable .info th:nth-child(1){
    width: 5%;
}
.noticeTable .info th:nth-child(2){
    width: 40%;
}
.noticeTable .info th:nth-child(3){
    width: 10%;
}
.noticeTable .info th:nth-child(4){ 
    width: 8%;
}
.noticeTable .info th:nth-child(5){ 
    width: 16%;
}
.noticeTable .info th:nth-child(6){ 
    width: 6%;
}
.noticeTable td:nth-child(2){
    font-weight: bold;
}


.notice_manage .inner .pagingNum {
    width: 70%;
    text-align: center;
    border-right: 0;
    margin: 0 auto;
    padding: 18px 0;
}
.notice_manage .inner .pagingNum ul{
    display: inline-block;
}
.notice_manage .inner .pagingNum li {
    text-align: center;
    float: left;
}
.notice_manage .inner .pagingNum li a {
    display: block;
    font: normal 14px/1 "Nanum Gothic";
    color: #777;
    padding: 9px 12px;
    box-sizing: border-box;
}
.notice_manage .inner .pagingNum li.on {
    background: #f7be53;
}
.notice_manage .inner .pagingNum li.on a {
    font-size: bold;
    color: #fff;
}

.notice_manage .inner .writeInfo{
    width: 60%;
    margin: 0 auto;
    padding: 32px 0 12px 0;
}
.notice_manage .inner .writeInfo li{
    float: left;
    padding-right: 32px;
    font: normal 18px/1 "Nanum Gothic";
    color: #eee;
}
.notice_manage .question{
    width: 60%;
    margin: 0 auto;
    padding: 18px 12px;
    font: bold 20px/1 "Nanum Gothic";
    color: #121212;
    background: #eee;
}
.notice_manage .inner .contents{
    width: 60%;
    margin: 0 auto;
    font: normal 16px/1.6 "Nanum Gothic";
    color: #121212;
    background: #ddd;
    padding: 12px;
}
.notice_manage .inner .answer_title{
    width: 60%;
    margin: 0 auto;
    font: bold 20px/1 "Nanum Gothic";
    color: #eee;
    padding: 32px 0 12px 0;
}
.notice_manage .inner .attachment_self{
    width: 75%;
    margin: 0 auto;
    padding: 12px;
}
.notice_manage .inner .attachment_self li{
    width: 100%;
    padding: 12px 0;
}
.notice_manage .inner .attachment_self li img{
    width: 100%;
    object-fit: contain;
}

.notice_manage .inner .attachment{
    width: 60%;
    margin: 0 auto;
    padding: 12px;
    background: #ddd;
}
.notice_manage .inner .attachment li{
    width: 100%;
    padding: 10px 0;
}
.notice_manage .inner .attachment li img{
    width: 100%;
    object-fit: contain;
}
.notice_manage .inner .attachment_title{
    width: 60%;
    margin: 0 auto;
    font: normal 18px/1 "Nanum Gothic";
    color: #eee;
    padding: 32px 0 12px 0;
}
.notice_manage .inner .answer{
    width: 60%;
    margin: 0 auto;
    font: normal 16px/1.6 "Nanum Gothic";
    color: #121212;
    background: #ddd;
    padding: 12px;
}
.notice_manage .inner .admin_answer{
    width: 100%;
    height: 300px;
    margin: 0 auto;
    padding: 8px 0;
}
.notice_manage .inner .admin_answer textarea{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    resize: none;
    border: none;
    font: normal 16px/1.8 "Nanum Gothic";
    background: #e8f6fa;
    padding: 10px;
    outline: none;
}
.notice_manage .inner .inputFile{
    cursor: pointer;
    background: #eee;
}



/*회원 마이페이지*/
.mypage .inner .idcard{
    position: relative;
    width: 260px;
    height: 400px;
    margin: 0 auto;
    background-image: url(../img/idcard.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.mypage .inner .idcard .photo{
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #ccc;
}
.mypage .inner .idcard .info{
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100px;
    margin: 0 auto;
    font: normal 12px/1 "Nanum Gothic";
    border-collapse: collapse;
    border: none;
    text-align: center;
}
.mypage .inner .idcard .info td{
    padding: 8px 0;
}
.mypage .inner .idcard .info td:nth-of-type(2n-1){
    width: 20%;
    color: #888;
}
.mypage .inner .idcard .info td:nth-of-type(2n){
    width: 30%;
    font-weight: bold;
    color: #333;
}

/*푸터*/
footer {
  width: 100%;
  position: relative;
  overflow: hidden;
}
footer p{
  width: 80%;
  height: 36px;
  margin: 0 auto;
  font: normal 12px/36px "Nanum Gothic";
  color: #888;
  text-align: center;
}

@media screen and (max-width: 1279px) {
  html.open{
    /*메뉴가 열렸을때 본문이 스크롤 되지 않는다.*/
    overflow: hidden;
  }
  header .inner {
    width: 90vw;
    height: 180px;
  }

  header .inner .logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
    header .inner .logo img {
      width: 200px;
    }
  header .welcome{
    display: none;
  }
  header .inner .top_menu {
    display: none;
  }
  header .inner .nav {
    display: none;
  }
    

  header .inner .btn{
    /*메뉴 여는 버튼*/
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1;
    background-image: url(../img/btn.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header .inner .close{
    /*메뉴 닫는 버튼*/
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    background-image: url(../img/close.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer 
  }
  header .inner #menu{
    /*메뉴 영역*/
    display: block;
    width: 30%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -30%;
    z-index: 10;
    background-color: #8cd8ed;
    text-align: center;
    transition: All 0.3s ease;
     -webkit-transition: All 0.3s ease;
     -moz-transition: All 0.3s ease;
     -o-transition: All 0.3s ease;
  }
  header .inner #menu.open{
     left: 0;
  }
  header .inner .page_cover.open{
     display: block;
  }
  header .inner .page_cover{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 4;
    display: none;
  }
    header .inner #menu .tap_top_menu{
        padding-top: 100px;
    }
    header .inner #menu .tap_top_menu li{
        width: 70%;
        margin: 0 auto;
    }
    header .inner #menu .tap_top_menu li a{
        display: inline-block;
        width: 100%;
        height: 48px;
        border-bottom: 1px solid #ddd;
        font: normal 14px/48px "Nanum Gothic";
        color: #555;
        transition: all 0.5s;
    }
    header .inner #menu .tap_top_menu li a:hover{
        color: #338095;
        font-weight: bold;
        border-bottom: 1px solid #338095;
    }
    
    header .inner #menu .tap_nav{
        padding-top: 40px;
    }
    header .inner #menu .tap_nav li{
        width: 70%;
        margin: 0 auto;
    }
    header .inner #menu .tap_nav li a{
        display: inline-block;
        width: 100%;
        height: 54px 0;
        border-bottom: 1px solid #f8f7ea;
        font: bold 16px/54px "Nanum Gothic";
        color: #338095;
        transition: all 0.5s;
    }
    header .inner #menu .tap_nav li a:hover{
        color: #f8f7ea;
        background: #338095;
        border-bottom: 1px solid #338095;
    }    
    figure {
      padding: 100px 0 120px 0;
    }
    figure .inner {
        width: 90vw;
    }
    figure .inner h3 {
        font: bold 42px/1 "Nanum Gothic";
    }
    figure .inner h1 {
        font: bold 56px/1 "Nanum Gothic";
    }
    figure .inner p {
        width: 440px;
        font: normal 14px/1.6 "Nanum Gothic";
    }
    figure .inner a {
        width: 180px;
        height: 54px;
        font: bold 20px/54px "Nanum Gothic";
    }

    .admin_manage{
        padding: 48px 0;
    }
    .admin_manage .inner{
        width: 80%;
    }

    .manage{
        padding: 28px 0;
     }
    .manage .inner{
        width: 80%;
    }

    .manage .form-add{
        width: 60%;
    }
    .manage .btn_box{
        width: 60%;
    }
    .manage .form-add label{
        width: 20%;
    }
    .manage .form-add input{
        width: 78%;
    }
    .manage .form-add select{
        width: 60px;
    }
    .main_section .inner .ul_section li .section_title{
        font: bold 24px/1 "Nanum Gothic";
        line-height: 1.5;
    }
}

@media screen and (max-width: 959px) {
    
    header .inner .btn{
        /*메뉴 여는 버튼*/
        left: 0;
        top: 20px;
        background-size: 60%;
    }
    header .inner .close{
        /*메뉴 닫는 버튼*/
        right: 10px;
        top: 10px;
        background-size: 60%;
    }
    header .inner #menu{
        /*메뉴 영역*/
        width: 50%;
        left: -50%;
    }


    header .inner .logo img {
      width: 180px;
    }
    .login_box{
        padding: 60px 0;
    }
    .login_box .inner{
        width: 90%;
    }
    .login_box .inner form{
        padding: 24px 0;
    }
    .login_box .inner .login_title{
        font: bold 24px/1 "Nanum Gothic";
        padding: 24px 0;
    }
    .login_box .inner form .form-group label{
        width: 80%;
        display: block;
        margin: 0 auto;
        text-align: left;
        padding: 0 0 10px 10px;
    }
    .login_box .inner form .form-group input{
        width: 80%;
        display: block;
        margin: 0 auto;
    }

    
    figure {
        padding: 80px 0 120px 0;
    }
    figure .inner {
        width: 90%;;
    }
    figure .inner h3 {
        font: bold 28px/1 "Nanum Gothic";
    }
    figure .inner h1 {
        font: bold 36px/1 "Nanum Gothic";
    }
    figure .inner p {
        width: 90%;
        font: normal 12px/1.6 "Nanum Gothic";
    }
    figure .inner a {
      width: 160px;
      height: 48px;
      font: bold 20px/48px "Nanum Gothic";
      border-radius: 3px;
    }
    
    .admin_manage{
       padding: 24px 0;
    }
    .admin_manage .inner{
        width: 90%;
        height: 24px;
    }
    .admin_manage .inner h1{
        font: bold 28px/1 "Nanum Gothic";
    }
    .admin_manage .inner ul{
        width: 100%;
    }
    .admin_manage .inner li a{
        font: bold 18px/1 "Nanum Gothic";
    }


    .manage .inner{
        width: 96%;
    }
    .manage .inner::-webkit-scrollbar {
        width: 8px;
    }
    
    .manage .title{
        font: bold 18px/1 "Nanum Gothic";
        padding-bottom: 28px;
    }
    .inner .dateInfo{
        font: normal 12px/1 "Nanum Gothic";
    } 
    .manage .user_title{
        font: bold 22px/1 "Nanum Gothic";;
    }
    
    .manage .manage_table{
        width: 100%;
        font: normal 10px/1 "Nanum Gothic";
        table-layout: fixed;
    }
    .manage .manage_table tr{
        height: 40px;
    }
    .manage .manage_table td{
        overflow: hidden;
    }
    .manage .manage_table .btnAddition, .manage .manage_table .btnUpdate, .manage .manage_table .btnDelete{
        font: bold 10px/1 "Nanum Gothic";
        padding: 2px;
        margin: 0 1px;
    }
    .manage .time_view{
        font: normal 12px/1 "Nanum Gothic";
        padding: 12px;
    }
    .manage .std_method, .manage .std_period{
        font: normal 10px/1 "Nanum Gothic";;
        padding: 10px 0 0 5px;
    }
    .manage .select_grade select{
        width: 250px;
        height: 40px;
        font: bold 20px/1 "Nanum Gothic";
    }
    .manage .select_grade .btnDone{
        width: 64px;
        height: 40px;
        font: bold 14px/1 "Nanum Gothic";
    }
    .user_manage .user_result li{
        font: normal 14px/1 "Nanum Gothic";
        padding: 6px 0 12px 4px;
    }
    .user_manage .user_result img{
        width: 14px;
    }

    .form_manage .inner form{
        width: 96%;
    }
    .form_manage .inner form .title{
        font: bold 18px/1 "Nanum Gothic";
    }
    .form_manage .inner .form-add{
        width: 96%;
    }
    .form_manage .inner .btn_box{
        width: 96%;
    }
    .form_manage .inner .form-add label{
        font: bold 12px/1 "Nanum Gothic";
        width: 28%;
        padding: 12px 0;
    }
    .form_manage .inner .form-add input{
        font: bold 12px/1 "Nanum Gothic";
        width: 70%;
    }
    .form_manage .inner .form-add select{
        width: 70%;
        padding: 8px 4px;
        font: bold 12px/1 "Nanum Gothic";
    }

    .main_section .inner .ul_section{
        display: block;
    }
    .main_section .inner .ul_section li{
        width: 92%;
        height: 50%;
        margin: 20px auto;
    }

    .manage .manage_table .btnAddition, .manage .manage_table .btnUpdate, .manage .manage_table .btnDelete{
        font: bold 10px/1 "Nanum Gothic";
        padding: 6px 10px;
    }

    .inner .writeBtn{
        top: 76px;
    }
    .inner .writeBtn a{
        font: bold 12px/1 "Nanum Gothic";
        padding: 8px 14px;
        border-radius: 2px;
    }

    .inner .productInfo{
        top: 80px;
        left: 104px;
    }
    .inner .productInfo a{
        font: normal 10px/1 "Nanum Gothic";
        padding: 8px 6px;
    }
    .inner .productInfo img{
        width: 14px;
    }
    .inventory_box{
        width: 100%;
        height: calc(100vh - 271px);
        padding: 18px;
    }
    .inventory_box .inner{
        padding: 64px 16px 16px;
    }
    .inventory_box .inner .close{
        top: 30px;
        right: 10px;
    }

    .inventory_table .info th:nth-child(5), .inventory_table td:nth-child(5), .inventory_table .info th:nth-child(7), .inventory_table td:nth-child(7){
        display: none;
    }
    /*재고 관리 테이블*/
    .inventory_table .info th:nth-child(1){
        width: 8%;
    }
    .inventory_table .info th:nth-child(2){
        width: 10%;
    }
    .inventory_table .info th:nth-child(3){
        width: 26%;
    }
    .inventory_table .info th:nth-child(4){
        width: 15%;
    }
    .inventory_table .info th:nth-child(5){
        width: 13%;
    }
    .inventory_table .info th:nth-child(6){
        width: 12%;
    }
    .inventory_table .info th, .inventory_table td{
        line-height: 12px;
    }


    .purchase_table .info th:nth-child(7), .purchase_table td:nth-child(7){
        display: none;
    }
    /*재고 관리 테이블*/
    .purchase_table .info th:nth-child(1){
        width: 5%;
    }
    .purchase_table .info th:nth-child(2){
        width: 10%;
    }
    .purchase_table .info th:nth-child(3){
        width: 20%;
    }
    .purchase_table .info th:nth-child(4){
        width: 15%;
    }
    .purchase_table .info th:nth-child(5){
        width: 9%;
    }
    .purchase_table .info th:nth-child(6){
        width: 12%;
    }
    .purchase_table .info th, .purchase_table td{
        line-height: 12px;
    }


    .kit_table .info th:nth-child(3), .kit_table td:nth-child(3){
        display: none;
    }
    /*키트 및 자체생산제품 관리 테이블*/
    .kit_table .info th:nth-child(1){
        width: 6%;
    }
    .kit_table .info th:nth-child(2){
        width: 24%;
    }
    .kit_table .info th:nth-child(3){
        width: 12%;
    }
    .kit_table .info th:nth-child(4){
        width: 11%;
    }
    .kit_table .info th:nth-child(5){
        width: 12%;
    }
}
