@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1740px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	padding: 16px 0;
	background: var(--key-color);
	z-index: 999;
	box-sizing: border-box;
}
#header .inner {
	height: 60px;
	gap: 20px;
	box-sizing: border-box;
}
#header .gnb {
	flex: 1;
}
#header .gnb ul {
	gap: 35px;
	justify-content: center;
}
#header .gnb ul li a {
	color: var(--white);
	font-weight: 700;
	letter-spacing: 0.375px;
}
#header .login_off {
	gap: 20px;
}
#header .login_off a {
	font-weight: 600;
	letter-spacing: 0.375px;
	text-transform: capitalize;
	padding: 16px 20px;
	border-radius: 10px;
	box-sizing: border-box;
}
#header .login_off a.login_btn {
	color: var(--white);
	border: 2px solid var(--white);
}
#header .login_off a.join_btn {
	background: #F8C808;
	color: #323232;
}
#header .login_on {
	gap: 20px;
}
#header .login_on .invite a {
	display: inline-block;
	height: 51px;
	line-height: 51px;
	background: var(--white) url("../images/ic_users.svg")no-repeat 10px 50%;
	color: var(--key-color);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.375px;
	padding: 0 10px 0 46px;
	border-radius: 10px;
	box-sizing: border-box;
}
#header .login_on .alarm a {
	position: relative;
	display: inline-block;
}
#header .login_on .alarm a span {
	position: absolute;
	top: -8px;
    right: -12px;
	display: block;
	width: 21px;
	height: 21px;
	line-height: 21px;
	border-radius: 50%;
	text-align: center;
	background: #E44229;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	box-sizing: border-box;
}
#header .menu {
	display: none;
	position: relative;
	width: 28px;
	height: 28px;
	background: url("../images/ic_menu.svg")no-repeat 50% 50%;
	box-sizing: border-box;
}
#header .login_on .profile {
	position: relative;
}
#header .login_on .profile_box {
	gap: 9px;
	background: url("../images/arrow_down_white.svg")no-repeat 100% 50%;
	padding-right: 26px;
	box-sizing: border-box;
}
#header .login_on .profile_box .thumb {
	position: relative;
	width: 51px;
	height: 51px;
	border-radius: 10px;
	border: 2px solid var(--white);
	background: linear-gradient(180deg, #363634 0%, #080A06 100%);
	box-sizing: border-box;
}
#header .login_on .profile_box .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#header .login_on .profile_box strong {
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.375px;
}
#header .login_on .profile .drop_down {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
	padding-top: 19px;
	box-sizing: border-box;
}
#header .login_on .profile:hover .drop_down {
	display: block;
}
#header .login_on .profile .drop_down ul {
	width: 100%;
	padding: 20px 30px;
	background: #323232;
	border-radius: 0 0 10px 10px;
	gap: 12px;
	margin: 0 auto;
	box-sizing: border-box;
}
#header .login_on .profile .drop_down ul li a {
	display: block;
	color: var(--white);
	font-weight: 700;
	letter-spacing: 0.375px;
	text-transform: capitalize;
}
#header .login_on .profile .drop_down ul li a:hover {
	color: var(--yellow);
}

.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 {
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--white);
	transition: all .2s;
	box-sizing: border-box;
}
#side.open {
	opacity: 1;
	z-index: 1000;
	visibility: visible;
	top: 0;
	height: 100%;
}
#side .top {
	padding: 20px;
	box-sizing: border-box;
}
#side .top > div {
	gap: 10px;
}
#side .top > div a {
    font-weight: 600;
    letter-spacing: 0.375px;
    text-transform: capitalize;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 7px;
    box-sizing: border-box;
}
#side .top > div a.login_btn {
	border: 1px solid #323232;
}
#side .top > div a.join_btn {
	background: #F8C808;
	color: #323232;
}
#side .depth {
	overflow-y: auto;
	height: calc(100vh - 163px);
}
#side .depth .depth01 > button {
	position: relative;
	width: 100%;
	height: 75px;
	border-bottom: 1px solid var(--white);
	background: var(--key-color);
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}
#side .depth .depth01:last-child > button {
	border-bottom: 0;
}
#side .depth .depth01 > button:after {
	content: '';
	position: absolute;
	top: 32px;
	right: 20px;
	display: block;
	width: 17px;
	height: 9px;
	background: url("../images/arrow_down_white")no-repeat 50% 50%;
}
#side .depth .depth01.active > button:after {
	transform: rotate(180deg);
}
#side .depth .depth01.no_child > button:after {
	display: none!important;
}
#side .depth .depth02 {
	max-height: 0;
	transition: max-height .3s;
	overflow: hidden;
}
#side .depth .active .depth02 {
	max-height: 800px;
	overflow: visible;
}
#side .depth .depth02 > li > a {
	display: block;
	height: 75px;
	line-height: 75px;
	color: #323232;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}
#side .depth .depth02 > li.active > a {
	color: var(--key-color);
}
#side .depth .depth02 > li.active > a:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background: url("../images/symbol.svg")no-repeat 50% 50% / 100%;
	margin-right: 15px;
}
#side .depth .depth02 > li.active > a:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background: url("../images/symbol.svg")no-repeat 50% 50% / 100%;
	margin-left: 15px;
}
#side .depth .depth03 {
	display: none;
	position: relative;
	box-sizing: border-box;
}
#side .depth .depth02 > li:last-child .depth03 {
	padding-bottom: 20px;
}
#side .depth .depth03 > li {
	padding: 5px 0;
}
#side .depth .depth03 > li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #323232;
    margin-right: 10px;
}
#side .depth .depth02 > li.active .depth03 {
	display: flex;
}
#side .depth .depth02 > li.active .depth03 > li.active a {
	font-weight: 700;
}
#side .depth .depth02 > li.active .depth03 > li.active:before {
	width: 4px;
	height: 4px;
}
#side .sns {
	justify-content: center;
	padding: 25px 0;
	gap: 20px;
	box-sizing: border-box;
}
#side .sns a {
	width: 27px;
	height: 27px;
	background-image: url("../images/side_sns.svg");
	background-repeat: no-repeat;
}
#side .sns a.facebook_btn {
	background-position: 0 0;
}
#side .sns a.insta_btn {
	background-position: -52px 0;
}
#side .sns a.youtube_btn {
    background-position: -102px 0;
    width: 35px;
}


#container {
    width: 100%;
    min-height: calc(100vh - 300px);
}


.contents {
	padding: 50px 0;
}
.contents > .inner {
	align-items: start;
}

.snb {
	width: 192px;
	gap: 20px;
}
.snb h3 {
	color: #323232;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.45px;
}
.snb > ul {
	gap: 12px;
	line-height: 1.4;
}
.snb > ul > li > a {
	display: block;
	width: 100%;
	color: #323232;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.375px;
	text-transform: capitalize;
	box-sizing: border-box;
}
.snb > ul > li.selected > a {
	font-weight: 700;
	letter-spacing: 0.45px;
	background: url("../images/symbol.svg")no-repeat 0 50% / 25px;
	padding: 3px 0 3px 32px;
}
.snb > ul > li > ul {
	display: none;
	padding-left: 32px;
	gap: 10px;
	margin-top: 7px;
	box-sizing: border-box;
}
.snb > ul > li > ul > li {
	position: relative;
	padding-left: 12px;
	box-sizing: border-box;
}
.snb > ul > li > ul > li:before {
	content: '';
	position: absolute;
	top: 7px;
	left: 0;
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #323232;
}
.snb > ul > li.selected > ul {
	display: flex;
}
.snb > ul > li > ul > li.selected a {
	font-weight: 700;
}
.snb > ul > li > ul > li.selected:before {
	width: 4px;
	height: 4px;
}


.content {
	flex: 1;
	width: calc(100% - 192px);
	min-height: 730px;
	gap: 40px;
}


.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: 999;
}
.modal .modal_cont {
    width: 95%;
    max-width: 630px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 97vh;
	z-index: 1000;
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(97vh - 59px);
	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: 40px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
    justify-content: space-between;
    padding: 23px 50px;
    gap: 10px;
    background: var(--key-color);
    color: var(--white);
    box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 24px;
	letter-spacing: 0.6px;
}
.modal .bar .close {
	width: 20px;
	height: 20px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 100%;
}
.modal .btn_area {
	gap: 10px;
}
.modal .btn_area button {
    height: 61px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}



.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #EFEFEF;
	padding: 50px 0 20px;
	box-sizing: border-box;
}
#footer .inner {
	max-width: 1640px;
	gap: 50px 20px;
}
#footer .top {
	gap: 10px;
}
#footer .top > div {
	gap: 50px;
}
#footer .top .ft_info .logo {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	font-family: 'Benzin';
	gap: 16px;
}
#footer .top .ft_info .info {
	gap: 10px;
	font-size: 16px;
	letter-spacing: 0.4px;
}
#footer .top .cs .sns {
	gap: 20px;
}
#footer .top .cs .partner {
	gap: 20px;
}
#footer .top .cs .cs_center {
	gap: 10px;
	font-size: 16px;
	letter-spacing: 0.4px;
}
#footer .top .cs .cs_center > div {
	gap: 10px;
}
#footer .top .cs .cs_center > div strong {
	font-weight: 500;
}
#footer .bottom {
	gap: 10px;
}
#footer .bottom .copy {
	font-size: 13px;
	letter-spacing: 0.325px;
}
#footer .bottom .util {
	gap: 16px;
}
#footer .bottom .util a {
	font-size: 16px;
	letter-spacing: 0.4px;
}




.title {
	position: relative;
	border-bottom: 2px solid #D3D3D3;
	padding-bottom: 10px;
	font-size: 45px;
	font-weight: 900;
	color: #323232;
	letter-spacing: 1.125px;
	gap: 20px;
	box-sizing: border-box;
}
.title > a {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.6px;
}
.title_txt {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: none;
	padding-right: 0;
}
.title_txt strong {
	color: var(--key-color);
	font-family: 'Paperlogy',sans-serif;
	font-size: 20px;
	letter-spacing: 0.5px;
}
.sub_txt {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.5px;
}
.tit_tab {
	gap: 18px;
}
.tit_tab a {
    position: relative;
    font-size: 20px;
    font-weight: 500;
}
.tit_tab a:first-child:after {
	content: '';
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 14px;
    background: #323232;
    box-sizing: border-box;
}
.tit_tab a.active {
	color: var(--key-color);
	font-weight: 600;
}



.sec {
	padding: 80px 0;
}
.sec_blue {
	background: var(--key-color);
	color: var(--white);
}
.sec_blue .title {
	color: var(--white);
	border-bottom: 2px solid var(--white);
}
.sec_blue .title > a {
	color: var(--white);
}


.tabs {
    overflow-x: auto;
}
.tabs .flex {
    min-width: max-content;
    justify-content: center;
}
.tabs .flex button {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.45px;
    color: var(--white);
    margin: 0 18px;
    padding: 2px 0;
    border: 1px solid transparent;
    box-sizing: border-box;
}
.tabs .flex button:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 14px;
    background: var(--white);
    box-sizing: border-box;
}
.tabs .flex button:first-child {
	margin-left: 0!important;
}
.tabs .flex button:last-child {
	margin-right: 0!important;
}
.tabs .flex button:last-child:after {
    display: none;
}
.tabs .flex button.active {
    border-radius: 10px;
    padding: 2px 10px;
    border: 1px solid var(--white);
}


.t_scroll {
	overflow-x: auto;
}
.list_table thead th {
	background: var(--key-color);
	color: var(--white);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.45px;
	padding: 24px 20px;
}
.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 {
	padding: 24px 20px;
	border-bottom: 2px solid #D3D3D3;
	letter-spacing: 0.375px;
	text-align: center;
}



.pagenavi {
	margin-top: 20px;
}
.pagenavi ol {
	text-align: center;
	justify-content: center;
	gap: 20px;
}
.pagenavi ol li {
	border-radius: 5px;
}
.pagenavi ol li.prev,
.pagenavi ol li.next {
	margin: 0;
}
.pagenavi .first a {
	background: url("../images/page-first.svg")no-repeat 50% 50%;
}
.pagenavi .prev a {
	background: url("../images/page-prev.svg?v=1")no-repeat 50% 50%;
}
.pagenavi .next a {
	background: url("../images/page-next.svg?v=1")no-repeat 50% 50%;
}
.pagenavi .last a {
	background: url("../images/page-last.svg")no-repeat 50% 50%;
}
.pagenavi ol li a {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 5px;
}
.pagenavi ol li.this a {
	background: var(--yellow);
	color: var(--white);
	font-weight: 600;
}



.agreement {
	max-width: 1280px;
	margin: 0 auto;
}
.agreement .cont {
	white-space: pre-line;
	line-height: 1.7;
	font-size: 16px;
}
.agreement .cont strong {
	font-size: 18px;
}
.agreement .cont h4 {
	font-size: 22px;
}
.agreement .cont a {
	color: var(--key-color);
	text-decoration: underline;
	word-break: break-all;
}
.agreement .cont .pl {
	padding-left: 20px;
	box-sizing: border-box;
}
.agreement .cont table {
	text-align: center;
}
.agreement .cont table th {
	border: 1px solid #e1e1e1;
	background: #f1f1f1;
	padding: 10px;
}
.agreement .cont table td {
	border: 1px solid #e1e1e1;
	padding: 10px;
}


@media screen and (max-width: 1440px) {
	#header .gnb ul {
    	gap: 20px;
	}

	.title {
		font-size: 40px;
	}
	.title > a {
    	font-size: 20px;
	}
}
@media screen and (max-width: 1280px) {
	#header .gnb,
	#header .login_off,
	#header .login_on {
		display: none;
	}
	#header .menu {
		display: block;
	}


	.title {
		font-size: 32px;
	}
	.title > a {
    	font-size: 18px;
	}
	.tit_tab a {
		font-size: 18px;
	}


	.list_table thead th {
		font-size: 16px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		padding: 20px 0;
	}
	#header .inner {
		height: 46px;
	}
	#header .logo img {
		height: 46px;
	}

	.snb {
		display: none;
	}


	.content {
		gap: 20px;
	}


	#footer .top > div {
		gap: 30px;
	}
	#footer .top .ft_info {
		flex: 1;
	}
	#footer .top .ft_info .logo {
    	font-size: 24px;
	}
	#footer .top .ft_info .logo img {
		width: 40px;
	}
	#footer .top .ft_info .info {
		font-size: 14px;
	}
	#footer .top .cs .partner img {
		height: 40px;
	}
	#footer .top .cs .cs_center {
		font-size: 14px;
	}
	#footer .bottom .util {
		gap: 10px;
	}
	#footer .bottom .util a {
    	font-size: 14px;
	}


	.title {
		font-size: 25px;
		text-align: center;
		padding-bottom: 0;
		padding-right: 0!important;
		background: none!important;
		border-bottom: 0!important;
		justify-content: center;
		gap: 15px;
	}
	.title > div {
		width: 100%;
	}
	.title > a {
        font-size: 16px;
    }
	.title_txt {
		justify-content: center;
		gap: 10px;
	}
	.title_txt strong {
		width: 100%;
		font-size: 15px;
	}
	.tit_tab {
		width: 100%;
		justify-content: center;
	}
	.tit_tab a {
		font-size: 16px;
	}
	.sub_txt {
    	font-size: 15px;
		text-align: center;
	}

	.tabs .flex button {
        font-size: 15px;
        margin: 0 8px;
    }
    .tabs .flex button:after {
        right: -8px;
    }


	.modal .modal_cont .scroll {
		padding: 20px;
	}
	.modal .bar {
		padding: 16px 20px;
	}
	.modal .bar h3 {
		font-size: 20px;
	}
	.modal .btn_area button {
		height: 54px;
        font-size: 20px;
	}


	.list_table colgroup {
		display: none;
	}
	.list_table thead {
		display: none;
	}
	.list_table tbody tr {
		display: flex;
		flex-wrap: wrap;
		border: 1px solid #323232;
		flex-direction: column;
		border-radius: 10px;
		padding: 15px;
		gap: 10px;
		margin-bottom: 10px;
		font-size: 14px;
		box-sizing: border-box;
	}
	.list_table tbody td {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		border: 0;
		text-align: left;
		padding: 0;
		gap: 15px;
		align-items: center;
	}
	.list_table tbody td:before {
        content: attr(data-val);
        width: 75px;
        border-right: 1px solid rgba(50,50,50,0.5);
        padding-right: 10px;
		font-weight: 600;
        box-sizing: border-box;
    }
	.list_table tbody td > div {
		flex: 1;
		width: 100%;
	}
	.list_table tbody td .pc {
		display: none;
	}


	.agreement .cont {
		font-size: 14px;
	}
	.agreement .cont h4 {
		font-size: 20px;
	}
	.agreement .cont strong {
		font-size: 16px;
	}
	.agreement .cont table colgroup {
		display: none;
	}
	.agreement .cont table tr {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		margin-bottom: 30px;
		box-sizing: border-box;
	}
	.agreement .cont table tr:nth-child(1) {
		display: none;
	}
	.agreement .cont table td {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		border: 0;
		text-align: left;
		padding: 0;
		align-items: center;
		border-top: 1px solid #e1e1e1;
		box-sizing: border-box;
	}
	.agreement .cont table td:last-child {
		border-bottom: 1px solid #e1e1e1;
	}
	.agreement .cont table td:before {
		content: attr(data-val);
		display: block;
		width: 100%;
		background: #f1f1f1;
		padding: 10px 20px;
		border-bottom: 1px solid #e1e1e1;
		box-sizing: border-box;
	}
	.agreement .cont table td > div {
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }
	.agreement .cont .table01 tr:nth-child(1) {
		display: flex;
	}
	.agreement .cont .table01 td {
		width: 100%;
		padding: 8px 0;
	}
	.agreement .cont .table01 td:before {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	#footer .top {
		gap: 40px;
	}
	#footer .top > div {
		width: 100%;
	}
	#footer .top .cs .cs_center {
		max-width: 400px;
	}


	.modal .btn_area button {
		height: 48px;
        font-size: 18px;
	}
}
@media screen and (max-width: 480px) {
	#footer .top .ft_info .logo {
        font-size: 20px;
    }
	#footer .top .ft_info .logo img {
        width: 30px;
    }
	#footer .top .cs .partner img {
        height: 30px;
    }


	.pagenavi ol {
		gap: 10px;
	}

	.list_table tbody td {
		border-bottom: 1px solid rgba(50,50,50,0.5);
		gap: 10px;
		padding: 5px 0 10px;
	}
	.list_table tbody td:last-child {
		border-bottom: 0;
	}
	.list_table tbody td:before {
		width: 100%!important;
		border-right: 0!important;
	}
}
@media screen and (max-width: 380px) {
	#footer .top .cs .cs_center {
		gap: 20px;
	}
	#footer .top .cs .cs_center > div strong {
		width: 100%;
	}
}