@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1560px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

.m {
	display: none;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #E1E1E1;
	background: var(--white);
	transition: background .3s;
	z-index: 30;
}

#header .inner {
	min-height: 80px;
	gap: 20px;
}

#header .inner>div {
	gap: 50px;
}

#header h1 {
	width: 107px;
}

#header h1 img {
	width: 100%;
	vertical-align: middle;
}

#header .gnb>ul {
	gap: 30px;
}

#header .gnb>ul>li {
	position: relative;
	background: url("../images/arrow_down.svg") no-repeat 100% -1px;
	padding-right: 22px;
}

#header .gnb>ul>li.no_child {
	padding-right: 0 !important;
	background: none !important;
}

#header .gnb>ul>li>a {
	display: block;
	font-size: 16px;
	padding: 5px 0;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	box-sizing: border-box;
}

#header .gnb>ul>li>a:hover,
#header .gnb>ul>li.active>a {
	color: var(--point);
	border-bottom: 2px solid var(--point);
}

#header .gnb>ul>li>div {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 22px;
	left: -25px;
	padding-top: 33px;
	width: 145px;
	transition: all 0.2s ease;
	transform: translate3d(0, -10px, 0);
}

#header .gnb>ul>li.active>a {
	color: var(--point);
}

#header .gnb>ul>li:hover>div {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

#header .gnb>ul>li>div>ul {
	background: var(--white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#header .gnb>ul>li>div>ul>li>a {
	display: block;
	width: 100%;
	color: var(--black);
	padding: 20px;
	border-bottom: 1px solid #e5e5e5;
	box-sizing: border-box;
}

#header .gnb>ul>li>div>ul>li:last-child>a {
	border-bottom: 0;
}

#header .gnb>ul>li>div>ul>li>a:hover {
	background: var(--key-color);
	color: var(--white);
}

#header .inner>div.util {
	gap: 10px;
}

#header .util>a {
	height: 40px;
	line-height: 40px;
	padding: 0 20px 0 14px;
	text-align: center;
	border-radius: 8px;
	font-weight: 600;
	box-sizing: border-box;
}

#header .util>a.h_alarm {
	width: 40px;
	padding: 0;
	margin-left: -9px;
}

#header .util>a.h_alarm img {
	margin-right: 0;
}

#header .util>a.h_alarm.on img {
	display: none;
}

#header .util>a.h_alarm.on {
	background: url("../images/ic_alarm_on.svg")no-repeat 50% 50% / 100%;
}

#header .lang {
	position: relative;
}

#header .lang>button {
	width: 40px;
	height: 40px;
	background: #CDCDCD url("../images/ic_global.svg")no-repeat 50% 50%;
	border-radius: 10px;
}

#header .lang .gtranslate_wrapper>a {
	display: block;
}

#header .lang .gtranslate_wrapper>a>img {
	width: 52px;
}

#header .lang .gtranslate_wrapper>a>span {
	display: none;
}

#header .lang .gt_white_content {
	width: 90%;
	max-width: 350px;
	height: auto;
	max-height: 90vh;
	margin: 0;
	transform: translate(-50%, -50%);
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
	padding: 20px;
	box-sizing: border-box;
}

#header .lang .gt_white_content a {
	border-bottom: 0;
	padding: 7px 0;
}

#header .lang a.glink img {
	border-radius: 5px;
	border: 1px solid #CDCDCD;
	box-sizing: border-box;
}

#header .lang .gt_container-unisv1 a.glink span {
	position: relative;
	color: #AAA;
	margin-left: 3px;
}

#header .lang .gt_container-unisv1 a.glink.gt-current-lang span {
	color: var(--black);
}

#header .lang .gt_container-unisv1 a.glink.gt-current-lang span:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 10px;
	background: rgba(188, 19, 255, 0.20);
	z-index: -1;
}

#header .lang>.gtranslate_wrapper>a.glink img+span {
	display: none;
}

#header .menu {
	display: none;
	position: absolute;
	top: 11px;
	right: 10px;
}

#header .menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
}

#header .menu a span {
	position: absolute;
	top: 0;
	left: 8px;
	display: block;
	width: 22px;
	height: 2px;
	background: var(--gr);
	transition: all .3s;
	border-radius: 30px;
}

#header .menu a span:nth-child(1) {
	top: 10px;
}

#header .menu a span:nth-child(2) {
	top: 18px;
}

#header .menu a span:nth-child(3) {
	top: 26px;
}


.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 35;
	background: var(--white);
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}

.side_wrap.on {
	right: 0;
}

.side_wrap .top {
	padding: 15px 15px 0;
}

.side_wrap .top .top_util {
	gap: 10px;
}

.side_wrap .top .top_util a {
	position: relative;
	font-size: 14px;
}

.side_wrap .top .top_util a.btn_orange {
	width: 100%;
	height: 37px;
	line-height: 37px;
	border-radius: 2px;
	text-align: center;
	margin-top: 5px;
}

.side_wrap .top .side_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 15px;
	z-index: 1;
}

.side_wrap.on .top .side_close {
	display: block;
}

.side_wrap .util {
	margin-top: 30px;
	padding: 0 10px;
	gap: 10px;
}

.side_wrap .util a {
	flex: 1;
	justify-content: center;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	box-sizing: border-box;
}

.side_wrap .util a.btn_line_color:before {
	border-radius: 8px;
}

.side_wrap .util a img {
	margin-left: -5px;
}

.side_wrap .util a.btn_logout img {
	margin-left: 0;
}

.side_wrap .depth {
	padding: 15px 0 30px;
	overflow-y: auto;
	max-height: calc(100vh - 145px);
	box-sizing: border-box;
}

.side_wrap .depth01 {
	position: relative;
	border-bottom: 1px solid #E1E1E1;
}

.side_wrap .depth01>a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 14px;
	padding: 15px 20px;
	font-weight: 600;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 10px) 50%;
	box-sizing: border-box;
}

.side_wrap .depth01.no_child>a {
	background: none !important;
}

.side_wrap .depth01.active>a {
	background: var(--key-color);
	color: var(--white);
}

.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}

.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}

.side_wrap .depth .depth02 li a {
	display: block;
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}

.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}

.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}

.side_wrap .sns {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	justify-content: center;
	gap: 10px;
}

.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#container {
	width: 100%;
	padding-top: 80px;
}



.modal {
	display: none;
}

.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}

.modal .modal_cont {
	width: 95%;
	max-width: 1000px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 95vh;
	overflow: hidden;
	z-index: 38;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}

.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 15px);
	background: var(--white);
	overflow-x: hidden;
	overflow-y: visible;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	box-sizing: border-box;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding: 20px;
	box-sizing: border-box;
}

.modal .modal_cont .scroll::-webkit-scrollbar {
	display: none;
}

.modal .bar {
	justify-content: space-between;
	padding: 10px 15px;
}

.modal .bar .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_black.svg")no-repeat 50% 50% / 100%;
}

.modal .txt {
	font-size: 16px;
	color: #000;
	line-height: 1.6;
}

.modal .btn_area {
	gap: 10px;
}

.modal .btn_area button {
	flex: 1;
	height: 44px;
	border-radius: 10px;
	font-size: 16px;
}



.bottom_modal .modal_cont {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	position: fixed;
	bottom: -100%;
	left: 50%;
	transform: translateX(-50%);
	transition: bottom .3s;
	width: 100%;
	max-width: 500px;
	border-radius: 20px;
	max-height: 95vh;
	background: var(--white);
	overflow: hidden;
	border-radius: 15px 15px 0 0;
}

.bottom_modal.open .modal_cont {
	bottom: 0;
	opacity: 1;
	visibility: visible;
	z-index: 40;
}

.bottom_modal.open .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}

.bottom_modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 15px);
	background: var(--white);
	overflow-x: hidden;
	overflow-y: visible;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	box-sizing: border-box;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding: 20px;
	box-sizing: border-box;
}

.bottom_modal .title {
	font-size: 20px;
	margin-bottom: 15px;
}

.bottom_modal .close {
	width: 25px;
	height: 25px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 20px;
}



.not_scroll {
	overflow: hidden;
}


.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 5px;
}

.pagenavi ol li.first img,
.pagenavi ol li.last img {
	width: 9px;
	vertical-align: -1px;
}

.pagenavi ol li.prev img,
.pagenavi ol li.next img {
	width: 9px;
	vertical-align: -3px;
}

.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #7c7c7c;
}

.pagenavi ol li.this a {
	background: var(--key-color);
	color: #fff;
}



#footer {
	position: relative;
	padding: 80px 0;
	border-top: 1px solid #E1E1E1;
	background: #FAFAFA;
	margin-top: 120px;
	box-sizing: border-box;
}

#footer .inner {
	gap: 30px;
}

#footer .top {
	gap: 30px;
}

#footer .top .logo img {
	width: 160px;
	vertical-align: middle;
}

#footer .top .sns {
	gap: 10px;
}

#footer .copy {
	color: #777;
	font-size: 14px;
	letter-spacing: 0.28px;
}

#footer .bottom {
	gap: 30px;
}

#footer .bottom>div {
	flex: 1;
	width: 100%;
	color: #777;
	font-size: 14px;
	letter-spacing: -0.7px;
}

#footer .bottom>div p {
	line-height: 1.4;
}

#footer .bottom>div:first-child {
	gap: 10px;
}

#footer .bottom>div:last-child {
	gap: 30px;
}

#footer .bottom>div .util {
	gap: 10px;
}

#footer .bottom>div .util a {
	color: #777;
	font-weight: 700;
	letter-spacing: -0.7px;
}


#footer_fix {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	border-radius: 10px 10px 0px 0px;
	background: var(--white);
	z-index: 30;
	padding: 10px 16px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}

#footer_fix ul li {
	flex: 1;
}

#footer_fix ul li a {
	display: block;
	background-repeat: no-repeat;
	background-position: 50% 0;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	padding-top: 40px;
}

#footer_fix ul li.ft01 a {
	background-image: url("../images/ft01.svg");
}

#footer_fix ul li.ft01.active a {
	background-image: url("../images/ft01_on.svg");
}

#footer_fix ul li.ft02 a {
	background-image: url("../images/ft02.svg");
}

#footer_fix ul li.ft02.active a {
	background-image: url("../images/ft02_on.svg");
}

#footer_fix ul li.ft03 a {
	background-image: url("../images/ft05.svg");
}

#footer_fix ul li.ft03.active a {
	background-image: url("../images/ft05_on.svg");
}

#footer_fix ul li.ft04 a {
	background-image: url("../images/ft04.svg");
}

#footer_fix ul li.ft04.active a {
	background-image: url("../images/ft04_on.svg");
}

#footer_fix ul li.ft05 a {
	background-image: url("../images/ft06.svg");
}

#footer_fix ul li.ft05.active a {
	background-image: url("../images/ft06_on.svg");
}


#float {
	position: fixed;
	bottom: 110px;
	right: 30px;
	gap: 24px;
	z-index: 30;
}

#float a {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
	font-weight: 600;
	gap: 5px;
	align-items: center;
	border: 2px solid var(--white);
	padding: 10px 0 0;
	transition: all .2s;
	text-align: center;
	box-sizing: border-box;
}

#float a:hover {
	border: 2px solid var(--key-color) !important;
}

#float a img {
	width: 65px;
}

#float a.kakao_btn {
	background: #fee712;
	border: 2px solid #fee712;
}

#float a span {
	position: absolute;
	bottom: -10px;
	left: 12px;
	width: calc(100% - 24px);
	font-weight: 600;
	padding: 5px 0;
	border-radius: 10px;
	box-sizing: border-box;
}


.title {
	gap: 10px;
}

.title>div {
	flex: 1;
	width: 100%;
	line-height: 1.4;
}

.title>div strong {
	font-size: 30px;
	background-repeat: no-repeat;
	background-position: 100% 50%;
	/* padding-right: 45px; */
}

.title>div p {
	color: #777;
	font-size: 20px;
	font-weight: 500;
}

.title>a {
	border-radius: 30px;
	background: #F4F5F8;
	padding: 7px 18px;
	box-sizing: border-box;
}

.title>a img {
	vertical-align: middle;
}


.tit {
	gap: 20px;
	box-sizing: border-box;
}

.tit h2 {
	font-size: 60px;
	font-weight: 800;
}

.tit p {
	font-size: 30px;
	font-weight: 600;
}

h3.tit {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
}


.list_table thead th {
	background: #FAFAFA;
	color: #777;
	font-weight: 400;
}

.list_table thead th:first-child {
	border-radius: 20px 0 0 20px;
	padding-left: 20px;
}

.list_table thead th:last-child {
	border-radius: 0 20px 20px 0;
	padding-right: 20px;
}

.list_table tbody tr {
	cursor: pointer;
}

.list_table tbody tr.fix {
	border-radius: 20px;
	/* background: rgba(188, 19, 255, 0.10); */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.list_table tbody tr.fix td {
	/* border: 1px solid #ff6c00; */
	border-right: 0;
	border-left: 0;
}

.list_table tbody tr.fix td:first-child {
	border-radius: 20px 0 0 20px;
	/* border-left: 1px solid #ff6c00; */
}

.list_table tbody tr.fix td:nth-last-child(2) {
	border-radius: 0 20px 20px 0;
	/* border-right: 1px solid #ff6c00; */
}

.list_table tbody td {
	/* border-bottom: 1px solid #CDCDCD; */
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}

.list_table tbody td:first-child {
	padding-left: 20px;
}

.list_table tbody td:last-child {
	padding-right: 20px;
}

.list_table tbody td .info {
	gap: 6px;
}

.list_table tbody td .info .thumb {
	position: relative;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
}

.list_table tbody td .info .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list_table tbody td .info .txt {
	flex: 1;
	width: 100%;
	gap: 6px;
}

.list_table tbody td .info .txt h4 {
	font-size: 20px;
}

.list_table tbody td .info .txt strong {
	font-weight: 500;
	font-size: 16px;
}

.list_table .badge {
	display: inline-block;
	vertical-align: middle;
	padding: 3px 7px;
	border-radius: 5px;
	text-align: center;
	font-size: 12px;
	margin-right: 3px;
	color: var(--white);
}

.list_table .badge.level1 {
	background: #05C471;
}

.list_table .badge.level2 {
	background: #0584C4;
}

.list_table .badge.level3 {
	background: #C40F05;
}

.list_table .badge.level4 {
	background: #C40591;
}

.list_table .badge.level5 {
	background: #4A05C4;
}

.list_table .b_admin {
	background: #F0AE07;
}

.list_table .fix .badge {
	background: #f00;
	width: 35px;
	padding: 3px 0;
	font-size: 14px;
}

.list_table .fix .taL {
	font-weight: bold;
}

.list_table .btn_memo {
	background: url("../images/ic_memo2.svg") no-repeat 100% 50% / 15px;
	padding-right: 16px;
	font-size: inherit;
}



.tbody .head {
	position: relative;
	background: #FAF7FE;
	color: var(--key-color);
	border-bottom: 1px solid #DEDEDE;
	font-size: 16px;
	font-weight: 500;
	padding: 20px;
}

.tbody .cont .th {
	position: relative;
	width: 120px;
	font-size: 16px;
	padding: 16px 0;
	box-sizing: border-box;
}

.tbody .cont .th:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.tbody .cont .th span {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}

.tbody .cont .td {
	flex: 1;
	position: relative;
	padding: 15px 20px;
}

.tbody .cont .td select {
	max-width: 150px;
	background-color: #f9f9f9;
	border-radius: 5px;
}

.tbody .cont .td input[type=text],
.tbody .cont .td input[type=password] {
	width: 100%;
	height: 46px;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	border: 1px solid #DEDEDE;
	padding: 0 10px;
	border-radius: 5px;
	box-sizing: border-box;
}

.tbody .cont .td input[type=date] {
	position: relative;
	width: 100%;
	height: 30px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	font-family: inherit;
	background: url("../images/ico-calendar.html")no-repeat 0 50% / 22px;
	padding-left: 30px;
}

.tbody .cont .td input[type=date]::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	color: transparent;
	cursor: pointer;
}

.tbody .cont .td textarea {
	width: 100%;
	height: 135px;
	resize: none;
	padding: 0;
	border: 0;
	font-size: 16px;
}

.tbody .cont .td .grid2 {
	margin: -5px 0;
}

.tbody .cont .td .radio {
	gap: 15px;
}

.tbody .cont .td .radio>div input[type=radio] {
	display: none;
}

.tbody .cont .td .radio>div input[type=radio]+label {
	position: relative;
	font-size: 16px;
	color: #000;
	padding-left: 25px;
}

.tbody .cont .td .radio>div input[type=radio]+label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #A5AEBC;
	background: var(--white);
	box-sizing: border-box;
}

.tbody .cont .td .radio>div input[type=radio]:checked+label:before {
	border: 1px solid var(--key-color);
	background: transparent;
}

.tbody .cont .td .radio>div input[type=radio]:checked+label:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--key-color);
}

.tbody .cont .td .photo_box {
	position: relative;
	gap: 10px;
}

.tbody .cont .td .photo_box input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}

.tbody .cont .td .photo_box label {
	position: relative;
	display: block;
	width: 130px;
	height: 100px;
	background: #f9f9f9 url("../images/label_thumbs.svg") no-repeat 50% 50%;
	border: 1px solid #dedede;
	box-sizing: border-box;
}

.tbody .cont .td .photo_box label .img_box {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
}

.tbody .cont .td .photo_box label .img_box img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tbody .cont .td .photo_box .preview {
	gap: 10px;
}

.tbody .cont .td .photo_box .preview .item {
	position: relative;
	width: calc(25% - 8px);
	height: 0;
	padding-bottom: 20%;
	border: 1px solid #dedede;
	box-sizing: border-box;
}

.tbody .cont .td .photo_box .preview .item img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tbody .cont .td .photo_box .del_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 25px;
	height: 25px;
	background: rgba(255, 255, 255, 0.5) url("../images/ic_close.svg")no-repeat 50% 50% / 15px;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
}



.memo>.title {
	background: var(--key-color);
	color: var(--white);
	font-size: 20px;
	padding: 15px 20px;
	justify-content: space-between;
	box-sizing: border-box;
}

.memo>.title .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 100%;
}

.memo .desc {
	font-size: 14px;
}

.memo .tabs {
	gap: 10px;
	border-bottom: 1px solid #e0e0e0;
}

.memo .tabs a {
	flex: 1;
	height: 56px;
	line-height: 56px;
	font-size: 16px;
	color: #aaa;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
}

.memo .tabs a.active {
	color: #000;
	border-bottom: 2px solid #000;
	;
}

.memo_list {
	gap: 10px;
	padding: 20px;
	box-sizing: border-box;
}

.memo_list .item {
	position: relative;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	padding: 20px 75px 20px 20px;
	box-sizing: border-box;
}

.memo_list .item .top {
	color: #7C7C7C;
	letter-spacing: -0.32px;
	margin-bottom: 10px;
}

.memo_list .item .top span {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	line-height: 15px;
	background: #f00;
	color: var(--white);
	border-radius: 50%;
	font-size: 12px;
	margin-left: 3px;
	text-align: center;
}

.memo_list .item .cont {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 16px;
	line-height: 1.1;
	margin-bottom: 10px;
}

.memo_list .item .date {
	color: #7C7C7C;
	font-size: 13px;
	letter-spacing: -0.28px;
	margin-top: 5px;
}

.memo_list .item .del_btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 30px;
	border-radius: 5px;
	background: #AAA;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
}

.memo_view {
	padding: 20px;
}

.memo_view .top {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 10px;
	font-size: 14px;
}

.memo_view .top .info {
	gap: 5px;
}

.memo_view .top .info .thumb {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	overflow: hidden;
}

.memo_view .top .info .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.memo_view .content {
	padding: 15px 0;
	line-height: 1.3;
	font-size: 14px;
}

.memo_view .btn_area a {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 5px;
	font-size: 14px;
	margin-top: 10px;
}

.memo_form {
	padding: 20px;
}

.memo_form .select_btn {
	position: absolute;
	top: 0;
	right: 20px;
	padding: 5px 10px;
	border-radius: 5px;
	box-sizing: border-box;
}

.memo_form .select_btn+input {
	margin-top: 25px;
}

.memo_form .tbody .cont .td input[type=text],
.memo_form .tbody .cont .td input[type=password] {
	font-size: 14px;
	font-weight: 400;
}

.memo_form .tbody .cont .td p {
	font-size: 14px;
	margin-top: 5px;
}

.memo_form .tbody .cont .td textarea {
	border: 1px solid #DEDEDE;
	border-radius: 5px;
	padding: 10px;
	font-size: 14px;
	box-sizing: border-box;
}

.memo_form .btn_area {
	justify-content: center;
}

.memo_form .btn_area button {
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 14px;
}

#search_member .modal_cont {
	padding-bottom: 10px;
}

#search_member .bar {
	justify-content: end;
}

#search_member .form {
	padding: 0px 20px 10px;
}

#search_member .form select {
	border: 1px solid #e5e5e5;
	max-width: 115px;
	font-size: 14px;
	border-radius: 5px;
	background-size: 20px;
	padding: 0 10px;
	background-position: calc(100% - 10px);
	margin-right: 10px;
	box-sizing: border-box;
}

#search_member .form input {
	flex: 1;
	width: 100%;
	border: 1px solid #e5e5e5;
	border-right: 0;
	border-radius: 5px 0 0 5px;
	font-size: 14px;
	padding: 0 10px;
	box-sizing: border-box;
}

#search_member .form .btn_search {
	width: 40px;
	height: 40px;
	background: var(--key-color) url("../images/ico-search.svg")no-repeat 50% 50%;
	border-radius: 0 5px 5px 0;
}

#search_member .result {
	padding: 10px 20px 20px;
	gap: 15px;
	box-sizing: border-box;
}

#search_member .result h4 {
	font-weight: 500;
}

#search_member .result .list {
	max-height: calc(100vh - 311px);
	overflow-y: auto;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	padding: 15px;
	box-sizing: border-box;
}

#search_member .result .list .item {
	position: relative;
	padding: 2px 0;
}

#search_member .result input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}

#search_member .result input[type=checkbox]+label {
	position: relative;
	display: block;
	width: 100%;
	padding-left: 25px;
	box-sizing: border-box;
}

#search_member .result input[type=checkbox]+label:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 2px;
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
}

#search_member .result input[type=checkbox]:checked+label:before {
	border: 1px solid var(--key-color);
	background: var(--key-color) url("../images/ic_check.html")no-repeat 50% 50% / 26px;
}

#search_member .result button {
	width: 100%;
	height: 45px;
	border-radius: 5px;
	font-size: 16px;
}


.board_search {
	gap: 10px;
	justify-content: end;
	box-sizing: border-box;
}

.board_search select {
	max-width: 110px;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 0 10px;
	font-size: 14px;
	background-size: 20px;
	background-position: calc(100% - 8px);
	border-radius: 10px;
}

.board_search input[type=text] {
	flex: 1;
	max-width: 450px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 0 10px;
	font-size: 14px;
	box-sizing: border-box;
}

.board_search .search_btn {
	width: 70px;
	height: 40px;
	background: #F3F3F3;
	border-radius: 10px;
	font-size: 16px;
}



@media screen and (max-width: 1560px) {
	#header .inner>div {
		gap: 20px;
		flex: 1;
		width: 100%;
	}

	#header .inner>div.util {
		width: auto;
		flex: none;
	}

	#header .gnb>ul {
		gap: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.m {
		display: block;
	}

	#header .inner {
		min-height: 60px;
	}

	#header .gnb,
	#header .inner>div.util>a {
		display: none;
	}

	#header .inner>div.util {
		margin-right: 30px;
	}

	#header .inner>div.util {
		gap: 5px;
	}

	#header .util .lang button {
		width: 30px;
		height: 30px;
		border-radius: 5px;
		background-size: 25px;
	}

	#header .inner>div.util>a.h_alarm {
		display: block;
		width: 30px;
		height: 30px;
		line-height: 30px;
		margin-left: 0;
	}

	#header .inner>div.util>a.h_alarm img {
		width: 100%;
	}

	#header .lang a.glink img {
		width: 30px;
	}

	#header .lang .gt_container-unisv1 a.glink span {
		font-size: 16px;
	}

	#header .lang .gt_white_content a {
		flex-basis: 38px;
	}

	#header .menu {
		display: block;
		width: auto !important;
	}

	#container {
		padding-top: 60px;
		min-height: calc(100vh - 400px);
	}

	#footer {
		padding: 40px 0 110px;
		margin-top: 40px;
	}

	#footer .bottom>div {
		flex: none;
	}

	#footer_fix {
		display: block;
	}


	#float {
		gap: 8px;
		right: 10px;
		bottom: 95px;
	}

	#float a {
		width: 45px;
		height: 45px;
		justify-content: center;
		padding: 0;
	}

	#float a img {
		width: 32px;
	}

	#float a span {
		display: none;
	}


	.list_table thead th {
		font-size: 14px;
	}

	.list_table tbody td {
		font-size: 14px;
	}

	.list_table tbody td .info .txt h4 {
		font-size: 18px;
	}

	.list_table tbody td .info .txt strong {
		font-size: 14px;
	}


	.title>div strong {
		font-size: 24px;
	}

	.title>div p {
		font-size: 16px;
	}

	.title>a {
		font-size: 14px;
	}


	.tit h2 {
		font-size: 40px;
	}

	.tit p {
		font-size: 20px;
	}


	h3.tit {
		font-size: 20px;
	}


	.modal .btn_area button {
		height: 38px;
		font-size: 14px;
	}


	.tbody .cont .th {
		font-size: 14px;
	}

	.tbody .cont .td input[type=text] {
		font-size: 14px;
	}

	.tbody .cont .td input[type=date] {
		font-size: 14px;
	}

	.tbody .cont .td textarea {
		font-size: 14px;
	}

	.tbody .cont .td select {
		font-size: 14px;
	}

	.tbody .cont .td.list_thumb label {
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.list_table colgroup {
		display: none;
	}

	.list_table thead {
		display: none;
	}

	.list_table tbody tr {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
		padding: 10px 0;
		box-sizing: border-box;
	}


	.title {
		justify-content: center;
	}

	.title>div {
		flex: none;
		text-align: center;
	}

	.title>div strong {
		font-size: 20px;
	}

	.title>div p {
		font-size: 14px;
	}


	.tit {
		gap: 12px;
	}

	.tit h2 {
		font-size: 26px;
	}

	.tit p {
		font-size: 14px;
	}


	.tbody .cont .th {
		width: 100%;
		text-align: left;
		padding: 0;
	}

	.tbody .cont .th:before {
		display: none;
	}

	.tbody .cont .th span {
		position: static;
		transform: none;
	}

	.tbody .cont .td {
		padding: 10px 0px 20px;
	}

	.tbody .cont .td .photo_box label {
		width: 100%;
		padding-bottom: 20%;
	}

	.tbody .cont .td .photo_box .preview .item {
		width: calc(50% - 5px);
		padding-bottom: 30%;
	}

	.tbody .cont .td select {
		max-width: 100%;
	}

	.tbody .cont .td.list_thumb .img {
		max-width: 100%;
		height: 0;
		padding-bottom: 40%;
	}

	.tbody .cont .td.list_thumb label {
		width: 100%;
		order: 1;
	}

	.tbody .cont .td.list_thumb .upload_name {
		order: 0;
		font-size: 14px;
	}


	.memo_form .select_btn {
		top: -20px;
		right: 0;
		font-size: 12px;
	}

	.memo_form .select_btn+input {
		margin-top: 0;
	}

	.pagenavi ol {
		gap: 0px;
	}
}

@media screen and (max-width: 480px) {
	.pagenavi ol li a {
		width: 24px;
		height: 24px;
		line-height: 25px;
		font-size: 13px;
	}

	.list_table tbody tr td.m p {
		width: 100%;
		text-align: right;
	}

	#search_member .form select {
		max-width: 100%;
		margin: 0 0 10px;
	}

	.board_search select {
		max-width: 100%;
	}

	.board_search .search_btn {
		width: 100%;
		height: 35px;
		background-position: calc(50% - 20px) 50%;
	}

	.board_search input[type=text] {
		max-width: 100%;
	}
}

@media screen and (max-width: 380px) {
	.pagenavi ol li a {
		width: 20px;
		height: 20px;
		line-height: 21px;
		font-size: 12px;
	}
}