@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1190px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

#loadingBar {
	display: none;
	position: fixed;
    background: rgba(0,0,0,0.1);
    z-index: 1;
    width: 100%;
    height: 100%;
}
#loadingBar img {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#header {
	position: fixed;
	top: 0px;
	left: 240px;
	width: calc(100% - 240px);
	z-index: 5;
	background: var(--base2);
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	font-weight: 500;
	color: #fff;
}
#header h1 {
    display: none;
    padding: 6px 20px;
}
#header h1 img {
	width: 115px;
	vertical-align: middle;
}
#header .menu {
	display: none;
	position: absolute;
	top: 18px;
	right: 30px;
	z-index: 1;
}
#header .menu a {
	position: relative;
    display: block;
    width: 20px;
    height: 16px;
}
#header .menu a span {
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	background: var(--key-color);
	left: 0px;
	transition: .3s;
}
#header .menu a span:nth-child(1) {
	top: 0px;
}
#header .menu a span:nth-child(2) {
	top: 6px;
}
#header .menu a span:nth-child(3) {
	top: 12px;
}
#side.on .list {
	right: 0;
}
#side.on .menu a span:nth-child(1) {
	top: 7px;
	transform: rotate(45deg);
}
#side.on .menu a span:nth-child(2) {
	display: none;
}
#side.on .menu a span:nth-child(3) {
	top: 7px;
	transform: rotate(-45deg);
}
.not_scroll {
	overflow: hidden!important;
}


#side {
	position: fixed;
	top: 20px;
	left: 0;
	width: 200px;
	height: calc(100vh - 20px);
	z-index: 4;
	margin-left: 30px;
	box-sizing: border-box;
	transition: opacity .2s;
}
#side .blackBg {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	background: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .2s;
}
#side.on {
	opacity: 1;
	visibility: visible;
	z-index: 3;
}
#side.on .blackBg {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
#side.open {
    width: 0;
}
#side.open h1 a {
	display: none;
}
#side h1 {
	position: relative;
	width: 100%;
	padding: 14px 0;
	box-sizing: border-box;
}
#side h1 a img {
	width: 100%;
	vertical-align: middle;
}
#side h1 #side_btn {
	position: absolute;
	top: 26px;
	right: 0;
	display: block;
	width: 19px;
	height: 34px;
	background: url("../images/side_close.svg")no-repeat 50% 50%;
}
#side .list {
    overflow-y: auto;
    height: calc(100vh - 190px);
    margin-bottom: 20px;
}
#side .list::-webkit-scrollbar {
    width: 5px;
}
#side .list::-webkit-scrollbar-thumb {
    background-color: rgba(117, 117, 117, 0.8);
	border-radius: 50px;
}
#side .list::-webkit-scrollbar-track {
	background-color: #fff;
}
#side .list li {
	position: relative;
}
#side .list .depth01 {
	margin-top: 20px;
	background-repeat: no-repeat;
	background-position: 16px 1px;
	border-left: 6px solid var(--base2);
}
#side .list .depth01.side01 {
	background-image: url("../images/side_icon1.svg");
}
#side .list .depth01.side01.active {
	background-image: url("../images/side_icon1_on.svg");
}
#side .list .depth01.side02 {
	background-image: url("../images/side_icon2.svg");
}
#side .list .depth01.side02.active {
	background-image: url("../images/side_icon2_on.svg");
}
#side .list .depth01.side03 {
	background-image: url("../images/side_icon3.svg");
}
#side .list .depth01.side03.active {
	background-image: url("../images/side_icon3_on.svg");
}
#side .list .depth01.side04 {
	background-image: url("../images/side_icon4.svg");
}
#side .list .depth01.side04.active {
	background-image: url("../images/side_icon4_on.svg");
}
#side .list .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	font-size: 16px;
	padding: 3px 0 3px 45px;
	box-sizing: border-box;
}
#side .list .depth01.active {
	border-left: 6px solid var(--point);
}
#side .list .depth01 > a span {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	background: var(--red);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: -0.24px;
	margin-left: 8px;
	font-family: 'Pretendard';
}
#side .list .depth01 > span {
	position: absolute;
	top: 13px;
	right: 0;
	display: block;
	width: 15px;
	height: 15px;
	background: url('../images/ico-arrow-right.svg')no-repeat 50% 50% / 8px;
	cursor: pointer;
}
#side .list .depth01.on > span {
	background: url('../images/ico-down-gray.svg')no-repeat 50% 50% / 11px;
}
#side .list .depth01.on {
	border-radius: 3px;
	border-left: 6px solid var(--point);
}
#side .list .depth02 {
	max-height: 0;
	overflow-y: hidden;
	padding-left: 47px;
	transition: max-height .3s;
	box-sizing: border-box;
}
#side .list .active .depth02 {
	max-height: 1000px;
}
#side .list .depth02 li {
    margin-top: 8px;
}
#side .list .depth02 li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: var(--border-tertiary);
	font-weight: 300;
	text-transform: uppercase;
	word-break: keep-all;
	padding-left: 10px;
}
#side .list .depth02 li a span {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	background: var(--red);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: -0.2px;
	margin-left: 8px;
	font-family: 'Pretendard';
}
#side .list .depth02 li a:before {
	content: '-';
	position: absolute;
	top: 5px;
	left: 0;
}
#side .list .depth02 li.active a {
	font-weight: 400;
}
#side .list > ul > li > a {
	background: url("../images/side_add.svg")no-repeat 95% 50%;
}
#side .list > ul > li.active > a {
	background: url("../images/side_minus.svg")no-repeat 95% 50%;
}
/*#side .list > ul > li.active {
	background: transparent;
}*/
#side .list > ul > li.active > a {
	/*background: url("../images/side_minus.svg")no-repeat 95% 50%;*/
}
#side .list .no_child > a {
	background-image: none!important;
}
#side .site_link {
	background: var(--white);
	text-align: center;
	padding: 16px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
	gap: 10px;
	box-sizing: border-box;
}
#side .site_link .txt_color {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
#side .site_link .logout_btn {
	border-radius: 10px;
	border: 1px solid var(--gray);
	background: var(--white);
	font-size: 12px;
	padding: 2px 0;
}







#container {
	position: relative;
	padding-left: 230px;
	box-sizing: border-box;
}
#side.open + #container {
	padding-left: 0px;
}

.contents {
	padding: 20px 40px;
	box-sizing: border-box;
}
.contents .cont_form {
	background: var(--white);
	min-height: calc(100vh - 100px);
	padding: 30px;
	border-radius: 20px;
}
.contents .cont_form > h3 {
	position: relative;
	font-size: 32px;
	font-weight: 800;
	color: var(--black);
	background: var(--white);
	text-transform: uppercase;
	margin-bottom: 16px;
	gap: 5px;
}
.contents .cont_form > h3 span {
	font-size: 16px;
	font-weight: 500;
}
.contents .cont_form .conts {
	position: relative;
	padding: 20px;
	border-radius: 10px;
	background: var(--base2);
	gap: 20px 0;
	box-sizing: border-box;
}
.contents .cont_form .conts > * {
	width: 100%;
	box-sizing: border-box;
}
.contents .top_box {
	width: max-content;
	padding: 20px 20px 20px 80px;
	border-radius: 10px;
	background: var(--base2) url("../images/side_icon2.svg")no-repeat 20px 50% / 46px;
	margin-bottom: 20px;
	gap: 60px;
	box-sizing: border-box;
}
.contents .top_box > div {
	gap: 4px;
}
.contents .top_box > div h4 {
	font-size: 14px;
}
.contents .top_box > div > div {
	font-family: 'SUIT';
}
.contents .top_box > div > div strong {
	font-size: 20px;
}
.contents .top_box + .btn_box {
	gap: 10px;
	margin-bottom: 20px;
}
.contents .top_box + .btn_box > * {
	padding: 0 40px;
	height: 56px;
	line-height: 60px;
	text-align: center;
	border-radius: 10px;
	box-sizing: border-box;
}
.contents .top_box + .btn_box > *.btn_red {
	padding: 0 20px;
}


.btn_group {
	gap: 10px;
}
.btn_group .filter {
	flex: 1;
	gap: 10px;
}
.btn_group select {
	max-width: 170px;
	height: 52px;
	background-color: var(--white);
	border-radius: 10px;
}
.btn_group .calendar_date {
	gap: 10px;
}
.btn_group .calendar_date input {
	flex: 1;
	max-width: 181px;
	height: 52px;
	border-radius: 10px;
	font-size: 16px;
	padding-left: 60px;
	background: var(--white) url("../images/ico-calendar.svg")no-repeat 20px 50%;
	font-family: 'SUIT';
	box-sizing: border-box;
}
.btn_group .calendar_date span {
	font-size: 16px;
}
.btn_group .keyword_form {
	flex: 1;
	max-width: 412px;
	border-radius: 10px;
	overflow: hidden;
}
.btn_group .keyword_form input[type=text] {
	flex: 1;
	width: 100%;
	height: 52px;
	padding: 0 20px;
	font-size: 16px;
	font-family: 'SUIT';
	box-sizing: border-box;
}
.btn_group .keyword_form .search_btn {
	width: 52px;
	background: var(--key-color) url("../images/ic_search.svg")no-repeat 50% 50%;
}
.btn_group .radio {
	gap: 10px;
}
.btn_group a {
	height: 52px;
	line-height: 56px;
	padding: 0 16px;
	border-radius: 10px;
	font-size: 16px;
	box-sizing: border-box;
}

.t_scroll {
	overflow-x: auto;
}
.t_scroll > .list_table {
	min-width: 1280px;
}
.list_table thead th {
	padding: 20px 10px;
	background: var(--white);
	text-align: center;
	font-weight: 400;
}
.list_table thead th:first-child {
	border-radius: 10px 0 0 10px;
}
.list_table thead th:last-child {
	border-radius: 0 10px 10px 0;
}
.list_table tbody td {
	text-align: center;
	padding: 20px 5px;
	font-family: 'SUIT';
	font-weight: 500;
	border-bottom: 1px solid var(--gray);
}
.list_table tbody td.ta_l a {
	color: #0060FF;
}
.list_table tbody td.date {
	font-size: 14px;
}
.list_table input[type=checkbox] + label {
	padding-left: 0;
}
.list_table input[type=checkbox] + label:before {
	position: static;
	margin: 0 auto;
}
.list_table .toggle_input + label {
	width: 30px;
	height: 15px;
	border-radius: 50px;
	border: 1px solid var(--default);
	background: var(--default);
	transition: all .3s;
	margin: 0 auto;
	box-sizing: border-box;
}
.list_table .toggle_input + label:before {
	position: absolute!important;
	top: 1px;
	left: 1px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--white);
	border: 0;
	margin: 0!important;
	transition: all .3s;
}
.list_table .toggle_input:checked + label {
	background: var(--key-color);
	border: 1px solid var(--key-color);
}
.list_table .toggle_input:checked + label:before {
    left: 17px;
    background: var(--white);
}
.list_table .thumb {
	position: relative;
	width: 200px;
	height: 100px;
	overflow: hidden;
	box-sizing: border-box;
}
.list_table .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_table .file {
	background: url("../images/ic_file.svg")no-repeat 0 50%;
	padding-left: 15px;
}
.list_table .gap5 {
	gap: 5px;
}
.list_table .text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.list_table .text2 {
	-webkit-line-clamp: 2;
}
.list_table .btn_area {
	justify-content: center;
	gap: 4px;
}
.list_table .btn {
	min-width: 70px;
	border-radius: 10px;
	padding: 7px 10px;
	font-size: 14px;
	font-weight: 500;
	background: transparent!important;
	box-sizing: border-box;
}

.file_box {
	position: relative;
	gap: 10px;
}
.file_box input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.file_box .upload_name {
	flex: 1;
	width: 100%;
	height: 56px;
	line-height: 56px;
	border-radius: 10px;
	background: var(--base2);
	padding: 0 20px;
	font-size: 16px;
	color: var(--black);
	font-family: 'Pretendard';
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	box-sizing: border-box;
}
.file_box label {
	width:160px;
	height: 56px;
	line-height: 60px;
	text-align: center;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
}


#footer {
	display: none;
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: center;
}
#footer .copy {
	color: #4F5E85;
	font-size: 14px;
	letter-spacing: -0.5px;
}




.modal {
	display: none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 100vh;
	flex-direction: column;
    justify-content: center;
	z-index: 34;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 5; 
}
.modal .black_bg {
	display: block;
}
.modal .modal_cont {
	position: relative;
	width: 95%;
    margin: 0 auto;
	max-width: 1080px;
	background: var(--white);
	padding: 30px;
	max-height: 95vh;
	z-index: 6;
	border-radius: 10px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	max-height: 95vh;
	overflow-x: hidden;
	overflow-y: visible;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}
.modal .bar {
	border-radius: 10px;
	margin-bottom: 20px;
	gap: 10px;
	box-sizing: border-box;
}
.modal .bar h3 {
	font-size: 20px;
	font-weight: 500;
	gap: 20px;
}
.modal .bar .excel_btn {
	height: 24px;
	font-size: 14px;
	font-weight: 500;
	padding: 0 12px;
	border-radius: 5px;
}
.modal .close {
	width: 24px;
	height: 24px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal .modal_cont .btn_area {
	gap: 10px;
	margin-top: 20px;
	justify-content: end;
}
.modal .modal_cont .btn_area button {
	flex: 1;
	max-width: 57px;
	height: 34px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
}


.sub_title {
	padding: 16px 20px;
}
.sub_title h4 {
	font-size: 24px;
	gap: 10px;
}
.sub_title h4 .step {
	font-weight: 400;
	font-size: 20px;
	gap: 5px;
}
.sub_title h4 div.swiper-pagination {
	position: static;
	width: auto;
}
.sub_title .arrow > div {
	position: static;
	transform: none;
	width: 30px;
	height: 30px;
}


.tab {
	gap: 10px;
	margin-right: 10px;
}
.tab > * {
	height: 48px;
	line-height: 50px;
	padding: 0 30px;
	border-radius: 10px;
	background: var(--white);
	font-size: 16px;
	font-family: 'GmarketSans',sans-serif;
	text-align: center;
	box-sizing: border-box;
}
.tab > *.active {
	background: var(--key-color);
	color: var(--white);
	font-weight: bold;
}


.tbody {
	border-radius: 10px;
	background: var(--bg-off-white);
	padding: 8px 16px;
	gap: 20px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.tbody .head {
	min-width: 90px;
	font-size: 16px;
	font-weight: 500;
}
.tbody .head strong {
	font-weight: 500;
}
.tbody .cont {
	flex: 1;
	width: 100%;
	gap: 20px;
}
.tbody .cont .item {
	border-radius: 10px;
	background: var(--white);
	padding: 14px 16px;
	gap: 20px;
	box-sizing: border-box;
}
.tbody .cont .item.w100 {
	width: 100%!important;
}
.tbody .cont .item .th {
	color: var(--text-);
	font-weight: 500;
	font-size: 16px;
	word-break: keep-all;
}
.tbody .cont .item .td {
	flex: 1;
	font-size: 16px;
	word-break: break-all;
}
.tbody .cont .item .td input[type=text],
.tbody .cont .item .td input[type=password],
.tbody .cont .item .td input[type=number] {
	flex: 1;
	width: 100%;
	height: 20px;
	font-size: 16px;
	font-weight: 500;
}
.tbody .cont .item .td select {
	height: 20px;
	font-size: 16px;
	text-align: right;
    padding-right: 30px;
	background-color: var(--white);
}
.tbody .cont .h100 {
	height: 230px;
}
.tbody .cont .item textarea {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	font-size: 16px;
	resize: none;
}
.tbody .grid1 .item {
	flex: 1;
}
.tbody .grid3 .item {
	width: calc(33.333% - 14px);
}
.tbody .grid3 .f0_5 {
	width: calc(33.333% - 60px);
}
.tbody .grid3 .f2 {
	width: calc(33.333% - -80px);
}
.tbody .grid4 .item {
	width: calc(25% - 15px);
}
.tbody .grid5 .item {
	width: calc(20% - 16px);
}
.tbody .cont .item.w50 {
	width: calc(50% - 10px);
}
.tbody .cont .file_box {
	width: 100%;
	gap: 10px;
}
.tbody .cont .file_box label {
	height: 26px;
	line-height: 24px;
	padding: 0 12px;
	font-size: 14px;
	color: var(--text-);
	border: 1px solid var(--border-secondary);
	text-align: center;
	border-radius: 5px;
	box-sizing: border-box;
}
.tbody .cont .file_box input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.tbody .cont .file_box > div {
	flex: 1;
}
.tbody .cont .file_box .upload-name {
	flex: 1;
    width: 100%;
	background: url("../images/ic_util.svg")no-repeat 0 50%;
	color: var(--text-primary);
	font-size: 16px;
	letter-spacing: -0.08px;
	padding-left: 22px;
	font-family: inherit;
	box-sizing: border-box;
}
.tbody .cont .file_box .del_btn {
	width: 14px;
	height: 14px;
	background: url("../images/ico-close.svg")no-repeat 50% 50%;
}
.tbody .cont .radio {
	gap: 20px;
}
.tbody + .btn_area {
	justify-content: center;
	gap: 10px;
}
.tbody + .btn_area button {
	border-radius: 5px;
	padding: 10px 16px;
}


.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 10px;
}
.pagenavi ol li img {
	vertical-align: -1px;
}
.pagenavi ol li img:hover {
	transform: scale(1);
}
.pagenavi ol li a {
	display: block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 16px;
	color: #A6ACB2;
	font-family: "SUIT";
}
.pagenavi ol li.this a {
	color: var(--key-color);
	font-weight: 800;
}


.btn_form {
	justify-content: center;
	margin-top: 20px;
}
.btn_form > * {
	height: 48px;
	line-height: 48px;
	border-radius: 10px;
	font-size: 16px;
	padding: 0 40px;
	text-align: center;
	box-sizing: border-box;
}




@media screen and (max-width: 1600px){
	.tbody .grid3 .item {
		width: calc(50% - 10px);
	}
	.tbody .grid4 .item {
		width: calc(33.333% - 14px);
	}

	.btn_group {
		align-items: end;
	}
	.btn_group .calendar_date {
		width: 100%;
	}
}
@media screen and (max-width: 1280px){
	#side .list .depth02 li a {
		font-size: 14px;
	}
	#side.open h1 #side_btn {
		right: -8px;
	}
	
	#container {
		padding-left: 230px;
	}
	.contents {
		padding: 20px;
	}
	.contents .cont_form .conts .center {
		gap: 60px;
	}
	.contents .cont_form .conts .center h2 {
		font-size: 40px;
	}
	.contents .cont_form > h3 {
		font-size: 24px;
	}

	
	.btn_group .keyword_form {
		max-width: none;
	}
	.btn_group .radio {
        flex: 1;
        justify-content: end;
    }

	.file_box .upload_name {
		height: 50px;
    	line-height: 50px;
		font-size: 14px;
	}
	.file_box label {
		width: 125px;
		height: 50px;
		line-height: 55px;
		font-size: 14px;
	}

	.contents .top_box + .btn_box {
		width: 100%;
		justify-content: end;
	}

	.tbody .grid4 .item {
		width: calc(50% - 10px);
	}
	
	.sub_title h4 {
		font-size: 20px;
	}
	.sub_title h4 .step {
		font-size: 16px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		height: 50px;
		left: 0;
		width: 100%;
	}
	#header h1 {
		display: inline-block;
	}
	
	#side {
		opacity: 0;
		visibility: hidden;
		z-index: -1;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		min-height: auto;
		padding-top: 50px;
		background: transparent;
		margin-left: 0;
		box-sizing: border-box;
	}
	#side.open {
		border-left: 0;
	}
	#side h1 {
		display: none;
		padding: 20px 0 0 20px;
	}
	#side h1 a {
		display: block!important;
	}
	#side .box {
		position: fixed;
		width: 230px;
		height: calc(100vh - 50px);
		top: 50px;
		right: -100%;
		background: var(--base2);
		transition: all .3s;
		z-index: 2;
		padding: 20px;
		box-sizing: border-box;
	}
	#side .list {
        height: calc(100vh - 195px);
    }
	#side .site_link .txt_color {
		font-size: 14px;
	}
	#side.on .box {
		right: 0;
	}
	#header .date {
		display: none;
	}
	#header .user {
		margin-left: 0;
		margin-right: 30px;
	}
	#header .menu {
		display: block;
	}
	
	
	#container {
		padding-left: 0px!important;
		padding-top: 50px;
	}
	.contents {
		padding: 20px;
	}	
	.contents .cont_form {
		padding: 20px;
		min-height: calc(100vh - 130px);
	}
	.contents .cont_form .conts {
		padding: 20px;
	}
	.contents .cont_form > h3 {
		font-size: 20px;
	}
	.contents .cont_form > h3 span {
		font-size: 14px;
	}


	
	.btn_group select {
		max-width: 100%;
		height: 43px;
		font-size: 14px;
	}
	.btn_group .calendar_date input {
		max-width: 155px;
		height: 43px;
		font-size: 14px;
	}
	.btn_group .calendar_date span {
		font-size: 14px;
	}
	.btn_group .keyword_form input[type=text] {
		height: 43px;
		font-size: 14px;
	}
	.btn_group .keyword_form .search_btn {
		width: 43px;
		height: 43px;
	}
	.btn_group a {
		height: 43px;
		line-height: 47px;
		font-size: 14px;
	}

	.contents .top_box + .btn_box {
		width: auto;
	}
	.contents .top_box + .btn_box > * {
		padding: 0 20px;
		height: 43px;
		line-height: 45px;
		font-size: 14px;
	}
	
	
	.modal .modal_cont .txt {
		font-size: 14px;
	}

	
	.list_table {
		font-size: 14px;
	}
	.list_table .thumb {
		width: 80px;
		height: 80px;
	}

	.btn_form > * {
		height: 42px;
		line-height: 42px;
		font-size: 14px;
		padding: 0 30px;
	}


	.tbody .head {
		width: 100%;
	}
	.tbody .cont {
		gap: 10px;
	}
	.tbody .cont .item .th {
		font-size: 14px;
	}
	.tbody .cont .item .td {
		font-size: 14px;
	}
	.tbody .cont .item .td input[type=text],
	.tbody .cont .item .td input[type=password] {
		font-size: 14px;
	}
	.tbody .cont .item .td select {
		font-size: 14px;
	}
	.tbody .cont .file_box .upload-name {
		font-size: 14px;
	}
	.tbody .grid3 .item {
		width: calc(50% - 5px);
	}
	.tbody .grid4 .item {
		width: calc(50% - 5px);
	}
}
@media screen and (max-width: 768px) {
	.contents .top_box {
		width: 100%;
		gap: 20px;
		padding: 60px 15px 15px;
		background-position: 50% 15px;
		background-size: 35px;
	}
	.contents .top_box > div {
		width: 100%;
		text-align: center;
	}
	.contents .top_box > div > div strong {
		font-size: 18px;
	}
	.contents .top_box + .btn_box {
		width: 100%;
	}
	.contents .top_box + .btn_box > * {
		padding: 0!important;
		flex: 1;
	}

	.btn_group .calendar_date input {
		flex: 1;
		width: 100%;
		max-width: 100%;
		background-size: 20px;
		background-position: 15px 50%;
		padding-left: 45px;
	}
	.btn_group .keyword_form {
		width: 100%;
	}
	.btn_group a {
		width: 100%;
		text-align: center;
	}
	.btn_group .radio {
		top: 0;
		flex: none;
		width: 100%;
		justify-content: start;
	}

	.file_box .upload_name {
		flex: none;
	}
	.file_box label {
        width: 100%;
        height: 42px;
        line-height: 46px;
    }


	.tbody .cont .item .th {
		width: 100%;
	}
	.tbody .cont .item {
		flex: none!important;
		width: 100%!important;
		gap: 10px;
	}
	
	
	.pagenavi ol {
		gap: 5px;
	}
}
@media screen and (max-width: 480px) {
	.contents .top_box + .btn_box > * {
		flex: none;
		width: 100%;
	}

	.sub_title .arrow {
		width: 100%;
		justify-content: end;
	}

	.btn_group .calendar_date {
		justify-content: center;
	}
	.btn_group .calendar_date input {
		flex: none;
	}

	
	.pagenavi ol li a {
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-size: 14px;
	}
	.pagenavi ol li.first img,
	.pagenavi ol li.last img {
		width: 20px;
		vertical-align: -3px;
	}
	.pagenavi ol li.prev img,
	.pagenavi ol li.next img {
		width: 8px;
		vertical-align: -1px;
	}
}
@media screen and (max-width: 380px) {
	.pagenavi ol {
        gap: 0px;
    }
}