.fc-p-1{color: #003382;}
.fc-p-2{color: #4874ff;}
.fw-600{font-weight: 600;}
.mt-10{margin-top: 10px;}
.mt-20{margin-top: 20px !important;}
.mt-30{margin-top: 30px;}
.mt-50{margin-top: 50px !important;}
.mb-5{margin-bottom: 5px;}
.pt-20{padding-top: 20px;}
.pt-50{padding-top: 50px !important;}
.pt-100{padding-top: 100px;}
.pd-20{padding: 20px;}
.ta-l{text-align: left !important;}
.ta-c{text-align: center !important;}
.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}
.wd-10{width: 10%;}
.wd-15{width: 15%;}
.wd-100{width: 100% !important;}
.m-mode{display: none;}
.mr-5{margin-right: 5px;}
.mr-10{margin-right: 10px;}
.mt-0{margin-top: 0 !important;}
.dp-block{display: block;}
.mlr-auto{margin-left: auto; margin-right: auto;}
.dp-flex{display: flex; flex-wrap: wrap;}
.item-center{align-items: center;}
.jf-c{justify-content: center;}
.gap-10{gap: 10px;}


.material-symbols-outlined{
    font-weight: 200 !important;
    line-height: normal !important;
    vertical-align: middle;
}


.gray-box{
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

ul.gap-line li{
    position: relative;    
}

ul.gap-line li::after{
    display: block;
    content: "";
    width: 1px;
    height: 60%;
    background-color: rgba(255 255 255 / 20%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}

ul.gap-line li:first-child:after{
    display: none;
}


.txt-list li{
    position: relative;
    padding-left: 20px;
}

.txt-list li::before{
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 10px;
}

.bd-box{
    border: 1px solid #ebebeb;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
}

.sdw-box{
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 20px rgba( 0 0 0 / 5%);
}

.tab-mn{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-mn li{
    flex: 1;
    border-radius: 5px;
    border: 1px solid #ebebeb;
}

.tab-mn li a{
    display: block;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
}

.tab-mn li.on{
    background-color: #003382;
}

.tab-mn li.on a{
    color: #fff;
}

.btn-wrap{
    width: 300px;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.btn-wrap > .btn-st{
    width: calc((100% - 10px) / 2);
    padding: 0;
}

.btn-st{
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    padding: 0 20px;
    text-align: center;
}

@keyframes btn-arr {
    0%,100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.bg-c-1{
    background-color: #ce4e4e;
}

.bg-c-2{
    background-color: #000d3a;
}


.btn-bd{
    border: 1px solid #eaeaea;
    background-color: #fff;
}

.bg-c-gray{
    background-color: #dedede;
}

.bg-c-gray-2{
    background-color: #efefef;
}

.fc-w{color: #fff;}
.fc-r{color: #d63636;}
.fc-gray{color: #999;}

.pop-wrap{
    display: none;
    z-index: 999999;
    position: relative;
}

.pop-wrap.on{
    display: block;
}

.pop-wrap .back {
    background-color: rgba(0 0 0 / 10%);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
}

.pop-wrap .pop-con {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    border-radius: 10px;
    background-color: #fff;
    padding: 40px;
    z-index: 9;
}

.pop-wrap .pop-con .top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.pop-wrap .pop-con .top h3{
    font-family: 'SEBANG_Gothic_Bold';
}

.pop-wrap .pop-con .top .close{
    border: 1px solid #eaeaea;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.pop-wrap .pop-con .top .close span{
    line-height: 48px !important;
}

/*게시판*/

.table-st{
    border-top: 1px solid #111;
}


.table-st .row{
    border-bottom: 1px solid #eaeaea;
}

.table-st .row,
.table-st .item{
    display: flex;
}


.table-st .tit,
.table-st .con{
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
}

.table-st .tit{
    flex-wrap:wrap;
    width: 150px;
    background: #f7f7f7;
    word-break: break-all;
}

.table-st .tit > p {
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
}
.table-st .con{
    width: calc(100% - 150px);
}

.table-st input{
    padding: 0 20px;
}

.table-st input,
.table-st select,
.table-st textarea{
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border:1px solid #eae9e9;
}

.table-st textarea{
    height: 200px;
    padding: 20px;
    resize: none;
}

.table-st .item{
    width: 100%;
}


.table-st .row.type-2 .item{
    width: 50%;
}


.table-st .row.type-3{
    padding: 20px 0;
}

.board-list-wrap .top{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.board-list-wrap .top .search-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.board-list-wrap .top .search-wrap select{
    width: 120px;
    background-position-x: 92%;
}

.board-list-wrap .top .search-wrap button{
    padding: 0 40px;
}

.board-list{
    border-top: 1px solid #111;
    border-bottom: 1px solid #eaeaea;
}

.board-list .item{
    padding: 20px;
}

.board-list .item h4{
    display: block;
    margin-bottom: 10px;
    font-family: 'SEBANG_Gothic_Bold';
}

.board-list .item ul{
    gap: 0 30px;
}

.board-list .item ul li{
    position: relative;
}

.board-list .item ul li::after {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    background-color: #cfcfcf;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}

.board-list .item ul li:last-child::after{
    display: none;
}

.board-list .item:not(:last-child){
    border-bottom: 1px solid #eaeaea;
}

.board-view-wrap{
	border-top: 2px solid #111;
	border-bottom: 1px solid #f4f4f4;
}

.board-view-wrap .top-box{
	padding: 20px 0;
	border-bottom: 1px solid #f4f4f4;
}

.board-view-wrap .file-box{
    padding: 20px 0;
	border-top: 1px solid #f4f4f4;
}

.board-view-wrap .top-box ul li{
	display: inline-block;
}

.board-view-wrap .contents{
	padding: 50px 0;
}

.board .btn-wrap {
    margin-left: auto;
    margin-right: 0;
    margin-top: 20px;
}

.pagenation{
	margin-top: 85px;
}

.pagenation,
.pagenation .num{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
    gap: 10px;
}

.pagenation .button{
    display: inline-block;
	width: auto;
	padding: 15px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
    background-image: url("../images/common/ico_pg_prev.png");
}
.pagenation .button.next{
    transform: rotate(-180deg);
}
.pagenation a{
	padding: 0 10px;
    display: inline-block;
    font-family: 'SEBANG_Gothic' !important;
    font-size: 16px;
    color: #111;
    position: relative;
}
.pagenation a.on{
    color: var(--main-red);
}
.pagenation a.on::after{
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    background: var(--main-red);
    height: 1px;
    content: '';
    border-bottom: 2px solid var(--main-red);
}



.faq-question {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
	border: 1px solid #f4f4f4;
}

.panel-title {
    width: 100%;
    float: left;
    position: relative;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
    padding: 15px 20px;
}

.panel-title span {
    float: left;
    display: block ;
    background: #13216a;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: 800;
}

.panel-title p {
    float: left;
    font-weight: 700;
    margin-top: 5px;
    margin-left: 16px;
    width: calc(100% - 100px);
}

.panel-content {
    padding: 0;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: .1s ease;
    -moz-transition: .1s ease;
    -o-transition: .1s ease;
    transition: .1s ease;
}



.panel:checked~.panel-content {
    height: auto;
    opacity: 1;
    padding: 20px;
    margin: 0 20px 20px 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.arr {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: url("../images/common/arr-down.png") center no-repeat;
	background-size: 10px;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
	border: 1px solid #f4f4f4;
	border-radius: 30px;
}

.panel:checked~.arr {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.panel {
    display: none;
}

.panel-content > span {
    float: left;
    display: block;
    background: #009da4;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: 800;
}

.panel-content > p,
.panel-content >  div {
    float: left;
    margin-top: 7px;
    margin-left: 18px;
    font-weight: 400;
    width: calc(100% - 60px);
}

.panel-content > div p,
.panel-content > div ul {
    width: 85%;
    word-break: inherit;
}


.mtable-ntc{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.mtable-ntc img{
    margin: 0 auto;
	width: 20px;
}

.mtable-ntc > div{
    z-index: 9;
    position: absolute;
    width: 80%;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 1px 1px 30px rgba(0 0 0 / 10%);
    border-radius: 20px;
}

.mtable-ntc > div::after{
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background: url("../images/common/close.png") center no-repeat;
    background-size: 15px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.mtable-ntc img{
    animation:drg 3s ease-out infinite;
}

.mtable-ntc p{
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}

@keyframes drg {
    0%,100%{transform:translateX(0)}
    50%{transform:translateX(15px)}
}

.mtable-ntc.close{
    display: none;
}


.swiper-button-next,
.swiper-button-prev{
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background-color: #fff;

}

.swiper-button-next:after,
.swiper-button-prev:after{
	color: #111;
	font-size: 14px;
	font-weight: 600;
}

.tabs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tabs li a{
    font-size: 18px;
    padding: 8px 40px;
}

.tabs li a.active{
    background-color: #3166ff;
    color: #fff;
    border-radius: 10px;
}

.txt-line{
	position: relative;
    padding-left: 20px;
}

.txt-line::after{
	display: block;
    content: "";
    width: 1px;
    height: 12px;
    background-color: #e9e9e9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}






@media all and (max-width: 1440px){

}
/*E:1440*/

@media all and (max-width: 1024px){

    .table-st .row{
        flex-wrap: wrap;
    }

    .table-st .row.type-2 .item{
        width: 100%;
    }

	.table-st .row.type-2 .item:first-child{
		border-bottom: 1px solid #eaeaea;
	}

    .table-st .tit{
        width: 100px;
    }

    .table-st .con {
        width: calc(100% - 100px);
        margin-left: auto;
        word-break: break-all;
    }
    .pagenation{
        margin-top: 35px;
    }

}
/*E:1024*/

@media all and (max-width: 768px){

    .wd-100-m{width: 100% !important}
    .pt-50-m{padding-top: 50px;}
    .m-mode{display: inline-block;}
    .wd-40-m{width: 40%;}
    .mt-10-m{margin-top: 10px;}
    .ta-l-m{text-align: left;}
    .mt-20-m{margin-top: 20px !important;}

    .table-st th, .table-st td{
        font-size: 14px;
    }

	.m-scr-wrap{
		position: relative;
		overflow-x: scroll;
        padding-bottom: 30px;
	}
	
	.mtable-ntc{
		display: block;
	}

	.m-scr-wrap table{
		width: 700px;
	}


	.swiper-button-next, .swiper-button-prev {
		width: 30px;
		height: 30px;
		border-radius: 30px;
	}

	.swiper-button-prev:after,
	.swiper-button-next:after {
		background-size: 6px !important;
	}

	.board-list .list .item {
		padding: 20px 0;
	}

	.board-list .list .item, .board-list .list .item .left,
	.board-list .list .item .right {
		width: 100%;
	}

	.board-list .list .item .tit{
		word-break: break-all;
		margin-top: 10px;
	}

	.board-list .list .item .right {
		margin-left: 0;
		gap: 0 20px;
	}

    .pop-wrap .pop-con{
        width: 90%;
        padding: 20px;
    }

    .pop-wrap .pop-con .top .close {
        width: 30px;
        height: 30px;
        border-radius: 30px;
    }

    .pop-wrap .pop-con .top .close span {
        line-height: 30px !important;
        transform: translate(-4px, -2px);
    }
   
    
    .tabs li a {
        font-family: 'ONE Mobile OTF Regular';
        font-size: 14px;
        padding: 3px 20px;
    }

    
    .board-list-wrap .top .search-wrap select{
        width: 100px;
    }

    .board-list-wrap .top .search-wrap button{
        width: 60px;
        padding: 0;
    }

    .board-list-wrap .top .search-wrap input {
        width: calc(100% - 170px);
    }

    .board-list .item h4{
        font-size: 16px;
    }

    .board-list-wrap .top .num{
        display: block;
        width: 100%;
    }

    .board-list-wrap .top .search-wrap{
        margin-top: 10px;
    }

    .panel-title{
        padding: 10px;
    }

    .tabs {
        width: 90% !important;
        margin: 0 20px;
        padding: 5px 10px;
        margin: 0 auto 20px auto;
    }

    .panel-title span,
    .panel-content > span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 30px;
    }

    .panel-title p,
    .panel-content > div{
        margin-top: 0;
        margin-left: 5px;
    }


}
/*E:768*/

@media all and (max-width: 640px){
    .btn-wrap{
        width: 200px;
    }
}
/*E:640*/




/* 추가 common 0402 */
/* common */
:root{
	--black:#111;
	--white:#FFF;
    --main-red:#ce4e4e;
}

.soundOnly{
	display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0;
    line-height: 0;
    border: 0 !important;
    overflow: hidden !important;
}
.tc{text-align:center !important}
.white{color: #FFF !important;}
.redColor{color: #ce4e4e !important;}
.flexBox{display: -webkit-box;display: -ms-flexbox;display: flex;width:100%;}
.flexBox.area02{-webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;}
.flexBox.area02.ver_noList,
.flexBox.ver_noList{-webkit-box-lines: single;-ms-flex-wrap: nowrap;flex-wrap: nowrap;}
.flexBox.area02.ver_noList > *{width:auto;}
.flexBox.ver_row-reverse{-webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse;}
.flexBox.justify-center{-webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;}
.flexBox.align-center{-webkit-box-align: center; -ms-flex-align: center; align-items: center;}
.flexBox.flex-center{-webkit-box-align: center; -ms-flex-align: center; align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.flex1{flex:1}
.inner_left{padding-left:calc((100% - 1400px) /2) !important}
.inner_right{padding-right:calc((100% - 1400px) /2) !important}
.inner{width:1400px;margin-left:auto;margin-right:auto;}
.inner_wide{width:90%;margin-left:auto;margin-right:auto;min-width: 1200px;}


@font-face {
    font-family: 'SEBANG_Gothic';
    src: url('https://cdn.jsdelivr.net/gh/wizfile/font/SEBANG_Gothic.eot');
    src:url('https://cdn.jsdelivr.net/gh/wizfile/font/SEBANG_Gothic.woff') format('woff');
    font-style: normal;
}
/* 폰트설정 */
.font-sb{
    font-family: 'SEBANG_Gothic_Bold' !important;
}
.font-sb-l{
    font-family: 'SEBANG_Gothic' !important;
}
.font-gmk-m{
    font-family: 'GmarketSansMedium' !important;
}
.font-gmk-b{
    font-family: 'GmarketSansBold' !important;
}
.font-gmk-l{
    font-family: 'GmarketSansLight' !important;
}


@media screen and (min-width: 1024px) {
    .mobVer {display:none !important}
}

/* min:1024px */
@media screen and (max-width: 1420px) {
    .inner{width:96%}	
}
/*E:1420*/
@media screen and (max-width: 1024px) {
    .inner,	.inner_wide{width:calc(100% - 48px);}
    .inner_left {padding-left: 24px !important;}
    .inner_right {padding-right: 24px !important;}
	.m_full_inner{width:100% !important}
	.pcVer {display:none !important}
	.m-column{-webkit-box-orient: vertical; -ms-flex-direction: column; flex-direction: column;}
    .m-column-s{-webkit-box-orient: vertical; -ms-flex-direction: column; flex-direction: column;align-items: flex-start !important;    word-break: keep-all;}
	.m-column > *{width:100% !important}
	.m-column-reverse{-webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse;}
	.flexBox.area02.ver_noList{-webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start;}
	.flexBox.area02.ver_noList.m-column-reverse,
	.flexBox.area02.ver_noList.m-column{-webkit-box-align: start; -ms-flex-align: start; align-items: flex-start;}
    .m-flex-nom{flex: inherit !important;}

}
/*E:1024*/



/* 준비중 */
.coming_box{
    background: #f8f8f8;
    border:1px solid #DDD;
    width: 50%;
    min-width: 200px;
    margin: 100px auto;
    padding: 100px 30px !important;
    border-radius: 10px;
}
.coming_box img{
    display: inline-block;
    margin-bottom: 10px;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .coming_box{
        width: 90%;
        padding: 30px !important;
        margin: 50px auto  ;
    }
    .coming_box img{
        max-width: 80%;
        margin-bottom: 20px;
    }
}