@charset "UTF-8";
/* CSS Document */

@import "reset.css";
@import "common.css";

body{
	background: var(--bg1);
	/*-webkit-text-size-adjust:none*/
}

.wrap{
	padding-top: 50px;
	padding-bottom: 20px;
}
.contents{
}
.page-wrap{
	padding: 0 16px;
}

/* Header */
.header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 0 16px;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: var(--color-s-dark4);
}
.header-ttl{
	position: absolute;
	top: 0;
	left: 56px;
	width: calc(100% - 112px);
	height: 50px;
	text-align: center;
	vertical-align: middle;
	line-height: 50px;
}
.header-menu{
	position: absolute;
	left: 16px;
	top: 5px;
	border: 0;
	background: url('../images/ic_menu.svg') no-repeat center center;
	width: 40px;
	height: 40px;
}
.header-menu:hover{
	border: 0;
	background: url('../images/ic_menu_over.svg') no-repeat center center;
}
/* Header 로그인 정보 */
.top-head{
	padding: 0 16px;
	border-bottom: 1px solid var(--line);
	height: 40px;
	line-height: 40px;
	display: flex;
	justify-content: space-between;
	align-content: center;
	flex-wrap: nowrap;
	background: var(--color-w);
	font-size: 14px;
	color: var(--color-txt)
}
.job-grade{
	border-radius: 4px;
	padding: 0 6px;
	margin-right: 4px;
	height: 20px;
	line-height: 22px;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-w);
}
.job-grade.grade1{color: var(--color-w); background: grey;}
.job-grade.grade2{color: var(--color-w); background: darkgray;}
.job-grade.grade3{color: var(--color-w); background: lightcoral;}
.job-grade.grade4{color: var(--color-w); background: darkseagreen;}
.job-grade.grade5{color: var(--color-w); background: lightskyblue;}
.job-grade.grade6{color: var(--color-w); background: darkgoldenrod;}
.top-head-name{
	color: var(--color-p);
	font-weight: 500;
}
.top-head-btn{
	border: 1px solid var(--line);
	border-radius: 2px;
	height: 24px;
	line-height: 24px;
	padding: 0 12px;
	background: var(--color-w);
	font-size: 12px;
	color: var(--color-txt);
}
.top-index-btn{
	border: 1px solid var(--line);
	border-radius: 2px;
	height: 24px;
	line-height: 24px;
	padding: 0 12px;
	background: #1d9eff;
	font-size: 12px;
	color: #ffffff;
}
/*--// Header 로그인 정보 */

/* 메뉴 */
.aside-mobile{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	background: rgba(0, 0, 0, 0.4);
	display: none;
}
.aside{
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-s-dark4);
	width: 180px;
	height: 100vh;
	color: var(--color-s);
	font-size: 14px;
}
.gnb-logo{
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid var(--color-s-dark3);
}
.aside .btn-x{
	position: absolute;
	top: 5px;
	right: 0;
	width: 40px;
	height: 40px;
	background: url('../images/ic_x.svg') no-repeat center center;
}
.aside .btn-x:hover{
	background: url('../images/ic_x_over.svg') no-repeat center center;
}
.gnb{
	font-size: 14px;
	font-weight: 700;
	color: var(--color-s);
}
.gnb-ul{
	margin-top: 20px;
	line-height: 40px;
}
.gnb-li{
	position: relative;
}
.gnb-li i{
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	background: url('../images/ic_menu_open.svg') no-repeat center center;
}
.gnb-li.on i, .gnb-li:active i, .gnb-li:hover i{
	background: url('../images/ic_menu_close.svg') no-repeat center center;
}
.gnb-a{
	display: block;
	padding-left: 20px;
}
.gnb-li.on, .gnb-li:hover, .gnb-li:active{
	color: #ffffff;
	background: var(--color-s-dark2);
}
.gnb-li.on:before, .gnb-li:hover:before, .gnb-li:active:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 40px;
	background: var(--color-p);
}
.gnb-li.on .sub-ul{
	display: block;
}
/* 하위메뉴 */
.sub-ul{
	line-height: 30px;
	padding: 10px 0;
	background: var(--color-s-dark3);
	font-size: 12px;
	font-weight: 400;
	display: none;
	color: var(--color-s);
}
.sub-li{
	padding-left: 20px;
}
.sub-li.on, .sub-li:hover, .sub-li:active{
	color: var(--color-p);
}
/*--// 메뉴 */
/*--/ Header */

/* Contents */
.page-hd{
	padding-top: 20px;
	padding-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.page-ttl{
	font-size: 18px;
	color: var(--color-txt-dark);
	font-weight: 500;
}
.page-hd .user{
	font-size: 14px;
	font-weight: 500;
}
.user-ttl{
	color: var(--color-txt-dark);
}
.user-txt{
	color: var(--color-p);
}

/* fieldset */
.set-field{
	border-radius: 4px;
	border: 1px solid var(--line);
	padding: 8px 16px 24px;
	font-size: 14px;
	color: var(--color-txt);
	background: var(--color-w);
}
.set-field-dl{
	margin-top:16px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.set-field-dt{
	width: 100px;
	font-size: 12px;
	color: var(--color-txt-dark);
}
.set-field-dd{
	width: calc(100% - 80px);
	color: var(--color-txt);
	text-align: left;
	grid-gap: 8px;
}
.set-field-dd input, .set-field-dd select{
	width: 100%;
	height: 36px;
}
.set-field-dd input, .set-field-dd select, .set-field-dd button{
	margin: 3px 0px;
}
.set-field-dd .w-join-50per{
	width: 50%;
}
.set-field-dd .w-join1{
	width: calc(100% - 84px);
}

.searchbox{
	padding: 20px 0;
	text-align: right;
}
.searchbox-ttl{
	display: inline-block;
	font-size: 14px;
}
.searchbox-value{
	display: inline-block;
}

/* 검색버튼 - 220429 */
.btn-basic{
	height: 36px;
	background: var(--color-p);
	padding: 0 20px;
	border-radius: 4px;
	border: 0;
	min-width: 80px;
	color: var(--color-w);
	font-size: 14px;
}
.btn-basic.dark{
	background: var(--color-s-dark4);
}
.btn-basic.light{
	background: var(--color-s);
}

/* 공지사항 */
.notice-search{
	border-radius: 4px;
	margin-bottom: 12px;
	padding: 16px;
	background: var(--bg2);
	text-align: center;
	font-size: 14px;
}
.notice-search select{
	width: 30%;
}
.notice-search input{
	width: calc(70% - 88px);
}
.btn-search{
	height: 36px;
	background: var(--color-p);
	padding: 0 20px;
	border-radius: 4px;
	width: 80px;
	border: 0;
	color: var(--color-w);
	font-size: 14px;
}
.notice-ul{
	border-top: 2px solid var(--color-s);
}
.notice-li{
	border-bottom: 1px solid var(--line);
	padding: 16px 0;
	font-size: 14px;
	cursor: pointer;
}
.notice-li-ttl{
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	color: var(--color-txt-dark);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.notice-li-txt{
	margin-top: 8px;
	font-weight: 400;
	color: var(--color-txt);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.notice-li:active{
	background: var(--bg2);
}
.notice-li:active .notice-ttl, .notice-li:active .notice-txt{
	color: var(--color-p);
}
.notice-li-date{
	margin-top: 8px;
	color: var(--color-txt-light);
}

.notice-vi-ttl{
	border-top: 2px solid var(--color-s);
	border-bottom: 1px solid var(--line);
	padding: 16px 0;
	font-size: 16px;
	line-height: 1.2em;
	color: var(--color-txt-dark);
}
.notice-vi-date{
	padding-top: 8px;
	font-size: 14px;
	color: var(--color-txt-light);
	text-align: right;
}
.notice-vi-txt{
	padding: 20px 0;
	font-size: 14px;
	color: var(--color-txt);
}

/* Button */
.set-btn{
	padding: 30px 0;
	text-align: center;
}
.btn-lnb{
	border: none;
	border-radius: 4px;
	margin-right: 16px;
	width: 100%;
	height: 54px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-w);
	background: var(--color-s);
}
.btn-lnb:last-child{margin-right: 0;}
.btn-lnb.submit{
	background: var(--color-p);
}
.btn-lnb.modify{
	background: var(--color-s);
}
.btn-lnb.delete{
	background: var(--color-error);
}
.btn-more{
	border: 1px solid var(--line);
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: rgba(255, 255, 255, 0);
	font-size: 14px;
	color: var(--color-txt);
}


/* 로그인 */
.content-login{
	padding: 60px 32px 0;
}
.logo-login{
	text-align: center;
	padding: 40px 0;
}
.logo-login img{
	width: 120px;
}
.login-ttl{
	font-size: 20px;
	font-weight: 500;
	color: var(--color-txt-dark);
}
.login-ttl.ttl-pw{
	color: var(--color-error);
}
.login-txt{
	padding: 8px 0;
	line-height: 1.2em;
	font-size: 12px;
	font-weight: 400;
	color: var(--color-txt-light);
}
.login-input{
	margin-top: 8px;
}
.login-input input{
	padding-left: 40px;
	width: 100%;
	height: 48px;
	background-repeat: no-repeat;
	background-position: left 8px center;
}
.login-input input.ic-id{
	background-image: url('../images/ic_id.svg')
}
.login-input input.ic-pw{
	background-image: url('../images/ic_pw.svg')
}
.login-input input.ic-phone{
	background-image: url('../images/ic_phone.svg')
}
.login-input input.ic-mail{
	background-image: url('../images/ic_mail.svg')
}
.btn-login{
	border-radius: 4px;
	border: 0;
	margin-top: 30px;
	width: 100%;
	height: 54px;
	background: var(--color-p);
	font-size: 16px;
	font-weight: 500;
	color: var(--color-w);
}
.login-etc{
	margin-top: 20px;
	font-size: 14px;
	color: var(--color-txt);
}
.login-etc-value{
	color: var(--color-txt-dark);
	font-weight: 500;
}


/* 팝업 */
.popup{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 4px;
	width: calc(100% - 32px);
	background: #ffffff;
	overflow: hidden;
}
.popup-hd{
	padding: 20px;
	height: 60px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	background: var(--color-w);
}
.popup-ttl{
	font-size: 14px;
	color: var(--color-txt-dark);
	font-weight: 700;
}
.popup-ttl:before{
	content: "";
	display: inline-block;
	width: 2px;
	height: 16px;
	margin-right: 8px;
	background: var(--color-p);
	vertical-align: text-bottom;
}
.popup-x{}
.popup-x .btn-x{
	display: block;
	width: 20px;
	height: 20px;
	background: url('../images/ic_pop_x.svg') center no-repeat;
	color: transparent;
	vertical-align: middle;
}
.popup-x .btn-x:hover, .popup-x .btn-x:active{
	background-image: url('../images/ic_pop_x_over.svg');
}
.set-search-pop{
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--bg2);
	padding: 10px 20px;
}
.set-search-field{
	font-size: 12px;
	color: var(--color-txt);
	width: 100%;
}
.set-search-field .w-input{
	width: calc(100% - 84px);
}
.set-search-field .w-input2{
	width: calc(100% - 84px);
}
.scroll-y{
	overflow-y: auto;
	height: 420px;
}
.pop-field{
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	grid-row-gap: 20px;
}
.pop-field-dl{
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--color-txt);
	line-height: 30px;
}
.pop-field-dt{
	width: 100px;
	font-size: 12px;
	color: var(--color-txt-dark);
}
.pop-field-dd{
}
.pop-btn-set{
	padding: 20px;
	text-align: center;
}


@media(min-width:601px) and (max-width:780px){
	.header{display: none;}
	.wrap{
		padding-top: 0px;
		padding-bottom: 20px;
		display: flex;
		align-content: space-between;
	}
	.contents{
		width: calc(100% - 180px);
		margin-left: 180px;
	}
	.top-head-txt{
		flex: 1;
		text-align: right;
		padding-right: 8px;
	}
	/* 메뉴 */
	.aside-mobile{
		z-index: 20;
		width: 180px;
		display: block;
	}
	.aside .btn-x{
		display: none;
	}
	table td{font-size: 14px;}

	/* fieldset */
	.set-field{
		padding: 44px 60px 60px;
		text-align: center;
	}
	.set-field-dt{
		text-align: left;
	}
	.set-field-dd{
	width: calc(100% - 80px);
	}
	.btn-lnb{
		width: 360px;
	}

	/* 공지사항 */
	.notice-search{
		background: transparent;
		text-align: right;
		padding: 0;
	}
	.notice-li{
		display: flex;
		align-content: space-between;
		align-items: center;
		flex-wrap: nowrap;
	}
	.notice-li-cont{
		flex: 1;
	}
	.notice-li-date{
		width: 100px;
	}
	
	
	/* 로그인 */
	.content-login{
		padding: 120px 0;
	}
	.loginbox{
		margin: 0 auto;
		border-radius: 8px;
		padding: 60px 80px;
		border: 1px solid var(--line);
		width: 600px;
		background: var(--color-w);
	}
	.logo-login img{
		width: 240px;
	}
	
	.popup{
		width: 600px;
	}
	.set-search-field .w-input2{
		width: calc(100% - 200px);
	}
}

@media(min-width:781px){
	.header{display: none;}
	.wrap{
		padding-top: 0px;
		padding-bottom: 20px;
		display: flex;
		align-content: space-between;
	}
	.contents{
		width: calc(100% - 180px);
		margin-left: 180px;
	}
	.top-head-txt{
		flex: 1;
		text-align: right;
		padding-right: 8px;
	}
	/* 메뉴 */
	.aside-mobile{
		z-index: 20;
		width: 196px;
		display: block;
	}
	.aside .btn-x{
		display: none;
	}
	table td{font-size: 14px;}

	/* fieldset */
	.set-field{
		padding: 44px 60px 60px;
		text-align: center;
	}
	.set-field-dl{
		justify-content: flex-start;
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
	.set-field-dt{
		text-align: left;
	}
	.set-field-dd{
		width: 440px;
		color: var(--color-txt);
	}
	.set-btn{
	}
	.btn-lnb{
		width: 360px;
	}

	.notice-search{
		background: transparent;
		text-align: right;
		padding: 0;
	}
	.notice-search select{
		width: 120px;
	}
	.notice-search input{
		width: 360px;
	}
	.notice-li{
		display: flex;
		align-content: space-between;
		align-items: center;
		flex-wrap: nowrap;
	}
	.notice-li-cont{
		flex: 1;
	}
	.notice-li-date{
		width: 100px;
	}
	
	
	/* 로그인 */
	.content-login{
		padding: 120px 0;
	}
	.loginbox{
		margin: 0 auto;
		border-radius: 8px;
		padding: 60px 80px;
		border: 1px solid var(--line);
		width: 600px;
		background: var(--color-w);
	}
	.logo-login img{
		width: 240px;
	}
	
	.popup{
		width: 600px;
	}
	.set-search-field .w-input2{
		width: calc(100% - 200px);
	}
}


/* 여백 */
.mt-0{margin-top: 0;}
.mt-20{margin-top: 20px;}
.mt-60{margin-top: 60px;}

/* 텍스트 */
.t-error{color: var(--color-error);}
.t-primary{color: var(--color-p);}

/* 2023-08-06  텍스트 add */
input.error,select.error{
    border: 2px solid red;
    background-color: #ffffd5;
    margin: 0;
    color: red
}
label.error {
    display: block;
    color: red;
    font-style: italic;
    font-weight: 400
}
div.error-text {
    display: block;
    color: red;
    font-style: italic;
    font-weight: 400
}

/* 정렬 */
.a-center{text-align: center;}
.a-right{text-align: right;}

/* width-% */
.w-20per{width: 20%;}
.w-25per{width: 25%;}
.w-30per{width: 30%;}
.w-40per{width: 40%;}
.w-45per{width: 45%;}
.w-50per{width: 50%;}
.w-100per{width: 100%;}
/* width-px */
.w-100px{width: 100px;}
.w-110px{width: 110px;}
.w-120px{width: 120px;}
.w-150px{width: 150px;}
.w-155px{width: 155px;}
.w-160px{width: 160px;}
.w-210px{width: 210px;}
.w-220px{width: 220px;}
.w-300px{width: 300px;}
.w-320px{width: 320px;}
.w-390px{width: 390px;}
/* width n/n */
.w-1per3{width: calc( 3 / 100%);}




.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px);
}

@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (.5rem * 2));
    content: "";
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: .5;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-dialog-centered::before {
        height: calc(100vh - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}