/* board */
.empty_board_txt{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
}
/* board 공통 버튼 */
.btn_wrapper{
    width: auto;
    display: flex;
    justify-content: center;
    margin: 150px auto 0 auto;
    cursor: pointer;
}
.btn_wrapper .btn{
    width: 185px;
    padding: 17px;
    display: flex;
    justify-content: center;
    color: #FFF;
    font: 18px 'SpoqaHanSansNeo-Regular';
}
.btn_type01{
    background-color: #D6A884;
}
.btn_type02{
    margin-left: 15px;
    background-color: #9D9EA2;
}
@media screen and ( max-width: 767px ){
    .btn_wrapper .btn{
        font-size: 16px;
    }
} 
/* board > search area */
.board_search_wrap{
	position: relative;
	padding: 43px 104px;
	background: #FBF9F6;
}

.board_search_wrap > .wrap{
    display: flex;
	align-items: center;
	justify-content: center;
    width: 100%;
}

.board_search_wrap > .wrap > *{
	height: 50px;
	font-size: 18px;
	letter-spacing: -0.9px;
    line-height: 22px;
    background-color: #fff;
}

.board_search_wrap > .wrap > *:nth-child(n+2):not(.search_click){
    margin-left: 9px;
}

.board_search_wrap select{
    position: relative;
    min-width: 136px;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/images/c_project/user/sub/board_select.svg') no-repeat 90px center;
    border-right: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: 'SpoqaHanSansNeo-Regular';
}
.board_search_wrap select option{
    font-family: 'SpoqaHanSansNeo-Regular';
}
.board_search_wrap .input_area{
    width: 100%;
	border: none;
    padding: 14px 30px;
}

.board_search_wrap .input_area::placeholder{
    font-family: 'SpoqaHanSansNeo-Regular';
    color: #C1C1C1;
}

.board_search_wrap .search_click{
	position: relative;
	flex-shrink: 0;
    margin-left: 23px;
	width: 160px;
	font-size: 18px;
	letter-spacing: -0.9px;
	color: #fff;
	background: #D6A884;
	cursor:pointer;
  	font-family: 'SpoqaHanSansNeo-Regular';
}

.board_search_wrap .btn-reset{
    flex-shrink: 0;
    margin-left: 5px;
    width: 51px;
    font-weight: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D6A884;
    background-color: #F3F3F3;
	border: 1px solid #D6A884;
}

.board_search_wrap .submit_btn{
    flex-shrink: 0;
	padding-bottom: 3px;
	width: 130px;
	color: #fff;
	background: #807A7D;
	border: 1px solid #807A7D;
	cursor:pointer;

}
/* 묻고 답하기 qnaboard 스타일 */
.qnaboard{
    position: relative;
    padding-top: 30px;
    padding-bottom: 200px;
}
.qnaboard .board_list table thead{
    border-bottom: 1px solid #E3E3E3;
    background-color: #FBF7F3;
}
.qnaboard .board_list table th{
    border-bottom: none;
}
.qnaboard .board_list table .title_link{
    text-align: left;
    padding-left: 20px;
    font: 18px 'SpoqaHanSansNeo-Regular';
}
.qnaboard .board_list table .title_link a{
    font: 18px 'SpoqaHanSansNeo-Regular';
}
.qnaboard .board_list table td  span img{
    margin-left: 10px;
    margin-top: -5px;
}
.qnaboard .board_list table td .complete{
    background-color: #41554E;
    border-radius: 50px;
    padding: 7px 15px;
    color: #fff;
    font: 16px 'SpoqaHanSansNeo-Regular';
}
.qnaboard .board_list table td .wait{
    background-color: #D3D4D9;
    border-radius: 50px;
    padding: 7px 15px;
    color: #fff;
    font: 16px 'SpoqaHanSansNeo-Regular';
}
.qnaboard .board_list table td.view{
    color: #999999;
}
.qnaboard .mobile_version{
    display: none;
}
/* qnaboard 팝업 */
.qnaboard_popup_bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: none;
}
.qnaboard_popup_bg *{
    font: 16px 'SpoqaHanSansNeo-Regular';
}
.qnaboard_popup_bg .popup_inner{
    width: 400px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 50px 0;
    background-color: #fff;
    padding: 20px 40px 40px 40px;
}
.qnaboard_popup_bg .popup_inner  strong{
    display: block;
    font: 22px 'SpoqaHanSansNeo-Bold';
    margin-bottom: 30px;
}
.qnaboard_popup_bg .popup_inner .pw_check{
    display: flex;
    padding: 0;
}
.qnaboard_popup_bg .popup_inner .type_style{
    padding: 10px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    height: 56px;
    width: 80%;
}
.qnaboard_popup_bg .popup_inner .btn_type03{
    width: 19%;
    height: 56px;
    margin-left: 1%;
    border-radius: 5px;
    background-color: #2A4139;
    color: #fff;
}
.qnaboard_popup_bg .popup_inner .btn_close{
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}


/* qnaboard_view */
.qnaboard_view{
    position: relative;
}
.qnaboard_view table tbody{
    border-top: 1px solid #A2A2A2;
    border-bottom: 1px solid #A2A2A2;
}
.qnaboard_view table *{
    font: 18px 'SpoqaHanSansNeo-Regular';
}
.qnaboard_view table caption{
    display: inline-block;
    font: 20px 'SpoqaHanSansNeo-Bold';
    margin-bottom: 5px;
}
.qnaboard_view table tr{
    display: flex;
}
.qnaboard_view table tr td{
    padding: 15px;
    border-bottom: 1px solid #E3E3E3;
}
.qnaboard_view table tr td:first-child{
    width: 130px;
    background-color: #FBF7F3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qnaboard_view table tr td:last-child{
    width: calc(100% - 130px);
    padding-left: 30px;
    padding-right: 30px;
}
.qnaboard_view table tr td label:first-child{
    margin-right: 22px;
}
.qnaboard_view table tr td.radio_wrap{
    display: flex;
}
table tr td label{
    display: flex;
    align-items: center;
}
table tr td label input[type="radio"]:checked::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #AB815B;
}
table tr td label .radiobox{
    appearance: none;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #D1B5A0;
    border-radius: 50%;
    margin-right: 5px;
}
.qnaboard_view .type_style{
    width: 371px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    height: 40px;
    padding: 10px;
}
.qnaboard_view input::placeholder{
    font-size: 16px;
}
.qnaboard_view .DOC_TEXT{
    width: 100%;
    height: 163px;
    resize: none;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    padding: 10px;
}
.qnaboard_view .DOC_TEXT{
    width: 100%;
    height: 163px;
    resize: none;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    padding: 10px;
}
.qnaboard_view #counter{
    color: #999;
    display: flex;
    justify-content: end;
}

/* 묻고 답하기 qnaboard_detail */
.qnaboard_detail{
    position: relative;
}
.qnaboard_detail *{
    font: 18px 'SpoqaHanSansNeo-Regular';
}
.qnaboard_detail .board_detail{
    width: 100%;
    border-top: 1px solid #A2A2A2;
    border-bottom: 1px solid #A2A2A2;
}
.qnaboard_detail .board_detail li{
    padding: 30px;
}
.qnaboard_detail .board_detail .board_title{
    border-bottom: 1px solid #E3E3E3;
}
.qnaboard_detail .board_detail .board_title .tit{
    font: 20px 'SpoqaHanSansNeo-Medium';
    margin-bottom: 10px;
}
.qnaboard_detail .board_detail .board_title .tit_sub{
    display: flex;
}
.qnaboard_detail .board_detail .board_title .tit_sub > div{
    margin-right: 20px;
    font: 16px 'SpoqaHanSansNeo-Regular';
    color: #999;
}
.qnaboard_detail .board_content .con_area p{
    line-height: 36px;
    margin-bottom: 100px;
}
.qnaboard_detail .board_content .reply_area{
    width: 100%;
    display: flex;
    padding: 30px 40px;
    border-radius: 0px 50px 50px 50px;
    background-color: #F8F9F9;
}
.qnaboard_detail .board_content .reply_area .square{
    width: 63px;
    min-width: 63px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #41554E;
    border: 1px solid #2A4139;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    margin-right: 24px;
}
.qnaboard_detail .board_content .reply_area .reply{
    line-height: 36px;
}


/* media */
@media screen and ( max-width: 1279px ) {
	.board_search_wrap{
		padding: 43px 53px;
	}
    /* 묻고 답하기 */
    .qnaboard .board_list table th{
        font-size: 16px;
    }
    .qnaboard .board_list table td{
        font-size: 16px;
    }
    .qnaboard .board_list table .title_link,
    .qnaboard .board_list table .title_link a{
        font-size: 16px;
    }
    .qnaboard .board_list table td .complete{
        font-size: 15px;
    }
    
}
@media screen and ( max-width: 1023px )
{
	.board_search_wrap
	{
		padding: 15px 20px;
	}
	.board_search_wrap > .wrap > *
	{
		font-size: 17px
	}
	.board_search_wrap .input_area
	{
        padding: 9px 10px;
		width: calc(100% - 244px);
	}
	.board_search_wrap .submit_btn
	{
		width: 75px;
	}
	.board_search_wrap .search_click
	{
        margin-left: 10px;
		width: 130px;
		font-size: 16px;
	}
    /* 묻고답하기 모바일 버전 스타일*/
    .qnaboard .mobile_version{
        display: block;
    }
    .qnaboard .mobile_version *{
        font: 16px 'SpoqaHanSansNeo-Regular';
    }
    .qnaboard .mobile_version > ul > li{
        width: 100%;
        padding: 20px 10px;
        border-bottom: 1px solid #E3E3E3;
    }
    .qnaboard .mobile_version > ul > li > ul{
        display: flex;
        margin-top: 10px;
    }
    .qnaboard .mobile_version > ul > li > ul > li{
        font-size: 16px;
        color: #999;
        margin-right: 20px;
    }
    .qnaboard .mobile_version > ul > li > div{
        display: flex;
        justify-content: space-between;
    }
    .qnaboard .mobile_version ul li div .complete{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 75px;
        min-width: 75px;
        height: 30px;
        border-radius: 50px;
        font-size: 14px;
        color: #fff;
        background-color: #41554E;
    }
    .qnaboard .mobile_version ul li div .wait{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 75px;
        min-width: 75px;
        height: 30px;
        border-radius: 50px;
        font-size: 14px;
        color: #fff;
        background-color: #D3D4D9;
    }
    .qnaboard  .mobile_version .title_link{
        width: calc(100% - 95px);
        /* text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; */
    }
}

@media screen and ( max-width: 1023px )
{
	.board_search_wrap
	{
		padding: 15px;
	}
	.board_search_wrap > .wrap > *
	{
		height: 45px;
		font-size: 14px;
	}
    .board_search_wrap > .wrap > *:nth-child(n+2):not(.search_click){
        margin-left: 5px;
    }
	.board_search_wrap select
	{
		min-width: 75px;
	    background: url(/images/c_project/user/sub/board_select.svg) no-repeat 40px center;
		background-size: 29px;
	}
	.board_search_wrap .input_area
	{
		width: calc(100% - 70px);
	}
	.board_search_wrap .submit_btn
	{
		width: 60px;
	}
	.board_search_wrap .search_click
	{
        padding: 5px 15px;
		width: 45px;
		font-size: 0;
		line-height: 0;
	}
    .board_search_wrap .search_click:after{
        content: '';
        display: block;
        margin-right: 8px;
        width: 15px;
        height: 15px;
        background: url(/images/c_project/user/sub/board_search.svg) no-repeat;
        background-size: contain;
    }
    .board_search_wrap .btn-reset{
        width: 45px;
    }
	.two_select_wrap
	{
		height: auto;
		padding: 20px 20px 70px;
	}
	.two_select_wrap .submit_btn
	{
		position: absolute;
		bottom: 15px;
		left: 20px;
		width: calc(100% - 40px);
	}
}
/* board > search area end */



/* board > 게시글 개수 영역 */
.board_count
{
	position: relative;
	width: 100%;
	margin-top: 70px;
	padding-bottom: 20px;
}
.board_count *
{
	position: relative;
	font-size: 17px;
}
.board_count .responsive_table
{
	margin-top: 20px;
}
.board_count > * + *
{
	margin-left: 15px;
}
.board_count > * + *:before
{
	content: '';
	position: absolute;
	top: 2px;
	left: -8px;
	width: 1px;
	height: 16px;
	background: #EEEBE8;
}
.board_count > span span
{
	letter-spacing: 0;
	color: #D6A884;
	font-weight: 600;
}
.board_count > span span:nth-of-type(2)
{
	color: #000
}

@media screen and ( max-width: 767px ) {
    .board_count *{
        font-size: 14px;
    }
    
    /* qnaboard detail */
    .qnaboard_detail .board_detail li {
        padding: 20px;
    }
    .qnaboard_detail .board_detail .board_title .tit{
        font-size: 18px;
    }
    .qnaboard_detail .board_content .con_area p{
        font-size: 16px;
    }
    .qnaboard_detail .board_content .reply_area .reply{
        line-height: 30px;
        font-size: 16px;
    }
    .qnaboard_detail .board_content .reply_area{
        flex-direction: column;
    }
    .qnaboard_detail .board_content .reply_area .square{
        margin-bottom: 10px;
    }
}
/* board > 게시글 개수 영역 end */

@media screen and ( max-width: 527px ){
    /* qnaboard 묻고답하기 반응형 */
    .qnaboard .mobile_version > ul > li > ul{
        flex-direction: column;
    }
    .qnaboard  .mobile_version .title_link{
        width: calc(100% - 20px);
        margin-top: 10px;
        word-break: break-all;
    }
    .qnaboard .mobile_version > ul > li > div{
        flex-direction: column-reverse;
    }
    .qnaboard_detail .board_detail .board_title .tit_sub{
        flex-direction: column;
    }
    .qnaboard_detail .board_content .reply_area{
        padding: 20px 30px;
        border-radius: 0px 30px 30px 30px;
    }
    /* qnaboard 팝업 */
    .qnaboard_popup_bg{
        padding: 10px;
    }
    .qnaboard_popup_bg .popup_inner{
        width: 90%;
        border-radius: 0 0 20px 0;
        padding: 10px 20px 20px 20px;
    }
    .qnaboard_popup_bg .popup_inner  strong {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .qnaboard_popup_bg .popup_inner .type_style{
        height: 40px;
    }
    .qnaboard_popup_bg .popup_inner .btn_type03{
        height: 40px;
    }
}




/* 게시판 > 리스트 */
/* 비공개 게시판 알림 */
.boardLock_txt{
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    padding: 0px;
    margin: 0 0 50px;
    border: 1px solid #c7c7c7;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 5px 0 rgba(0,0,0,0.05);
}

.boardLock_txt > .lockIcon{
    display: block;
    float: left;
    width: 80px;
    font-size: 30px;
    background: #0054a6;
    color: #FFF;
    padding: 0px;
    line-height: 80px;
    text-align: center;
    border-radius: 30%;
    margin: 10px;
}

.boardLock_txt > .lockTxt{
    display: block;
    float: left;
    width: auto;
    font-size: 17px;
    color: #414141;
    padding: 24px 15px 0;
    text-align: left;
    line-height: 25px;
    font-family: 'NotoKrR';
}

@media screen and ( max-width: 425px ) {
    .boardLock_txt > .lockIcon{
        float: none;
        margin: 10px auto;
    }

    .boardLock_txt > .lockTxt{
        float: none;
        width: 100%;
        font-size: 16px;
        padding: 5px 10px 12px;
        text-align: center;
    }
}
/* 비공개 게시판 알림 end */

.board_list{
	border-top: 1px solid #7D7D7D;
}

.board_list col.w_140{
    width: 140px;
}
.board_list col.w_120{
    width: 120px;
}
.board_list col.w_100{
    width: 100px;
}
.board_list col.w_80{
    width: 80px;
}
.board_list col.pc_thumb{
    width: calc(118px + 38px);
}

.board_list table th,
.board_list table td{
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0;
   	font-family: 'SpoqaHanSansNeo-Regular';
}

.board_list table th{
	padding: 19px 10px;
	border-bottom: 1px solid #7D7D7D;
}

.board_list table tbody th{
	font-weight: normal;
}

.board_list table td{
	background: #fff;
	padding: 19px 10px;
	font-weight: normal;
	text-align: center;
	font-size: 18px;
	border-bottom: 1px solid #CBCBCB;
}

.board_list.thumb table td{
    padding: 19px 19px;
}

.board_list table td.thumb .objectFit{
    overflow: hidden;
    height: 114px;
}

.board_list table td.title{
    text-align: left;
    letter-spacing: -1px;
}

.board_list table td a{
	display: block;
	line-height: 1.5;
	width: calc(100% - 10px);
}

.board_list table td a span{
	font-family: 'SpoqaHanSansNeo-Regular';
}

.board_list table td a > span.pc_title{
	display: inline-block;
	max-width: calc(100% - 32px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
}

.board_list table td a > img{
	vertical-align: -2px;
	margin-left: 5px;
}

.board_list table td .attach_view_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 35px;
	border: 1px solid #005CA8;
	font-size: 16px;
	color: #005CA8;
	letter-spacing: -0.7px;
}

.mobile_show{
	display: none;
}


/* media */
@media screen and ( max-width: 1023px ) {
	.board_count{
		margin-top: 40px;
        padding-bottom: 12px;
	}

    .board_list table th,
    .board_list table td{
        font-size: 16px;
    }

	.board_list:not(.board_list_show):not(.thumb) table colgroup{
		display: none;
	}

	.board_list:not(.board_list_show) table th{
		display: none
	}

	.board_list:not(.board_list_show) table td{
		font-size: 16px;
		padding: 15px 10px 1px;
	}

    .board_list:not(.board_list_show).thumb table td{
        padding: 15px;
    }

    .board_list:not(.board_list_show).thumb table td.title{
        padding-left: 0;
    }

    .board_list.thumb col:nth-child(n+3){
        display: none;
    }

    .board_list.thumb col.thumb{
        width: 120px;
    }
    .board_list.thumb col.title{
        width: calc(100% - 120px);
    }

	.board_list:not(.board_list_show) table td:not(.mobile_wrap):not(.thumb){
		display: none;
	}

    .board_list.thumb table td.thumb .objectFit{
        height: 100px;
    }

	.board_list table td .mobile_show{
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		margin-top: 8px;
	}

	.board_list table td .mobile_show li{
		display: flex;
		align-items: center;
		position: relative;
		font-size: 14px;
		height: 20px;
		margin-bottom: 12px;
	}

	.board_list table td .mobile_show li + li{
		margin-left: 15px;
	}

	.board_list table td .mobile_show li + li:before{
		content: '';
		position: absolute;
		top: 4px;
		left: -7px;
		width: 1px;
		height: 12px;
		background: rgba(0,0,0,0.2);
	}

	.board_list table td .mobile_show li img{
		vertical-align: text-top;
		width: 14px;
	}

	.board_list table td .attach_view_btn{
		display: block;
		width: auto;
		height: auto;
		font-size: 14px;
		padding: 2px 7px;
		margin-left: 5px;
	}
}

@media screen and ( max-width: 767px ) {
	.board_count{
		margin-top: 30px;
	}

	.board_list table th,
	.board_list table td{
		font-size: 15px;
	}

    .board_list:not(.board_list_show).thumb table td{
        padding: 10px;
    }

    .board_list table td .mobile_show li{
        margin-bottom: 7px;
    }
    .board_list table td a > img{
        vertical-align: -1px;
    	margin-left: 4px;
    	width: 14px;
    }
}


/* 게시판 > 상세보기 */
.board_view{
	position: relative;
	width: 100%;
	border-top: 2px solid #000;
}

.board_view .title_wrap{
	position: relative;
    display: flex;
	padding: 50px 42px 49px;
	width: 100%;
	background: #FBF9F6;
	border: none;
}

.board_view .title_wrap h3.view_title{
	padding-bottom: 28px;
    font-family: 'SpoqaHanSansNeo-Bold';
    font-size: 33px;
	letter-spacing: -1.65px;
	line-height: 41px;
}

.board_view .title_wrap .title_text_wrap{
    width: 100%;
}

.board_view .title_wrap h3.view_title .viewCategory{
    margin-right: 10px;
}

.board_view .title_wrap .view_info{
    padding: 0;
    height: auto;
    line-height: normal;
}

.board_view .title_wrap .view_info > span{
    font-size: 18px;
    letter-spacing: 0;
    line-height: 25px;
    color: #979797;
}

.board_view .title_wrap ul{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.board_view .title_wrap ul.extend-field{
    padding-top: 10px;
}

.board_view .title_wrap ul li,
.board_view .title_wrap ul li span{
	position: relative;
	font-size: 18px;
	color: #999;
}

.board_view .title_wrap ul li + li{
	margin-left: 25px;
}

.board_view .title_wrap ul li + li:before{
	content: '';
	position: absolute;
	top: 2px;
	left: -11px;
	width: 1px;
	height: 13px;
	background: rgba(0,0,0,0.1)
}

.board_view .title_wrap .button_wrap.add{
    position: relative;
    flex-shrink: 0;
    padding-top: 16px;
    padding-right: 33px;
}

.board_view .title_wrap .button_wrap.add > button{
    margin-left: 13px;
}

.board_view .title_wrap .button_wrap.add button + .pop_share{
    position: absolute;
    display: none;
}

.board_view .title_wrap .button_wrap.add button.active_pop + .pop_share{
    position: absolute;
    display: flex;
    padding: 8px 19px;
    top: calc(16px + 62px + 15px);
    right: 33px;
    min-width: 200px;
    height: calc(29px + 16px + 2px);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.board_view .title_wrap .pop_share:before{
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background-color: #fff;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.board_view .title_wrap ul.pop_share li + li{
    margin: 0;
    padding-left: 15px;
}

.board_view .title_wrap ul.pop_share li + li:before{
    content: none;
}



.board_view .view_content{
    padding: 56px 42px;
    border-bottom: 2px solid #ccc;
}

.board_view .view_content img{
    max-width: 100%;
}

.board_view .view_content .view_content_input p{
    font-family: 'SpoqaHanSansNeo-Regular';
    font-size: 18px;
    letter-spacing: -1.33px;
    line-height: 33px;
    color: #333;
}

.board_view .conts_wrap{
	padding: 40px 40px;
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	letter-spacing: -0.9px;
	border-bottom: 1px solid #DDDDDD;
}

.board_view .conts_wrap > *,
.board_view .conts_wrap > * img{
	margin-top: 20px;
	max-width: 100%;
}

.board_view .conts_wrap > *:first-child,
.board_view .conts_wrap > * img:first-child{
	margin-top: 0;
}

.board_view .attach_wrap{
	position: relative;
	width: 100%;
	margin-top: 50px;
}

.board_view .attach_wrap li{
	position: relative;
    width: min-content;
    max-width: 70%;
}

.board_view .attach_wrap li + li{
	margin-top: 20px;
}

.board_view .attach_wrap li a{
    display: flex;
    align-items: center;
}

.board_view .attach_wrap li a .img_wrap{
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.board_view .attach_wrap li a .img_wrap img{
    width: 100%;
    height: 100%;
}

.board_view .attach_wrap li a > span{
    display: block;
    padding-left: 10px;
    width: 100%;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 25px;
}

.board .board_btm{
    margin-top: 0;
}

.board_btm .move_page{
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}

.board_btm .move_page .btn{
    position: relative;
    width: auto;
    height: auto;
    border: none;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 27px;
    color: #333;
}

.board_btm .move_page .btn.prev{
    padding: 5px 17px 5px 21px;
    background: url('../../image/pages/board/icon_page_prev.svg') no-repeat;
    background-position: left center;
   	font-family: 'SpoqaHanSansNeo-Regular';
}

.board_btm .move_page .btn.prev:after{
    content: '';
    position: absolute;
    display: block;
    right: -1px;
    top: calc(50% - 9.5px);
    width: 1px;
    height: 19px;
    background-color: #C4C4C4;
}

.board_btm .move_page .btn.next{
    padding: 5px 21px 5px 17px;
    background: url('../../image/pages/board/icon_page_next.svg') no-repeat;
    background-position: right center;
   	font-family: 'SpoqaHanSansNeo-Regular';
}

.board_btm .move_page .btn.empty{
    opacity: .3;
}

.height_response div.embed-responsive{
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	max-width: 100%;
 /* 반응형 > max-width:inherit 으로 해제 */
}

.height_response div.embed-responsive iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* media */
@media screen and ( max-width: 1279px ) {
	.board_view .title_wrap h3{
		font-size: 26px;
	}

    .board_view .title_wrap ul.extend-field{
        padding-top: 5px;
    }

	.board_view .title_wrap ul li,
	.board_view .title_wrap ul li span{
		font-size: 17px;
	}

    .board_view .title_wrap .button_wrap.add{
        padding: 10px 0 0 10px;
    }

    .board_view .title_wrap .button_wrap.add > button{
        margin-left: 10px;
    }

    .board_view .title_wrap .button_wrap.add > button img{
        width: 48px;
        height: 48px;
    }

    .board_view .title_wrap .button_wrap.add button.active_pop + .pop_share{
        top: calc(10px + 48px + 15px);
        right: 0;
    }

	.board_view .conts_wrap{
		padding: 50px 30px;
		font-size: 17px;
	}
}

@media screen and ( max-width: 1023px ) {
	.board_view .title_wrap{
		padding: 30px 30px 25px;
	}

    .board_view .title_wrap h3.view_title{
        padding-bottom: 22px;
        font-size: 26px;
    }

    .board_view .title_wrap .view_info > span{
        font-size: 17px;
    }

    .board_view .view_content .view_content_input p{
        font-size: 16px;
        letter-spacing: -0.85px;
        line-height: 27px;
    }

	.board_view .attach_wrap{
		margin-top: 30px;
	}

    .board_view .attach_wrap li + li{
        margin-top: 15px;
    }

    .board_view .attach_wrap li a .img_wrap{
        width: 28px;
        height: 28px;
    }

    .board_view .attach_wrap li a > span{
        font-size: 18px;
        line-height: 23px;
    }

    .board_btm .move_page .btn{
        font-size: 17px;
        line-height: 22px;
    }

    .board_btm .move_page{
        padding-top: 7px;
    }
}

@media screen and ( max-width: 767px ) {
	.board_view .title_wrap{
		padding: 20px 15px;
	}

    .board_view .title_wrap h3.view_title{
        padding-bottom: 20px;
        font-size: 21px;
        letter-spacing: -0.6px;
        line-height: 27px;
    }

    .board_view .title_wrap h3.view_title .viewCategory{
        display: block;
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 5px;
    }

    .board_view .title_wrap .view_info > span{
        display: block;
        margin: 0;
        padding: 2px 0;
        font-size: 14px;
        line-height: 20px;
    }

	.board_view .title_wrap ul li,
	.board_view .title_wrap ul li span{
		font-size: 14px;
	}

	.board_view .title_wrap ul li + li{
		margin-left: 12px;
	}

	.board_view .title_wrap ul li + li:before{
		top: 0;
		left: -6px;
	}

    .board_view .title_wrap .button_wrap.add > button.print{
        display: none;
    }

    .board_view .title_wrap .button_wrap.add > button img{
        width: 31px;
        height: 31px;
    }

    .board_view .title_wrap .button_wrap.add button.active_pop + .pop_share{
        top: calc(10px + 31px + 12px);
        right: 0;
        min-width: 194px;
    }

    .board_view .title_wrap .pop_share:before{
        top: -4px;
        right: 11px;
        width: 6px;
        height: 6px;
    }

    .board_view .title_wrap ul.pop_share li + li{
        padding-left: 13px;
    }

    .board_view .view_content{
        padding: 30px 0;
    }

    .board_view .view_content .view_content_input p{
        font-size: 15px;
        letter-spacing: -0.75px;
        line-height: 24px;
    }

	.board_view .conts_wrap{
		padding: 20px 0;
		font-size: 15px;
		line-height: 1.5;
	}

    .board_view .attach_wrap li{
        width: 100%;
    }

    .board_view .attach_wrap li + li{
        margin-top: 10px;
    }

    .board_view .attach_wrap li a .img_wrap{
        width: 21px;
        height: 21px;
    }

	.board_view .attach_wrap li a > span{
        padding-left: 6px;
        font-size: 14px;
        line-height: 21px;
    }

    .board_btm .move_page .btn{
        font-size: 15px;
    }

    .board_btm .move_page .btn.prev{
        padding: 4px 10px 4px 15px;
        background-size: 6px 10px;
    }
    .board_btm .move_page .btn.next{
        padding: 4px 15px 4px 10px;
        background-size: 6px 10px;
    }

    .board_btm .move_page .btn.prev:after{
        top: calc(50% - 7px);
        height: 14px;
    }
}
/* board list end */


/* board paging */
.board_paging{
	position: relative;
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.board_paging li{
	font-size: 20px;
	font-weight: 300;
	color: #999999;
	letter-spacing: 0;
}
.board_paging li.active{
	color: #000;
	font-weight: 500;
}
.board_paging li strong{
   	width: 40px;
    height: 40px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'SpoqaHanSansNeo-bold';
}
.board_paging li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-family: 'SpoqaHanSansNeo-Regular';
}

/* media */
@media screen and ( max-width: 1279px ) {
	.board_paging{
		margin-top: 40px;
	}

	.board_paging li{
		font-size: 18px
	}

	.board_paging li a{
		width: 35px;
		height: 35px;
	}

}

@media screen and ( max-width: 767px ) {
	.board_paging{
		margin-top: 10px;
	}

	.board_paging li{
		font-size: 14px;
	}

	.board_paging li a{
		width: 30px;
		height: 30px;
	}
	
	.board_paging li strong{
		width: 30px;
		height: 30px;
	}
	
	.board_paging li a img{
		width: 30px;
	}
    /* qnaboard_view */
    .qnaboard_view table tr *{
        font-size: 16px;
    }
    .qnaboard_view table tr td:first-child{
        width: 80px;
    }
    .qnaboard_view table tr td:last-child{
        width: calc(100% - 80px);
        padding-left: 15px;
        padding-right: 15px;
    }
    .qnaboard_view .type_style{
        width: 100%;
    }

    
}
/* board paging end */



/* board write */
.board_write{
    position: relative;
    display: block;
    width: 100%;
}

.board_write .title{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	width: 100%;
	overflow: hidden;
}

.board_write .title h3{
	
	font-size: 30px;
    font-weight: 600;
    letter-spacing: -2.1px;
    color: #000000;
}

.input_form fieldset{
	padding: 10px 0;
	border-top: 2px solid #1E1E1E;
	border-bottom: 1px solid #DDDDDD;
}

.input_form fieldset .bbsWriteList{
    display: flex;
	align-items: center;
    flex-wrap: wrap;
    flex-grow: 0;
	padding: 10px 0;
}

.input_form fieldset > .bbsWriteList > label{
	flex-shrink: 0;
    padding-left: 17px;
	width: 20%;
	max-width: 150px;
    height: 40px;
	font-size: 16px;
	line-height: 40px;
    letter-spacing: -0.06em;
    color: #000000;
}

.input_form fieldset .bbsWriteList .input_wrap{
	flex-shrink: 0;
	width: 100%;
    max-width: calc(100% - 150px);
}

.input_form fieldset .bbsWriteList .input_wrap *{
    width: 100%;
    font-size: 18px;
    letter-spacing: 0;
	color: #30353B;
}


.input_form fieldset .bbsWriteList.st_sort .input_wrap *{
    width: 100% !important;
    box-sizing: border-box;
    /* max-width: 1287px; */
}

.input_form fieldset .bbsWriteList.st_sort .input_wrap textarea{
    min-height: 50px;
    height: 380px;
    border: 1px solid #CCCCCC;
    /* max-height: 500px; */
}

.input_form fieldset .bbsWriteList .input_wrap input[type='text'],
.input_form fieldset .bbsWriteList .input_wrap input[type='password'],
.input_form fieldset .bbsWriteList .input_wrap input[type='tel'],
.input_form fieldset .bbsWriteList .input_wrap select{
	padding: 0 14px;
	width: 200px;
	height: 50px;
	font-size: 18px;
	line-height: inherit;
	letter-spacing: 0;
	color: #30353B;
	border: 1px solid #CCCCCC;
	transition: all .3s;
}

.input_form fieldset .bbsWriteList .input_wrap select{
    padding-right: 47px;
    width: auto;
    min-width: 200px;
    max-width: 100%;
}

.input_form fieldset .bbsWriteList .input_wrap input[type='text']:not(#a_name){
	width: 100%;
}

.input_form fieldset .bbsWriteList .a_attach + .input_wrap .button.state-success{
	position: relative;
}

.input_form fieldset .bbsWriteList .a_attach + .input_wrap .button.state-success input[type=file]{
	position: absolute;
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	border: none;
	opacity: 0;
}
.input_form fieldset .bbsWriteList .a_attach + .input_wrap input[type='text']:not(#a_name){
	width: calc(100% - 140px);
}

.input_form fieldset .bbsWriteList .input_wrap input[type='text']:focus,
.input_form fieldset .bbsWriteList .input_wrap input[type='password']:focus,
.input_form fieldset .bbsWriteList .input_wrap input[type='tel']:focus{
	background: rgba(255, 69, 55, 0.05);
	border: 1px solid rgba(255, 69, 55, 0.4);
}

.input_form fieldset .bbsWriteList .input_wrap select:focus{
	border: 1px solid rgba(255, 69, 55, 0.4);
}

.input_form fieldset .bbsWriteList .input_wrap input + span{
	display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    width: 130px;
    height: 50px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -1.08px;
    background: #807A7D;
    cursor: pointer;
}

.board_write .input_wrap label.input-file + label > .state-success{
    margin-top: 10px;
}

.board_write .state-success{
    display: flex;
    flex-wrap: wrap;
}

.board_write .state-success input.vaild{
    width: calc(100% - 140px);
}

.board_write .bbsWriteList .input_wrap input[type='checkbox'],
.board_write .bbsWriteList .input_wrap input[type='radio']{
    display: none;
}

.board_write .bbsWriteList .input_wrap input[type='checkbox'] + label,
.board_write .bbsWriteList .input_wrap label.checkbox,
.board_write .bbsWriteList .input_wrap input[type='radio'] + label,
.board_write .bbsWriteList .input_wrap label.radio{
    position: relative;
    width: auto;
    display: inline-block;
    padding: 0 20px 0 34px;
    line-height: 33px;
    cursor: pointer;
}

.board_write .bbsWriteList .input_wrap input[type='checkbox'] + label:before,
.board_write .bbsWriteList .input_wrap label.checkbox:before{
    content: '';
    position: absolute;
    display: block;
    margin-right: 10px;
    top: calc(50% - 12px);
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #DEDCD9;
    cursor: pointer;
}

.board_write .bbsWriteList .input_wrap input[type='checkbox']:checked + label:before,
.board_write .bbsWriteList .input_wrap label.checked_checkbox:before{
    background-image: url('../../image/pages/member/join/agree_chk.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #FF4537;
}

.board_write .bbsWriteList .input_wrap label.radio:before{
    content: '';
    position: absolute;
    display: block;
    margin-right: 10px;
    top: calc(50% - 12px);
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid #DEDCD9;
    cursor: pointer;
}

.board_write .bbsWriteList .input_wrap label.checked_radio:before{
    border: 1px solid #FF4537;
}

.board_write .bbsWriteList .input_wrap label.checked_radio:after{
    content: '';
    position: absolute;
    display: block;
    top: calc(50% - 6px);
    left: 6px;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background-color: #FF4537;
}

.input_form fieldset .bbsWriteList .input_wrap select{
    background: #fff url('../../image/pages/board/board_select.svg') no-repeat 97% center;
}


.bbsWriteList.st_sort .conBtnUp{
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 5px;
    padding: 0px;
    text-align: right;
    overflow: hidden;
}

.bbsWriteList.st_sort .conBtnUp > .btn{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    height: 27px;
    padding: 0 10px;
    line-height: 25px;
    color: #FFF;
    background: #386e92;
    box-shadow: none;
    border-radius: 2px;
    border: 0px;
}

.bbsWriteList.st_sort .conBtnUp > .btn:hover{
    color: #FFF;
    background: #25516e;
}

.bbsWriteList.st_sort .panel{
    margin: 0;
}

.bbsWriteList.st_sort .panel .btn{
    padding: 5px 9px;
    font-size: 12px;
    line-height: 1.42857143;
}


/* 관리자상담 첨부파일 */
.bbs-attach-write,
.bbsWriteList.st_sort .none_label + div,
.bbsWriteList.st_sort label + div{
    width: calc(100% - 150px);
}
.tx-attach-box{ border: 0px solid;}
.tx-attach-box-inner{ border: 1px solid #ccc;  padding: 0px;}
.tx-attach-preview p{display: none;}
.tx-attach-preview img{ margin: 0 auto; text-align: center; width: 100%;}
.tx-attach-main li{ list-style: none;}

.txtThumbnail{ line-height: 30px; padding-left: 10px; font-size: 13px; background: #e9eff8;}
.txtThumbnail span{font-size: 12px; color: #666;}

.tx-attach-list{ 
    position: relative;
    display: block;
    width: 100%;    
    padding: 0px;
    margin: 0px;
}

.tx-attach-list li{ 
    position: relative;
    display: block;
    width: 100%;
    clear: both;
    border-bottom: 1px solid #eeeeee; 
    padding: 7px 10px; 
    margin: 0;
    overflow: hidden;
}

.tx-attach-list li:hover{
    background-color: rgb(247, 247, 247);
}

.tx-attach-list li:last-child{
    border-bottom: 0px;
}

.tx-attach-list li dl{cursor: default; padding: 0px;margin: 0;display: flex;flex-flow: row wrap; align-items: center;}
.tx-attach-list li dl span.Input-line{display: inline-block; width: 13px; vertical-align: middle;}
.tx-attach-list li dl span.Input-line input{margin: 0;}
.tx-attach-list dt{ display: inline-block; margin: 0; padding: 0;}
.tx-attach-list dt{font-weight: normal;width: calc(100% - 43px);display: flex;flex-flow: row wrap; align-items: center; }
.tx-attach-list dt .imgWrap{width: 50px;height: 50px;overflow: hidden;border: 1px solid #dcdcdc; margin-left: 7px}
.tx-attach-list dt .imgWrap img{width: 100%;} 
.tx-attach-list dt .fileName{margin-left: 15px; flex-shrink: 0;width: 250px;flex-grow: 1;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: block; padding-right: 40px; }

.tx-attach-list dd{ 
    width: 25px;
    text-align: right;
    float: right;
}
.tx-attach-list dd a{ 
    position: relative;
    display: inline-block;
    border: 1px solid #999;
    text-align: center;
    color: #999;
    font-weight: normal;
    border-radius: 2px;
    padding: 0px;
    text-decoration: none;
    width: 18px;
    height: 18px;
    line-height: 12px;
    font-size: 15px;
    cursor: pointer;
    margin: 3px 0px;
}

.tx-attach-list dd a > span{
    display: inline-block;
    text-align: center;
    vertical-align: top;
    margin: 0px;
    padding: 0px;
    line-height: 11px;
}

.tx-attach-list dd a:hover{
    border: 1px solid #386e92;
    background: #386e92;
    color: #FFF;
}

.tx-attach-delete{ 
    border-bottom: 1px solid #ccc;
    line-height: 40px;
    padding-left: 10px;
}
.tx-attach-delete span.upload{color: #fb6235; font-weight: bold;}
.tx-attach-delete a{border: 1px solid; padding: 2px 4px; border-radius: 2px; display: none; width: 65px; float: right; font-size: 13px; line-height: 19px; text-align: center; background: #474747; color: #fff;}
.tx-attach-delete a:hover{ background: #fff; border: 1px solid #333; color: #333;}

.multifilebox{ color: #333; border: 1px solid #C2C2C2;  margin: 10px;}
.multifilebox h3{ margin: 0 -15px; padding: 10px 0 10px 15px; font-size: 14px; font-weight: 400; background: #fafafa; border-bottom: 1px solid #C2C2C2;}
.multifilebox #uploads{ padding: 15px}
.multifilebox .btnbox{ padding: 15px;}
.multifilebox .btn{ font-size: 12px; line-height: 1.5; padding: 6px 10px 5px; margin: 5px;}
.multifilebox #uploads .new p{ font-size: 13px;}
.multifilebox #uploads .uploadArea{ border: dashed 2px #676465;}
/* 관리자상담 첨부파일 */

@media screen and ( max-width: 1023px ) {
    .board_write .title{
        padding-bottom: 15px;
    }

    .board_write .title h3{
        font-size: 25px;
    }

    .input_form fieldset > .bbsWriteList > label{
        padding-left: 12px;
        width: 20%;
        height: 42px;
        line-height: 42px;
    }

    .input_form fieldset .bbsWriteList .input_wrap{
        max-width: 80%;
    }

    .input_form fieldset .bbsWriteList .input_wrap input[type='text'],
    .input_form fieldset .bbsWriteList .input_wrap input[type='password'],
    .input_form fieldset .bbsWriteList .input_wrap input[type='tel'],
    .input_form fieldset .bbsWriteList .input_wrap select{
        height: 42px;
        padding: 0 12px;
        font-size: 16px;
    }

    .input_form fieldset .bbsWriteList .input_wrap select{
        padding-right: 47px;
        width: auto;
    }

    .input_form fieldset .bbsWriteList .input_wrap *{
        font-size: 16px;
    }

    .input_form fieldset .bbsWriteList.st_sort .input_wrap textarea{
        height: 280px;
        min-height: 42px;
        font-size: 16px;
    }

    .input_form fieldset .bbsWriteList .a_attach + .input_wrap input[type='text']:not(#a_name){
        width: calc(100% - 120px);
    }

    .input_form fieldset .bbsWriteList .input_wrap input + span{
        margin-left: 5px;
        width: 115px;
        height: 42px;
        font-size: 16px;
    }
}

@media screen and ( max-width: 767px ) {
    .board_write .title{
        padding: 16px 0 11px;
    }

    .board_write .title h3{
        font-size: 20px;
    }

    .input_form fieldset .bbsWriteList{
        padding: 5px 0;
    }

    .input_form fieldset > .bbsWriteList > label{
        width: 100px;
        font-size: 14px;
    }

    .input_form fieldset .bbsWriteList .input_wrap{
        max-width: calc(100% - 100px);
    }

    .input_form fieldset .bbsWriteList .input_wrap input[type='text'],
    .input_form fieldset .bbsWriteList .input_wrap input[type='password'],
    .input_form fieldset .bbsWriteList .input_wrap input[type='tel'],
    .input_form fieldset .bbsWriteList .input_wrap select{
        height: 42px;
        padding: 0 8px;
        font-size: 14px;
    }
    
    .input_form fieldset .bbsWriteList .input_wrap select{
        background-position: 98% center;
        padding-right: 47px;
    }

    .board_write .bbsWriteList .input_wrap input[type='checkbox'] + label,
    .board_write .bbsWriteList .input_wrap label.checkbox,
    .board_write .bbsWriteList .input_wrap label.radio{
        padding: 0 15px 0 25px;
        font-size: 14px;
        line-height: 24px;
    }

    .board_write .bbsWriteList .input_wrap input[type='checkbox'] + label:before,
    .board_write .bbsWriteList .input_wrap label.checkbox:before,
    .board_write .bbsWriteList .input_wrap label.radio:before{
        
        top: calc(50% - 10px);
        width: 18px;
        height: 18px;
    }

    .board_write .bbsWriteList .input_wrap label.checked_radio:after{
        top: calc(50% - 5px);
        left: 5px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }

    .input_form fieldset .bbsWriteList.st_sort .input_wrap textarea{
        height: 180px;
        font-size: 14px;
    }

    .input_form fieldset .bbsWriteList .input_wrap input + span{
        font-size: 14px;
        width: 100px;
    }

    .bbs-attach-write,
    .bbsWriteList.st_sort .none_label + div,
    .bbsWriteList.st_sort label + div{
        width: 100%;
    }
}

@media screen and ( max-width: 450px ) {
    .input_form fieldset > .bbsWriteList > label{
        padding-left: 2px;
    }
    
    .input_form fieldset .bbsWriteList .input_wrap{
        max-width: 100%;
    }

    .input_form fieldset .bbsWriteList .input_wrap input[type='text'],
    .input_form fieldset .bbsWriteList .input_wrap input[type='password'],
    .input_form fieldset .bbsWriteList .input_wrap input[type='tel'],
    .input_form fieldset .bbsWriteList .input_wrap select{
        width: 100%;
    }

    .input_form fieldset .bbsWriteList .a_attach + .input_wrap input[type='text']:not(#a_name){
        width: calc(100% - 90px);
    }

    .input_form fieldset .bbsWriteList .input_wrap input + span{
        width: 85px;
    }
}
/* board write end */



/* board comment 댓글쓰기 */
div.viewComment{
    position: relative;
    display: block;
    width: 100%;
    margin: 30px 0px 0px;
    padding: 0px;
}

div.viewComment h3.commentTitle{
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    color: rgb(102, 102, 102);
    margin-bottom: 15px;
    padding: 0px;
    font-weight: bold;
    letter-spacing: -1px;
    padding-left: 5px;
}

div.viewComment h3.commentTitle > label{
    font-weight: normal;
    font-size: 13px;
    margin-left: 10px;
}

div.viewComment h3.commentTitle > label input{
	-webkit-appearance: auto;
}

div.viewComment form{
    position: relative;
    display: block;
    clear: both;
    width: 100%;
    margin: 0 0 30px;
    padding: 0px;
    overflow: hidden;
}

div.viewComment form textarea.commentBox{
    position: relative;
    display: inline-block;
    float: left;
    width: 85%;
    height: 100px;
    border: 1px solid #d8d7d7;
    border-right: 0px;
    padding: 15px;
    font-size: 15px;
    letter-spacing: -1px;
    color: rgb(87, 87, 87);
    resize: none;
}

textarea.commentBox::-webkit-input-placeholder{ /* 크롬 4–56 */
    color: #9d9d9d;
}

textarea.commentBox::-moz-placeholder{ /* 파이어폭스 4–18 */
   color: #9d9d9d;
   opacity:  1;
}

textarea.commentBox::-moz-placeholder{ /* 파이어폭스 19–50 */
   color: #9d9d9d;
   opacity:  1;
}

textarea.commentBox::-ms-input-placeholder{ /* 인터넷 익스플로러 10+ */
   color:  #9d9d9d;
}

textarea.commentBox::placeholder{ /* 파이어폭스 51+, 크롬 57+ */
   color: #9d9d9d;
   opacity:  1;
}

div.viewComment form div.commentBtn{
    position: relative;
    display: inline-block;
    float: left;
    width: 15%;
    height: 100px;   
}

div.viewComment form div.commentBtn button{
    display: block;
    width: 100%;
    height: 100%;
    border: 0px;
    background: #666;
    color: #FFF;
    font-size: 15px;
}

div.commentList{
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid #d8d7d7;
}

div.commentList ul.commentListLi{
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;    
    overflow: hidden;
    font-size: 15px;
    letter-spacing: -1px;
    line-height: 23px;    
}

div.commentList ul.commentListLi li.message{
    border-bottom: 1px solid #d8d7d7;
    overflow: hidden;
    margin: 0px;
    padding: 30px 0;
}

div.commentList ul.commentListLi li.message:last-child{
    border-bottom: 0px;
}

div.commentList ul.commentListLi li.message > ul > li{
    border-bottom: 0px;
}

div.commentList ul.commentListLi li.message span.messageName{
    position: relative;
    display: block;
    width: 100%;
    color: #000;
    font-weight: 600;
    margin-bottom: 7px;
}

div.commentList ul.commentListLi li.message div.messageTxt{
    position: relative;
    display: block;
    width: 100%;
    color:  rgb(87, 87, 87);
    margin-bottom: 10px;
    font-size: 14px;
    margin-top: 5px;
}

div.commentList ul.commentListLi li.message span.messageDate{
    font-family: 'spL', sans-serif;
    letter-spacing: -0.05px;
    color: #848181;
}

ul.list-inline{
    position: relative;
    display: block;
    float: right;
    margin: 0px;
    padding: 0 5px 0 0;
}

ul.list-inline li{
    position: relative; 
    display: block;
    float: left;
    padding: 0 3px;
    font-size: 12px;
    letter-spacing: -1px;
    color:  rgb(87, 87, 87);    
}

ul.list-inline li a{
    border: 1px solid #d8d7d7;
    background: #FFF;
    border-radius: 3px;
    padding: 1px 5px; 
    line-height: 25px;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.05);
}

.cmt-reply{ color: #6185a2; }
.cmt-remove{ color: #dc6258; }

/* ul.list-inline li a.cmt-report{
    border: 1px solid #d8d7d7;
    background: #FFF;
    border-radius: 3px;
    padding: 2px 5px 0px;
    line-height: 25px;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.05);
} */

div.commentList ul.commentListLi li.message > ul.commentListLi{
    position: relative;
    display: block;
    background: #f4f4f4;
    font-size: 14px;
    padding: 7px 0px;
    margin-top: 15px;
    border-radius: 5px;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message{
    border-bottom: 1px dashed #d8d7d7;
    overflow: hidden;
    margin: 0px;
    padding: 7px 0 7px 5px;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > span.messageName,
div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > div.messageTxt,
div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > span.messageDate{
    padding-left: 15px;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message:last-child{
    border-bottom: 0px dashed #d8d7d7;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > ul.list-inline{    
    padding: 0 10px;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > ul.list-inline > li > a{
    border: 0px solid #d8d7d7;
    border-radius: 3px;
    padding: 1px 5px;
    line-height: 25px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
    color: #FFF;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > ul.list-inline > li > a.cmt-reply{
    background: #8c9faf;
}

div.commentList ul.commentListLi li.message > ul.commentListLi > li.message > ul.list-inline > li > a.cmt-remove{ 
    background: #ad8582;
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn{
    float: right;
    margin: 10px 0 0;
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn .button-wrap,
ul.list-inline li.btn_report .button-wrap{
    position: relative;
    display: inline-block;
    /*left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn .button-wrap:hover .tool-tip,
ul.list-inline li.btn_report .button-wrap:hover .tool-tip{ 
    top: 0px;
    transition: all 0.3s cubic-bezier(1, 0, 0.4, 1.7);
    transform: translateX(-10%) scale(1); 
    z-index: 11;
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn .button,
ul.list-inline li.btn_report .button{
    width: auto;
    height: 20px;
    cursor: pointer;
    overflow: hidden;
    background: #FFF;
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn .button a,
ul.list-inline li.btn_report .button a{
    width: 100%;
    height: 100%;
    border: 0px;
    display: block;
    line-height: 25px;
    text-align: center;
    position: relative;
    z-index: 10;    
} 

.bbsViewTop div.bbsTitleInfo > div.notifyBtn .button:hover,   
ul.list-inline li.btn_report .button:hover{ 
    width: 100%; 
}
    
.bbsViewTop div.bbsTitleInfo > div.notifyBtn .tool-tip,
ul.list-inline li.btn_report .tool-tip{
    width: 40px;
    height: 25px;
    position: absolute;
    left: -43px;
    top: 0%;
    font-size: 12px;
    letter-spacing: -1px;
    line-height: 25px;
    color: #333;
    text-align: center;
    transform: translateX(-10%) scale(0);
    transform-origin: right center;
    transition: all 0.3s cubic-bezier(1, 0, 0.4, 1);

    border: 1px solid #333;
    background: #FFF;
    border-radius: 3px;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.05);
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn .tool-tip:after,
ul.list-inline li.btn_report .tool-tip:after{
    width: 0; 
    height: 0; 
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #333;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
}

.bbsViewTop div.bbsTitleInfo > div.notifyBtn,
ul.list-inline li.btn_report .tool-tip a{
    border: 0px;
    line-height: 25px;
    box-shadow: none;
    padding: 0px;
    background: none;
}

/* 뷰페이지 이동버튼 */
.btnListNext{
    position: relative;    
    float: left;
}

.btnListNext a{
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #d3d2d2;
    font-size: 28px;
    text-align: center;
    line-height: 29px;
    color: #888888;
    border-radius: 3px;
}

@media screen and ( max-width: 768px ) {
	div.viewComment{
        margin: 20px 0px 0px;
    }
    
    div.viewComment h3.commentTitle{
        margin-bottom: 10px;
        font-size: 15px;
    }
    
    div.viewComment form{
        margin: 0 0 20px;
        padding: 0px;
        overflow: hidden;
    }
    
    div.viewComment form textarea.commentBox{
        width: 80%;
        height: 75px;
        padding: 10px;
        font-size: 14px;
    }

    div.viewComment form div.commentBtn{
        width: 20%;
        height: 75px;
    }
}
/* board comment 댓글쓰기 end */

/* board gallery, video */
/* 게시판 갤러리 */
ul.boardGallery{
    position: relative;
    display: block;
    clear: both;    
    width: 100%;
    margin: 0px;
    padding: 0px;
}

ul.boardGallery li{
    position: relative;
    display: block;
    float: left;
    width: 31%;    
    margin: 0 3.5% 30px 0;
    padding: 10px 0 40px 0;
}

ul.boardGallery li:nth-child(3n+3){
    margin-right: 0px;
}

ul.boardGallery li:nth-child(3n+3):after{
    position: absolute;
    content: '';
    width: 900px;
    height: 1px;
    background: #e4e4e4;
    bottom: 0px;
    right: 0px;    
}

ul.boardGallery li:nth-child(3n+3):last-child:after{
    display: none;    
}

ul.boardGallery li > span.thumb{
    position: relative;
    display: block;
    width: 100%;
    height: 186px;
    overflow: hidden;
    text-align: center;
    background: #ededed;
    border-radius: 5px;
    margin: 0 0 15px;
}

ul.boardGallery li > span.thumb img{
    /* display: block;    */
    height: 100%;
}

ul.boardGallery li a > span.title{
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    color: #000;
    font-size: 15px;
    line-height: 22px;
    text-overflow: ellipsis;
    
    overflow: hidden;    
    margin-bottom: 13px;
}

ul.boardGallery li a > span.title > span.category{
    position: relative;
    display: inline-block;
    padding: 0px 7px;
    background: #FFF;
    border: 1px solid #535353;
    border-radius: 5px;
    margin: 0 0 0px;
    font-size: 13px;
    line-height: 20px;
}

ul.boardGallery li a > span.content{
    position: relative;
    display: block;
    width: 100%;
    height: 57px;
    color: #888888;
    font-size: 14px;
    line-height: 19px;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word; 
    display: -webkit-box; 
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;  
    margin-bottom: 20px;
}

ul.boardGallery li > span.date{
    position: relative;
    display: block;
    color: #b3b3b3;
    font-size: 14px;
    line-height: 20px;
    font-family:'SpoqaHanSans', 'SpL';
}


/* 게시판 동영상 */
ul.boardVideo{
    position: relative;
    display: block;
    clear: both;    
    width: 100%;
    margin: 0px;
    padding: 0px;
}

ul.boardVideo li{
    position: relative;
    display: block;
    float: left;
    width: 31%;    
    margin: 0 3.5% 30px 0;
    padding: 10px 0 40px 0;
}

ul.boardVideo li:nth-child(3n+3){
    margin-right: 0px;
}

ul.boardVideo li:nth-child(3n+3):after{
    position: absolute;
    content: '';
    width: 900px;
    height: 1px;
    background: #e4e4e4;
    bottom: 0px;
    right: 0px;    
}

ul.boardVideo li:nth-child(3n+3):last-child:after{
    display: none;    
}

ul.boardVideo li div{
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0 0 25px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
}

ul.boardVideo li div a > span.thumb{
    position: relative;
    display: block;
    width: 100%;
    height: 158px;
    overflow: hidden;
    text-align: center;
    background: #ededed;
    border-radius: 4px 4px 0px 0px;
    margin: 0 0 15px;
}

ul.boardVideo li div a > span.thumb:after{
    position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 92, 168, 0.53) url('../../image/pages/board/icon_video_more.svg') no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

ul.boardVideo li div a > span.thumb img{
    /* display: block;    */
    width: 100%;
    height: 100%;
}

ul.boardVideo li div span.category{
    position: relative;
    display: inline-block;
    padding: 0px 7px;
    background: #FFF;
    color: #535353;
    border: 1px solid #535353;
    border-radius: 3px;
    margin: 0 15px 8px;
    font-size: 13px;
    line-height: 23px;
    min-width: 80px;
    text-align: center;
}

ul.boardVideo li div span.category > span{
    display: inline-block;
    float: none;
    padding: 0px;
    margin: 0px 2px;
}

ul.boardVideo li div span.category > span i{
    font-size: 17px;
    font-weight: normal;    
    color: #a7a7a7;
    width: 18px;
    height: 18px;    
    border-radius: 3px;
}

ul.boardVideo li div > span.title{
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    color: #000;
    font-size: 15px;
    line-height: 22px;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;    
    margin-bottom: 13px;
    padding: 0 18px;
}

ul.boardVideo li div > span.date{
    position: relative;
    display: block;
    color: #b3b3b3;
    font-size: 14px;
    line-height: 20px;
    font-family:'SpoqaHanSans', 'SpL';
    padding: 0 18px;
}




/* gellery */
.board_list.gallery{
    padding-top: 33.5px;
}
.board_list.gallery .flex_03 .f_box:nth-child(3n+1){
    padding-right: 14px;
}
.board_list.gallery .flex_03 .f_box:nth-child(3n+2){
    padding: 0 7px;
}
.board_list.gallery .flex_03 .f_box:nth-child(3n+3){
    padding-left: 14px;
}

.board_list.gallery .flex_03 .f_box:nth-child(n+4){
    padding-top: 50px;
}

.board_list.gallery .f_box .thumb{
    position: relative;
    width: 100%;
    height: 285px;
}

.board_list.gallery .f_box .thumb:hover:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0.47);
}

.board_list.gallery .f_box .thumb:hover:after{
    content: '';
    position: absolute;
    top: calc(50% - 58px);
    left: calc(50% - 58px);
    width: 116px;
    height: 116px;
    background: rgb(241 219 188 / 49%) url(/images/c_project/user/sub/icon_video_more.svg) center center no-repeat;
    border-radius: 50%;
}

.board_list.gallery .f_box .thumb img{
    width: 100%;
}

.board_list.gallery .f_box .title_wrap{
    margin-top: 10px;
    background-color: #F2F2F2;
}

.board_list.gallery .f_box .title_wrap .category{
    display: block;
    padding: 19px 24px 13px;
    font-size: 17px;
    letter-spacing: -0.85px;
    line-height: 21px;
    color: #333;
}

.board_list.gallery .f_box .title_wrap .title_box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 15px 13px;
}

.board_list.gallery .f_box .title_wrap .category + .title_box{
    justify-content: flex-start;
    padding: 0 24px 21px;
}

.board_list.gallery .f_box .title_wrap .title_box *:not(.textCut){
    flex-shrink: 0;
}

.board_list.gallery .f_box .title_wrap p.textCut{
    font-family: 'SpoqaHanSansNeo-Regular';
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 25px;
    color: #000;
}

.board_list.gallery .f_box .title_wrap .category + .title_box p.textCut{
    font-family: 'SpoqaHanSansNeo-Medium';
    text-align: left;
}

.board_list.gallery .f_box .title_wrap p.textCut ~ img{
    height: 16px;
    margin-left: 5px;
}

@media screen and ( max-width: 1557px ) {
    .board_list.gallery .f_box .thumb{
        height: 18.3vw;
    }
}

@media screen and ( max-width: 1279px ) {
    .board_list.gallery .flex_03 .f_box:nth-child(n+4){
        padding-top: 35px;
    }
    
    .board_list.gallery .f_box .thumb:hover:after{
        top: calc(50% - 40px);
        left: calc(50% - 40px);
        width: 80px;
        height: 80px;
    }
}

@media screen and ( max-width: 1023px ) {
    .board_list.gallery .flex_03 .f_box:nth-child(3n+1){
        padding-right: 10px;
    }
    .board_list.gallery .flex_03 .f_box:nth-child(3n+2){
        padding: 0 5px;
    }
    .board_list.gallery .flex_03 .f_box:nth-child(3n+3){
        padding-left: 10px;
    }
    .board_list.gallery .flex_03 .f_box:nth-child(n+4){
        padding-top: 25px;
    }

    .board_list.gallery .f_box .thumb:hover:after{
        top: calc(50% - 35px);
        left: calc(50% - 35px);
        width: 70px;
        height: 70px;
        background-size: 25px;
    }

    .board_list.gallery .f_box .title_wrap{
        margin-top: 8px;
    }

    .board_list.gallery .f_box .title_wrap .category{
        padding: 16px 20px 7px;
        font-size: 15px;
        line-height: 19px;
    }

    .board_list.gallery .f_box .title_wrap .title_box{
        padding:  12px;
    }

    .board_list.gallery .f_box .title_wrap .category + .title_box{
        padding:  0 20px 20px;
    }

    .board_list.gallery .f_box .title_wrap p.textCut{
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and ( max-width: 767px ) {
    .board_list.gallery{
        padding-top: 25px;
    }

    .board_list.gallery .f_box .title_wrap .category{
        padding: 14px 12px 5px;
        font-size: 13px;
        line-height: 18px;
    }

    .board_list.gallery .f_box .title_wrap .category + .title_box{
        padding: 0 12px 15px;
    }

    .board_list.gallery .f_box .title_wrap p.textCut{
        font-size: 16px;
        line-height: 22px;
    }
}

@media screen and ( max-width: 630px ) {
    .board_list.gallery .f_box .thumb{
        height: 26vw;
    }

    .board_list.gallery .flex_03 .f_box{
        width: 50%;
    }

    .board_list.gallery .flex_03 .f_box:nth-child(2n+1){
        padding: 0 7.5px 0 0;
    }
    .board_list.gallery .flex_03 .f_box:nth-child(2n+2){
        padding: 0 0 0 7.5px;
    }
    .board_list.gallery .flex_03 .f_box:nth-child(n+3){
        padding-top: 15px;
    }
}

@media screen and ( max-width: 450px ) {
    .board_list.gallery .flex_03 .f_box:nth-child(3n+1),
    .board_list.gallery .flex_03 .f_box:nth-child(3n+2),
    .board_list.gallery .flex_03 .f_box:nth-child(3n+3){
        width: 100%;
        padding: 0 0 15px;
    }

    .board_list.gallery .f_box .thumb{
        height: 52vw;
    }
}
/* gellery end */



/* tab_category */
.tab_category{
	position: relative;
	display: flex;
	flex-wrap: wrap;
    width: calc(100% + 10px);
    margin-left: -10px;
}

.tab_category li{
	margin: 0 0 10px 10px;
    min-width: calc((100% - 70px) / 7);
	text-align: center;
}

.ie_style .tab_category li{
    width: calc((100% - 71px) / 7);
}

/* 
.tab_category li.active{
    order: -1;
} */

.tab_category li a{
    padding: 16px 15px;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -1.4px;
    color: #000;
    border: 1px solid #D5D5D5;
    display: block;
}

.tab_category li:first-child a{
    color: #005CA8;
    border: 1px solid #005CA8;
}

.tab_category li a:hover,
.tab_category li.active a{
    padding: 16px 10px;
    color: #fff;
	background-color: #005CA8;
	border: 1px solid #005CA8;
}

/* 2차 category */
.tab_category.child-category{
    padding: 30px 0 40px;
}

.tab_category.child-category.hide + .board_search_wrap{
    margin-top: 50px;
}

.tab_category.child-category.show ~ .board_search_wrap{
    margin-top: 0 !important;
}

.tab_category.child-category li{
    display: flex;
    width: auto;
}

.tab_category.child-category li:not(:nth-last-of-type(1)){
    margin-right: 30px;
}

.tab_category.child-category li input[type="checkbox"] + label{
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 18px;
    letter-spacing: -0.9px;
}

.tab_category.child-category li input[type="checkbox"] + label:before{
    content: '';
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #DEDCD9;
    cursor: pointer;
    margin-right: 10px;
}

.tab_category.child-category li input[type="checkbox"]:checked + label:before{
    background-image: url('../../image/pages/board/icon_check.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #005CA8;
}



@media screen and ( max-width: 1023px ) {
    .tab_category{
        margin-left: -5px;
        width: calc(100% + 5px);
    }

    .tab_category li{
        margin: 0 0 5px 5px;
        min-width: calc((100% - 35px) / 7);
    }
    
    .ie_style .tab_category li{
        width: calc((100% - 36px) / 7);
    }

    .tab_category li a{
        padding: 13px 5px;
        font-size: 15px;
        line-height: 19px;
    }

    .tab_category li a:hover,
    .tab_category li.active a{
        padding: 13px 5px;
    }
    
    .tab_category.child-category{
        padding: 30px 0 35px;
    }

    .tab_category.child-category li input[type="checkbox"] + label{
        font-size: 15px;
    }

    .tab_category.child-category li input[type="checkbox"] + label:before{
        margin-right: 7px;
        width: 20px;
        height: 20px;
    }

    .tab_category.child-category li input[type="checkbox"]:checked + label:before{
        background-size: 59%;
    }

    .tab_category.child-category.hide + .board_search_wrap{
        margin-top: 30px;
    }
}

@media screen and ( max-width: 767px ) {
    .tab_category_scroll{
		width: 100%;
		overflow-x: auto;
        overflow-y: hidden;
    }

    .tab_category_scroll::-webkit-scrollbar,
    .tab_category.child-category::-webkit-scrollbar{
        width: 100%;
        height: 5px;
        border-radius: 2.5px;
        background-color: #eee;
    }

    .tab_category_scroll::-webkit-scrollbar-thumb,
    .tab_category.child-category::-webkit-scrollbar-thumb{
        height: 5px;
        border-radius: 2.5px;
        background-color: #b8b8b8;
    }
	
	.tab_category{
        flex-wrap: nowrap;
        margin-left: 0;
        padding-bottom: 5px;
		width: auto;
	}

    .tab_category li{
		flex-shrink: 0;
		width: auto;
        min-width: 100px;
        margin: 0 5px 0 0;
    }

    .tab_category li a{
        padding: 10px 12px;
        font-size: 14px;
    }

    .tab_category li a:hover,
    .tab_category li.active a{
        padding: 10px 11px;
    }

    .tab_category.child-category{
        overflow-x: auto;
        padding: 10px 0 15px;
    }

    .tab_category.child-category li input[type="checkbox"] + label{
        font-size: 14px;
    }

    .tab_category.child-category li input[type="checkbox"] + label:before{
        width: 17px;
        height: 17px;
    }

    .tab_category.child-category.hide + .board_search_wrap{
        margin-top: 15px;
    }
}

@media screen and ( max-width: 470px ) {
    .tab_category.child-category{
        display: block;
    }

    .tab_category.child-category li + li{
        margin-top: 5px;
    }
}
/* tab_category end */



/* 기관단체 LIST */
ul.insList li span.num{ width: 7%; }
ul.insList li span.category{ width: 20%; }
ul.insList li span.title{ width: 33%; }
ul.insList li span.tel{ width: 20%; }
ul.insList li span.email{ width: 20%; }

/* Push LIST */
ul.PushList li span.title  { width: 18%; }
ul.PushList li span.text   { width: 46%; }
ul.PushList li span.img    { width: 18%; }
ul.PushList li span.date   { width: 18%; }

/* 성지회보 LIST */
div.listType{
    position: relative;
    display: block;
    float: right;
    margin-left: 5px;    
}

div.listType a{
    display: block;
    float: left;
    width: 35px;
    height: 35px;
    line-height: 33px;
    color: #cfcfcf;
    font-size: 14px;
    padding: 0 5px;
    margin-left: 5px;
    border-radius: 3px;
    border: 1px solid #cfcfcf;
    text-align: center;
}

div.listType a.on{
    color: #565656;
    border-color: #565656;
}


div.bbsSearch{
    position: relative;
    display: block;
    float: right;
    width: 242px;
    height: 35px;
}

ul.boardPilgrim li div.juboBox,
ul.boardCulture li div.juboBox{ 
    padding-bottom: 20px; 
}

ul.boardCulture li div > span.category{
    min-width: auto !important;
    padding: 0px 15px;
}

ul.pilgrimList li span.pilgrim{ width: 20%; height: 100px; }
ul.pilgrimList li span.title{ width: 73%; }
ul.pilgrimList li span.title > span{
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 0px; 
    text-align: left;
}

ul.pilgrimList li span.title > span.tDate{
    color: #000;
    font-size: 15px;
}

ul.pilgrimList li span.title > span.tTit{
    color: #535353;
    font-size: 15px;    
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

ul.pilgrimList li span.title > span.tWriter{
    display: block;
    font-size: 14px;
    color: #7b7b7b;
}

@media screen and ( max-width: 1110px ) {
	/* 게시판 갤러리 */
    ul.boardGallery li{
        width: 32%;    
        margin: 0 2% 30px 0;
    }

    ul.boardGallery li > span.thumb{
        height: 175px;
    }

    div.insPhoto div.photoList ul li{
        height: auto !important;
    }

    div.insPhoto div.photoList ul li img{
        width: 100%; 
        height: auto;       
        display: block; 
    }
}

@media screen and ( max-width: 768px ) {
	 /* 게시판 갤러리 */
	 ul.boardGallery li{
        margin: 0 2% 10px 0;
        padding: 10px 0 20px 0;
    }

    ul.boardGallery li > span.thumb{
        height: 150px;
    }

    ul.boardGallery li:nth-child(3n+3):after{
        display: none;
    }

    ul.boardGallery li a > span.title{
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    
    ul.boardGallery li a > span.title > span.category{
        padding: 0px 5px;
        border-radius: 3px;
        margin: 0 0 0px;
        font-size: 12px;
        line-height: 18px;
    }


    div.bbsViewCon > div > ul > li > img{
        width: 100% !important;
    }



    table.massTable tbody th{
        width: 20%;
    }
        
    table.massTable tbody td{
        width: 80%;
    }
    

    /* 동영상 게시판 */
    ul.boardVideo li{
        width: 32.2%;
        margin: 0 1.5% 15px 0;
        padding: 0px;
    }

    ul.boardVideo li:nth-child(3n+3):after{
        display: none;
    }

    ul.boardVideo li div{
        padding: 0 0 12px;
    }

    ul.boardVideo li div a > span.thumb{
        height: 130px;
        margin: 0 0 8px;
    }

    ul.boardVideo li div > span.title{
        margin-bottom: 8px;
        padding: 0 10px;
    }

    ul.boardVideo li div > span.date{
        padding: 0 10px;
    }
}

@media screen and ( max-width: 600px ) {
	/* 게시판 갤러리 */
	ul.boardGallery li,
	ul.boardGallery li:nth-child(3n+3){
		width: 48.5%;    
		margin: 0 3% 5px 0;
		padding: 10px 0 15px 0;
	}

	ul.boardGallery li:nth-child(even){
		margin-right: 0px;
	}

	ul.boardGallery li a > span.content{
		height: 40px;
		-webkit-line-clamp: 2;
		margin-bottom: 15px;
	}

	.bbsViewTop div.bbsTitleInfo > span{        
		display: block;
		width: 100%;  
		line-height: 16px;     
		margin: 7px 0; 
		overflow: hidden;
	}

	.bbsViewTop div.bbsTitleInfo > div.notifyBtn{
		position: absolute;
		bottom: 0px;
		right: 7px;
		width: auto;
		float: none;
		margin: 0px;
	}

	/* 동영상 게시판 */
    ul.boardVideo li{
        width: 47%;
        margin: 0 1.5% 15px;
        padding: 0px;
    }

    ul.boardVideo li:nth-child(3n+3){
        margin-right: 1.5%;
    }
	 
}

@media screen and ( max-width: 425px ) {
	/* 게시판 갤러리 */
    ul.boardGallery li,
    ul.boardGallery li:nth-child(3n+3){
        width: 100%;  
    }

    ul.boardGallery li > span.thumb{
        height: 220px;
    }

    ul.boardGallery li a > span.title{
        height: auto;
        font-size: 15px;
        line-height: 22px;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
        overflow: hidden;
        margin-bottom: 10px;
    }

    
    ul.boardGallery li a > span.content{
        height: 40px;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    ul.boardGallery li > span.date{
        font-size: 13px;
    }

    ul.boardGallery li:after{
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        background: #e4e4e4;
        bottom: 0px;
        right: 0px;
        display: block !important;
    }

    ul.boardGallery li:last-child:after{
        display: none !important;
    }

    div.insViewTop div.insInfo h4, div.insViewCon h4{
        font-size: 15px;
    } 

    div.insViewCon div.insIntro{
        font-size: 14px;
        line-height: 20px;
    }


    div.bbxViewCulture img.cultureImg{
        width: 70% !important;
    }

    /* 동영상 게시판 */
    ul.boardVideo li{
        width: 97%;
    }

    ul.boardVideo li div a > span.thumb{
		width: 100%;
		height: calc(33.333334vw - -74px);
    }
	ul.boardVideo li div a > span.thumb > img
	{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

    .boardLock_txt > .lockIcon{
        float: none;
        margin: 10px auto;
    }

    .boardLock_txt > .lockTxt{
        float: none;
        width: 100%;
        font-size: 16px;
        padding: 5px 10px 12px;
        text-align: center;
    }
}
/* board gallery, video end */

/* responsive_table */
.responsive_table
{
	overflow-x: auto;
}

@media screen and ( max-width: 768px)
{
	.responsive_table table
	{
		width: max-content;
	}
}

/* statistics_table */
.statistics_table thead tr th
{
	position: relative;
	font-size: 15px;
	line-height: 18px;
	color: #ffffff;
	font-weight: normal;
	padding: 10px 0;
	background: #535353;
	border-right: 1px solid #878787;
}

.statistics_table thead tr:not(:first-of-type) th
{
	border-top: 1px solid #FFF;
}

.statistics_table tbody tr td
{
	font-size: 15px;
	color: #2f2f2f;
	line-height: 1.5;
	border-right: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	text-align: center;
	padding: 15px 0;
	vertical-align: top;
}

.statistics_table tbody tr td:last-child
{
	border-right: 0;
}

.statistics_table tbody tr:nth-child(even) td
{
	background: #f7f7f7;
}

/* 텝메뉴 + 검색 */
ul.tab_list + div.board_search_wrap
{
	margin-top: 70px;
}

/* media */
@media screen and ( max-width: 1023px )
{
	ul.tab_list + div.board_search_wrap
	{
		margin-top: 50px;
	}
}

@media screen and ( max-width: 1023px )
{
	ul.tab_list + div.board_search_wrap
	{
		margin-top: 30px;
	}
}



/* 주보 */
div.listType
{
	height: 50px;
	font-size: 18px;
	letter-spacing: -0.9px;
	padding: 0;
	border: none;
	display: flex;
	align-items: center;
}

div.listType a
{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 14px;
	border: 1px solid #cfcfcf;
	margin-left: -1px;

	position: relative;
	z-index: 0;
}

div.listType a.on
{
	color: #565656;
	border-color: #565656;
	z-index: 1;
}

ul.boardJubo
{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

ul.boardJubo li
{
    position: relative;
    display: block;
    width: 23.3%;
    margin: 0 2.2% 30px 0;
    padding: 0 0 15px;
}

ul.boardJubo li:nth-child(4n+4){
    margin-right: 0px;
}

ul.boardJubo li:nth-last-of-type(-n+4){
    padding: 0;
    margin-bottom: 0;
}
ul.boardJubo li div.juboBox
{
    position: relative;
    display: block;
    margin: 0px;
    padding: 50px 0 50px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}

ul.boardJubo li div.juboBox:before
{
    position: absolute;
    content: '';
    width: 100%;
    /* height: 274px; */
    height: 69%;
    left: 0px;
    bottom: 0px;
    background: transparent linear-gradient(180deg, #F8F8F8 0%, #FAFAFA 27%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

ul.boardJubo li div > span.thumb
{
    position: relative;
    display: block;
    margin: 0 auto 20px;
    width: 124px;
    height: 180px;
    line-height: normal;
    background: #ededed;
    border: 1px solid #cecece;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

ul.boardJubo li div > span.thumb img
{
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

ul.boardJubo li div > span.category
{
    position: relative;
    display: inline-block;
    padding: 0px 7px;
    font-family: 'SpoqaHanSansNeo-Medium';
    font-size: 15px;
    letter-spacing: 0;
    line-height: 19px;
    color: #005CA8;
}

ul.boardJubo li div > span.title,
ul.boardJubo li div > span.content
{
    position: relative;
    display: block;
    margin: 5px auto 10px;
    width: calc(100% - 40px);
    height: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    font-family: 'SpoqaHanSansNeo-Medium';
    font-size: 15px;
    line-height: 20px;
    color: #000;
    overflow: hidden;
}

.audioPlayer
{
    position: absolute;
    display: block;
    width: 80%;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
    border-radius: 40px;
    background: #ab7cbf;
    overflow: hidden;
    z-index: 10;
}

.audioPlayer audio{
    display: block;
    float: left;
    width: calc(100% - 30px);
    height: 40px;  
}

.audioPlayer .audioBtn{
    float: right;
    display: block;
    width: 30px; 
    height: 40px;
}

.audioPlayer .audioBtn img{
    display: block;
    margin: 13px 5px;
    width: 14px;
}


/* 주보 상세보기 */
div.viewJubo{
    padding-top: 210px;
}

div.viewJubo div.vjTop{
    position: relative;
    display: flex;
    /* 수원
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0px; 
    */
    background: transparent linear-gradient(180deg, #F8F8F8 0%, #FAFAFA 27%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

div.viewJubo div.vjTop > div.vjImg{
    position: relative;
    display: block;
    flex-shrink: 0;
    margin-top: -210px;
    padding: 0 103px; 
}

div.viewJubo div.vjTop > div.vjImg > span.thumb{
    position: relative;
    display: block;
    width: 445px;
    height: 646px;
    line-height: normal;
    background: #ededed;
    box-shadow: 19px 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

div.viewJubo div.vjTop > div.vjImg > span.thumb img{
    height: 100%;
}

div.viewJubo div.vjTop > div.vjTit{
    position: relative;
    display: block;
    padding-top: 93px;
    width: 100%;
    height: 100%;
}

div.viewJubo div.vjTop > div.vjTit .text_wrap span.num{
    display: block;
    padding-bottom: 10px;
    font-size: 20px;
    font-family: 'SpoqaHanSansNeo-Regular';
    letter-spacing: 0;
    line-height: 25px;
    color: #005CA8;
}

div.viewJubo div.vjTop > div.vjTit .text_wrap p.title{
    display: block;
    font-family: 'SpoqaHanSansNeo-Medium';
    font-size: 30px;
    letter-spacing: -1.5px;
    line-height: 37px;
    color: #000;
}

div.viewJubo div.vjTop > div.vjTit .text_wrap span.date{
    display: block;
    padding-top: 16px;
    font-family: 'SpoqaHanSansNeo-Light';
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    color: #999;
}

div.viewJubo div.vjTop > div.vjTit > div.juboBtn{
    position: relative;
    display: inline-block;
    clear: both;
    text-align: center;
    margin: 50px 0;
}

div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a{
    display: block;
    float: left;
    padding: 16px 20px;
    min-width: 144px;
    background-color: #535353;
}

div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a + a{
    margin-left: 10px;
}

div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a > span{
    display: inline-block;
    font-family: 'SpoqaHanSansNeo-Regular';
    font-size: 18px;
    letter-spacing: -0.9px;
    line-height: 22px;  
    color: #fff;
    
}

div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a.btnDown,
div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a.btnDown:hover{
    /* background: url('../../image/pages/board/light_download.png') no-repeat #4b91bb 50% 50%;
    background-size: 70%;   */
}
/* 
div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a.btnVoice > span,
div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a.btnVoice:hover > span{
    background: url('../../image/pages/board/light_sound.png') no-repeat #ab7cbf 50% 50%;
    background-size: 70%;   
}
 */
div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a.btnPdf,
div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a.btnPdf:hover{    
    /* background: url('../../image/pages/board/light_search.png') no-repeat #f95053 50% 50%;
    background-size: 70%;   */
    background-color: #005CA8;
}

div.viewJubo div.vjTop > div.vjTit > div.btnAdobe{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    font-size: 16px;
    letter-spacing: -0.8px;
    line-height: 21px;
}

div.viewJubo div.vjTop > div.vjTit > div.btnAdobe > span{
    padding-right: 15px;
    color: #94999E;
}

div.viewJubo div.vjTop > div.vjTit > div.btnAdobe > span > span{
    color: #005CA8;
}

div.viewJubo div.vjTop > div.vjTit > div.btnAdobe > a{
    display: block;
    width: 156px;
    height: 40px;
    font-size: 0;
    line-height: 0;
    background: url('../../image/pages/jubo/btn_jubo_adobe.svg') no-repeat;
    background-size: contain;
}

.juboTable{
    border-bottom: 2px solid #535353;
}

.juboTable tbody tr th,
.juboTable tbody tr td{
    padding: 15px 25px 15px;
    vertical-align: top;
    text-align: left;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: -1px;
}

.juboTable tbody tr th{
    background: #f6f6f6;    
    font-weight: normal;
    color: #000;    
    border-bottom: 1px solid #d7d7d7;    
}

.juboTable tbody tr td{
    color: #535353;  
    font-size: 15px;
    -webkit-text-size-adjust: 100%; 
    -moz-text-size-adjust: 100%; 
    -ms-text-size-adjust: 100%;
}

.juboTable tbody tr td:first-child{
    border-right: 0px;
}

.juboTable tbody tr td p{ font-size: 15px;  }
.juboTable tbody tr td span {
    display: block;
    font-size: 14px;
    color: #7b7b7b;
}

ul.boardJubo li div > span.date
{
    position: relative;
    display: block;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 20px;
    font-family: 'SpoqaHanSans', 'SpL';
}

ul.boardJubo li div > div.juboBtn
{
    position: relative;
    display: flex;
    justify-content: center;
    margin: 30px auto 0px;
    padding: 0 55px;
    clear: both;
}

ul.boardJubo li div > div.juboBtn > a
{
    /* 수원 스타일
    display: block;
    float: left;
    width: 35px;
    height: 35px;
    margin: 0 5px;
	color: rgba(255,255,255,0);
    border-radius: 35px;
    border: 1px solid #7a7a7a; 
    */

    display: block;
    padding: 10px 10px;
    width: calc(50% - 4px);
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.8px;
    color: #fff;
    background-color: #535353;
}

ul.boardJubo li div > div.juboBtn > a + a{
    margin-left: 8px;
}

/*
ul.boardJubo li div > div.juboBtn > a.btnDown,
ul.boardJubo li div > div.juboBtn > a.btn-down
{
     background: url('../../image/pages/board/jubo_icon_down_gray_s.png') no-repeat #FFF;
    background-size: 100%; 
    
}
*/

ul.boardJubo li div > div.juboBtn > a.btnVoice,
ul.boardJubo li div > div.juboBtn > a.btn-voice
{
    /* background: url('../../image/pages/board/jubo_icon_voice_gray_s.png') no-repeat #FFF;
    background-size: 100%; */
    background-color: #345F4B;
}

ul.boardJubo li div > div.juboBtn > a.btnPdf,
ul.boardJubo li div > div.juboBtn > a.btn-view
{
    /* background: url('../../image/pages/board/jubo_icon_pdf_gray_s.png') no-repeat #FFF;
    background-size: 100%; */
    background-color: #005CA8;
}

/* media */
@media screen and ( max-width: 1437px ) {
    /* 주보 LIST */
    ul.boardJubo li div.juboBox{
        padding: 50px 0 20px;
    }
    ul.boardJubo li div > div.juboBtn{
        padding: 0 15px;
    }

    /* 주보 VIEW */
    div.viewJubo div.vjTop > div.vjTit > div.btnAdobe > span{
        width: 100%;
        padding-bottom: 10px;
    }
}

@media screen and ( max-width: 1279px ) {
    /* 주보 VIEW */
    div.viewJubo{
        padding-top: 146px;
    }

    div.viewJubo div.vjTop > div.vjImg{
        margin-top: -146px;
        padding: 0 60px 0 90px;
        padding-bottom: 10px;    
    }

    div.viewJubo div.vjTop > div.vjImg > span.thumb{
        width: 370px;
        height: 512px;
    }

    div.viewJubo div.vjTop > div.vjTit{
        padding-top: 55px;
    }
    
    div.viewJubo div.vjTop > div.vjTit .text_wrap span.num{
        padding-bottom: 6px;
        font-size: 17px;
        line-height: 22px;
    }

    div.viewJubo div.vjTop > div.vjTit .text_wrap p.title{
        font-size: 27px;
        line-height: 35px;
    }

    div.viewJubo div.vjTop > div.vjTit .text_wrap span.date{
        padding-top: 10px;
        font-size: 15px;
        line-height: 21px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn{
        margin: 40px 0;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a{
        padding: 14px 18px;
        min-width: 132px;
    }
}

@media screen and ( max-width: 1110px ) {
    /* 주보 LIST */
    ul.boardJubo li{
        width: 32.0%;    
        margin: 0 2% 8px 0 !important;
        padding: 0 0 8px !important;
    }

    ul.boardJubo li:nth-child(3n+3){
        margin-right: 0px !important;
    }
    
    ul.boardJubo li:nth-child(3n+3){
        margin-right: 0px !important;
    }

    ul.boardJubo li:nth-child(4n+4):after{
        display: none;
    }    
}

@media screen and ( max-width: 1023px )
{

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn{
        margin-bottom: 65px;
    }

	div.listType
	{
		position: absolute;
		top: 100px;
		right: 0;
		z-index: 1;
	}
	div.listType a
	{
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
    /* 주보 상세보기 */
    div.viewJubo{
        padding-top: 22vw;
    }
	div.viewJubo div.vjTop{
        flex-wrap: wrap;
		margin-top: 0;
	}
    div.viewJubo div.vjTop > div.vjImg{
        margin-top: -22vw;
        padding: 0 60px;
        width: 100%;
    }    

    div.viewJubo div.vjTop > div.vjImg > span.thumb{
        width: 50%;
        height: auto;
        margin: 0 auto;
    }

    div.viewJubo div.vjTop > div.vjImg > span.thumb img{
        width: 100%;
        position: relative;
    }

    div.viewJubo div.vjTop > div.vjTit{
        width: 100%;
        text-align: center;
        padding: 30px 20px;
    }

    div.viewJubo div.vjTop > div.vjTit > h3{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    
    div.viewJubo div.vjTop > div.vjTit > p{
        font-size: 16px;
        line-height: 16px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn{
        margin: 20px auto 0px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a{   
        padding: 13px 15px;
        min-width: 125px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a + a{
        margin-left: 8px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a > span{
        font-size: 16px;
        line-height: 21px;
    }
    
    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a > p{
        font-size: 15px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.btnAdobe{
        display: none;
    }

    /* 소리주보 css */    
    .audioPlayer{
        width: 80%;
    }

    .audioBox{
        bottom: 8px;
    }

    .audioPlayer audio{
        width: calc(100% - 30px); 
        height: 36px;
    }

    .audioPlayer .audioBtn{
        height: 36px;
    }

    .audioPlayer .audioBtn img{
        margin: 11px 5px;
    }

    @media screen and (-webkit-min-device-pixel-ratio: 0) { 
        .audioPlayer{
            border-radius: 10px;
        }

        .audioPlayer audio{
            width: calc(100% - 40px); 
            height: 30px;
            margin: 5px 0px;
            margin-left: 5px;             
        }

        .audioPlayer .audioBtn{
            height: 40px;
        }
    
        .audioPlayer .audioBtn img{
            margin: 13px 5px;
        }
    }
}

@media screen and ( max-width: 767px ) {
    div.viewJubo div.vjTop > div.vjTit .text_wrap span.num{
        padding-bottom: 5px;
        font-size: 14px;
    }

    div.viewJubo div.vjTop > div.vjTit .text_wrap p.title{
        font-size: 20px;
        line-height: 27px;
    }

    div.viewJubo div.vjTop > div.vjTit .text_wrap span.date{
        padding-bottom: 12px;
        font-size: 14px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a{
        padding: 10px 15px;
        min-width: 105px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a > span{
        font-size: 15px;
    }

    ul.boardJubo li div.juboBox{
        padding: 43px 0 20px;
    }

    ul.boardJubo li div > div.juboBtn > a{
        padding: 8px 10px;
        width: calc(50% - 2.5px);
        font-size: 15px;
        line-height: 20px;
    }


    ul.boardJubo li div > div.juboBtn > a + a{
        margin-left: 5px;
    }
}

@media screen and ( max-width: 600px)
{
    .juboGalleryInfo .jgInfo{
        font-size: 14px;
        margin: 0 0 15px;
    }

    .juboGalleryInfo .jgArtist{
        font-size: 17px;
        margin: 0 0 10px;
    }
    
    .juboGalleryInfo .jgProfile{
        padding: 8px 5px 12px;
        line-height: 24px;
        font-size: 15px;
    }

    .jubo_tab{ margin-bottom: 15px; }

    /* 주보 LIST */
    ul.boardJubo li{
        width: 49.0%;   
        margin-right: 2% !important; 
    }

    ul.boardJubo li:nth-child(3n+3){
        margin-right: 2% !important;
    }

    ul.boardJubo li:nth-child(2n+2){
        margin-right: 0% !important;
    }

    /* 주보 상세보기 */
    div.viewJubo div.vjTop > div.vjImg > span.thumb{
        width: 70%;
    }   
    
    div.viewJubo div.vjTop > div.vjTit{
        width: 100%;
        text-align: center;
        padding: 20px 10px;
    }

    div.viewJubo div.vjTop > div.vjTit > h3{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 7px;
    }

    div.viewJubo div.vjTop > div.vjTit > div.juboBtn > a > p{
        font-size: 14px;
    }
}

@media screen and ( max-width: 425px ) {
    /* 주보 LIST */
    ul.boardJubo li div.juboBox{
        padding: 23px 0 20px;
    }
    ul.boardJubo li{
        margin: 0 2% 5px 0 !important;
		width: 100%;
		margin: 0 0% 5px 0 !important;
    }
    div.viewJubo div.vjTop > div.vjTit > p{
        font-size: 15px;
        line-height: 15px;
    }

    /* 주보 상세보기 */
    div.viewJubo div.vjTop > div.vjImg{
        padding: 0;
    }

}




.boardLock_txt
{
	position: relative;
	display: block;
	width: 100%;
	max-width: 768px;
	margin: 100px auto 0;
	border: 1px solid #c7c7c7;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 5px 0 rgba(0,0,0,0.05);
}
.boardLock_txt a
{
	display: flex;
	align-items: center;
}
.boardLock_txt .lockIcon
{
	flex-basis: 80px;
	flex-shrink: 0;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	background: #005CA8;
	color: #FFF;
	padding: 0px;
	text-align: center;
	border-radius: 20%;
	margin: 10px;
}

.boardLock_txt .lockTxt
{
	flex-grow: 1;
	font-size: 18px;
	color: #414141;
	text-align: left;
	line-height: 1.6;
	padding-left: 5px;
}


/* media */
@media screen and ( max-width: 1023px )
{
	.boardLock_txt
	{
		margin-top: 40px;
	}
	.boardLock_txt .lockIcon
	{
		flex-basis: 60px;
		height: 60px;
	}
	.boardLock_txt .lockTxt
	{
		font-size: 15px;
	}
}




/* 주보 상세보기 */
.bbsViewTop
{
	position: relative;
	display: block;
	width: 100%;
	border: 1px solid #d8d7d7;
	border-top: 2px solid #535353;
}
.bbsViewTop h3.viewTitle
{
	position: relative;
	display: block;
	width: 100%;
	/* height: 53px; */
	font-size: 17px;
	line-height: 1.5;
	color: #000;
	background: #f3f3f3;
	border-bottom: 1px solid #d8d7d7;
	padding: 16px 15px;
}
.ccTxt
{
	display: inline-block;
	margin-left: 8px;
	font-size: 15px;
	color: #7b7b7b;
	line-height: 22px;
}
.bbsViewTop h3.viewTitle span.viewCategory
{
	position: relative;
	display: inline-block;
	padding: 0px 10px;
	background: #FFF;
	border: 1px solid #535353;
	border-radius: 3px;
	margin-right: 10px;
	font-size: 14px;
	line-height: 23px;
}
.bbsViewTop h3.viewTitle span.viewCategory > span
{
	display: inline-block;
	float: none;
	padding: 0px;
	margin: 0px 2px;
	text-align: center;
}
.bbsViewTop h3.viewTitle span.viewCategory > span i
{
	font-size: 17px;
	font-weight: normal;    
	color: #7a7a7a;
	width: 18px;
	height: 18px;    
	border-radius: 3px;
}
.bbsViewTop div.bbsTitleInfo
{
	position: relative;
	display: block;
	width: 100%;
	color: #7f7f7f;
	font-size: 13px;
	height: 43px;
	line-height: 43px;
	padding: 0 13px;
}
.bbsViewTop div.bbsTitleInfo.extend-field
{
	border-top: 1px dashed #d8d7d7;
}
.bbsViewTop div.bbsTitleInfo.extend-field:nth-child(odd)
{
	background: #fbfbfb;
}
.bbsViewTop div.bbsTitleInfo > span
{
	position: relative;
	display: inline-block;
	margin-right: 30px;
}
div.bbsViewCon
{
	position: relative;
	display: block;
	width: 100%;
	padding: 30px 10px 30px;
	border-bottom: 2px solid #535353;
	font-size: 15px;
	letter-spacing: -1px;
	word-break: break-word;
	line-height: 24px;
	overflow: hidden;
	overflow-x: auto !important;
}
div.bbsViewCon > div > ul > li
{
	text-align: center;
}
div.bbsViewCon > div > ul > li > img
{
	margin: 10px auto;
	width: auto !important;
	max-width: 90%;  
}
div.bbxViewCulture img.cultureImg
{
	display: block;
	width: 40% !important;
}
div.bbsBottom{
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	margin-top: 20px;
	padding: 0px;
	text-align: right;
}
div.bbsBottom div.bbsBtn{
	position: relative;
	display: inline-block;
	text-align: right;
	margin: 0 0 10px;
	padding: 0px;
	float: right;
}
div.bbsBtn a,
div.bbsBtn button{ 
	position: relative;
	display: inline-block;
	height: 37px;
	margin-left: 5px;
	padding: 0 15px;
	text-align: center;
	border: 1px solid #4e4e4e;
	background: #676767;
	box-shadow: 0px 3px 1px rgba(0,0,0,0.15);
	border-radius: 3px;
	font-size: 14px;    
	line-height: 35px;
	font-weight: bold;
	color: #FFF;
}



/* 테이블 공통 */
.common_table
{
    position: relative;
    width: 100%;
}
.common_table caption
{
    display: none;
}
.common_table thead
{
    background: #535353;
}
.common_table thead tr th
{
    position: relative;
    font-size: 15px;
    color: #ffffff;
    font-weight: normal;
    padding: 15px 0;
}
.common_table thead tr th:not(:last-child):after
{
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    width: 1px;
    height: 14px;
    background: #d7d7d7;
}
.common_table tbody tr td
{
    font-size: 15px;
    color: #2f2f2f;
    line-height: 1.5;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    text-align: center;
    padding: 15px 0;
    vertical-align: top;
}
.common_table tbody tr td.textAL
{
    padding-left: 20px;
}
.common_table tbody tr td:last-child
{
    border-right: 0;
}
.common_table tbody tr:last-child td
{
    border-bottom: 0;
}
.table_attach
{
    border-top: 2px solid #535353;
    background: #f3f3f3;
    padding: 17px 20px;
    overflow: hidden;
}
.table_attach span
{
    display: inline-block;
    letter-spacing: -0.08em;
}
.table_attach span:first-child
{
    font-weight: bold;
    font-size: 15px;
    color: #000;
    float: left;
}
.table_attach span:nth-child(2)
{
    font-size: 15px;
    color: #2f2f2f;
    float: right;
}

.top_03
{
    position: relative;
    width: 100%;
    margin-top: 58px;
}
.top_03 h3
{
    position: relative;
    font-family:'SpR';
    font-size: 18px;
    color: #000000;
    padding-left: 23px;
    margin-bottom: 20px;
}
.top_03 h3:before
{
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #5b5b5b;
    border-radius: 100%;
    background: #fff;
}








.bbsNavi
{
	position: relative;
	overflow: hidden;
	width: 100%;
	text-align: center;
	padding: 0 0 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bbsNavi > li.btnPrev,
.bbsNavi > li.btnNext
{
	display: block;
	position: relative;
	color: #9a9a9a;
}
.bbsNavi > li.btnPrev
{
	margin-right: 10px;
}
.bbsNavi > li.btnNext
{
	margin-left: 10px;
}


.bbsNavi > div.numbers{
	position: relative;
	display: inline-block;
}

.bbsNavi > div.numbers a{
	position: relative;
	display: inline-block;
	width: 28px;
	height: 28px;    
	line-height: 26px;
	font-size: 13px;
	margin: 0 5px;
	padding: 0px;
}

.bbsNavi > div.numbers a.active{
	background: #f95053;
	color: #FFF;
	border-radius: 50%;
	width: 26px;
	height: 26px;
}



/* 신고관련 */
#dialog .dialog_title{
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 0px 15px 10px;
    font-family: 'SpoqaHanSans', 'SpR';
    font-size: 15px;

}

#dialog .dialog_title:after{
    position: absolute;
    content: '';
    width: 3px;
    height: 15px;
    background: #666;
    top: 10px;
    left: 0px;    
}

#dialog > textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 85%;
    border: 1px solid #b4b4b4;
    resize: none;
}

/* 삭제 안내 메일 */
#dialog-remove label input[type="checkbox"]
{
    display: inline-block;
	-webkit-appearance: auto;
}
#dialog-remove .validateTips
{
	font-size: 15px;
	font-weight: bold;
	margin: 10px 0 8px;
}
#dialog-remove textarea
{
	border: 1px solid #ccc;
	width: 100%;
	padding: 10px;
	font-size: 15px;
}
/* 게시판 유튜브 */
.youtube_zone {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media  screen and (max-width: 768px ) {
    .youtube_zone iframe{
        width: auto;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
}
/* 게시판 동영상 */
.board_list.video {
    padding-top: 33.5px;
}

.board_list.video li {
    border-bottom: none;
}

.board_list.video .thumb{
    position: relative;
    width: 100%;
    height: 285px;
}

.board_list.video .f_box .thumb:hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0px 0px 7px rgb(0 0 0 / 47%);
}

.section_content.board .board_list.video .thumb::after{
    position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: url(/assets/cjd01/image/pages/board/icon_video_play_trans.png) no-repeat rgba(0,0,0,0.3);
    background-size: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}

.board_list.video .thumb:hover:after{
    position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: url(/assets/cjd01/image/pages/board/icon_video_play_trans.png) no-repeat rgba(0,0,0,0.3);
    background-size: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
}
/* //게시판 동영상 */



.common_btns_center{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
.common_btns_center > * {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 155px;
    height: 50px;
    padding: 0 20px;
    font-family: 'SpoqaHanSansNeo-Regular';
    font-weight: 400;
    font-size: 19px;
    color: #fff;
    letter-spacing: -0px;
    background: #D6A884;
    border: 1px solid #D6A884;
    margin: 0 5px;
}