@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1480px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	background: var(--white);
	box-sizing: border-box;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	transition: all .3s;
}
#header .top_area .inner {
	height: 61px;
}
#header .top_area .logo img {
	width: 130px;
}
#header .top_area .top_util {
	gap: 5px;
}
#header .top_area .top_util a {
	position: relative;
	color: var(--text-);
	font-size: 14px;
}
#header .top_area .top_util span {
	color: var(--text-);
	width: 18px;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
}
#header .gnb {
	border-top: 1px solid var(--border-tertiary);
	border-bottom: 1px solid var(--border-tertiary);
}
#header .gnb .inner {
	height: 46px;
}
#header .gnb .box {
	gap: 40px;
}
#header .gnb .box > li {
	position: relative;
}
#header .gnb .box > li > a {
	color: var(--text-secondary);
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: all .3s;
	font-size: 16px;
	padding: 5px 0;
	box-sizing: border-box;
}
#header .gnb .box > li.active > a,
#header .gnb .box > li > a:hover {
	color: var(--key-color);
	border-bottom: 2px solid var(--key-color);
}
#header .top_menu {
	gap: 10px;
}
#header .top_menu > div {
	position: relative
}
#header .top_menu > div > a {
	color: var(--text-secondary);
	font-size: 16px;
	gap: 10px;
	background: url("../images/arrow-down.svg")no-repeat 100% 50%;
	padding-right: 22px;
}
#header .top_menu > div.login_off > a {
	background: none;
	padding-right: 0;
}
#header .top_menu > div > a .thumb {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 5px;
}
#header .top_menu > div > a .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#header .top_menu > div .sub_menu {
	display: none;
	position: absolute;
	right: 0;
	width: 140px;
	padding-top: 9px;
}
#header .top_menu > div:hover .sub_menu {
	display: block;
}
#header .top_menu > div .sub_menu ul {
	width: 100%;
	background: var(--white);
}
#header .top_menu > div .sub_menu ul li {
	text-align: center;
	padding: 8px 0;
}
#header .top_menu > div .sub_menu ul li.bg {
	background: var(--bg-divider);
}
#header .top_menu > div .sub_menu ul li a {
	color: var(--text-primary);
}
#header .top_menu > div .sub_menu ul li a:hover {
	color: var(--key-color);
}

.menu {
	display: none;
}
.menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}
#header.on .menu a {
	background: var(--key-color);
	border-radius: 5px;
}
.menu a span {
	position: absolute;
	left: 10px;
	display: block;
	width: 20px;
	height: 2px;
	background: var(--black);
	transition: all .3s;
}
.menu a span:nth-child(1) {
	top: 12px;
}
.menu a span:nth-child(2) {
	top: 17px;
}
.menu a span:nth-child(3) {
	top: 22px;
}
.menu a span:nth-child(4) {
	top: 27px;
}

.mypage_area {
	display: none;
	width: 100%;
}
.title_area {
	display: none;
	width: 100%;
}
#fixHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 68px;
	background: var(--white);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	padding: 2px 20px;
	opacity: 0;
	z-index: -1;
	transition: all .2s;
	box-sizing: border-box;
}
#fixHeader .main_header {
	display: none;
	width: 100%;
}
#fixHeader .logo img {
	width: 80px;
	vertical-align: middle;
}
#fixHeader .thumb {
	display: none;
}
#fixHeader.fixed {
	opacity: 1;
	z-index: 13;
}



.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: var(--white);
	overflow-y: auto;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}
.side_wrap.on {
	right: 0;
}
.side_wrap .top {
	padding: 10px 15px 20px;
}
.side_wrap .top .top_util {
	gap: 10px;
}
.side_wrap .top .top_util a {
	position: relative;
	color: var(--text-);
	font-size: 16px;
}
.side_wrap .top .top_util span {
	color: var(--text-);
	width: 18px;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
}
.side_wrap .top .side_close {
    position: absolute;
	top: 0;
	right: 0;
    width: 40px;
    height: 40px;
    background: url("../images/ico-close.svg")no-repeat 50% 50% / 20px;
    z-index: 1;
}
.side_wrap.on .top .side_close {
	display: block;
}
.side_wrap .depth {
    padding: 15px 0 30px;
}
.side_wrap .depth01 {
	position: relative;
	border-bottom: 1px solid #e9e9e9;
}
.side_wrap .depth01 a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.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;
}
.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: 180px;
}




.tit {
	font-size: 36px;
	color: #000;
	margin-bottom: 50px;
}
.tit p {
	color: rgba(0, 0, 0, 0.80);
	font-size: 18px;
	font-weight: 400;
	margin-top: 20px;
}


.sub_tit {
	font-size: 40px;
	font-weight: 700;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.60);
	z-index: 37;
}
.modal .modal_cont {
    width: 90%;
    max-width: 575px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 38;
	border-radius: 10px;
	background: var(--white);
	border: 1px solid var(--sub);
	box-shadow: 2px 4px 6px 0px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 48px);
    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: 30px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	background: var(--white);
	padding: 10px 15px;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-secondary);
}
.modal .bar .close {
	width: 13px;
	height: 13px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal .txt {
	font-size: 16px;
	color: #FCFCFC;
	line-height: 1.6;
}
.modal .btn_area {
	justify-content: center;
	gap: 20px;
}
.modal .btn_area button {
	flex: 1;
	max-width: 300px;
	height: 58px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
}
.modal .btn_area button.btn_gray {
	background: #f5f5f5;
	color: var(--border-secondary);
}

.agree_modal .scroll {
	max-height: calc(95vh - 40px);
}
.agree_modal .scroll .cont {
	white-space: pre-line;
	line-height: 1.4;
}

.info_modal .modal_cont .scroll {
	padding: 50px;
}
.info_modal .text {
	color: var(--black);
	background: url("../images/check_bg.svg")no-repeat 50% 0;
	font-size: 24px;
	line-height: 1.3;
	padding-top: 85px;
	margin-bottom: 20px;
}
.info_modal .sub_txt {
	color: var(--sub);
	font-size: 16px;
}
.info_modal .btn_area {
	margin-top: 30px;
}

.not_scroll {
	overflow: hidden;
}


.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 20px;
}
.pagenavi ol li img {
	vertical-align: middle;
	margin-top: -2px;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 32px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-);
}
.pagenavi ol li.this a {
	color: var(--key-color);
}


.title_area {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
}

.tit_bar {
	border-radius: 10px;
	background: var(--key-color);
	color: var(--white);
	padding: 20px;
	font-size: 18px;
	font-weight: 700;
	box-sizing: border-box;
}

.func .search_box {
	flex: 1;
	max-width: 412px;
	border-radius: 5px;
	border: 0.5px solid rgba(224, 224, 224, 0.5);
	overflow: hidden;
	gap: 10px;
	padding: 0 16px;
	background: var(--white);
	box-sizing: border-box;
}
.func .search_box input {
	flex: 1;
	width: 100%;
	height: 44px;
	font-size: 16px;
}
.func .search_box .search_btn {
	width: 24px;
	height: 24px;
	background: url("../images/ic_search.svg")no-repeat 50% 50%;
}
.func .filter {
	flex: 1;
	gap: 10px;
	justify-content: end;
}
.func .filter .date {
	flex: 1;
	max-width: 280px;
	border-radius: 5px;
	border: 0.5px solid rgba(224, 224, 224, 0.5);
	padding: 0 16px 0 55px;
	background: var(--white) url("../images/calendar-search.svg")no-repeat 16px 50%;
	box-sizing: border-box;
}
.func .filter .date input {
	width: 100%;
	height: 44px;
	background: transparent;
	font-size: 16px;
}
.func .filter .reset_btn {
	width: 93px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 5px;
	background: var(--text-);
	color: var(--white);
	font-size: 14px;
	box-sizing: border-box;
}


.t_scroll {
	background: var(--white);
}
.list_table {
}
.list_table thead th {
	padding: 20px 5px;
	background: #F2FDF5;
	text-align: center;
	font-weight: 600;
}
.list_table thead th:first-child {
	border-radius: 10px 0 0 10px;
	padding-left: 20px;
}
.list_table thead th:last-child {
	border-radius: 0 10px 10px 0;
	padding-right: 20px;
}
.list_table tbody td {
	text-align: center;
	padding: 20px 5px;
	border-bottom: 0.5px solid var(--border-tertiary);
}
.list_table tbody td:first-child {
	padding-left: 20px;
}
.list_table tbody td:last-child {
	padding-right: 20px;
}
.list_table .text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.list_table button {
	width: 95px;
	border-radius: 5px;
	padding: 5px 0;
	font-size: 16px;
	font-weight: 500;
}



#footer {
	position: relative;
	padding: 50px 0 100px;
	margin-top: 100px;
	background: var(--white);
	border-top: 1px solid rgba(224, 224, 224, 0.5);
}
#footer .inner {
	gap: 20px;
}
#footer .logo {
	width: 100%;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 50px;
}
#footer .logo img {
	width: 130px;
	vertical-align: middle;
	margin-right: 10px;
}
#footer .txt {
	flex: 1;
	margin-right: 30px;
}
#footer .txt .addr {
	margin-bottom: 20px;
	gap: 10px;
}
#footer .txt .addr span {
	position: relative;
	margin-right: 10px;
	padding-right: 10px;
	font-size: 12px;
	color: var(--sub);
}
#footer .txt .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 12px;
	position: absolute;
	top: 1px;
	right: 0;
	background-color: var(--sub);
}
#footer .txt .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}
#footer .txt .addr span:last-child:after {
	display: none;
}
#footer .txt .addr span a {
	color: var(--sub);
}
#footer .txt .copy {
	font-size: 12px;
	color: var(--sub);
}
#footer .info {
	gap: 10px;
}
#footer .info .tel {
    font-size: 24px;
}
#footer .info p {
	color: var(--sub);
	font-size: 14px;
}
#footer .info .run {
	color: var(--text-);
	font-size: 14px;
	font-weight: 500;
}

#fix_kakao {
	position: fixed;
	bottom: 100px;
	right: 50px;
	z-index: 15;
}
#fix_kakao a {
	display: block;
	width: 50px;
    height: 50px;
	background: url("../images/fix_kakao.svg")no-repeat 50% 50% / 100%;
	border-radius: 50%;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
}


#footer_fix {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 12;
}
#footer_fix ul {
	background: var(--white);
	box-shadow: 0px -4px 5px 0px rgba(186, 192, 198, 0.15);
}
#footer_fix ul li {
	flex: 1;
	text-align: center;
}
#footer_fix ul li a {
    display: block;
    padding: 55px 0px 10px;
    color: var(--sub);
    font-size: 12px;
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: 50% 10px;
}
#footer_fix ul li.active a {
	color: var(--key-color);
}
#footer_fix ul li.ft01 a {
	background-image: url("../images/ft_icon1.svg");
}
#footer_fix ul li.ft02 a {
	background-image: url("../images/ft_icon2.svg");
}
#footer_fix ul li.ft03 a {
	background-image: url("../images/ft_icon3.svg");
}
#footer_fix ul li.ft04 a {
	background-image: url("../images/ft_icon4.svg");
}
#footer_fix ul li.ft05 a {
	background-image: url("../images/ft_icon5.svg");
}
#footer_fix ul li.ft01.active a {
	background-image: url("../images/ft_icon1_on.svg");
}
#footer_fix ul li.ft02.active a {
	background-image: url("../images/ft_icon2_on.svg");
}
#footer_fix ul li.ft03.active a {
	background-image: url("../images/ft_icon3_on.svg");
}
#footer_fix ul li.ft04.active a {
	background-image: url("../images/ft_icon4_on.svg");
}
#footer_fix ul li.ft05.active a {
	background-image: url("../images/ft_icon5_on.svg");
}






@media screen and (max-width: 1280px) {
	#header .top_area .top_util a {
		font-size: 18px;
	}
	#header .gnb .box > li > a {
		font-size: 18px;
	}
	#header .top_menu > div > a {
		font-size: 18px;
	}

	.tit {
		font-size: 28px;
	}
}
@media screen and (max-width: 1024px) {
	#header h1 {
		display: none;
	}
	#header .top_area .inner {
		height: 50px;
		justify-content: center;
	}
	#header .top_area .logo img {
		width: 120px;
	}
	#header .top_area .top_util,
	#header .gnb .box {
		display: none;
	}
	#header .gnb {
		display: none;
	}
	#header .title_box {
		display: block;
	}
	
	#container {
		padding-top: 76px;
	}

	.inner {
        padding: 0 30px;
    }
	

	#footer {
		margin-top: 75px;
		padding: 25px 0 135px;
	}
	#footer .logo {
		margin-bottom: 25px;
	}
	#footer .logo img {
		width: 100px;
	}
	#footer .info .tel {
		font-size: 16px;
	}

	.modal .btn_area button {
		font-size: 18px;
		height: 55px;
	}
	.info_modal .modal_cont .scroll {
		padding: 50px 20px;
	}
	.info_modal .text {
		font-size: 28px;
	}
	.info_modal .sub_txt {
		font-size: 20px;
	}


	.tit {
		font-size: 24px;
		text-align: center;
		margin-bottom: 30px;
	}

	.title_area {
		font-size: 22px;
	}

	.sub_tit {
		font-size: 26px;
	}

	.func .search_box {
		max-width: 320px;
	}

	#fix_kakao {
		bottom: 115px;
		right: 15px;
	}
	#fix_kakao a {
		width: 50px;
		height: 50px;
	}

	#footer_fix {
		display: block;
	}

	.list_table {
		font-size: 14px;
	}
	.list_table colgroup {
		display: none;
	}
	.list_table thead th:first-child,
	.list_table tbody td:first-child {
		padding-left: 10px;
	}
	.list_table thead th:last-child,
	.list_table tbody td:last-child {
		padding-right: 10px;
	}
	.list_table button {
		width: 75px;
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.modal .btn_area {
		gap: 10px;
	}
	.info_modal .modal_cont .scroll {
		padding: 30px 20px;
	}
	.info_modal .text {
		font-size: 20px;
		background-size: 50px!important;
		padding-top: 65px;
	}
	.info_modal .sub_txt {
		font-size: 16px;
	}

	.tit {
		font-size: 20px;
	}

	.tit_bar {
		padding: 15px;
		font-size: 16px;
	}

	.func .search_box {
		flex: none;
		width: 100%;
		max-width: 100%;
	}
	.func .search_box input {
		height: 38px;
		font-size: 14px;
	}
	.func .filter .date {
		flex: 1;
		width: 100%;
		max-width: 100%;
	}
	.func .filter .date input {
		flex: none;
		width: 100%;
		height: 38px;
		font-size: 14px;
	}
	.func .filter .reset_btn {
		width: 100%;
		height: 38px;
		line-height: 38px;
	}

	.list_table thead {
		display: none;
	}
	.list_table tbody tr {
		display: block;
		width: 100%;
		border: 0.5px solid var(--border-tertiary);
		border-radius: 5px;
		margin-bottom: 20px;
		padding: 15px;
		box-sizing: border-box;
	}
	.list_table tbody td {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		border: 0;
		text-align: left;
		padding: 5px 0!important;
		box-sizing: border-box;
	}
	.list_table tbody td::before {
		content: attr(data-val);
		min-width: 80px;
		border-right: 1px solid var(--border-tertiary);
		margin-right: 10px;
		padding-right: 5px;
		box-sizing: border-box;
	}
	.list_table tbody td > div {
		flex: 1;
	}
	.list_table tbody td.no {
		display: none;
	}

	.pagenavi ol {
		gap: 10px;
	}
	.pagenavi ol li a {
		width: 20px;
		height: 20px;
		line-height: 22px;
	}
}
@media screen and (max-width: 480px) {
	.pagenavi ol {
		gap: 3px;
	}
	.pagenavi ol li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 380px) {
	.pagenavi ol {
		gap: 0;
	}
	.pagenavi ol li a {
		width: 16px;
		height: 16px;
		line-height: 18px;
	}
	.pagenavi ol li img {
		width: 8px;
	}
}