@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1240px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	box-shadow: inset 0 -3.5px 0px -2px #ebebeb;
	z-index: 21;
}
#header .inner {
	height: 75px;
	gap: 45px;
}
#header .logo img {
	width: 170px;
}
#header .m_menu {
	display: none;
	gap: 8px;
}
#header .m_menu a {
	display: block;
	font-size: 12px;
	font-weight: 600;
	box-sizing: border-box;
}
#header .m_menu a img {
	width: 20px;
}
#header .m_menu a.logout_btn img {
	width: 15px;
}
#header .m_menu .menu a {
	width: 20px;
	height: 20px;
}
#header .m_menu .menu a {
	background: url("../images/ic_menu.svg")no-repeat 50% 50%;
}
#header .gnb {
	flex: 1;
	width: 100%;
	max-width: 800px;
}
#header .gnb ul {
	width: 100%;
	gap: 8px;
}
#header .gnb ul li {
	position: relative;
}
#header .gnb ul li span:after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: #bbb;
}
#header .gnb ul li a {
	position: relative;
	display: inline-block;
	font-weight: 600;
	padding: 5px 0;
	box-sizing: border-box;
}
#header .gnb ul li a:hover {
	color: var(--key-color);
}
#header .gnb ul li a.active {
	color: var(--key-color);
}
#header .gnb ul li a.active:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: var(--key-color);
}
#header .gnb ul li.on:after {
	content: '';
	position: absolute;
	top: -4px;
	right: -4px;
	display: block;
	width: 4px;
	height: 4px;
	background: #fd5572;
	border-radius: 50%;
}
#header .lang {
    position: relative;
    background: url("../images/ic_global.svg") no-repeat 0 50% / 22px;
    padding-left: 28px;
    box-sizing: border-box;
}
#header .lang .gt_white_content {
	width: 80% !important;
    margin: 0 !important;
    transform: translate(-50%, -50%);
}
#header .lang > .gtranslate_wrapper > a.glink img {
	display: none;
}
#header .lang .gt_container-unisv1 a.glink span {
	font-size: 16px;
}
/*#header .lang > .gtranslate_wrapper > a.glink img + span {
	display: none;
}*/


.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#side {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	transition: all .2s;
	z-index: 99;
	background: var(--white);
	overflow-y: auto;
	box-sizing: border-box;
}
#side.open {
	right: 0;
}
#side .scroll_func {
	padding: 0 16px;
}
#side .top {
	padding: 16px 0;
	margin-bottom: 16px;
	gap: 10px;
	box-sizing: border-box;
}
#side .member_btn {
	gap: 8px;
}
#side .member_btn a {
	flex: 1;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 10px;
	box-sizing: border-box;
}
#side .member_btn a.btn_join {
	border: 1px solid #c7c7c7;
}
#side .depth {
	padding: 24px 0;
}
#side .depth li {
	width: 100%;
	padding: 10px 4px;
	box-sizing: border-box;
}
#side .depth li a {
	gap: 8px;
}
#side .util {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	box-sizing: border-box;
}
#side .util a {
	font-weight: 500;
	background: url("../images/arrow-right.svg")no-repeat 100% 50%;
	padding: 15px 0;
}
#side .cs_center {
	margin: 0 -16px;
	background: #efefef;
	padding: 24px 24px 40px;
	gap: 10px;
	margin-top: 30px;
	box-sizing: border-box;
}
#side .cs_center .run {
	font-size: 14px;
	line-height: 1.4;
}


#container {
	width: 100%;
	min-height: 400px;
	padding-top: 80px;
	box-sizing: border-box;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: #fff;
	border-radius: 10px;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 57px);
    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: 40px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 18px;
	height: 18px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 100%;
}
.modal .tit {
	margin: 24px 0;
}
.modal .tit h3 {
	font-size: 24px;
}
.modal .btn_area {
	margin-top: 30px;
	gap: 10px;
}
.modal .btn_area > * {
	display: block;
	width: 100%;
	height: 52px;
	line-height: 52px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
}




.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #fbfbfb;
	padding: 80px 0 100px;
	margin-top: 80px;
	box-sizing: border-box;
}
#footer .logo {
	margin-bottom: 60px;
}
#footer .logo img {
	width: 200px;
}
#footer .ft_box {
	gap: 20px;
}
#footer .ft_box .info {
	font-size: 18px;
	gap: 20px;
}
#footer .ft_box .info strong {
	color: #303030;
}
#footer .ft_box .info .item {
	gap: 20px;
}
#footer .ft_box .info .item > div {
	gap: 12px;
}
#footer .ft_box .ft_cs .cs_center {
	gap: 8px;
	color: #303030;
	text-align: center;
}
#footer .ft_box .ft_cs .cs_center p {
	font-size: 18px;
	font-weight: 600;
}
#footer .ft_box .ft_cs .cs_center h3 {
	font-size: 42px;
	color: #555;
}
#footer .ft_box .ft_cs .cs_center .run {
	color: #7e7e7e;
	font-weight: 500;
	line-height: 1.4;
}
#footer .ft_box .ft_cs .cs_center a {
	display: inline-block;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 10px 25px;
    background: var(--white);
	box-sizing: border-box;
}
#footer .ft_util {
	justify-content: center;
	gap: 30px;
	margin-top: 90px;
}
#footer .ft_util a {
	position: relative;
	color: #303030;
	font-weight: 500;
}
#footer .ft_util a:after {
	content: '';
	position: absolute;
	top: 1px;
	right: -15px;
	display: block;
	width: 1px;
	height: 12px;
	background: #e4e4e4;
}
#footer .ft_util a:last-child:after {
	display: none;
}


#fix_footer {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	padding: 15px 20px;
	gap: 12px;
	z-index: 100;
	box-shadow: 0 4px 4px 4px rgba(0,0,0,0.2);
	box-sizing: border-box;
}
#fix_footer a {
	flex: 1;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 10px;
}


#float_btn {
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index: 100;
}
#float_btn a {
	width: 100px;
	height: 100px;
	background:url("../images/ic_qna.svg?v=1")no-repeat 50% 50% / 100%;
	border-radius: 50%;
	justify-content: center;
	text-align: center;
	font-size: 0;
    line-height: 1.2;
}


.agree_modal .cont {
	white-space: pre-line;
	font-size: 16px;
	line-height: 1.4;
}
.agree_modal table {
	border: 1px solid #e4e4e4;
}
.agree_modal table th {
	border: 1px solid #e4e4e4;
	padding: 10px 5px;
	background: #fafafa;
}
.agree_modal table td {
	border: 1px solid #e4e4e4;
	text-align: center;
	padding: 10px 5px;
	font-size: 14px;
	box-sizing: border-box;
}
.agree_modal .logo_img {
	width: 100%;
	max-width: 200px;
}


h3.tit {
	font-size: 36px;
}


.title_area {
    display: none;
	position: relative;
	width: 100%;
}
.title_area a {
	position: absolute;
    top: -25px;
    left: 0;
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/arrow-right.svg")no-repeat 50% 50%;
    transform: rotate(180deg);
}


.list_table th {
    padding: 20px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    background: #F5F5F5;
}
.list_table td {
    padding: 20px 0;
    font-family: 'Pretendard';
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}
.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 .writer {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
    margin: 0 auto;
}
.list_table td .btn_area {
    gap: 5px;
    justify-content: center;
}
.list_table td .btn_area button {
    border-radius: 5px;
    font-size: 14px;
    padding: 6px 10px;
}


.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: 46px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	font-family: inherit;
	background: url("../images/ico-calendar.svg")no-repeat 10px 50% / 22px;
	border: 1px solid #DEDEDE;
	padding: 0 10px 0 40px;
	border-radius: 5px;
	box-sizing: border-box;
}
.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;
}
.tbody .cont .td.list_thumb {
	position: relative;
	gap: 15px;
}
.tbody .cont .td.list_thumb .img {
	position: relative;
	width: 100%;
	max-width: 370px;
    height: 200px;
}
.tbody .cont .td.list_thumb .img img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tbody .cont .td.list_thumb > div {
	position: relative;
}
.tbody .cont .td.list_thumb input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.tbody .cont .td.list_thumb label {
    width: 110px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
}
.tbody .cont .td.list_thumb .upload_name {
	flex: 1;
	width: 100%;
}




.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 5px;
}
.pagenavi ol li.first img, 
.pagenavi ol li.last img {
    width: 12px;
    vertical-align: -1px;
}
.pagenavi ol li.prev img, 
.pagenavi ol li.next img {
    width: 16px;
    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;
	border-radius: 5px;
}



@media screen and (max-width: 1240px) {
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: auto;
		gap: 25px 10px;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#header .logo img {
		width: 120px;
		vertical-align: 4px;
	}
	#header .m_menu {
		display: flex;
	}
	#header .gnb {
		flex: none;
		max-width: 100%;
	}
	#header .gnb ul li.m {
		display: none;
	}
	#header .gnb ul li.or1 {
		order: 1;
	}
	#header .gnb ul li.or2 {
		order: 2;
	}
	#header .gnb ul li.or3 {
		order: 3;
	}
	#header .gnb ul li.or4 {
		order: 4;
	}
	#header .gnb ul li.or5 {
		order: 5;
	}
	#header .gnb ul li a {
		font-size: 14px;
	}
	#header .gnb ul li.on:after {
		top: 0;
	}
	#header .gnb ul li.m_login {

	}
	#header .lang {
        position: absolute;
        top: 22px;
        right: 45px;
		background-size: 20px;
		padding-left: 21px;
    }
	#header .lang .gt_container-unisv1 a.glink span {
		font-size: 14px;
		margin-right: 2px;
	}

	#container {
		padding-top: 40px;
	}


	#footer {
		margin-top: 40px;
	}
	#footer .logo img {
		width: 135px;
	}
	#footer .logo {
		margin-bottom: 30px;
	}
	#footer .ft_box .ft_cs {
		order: 0;
	}
	#footer .ft_box .ft_cs .cs_center h3 {
		font-size: 28px;
	}
	#footer .ft_box .info {
		order: 1;
		font-size: 16px;
	}
	#footer .ft_util {
		margin-top: 50px;
		gap: 20px;
	}
	#footer .ft_util a {
		font-size: 14px;
	}
	#footer .ft_util a:after {
		right: -10px;
	}

	#fix_footer {
		display: flex;
	}

	
	#float_btn a {
		width: 65px;
		height: 65px;
	}


	.modal .modal_cont .scroll {
		padding: 24px;
	}
	.modal .tit h3 {
		font-size: 20px;
	}

	h3.tit {
		font-size: 26px;
	}

	.title_area {
        display: block;
    }
	.title_area + * {
		padding-top: 20px;
		box-sizing: border-box;
	}


	.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;
	}
	.tbody .cont .td .radio > div input[type=radio] + label {
		font-size: 14px;
	}
	.tbody .cont .td .radio > div input[type=radio] + label:before {
		top: -2px;
	}


	.list_table {
		font-size: 14px;
	}
	.list_table colgroup {
		display: none;
	}
	.list_table .badge {
		font-size: 12px;
	}
}
@media screen and (max-width: 768px) {
	#header .gnb ul {
        min-width: max-content;
    }


	h3.tit {
		font-size: 22px;
	}

	.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;
	}
	

	.list_table thead {
		display: none!important;
	}
	.list_table tr {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-bottom: 1px solid #e1e1e1;
		gap: 10px;
		padding: 10px 0;
	}
	.list_table td {
		padding: 0;
		border: 0;
		font-size: 13px;
	}
	.list_table_flex td {
		border-right: 1px solid #e1e1e1;
		padding-right: 10px;
	}
	.list_table_flex td:last-child {
		border-right: 0!important;
		padding-right: 0;
	}
	.list_table_flex td.num,
	.list_table_flex td.site {
		display: none;
	}
	.list_table_flex .subject {
		position: relative;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}
	.list_table_flex td.subject {
		padding-right: 0;
		font-size: 14px;
		border-right: 0!important;
	}
	.list_table_flex td.subject,
	.list_table_flex td.subject a {
		display: block;
		font-weight: bold;
		font-size: 15px;
	}
	.list_table_flex td.subject .qmt {
		display: none;
	}
	.list_table_flex td.view {
		background: url("../images/ic_view.png")no-repeat 0 50% / 13px;
		padding-left: 17px;
	}
	.list_table_flex td.subject + .taL {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.list_table_flex .qmt {
        font-size: 13px;
		margin-left: 0;
    }
	.list_table_flex td strong:before {
		display: none;
	}
	.list_table_flex td.m_qnt {
		display: block;
		background: url("../images/ic_cmt.png") no-repeat 0 50% / 17px;
		padding-left: 20px;
	}


	.list_table_box tbody tr {
        border: 1px solid #e4e4e4;
        padding: 20px;
        border-radius: 10px;
		margin-bottom: 10px;
        box-sizing: border-box;
    }
	.list_table_box tbody td {
        position: relative;
        display: flex;
        flex-wrap: wrap;
		width: 100%;
        border: 0;
        text-align: left;
        padding: 0;
        gap: 15px;
		line-height: 1.2;
        align-items: center;
    }
	.list_table_box tbody td:before {
        content: attr(data-val);
		width: 90px;
        border-right: 1px solid #e4e4e4;
        padding-right: 10px;
        box-sizing: border-box;
	}
	.list_table_box tbody td.num {
		display: none;
	}
	.list_table_box tbody td > div {
        flex: 1;
        width: 100%;
		word-break: break-all;
    }
	.list_table_box tbody td > div.btn_area {
		justify-content: start;
	}
	.list_table_box tbody td > div.btn_area button {
		font-size: 12px;
	}

	.pagenavi ol {
		gap: 0px;
	}
}
@media screen and (max-width: 480px) {
	#header .gnb {
        overflow-x: auto;
        margin: 0 -20px;
        width: calc(100% - -40px);
        padding: 0 20px;
    }
	#header .gnb::-webkit-scrollbar {
		display: none;
	}


	.pagenavi ol li a {
		width: 24px;
		height: 24px;
		line-height: 25px;
		font-size: 13px;
	}
}
@media screen and (max-width: 380px) {
	#header .inner {
		gap: 10px;
	}
	#header .logo img {
        width: 100px;
	}


	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 21px;
        font-size: 12px;
    }
}