@charset "utf-8";
/* =====================================

	* board

    CSS CONTENTS :
    01. list
    02. list::effect
    03. button
    04. list::paging
    05. view
    06. view::comment
    07. view::move
    08. write
    
====================================== */
/* =====================================

	* Type A

====================================== */
.board-wrap,
.board-wrap * {
	box-sizing: border-box;
}
.hide {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
}
.board-vod-type1 .vod-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.board-vod-type1 .vod-list > li{
    position: relative;
    width: calc((100% - 40px)/3);
    border: 1px solid #e2e2e2;
}
.board-vod-type1 .vod-list > li > a{
    display: block;
    position: relative;
    transition: 0.3s ease;
}
.board-vod-type1 .vod-list > li:hover > a{
    box-shadow: 0 20px 24px rgba(149,149,149,0.2);
}
.board-vod-type1 .vod-list > li:hover .gall-tit{
    color: #20366f;
}
.board-vod-type1 .gall-img{
    display: block;
    position: relative;
    width: 100%;
    height: 245px;
    border-bottom: 1px solid #e2e2e2; 
    background-color: #fafafa;
}
.board-vod-type1 .gall-img:before,
.board-vod-type1 .gall-img:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.board-vod-type1 .gall-img:before{
    opacity: 0.1;
    background-color: rgba(0, 0, 0, 0.3);
}
.board-vod-type1 .gall-img:after{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/image/icon/ic_play.png');
}
.board-vod-type1 .gall-img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board-vod-type1 .gall-text{
    padding: 25px;
    letter-spacing: -0.05em;
}
.board-vod-type1 .gall-tit{
    height: 47px;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
	letter-spacing: -0.05em;
}
.board-vod-type1 .gall-con{
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
}
.board-vod-type1 .gall-con span{
    display: inline-block;
    position: relative;
    line-height: 1.3;
    vertical-align: top;
}
.board-vod-type1 .gall-con span + span{ 
    padding-left: 10px;
    margin-left: 8px;
}
.board-vod-type1 .gall-con span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: 11px;
    background-color: #c7d0df;
}
.board-vod-type1 .vod-list .btn-admin{
    margin-top: 25px;
    text-align: center;
}
.board-vod-type1 .bbs-admin{
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}
.board-vod-type1 .bbs-admin .form-item{
    width: 65px;
    height: 27px;
    margin: 2px;
    padding: 0 3px;
    border-color: #565656;
    background-color: #fff;
    font-size: 14px;
	line-height: 1.2;
    vertical-align: top;
}
.board-vod-type1 .bbs-admin .btn.btn-modify,
.board-vod-type1 .bbs-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 2px;
    border-radius: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #565656;
}
.board-vod-type1 .bbs-admin .btn.btn-modify{
    background-image: url('/image/icon/ic_modify.png');
}
.board-vod-type1 .bbs-admin .btn.btn-delete{
    background-image: url('/image/icon/ic_delete.png');
    background-color: #565656;
}
.board-vod-type1 .vod-list .no-data{
    display: block;
    width: 100% !important;
    padding: 70px 15px;
    border-top: 2px solid #20366f;
    border-left: 0;
    border-right: 0;
    font-size: 20px;
    font-weight: 600;
    color: #20366f;
    letter-spacing: -0.05em;
    text-align: center;
}
.board-vod-type1 .vod-list > li:hover .gall-img:before{
    opacity: 1;
}

/* =====================================

	* responsive

====================================== */
@media screen and (max-width: 1024px){
    /* Type A */
    /* list */
	.board-vod-type1 .vod-list > li {
		width: calc((100% - 20px) / 2);
	}
    .board-vod-type1 .gall-tit{
        height: 43px;
	}
}
@media screen and (max-width: 768px){
    /* Type A */
    /* list */
    .sch-wrap{
        display: block;
        margin-bottom: 15px;
    }
    .sch-wrap .cnt{
        display: none;
    }
    .sch-wrap .form-item{
        height: 36px;
        font-size: 14px;
    }
    .sch-wrap .sch-cate{
        width: 90px;
    }
    .sch-wrap .sch-key{
        width: calc(100% - 137px);
    }
    .sch-wrap .btn-sch{
        width: 36px;
        height: 36px;
        background-size: 15px;
    }
    .board-vod-type1 .vod-list{
        gap: 15px;
    }
    .board-vod-type1 .vod-list > li{
        width: 100%;
    }
    .board-vod-type1 .vod-list > li > a{
        height: auto;
    }
    .board-vod-type1 .vod-list > li:hover .gall-text{
        opacity: 1;
    }
    .board-vod-type1 .gall-img{
        height: 150px;
    }
    .board-vod-type1 .gall-img:after{
        background-size: 40px;
    }
    .board-vod-type1 .gall-text{
        padding: 15px;
    }
    .board-vod-type1 .gall-tit{
        height: auto;
        font-size: 14px;
    }
    .board-vod-type1 .gall-con{
        margin-top: 5px;
        font-size: 12px;
    }
    .board-vod-type1 .gall-con span + span:before{
        top: 3px;
        width: 1px;
        height: 9px;
    }
    .board-vod-type1 .bbs-admin{
        display: none;
        top: 10px;
        right: 10px;
    }
    .board-vod-type1 .vod-list .no-data{
        padding: 30px 15px;
        font-size: 14px;
    }

    .board-vod-type1 .vod-list.n2 > li{
        width: calc((100% - 15px)/2);
    }
    .board-vod-type1 .vod-list.n2 .gall-name{
        display: block;
        margin-bottom: 3px;
        width: 100%;
    }
    .board-vod-type1 .vod-list.n2 .gall-con span + span{
        margin-left: 0;
        padding: 0 5px;
    }
    .board-vod-type1 .vod-list.n2 .gall-con .gall-name + span{
        margin-left: -5px;
    }
    .board-vod-type1 .vod-list.n2 .gall-name + span:before{
        display: none;
    }

    /* button */
    .board-vod-type1 .board-wrap .btn-wrap{
        margin-top: 20px;
    }
    .board-vod-type1 .btn.btn-board{
        min-width: initial;
        padding: 7px 20px;
        font-size: 14px;
    }
    .board-vod-type1 .board-view + .btn-wrap{
        text-align: center;
    }
    .board-vod-type1 .btn-board.btn-list{
        float: none !important;
    }

    /* list::paging */
    .board-vod-type1 .paging-wrap{
        margin-top: 30px;
    }
    .board-vod-type1 .paging > li{
        width: 25px;
        height: 25px;
    }
    .board-vod-type1 .paging > li > a{
        font-size: 14px;
    }
    .board-vod-type1 .paging > li:not(.num){
        background-size: auto 10px;
    }
    .board-vod-type1 .paging .prev{
        margin-right: 5px;
    }
    .board-vod-type1 .paging .next{
        margin-left: 5px;
    }

    /* view */
    .board-vod-type1 .view-contop{
        padding: 20px 15px;
    }
    .board-vod-type1 .view-tit{
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.3;
    }
    .board-vod-type1 .view-cnt{
        margin-bottom: 5px;
        font-size: 12px;
    }
    .board-vod-type1 .view-cnt button + button{
        margin-left: 5px;
    }
    .board-vod-type1 .view-cnt .icon{
        width: 20px;
        height: 20px;
        padding: 5px;
    }
    .board-vod-type1 .view-cnt .icon img{
        max-width: 100%;
    }
    .board-vod-type1 .view-cnt .cnt{
        margin-left: 3px;
    }
    .board-vod-type1 .view-info > span{
        font-size: 14px;
    }
    .board-vod-type1 .view-info > span + span:before{
        top: 6px;
        height: 10px;
    }
    .board-vod-type1 .view-link{
        padding: 10px 0 0;
    }
    .board-vod-type1 .view-link > a{
        padding-left: 15px;
        background-size: 10px;
        background-position: 0 6px;
        font-size: 13px;
    }
    .board-vod-type1 .view-contents{
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    .board-vod-type1 .view-contents .video-wrap {
        margin: 20px auto;
    }

    .board-vod-type1 .view-attach{
        padding: 0 0 20px;
    }
    .board-vod-type1 .view-attach-con{
        padding: 15px;
        border-radius: 3px;
        font-size: 14px;
    }
    .board-vod-type1 .view-attach-con .con > a{
        padding-left: 20px;
        background-size: 10px;
        font-size: 12px;
        line-height: 1.3;
    }

    /* view::comment */
    .board-vod-type1 .comment-wrap{
        margin-top: 30px;
        font-size: 14px;
    }
    .board-vod-type1 .comment-wrap > .tit{
        padding: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .board-vod-type1 .comment-write-wrap{
        gap: 5px;
        padding: 0;
    }
    .board-vod-type1 .comment-write-wrap .form-item{
        height: 50px;
        padding: 10px;
        border-radius: 3px;
    }
    .board-vod-type1 .comment-write-wrap .btn-submit{
        width: 70px;
        height: 50px;
        border-radius: 3px;
        font-size: 14px;
    }
    .board-vod-type1 .comment-list-wrap{
        margin-top: 15px;
        border-radius: 3px;
    }
    .board-vod-type1 .comment-list-wrap ul > li{
        padding: 15px 0;
    }
    .board-vod-type1 .comment-name{
        font-size: 14px;
    }
    .board-vod-type1 .comment-date{
        margin-left: 5px;
        font-size: 12px;
    }
    .board-vod-type1 .comment-contents{
        flex-direction: column;
        align-items: start;
        width: 100%;
        margin-top: 5px;
        font-size: 14px;
    }
    .board-vod-type1 .comment-contents .btn-wrap{
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
        text-align: right;
    }
    .board-vod-type1 .btn.btn-comment{
        min-width: initial;
        padding: 3px 12px;
        font-size: 12px;
    }
    .board-vod-type1 .comment-list-wrap li.comment-reply{
        padding-left: 20px;
        background-size: 13px;
        background-position: 0 17px;
    }
    .board-vod-type1 .comment-reply .comment-write-wrap .form-item{
        height: 50px;
    }
    .board-vod-type1 .comment-reply .comment-write-wrap .btn{
        width: 50px;
        height: 50px;
        border-radius: 3px;
    }

    /* view::move */
    .board-vod-type1 .view-move{
        margin-top: 20px;
    }
    .board-vod-type1 .view-move-con{
        padding: 8px 10px;
        font-size: 14px;
    }
    .board-vod-type1 .view-move-con .tit{
        width: 65px;
        padding: 0 15px;
        background-size: 7px;
    }
    .board-vod-type1 .view-move-con .tit:after{
        top: 6px;
        width: 1px;
        height: 10px;
    }
    .board-vod-type1 .view-move-con .con{
        width: calc(100% - 65px);
        padding: 0;
    }
    .board-vod-type1 .view-move .view-prev .con{
        padding-left: 15px;
    }
    .board-vod-type1 .view-move .view-next .con{
        padding-right: 15px;
    }
    .board-vod-type1 .view-move.type2 .view-move-con .con{
        padding: 0;
        padding-left: 15px;
    }

    .board-vod-type1 .view-move.type1 .view-prev{
        border-radius: 3px 0 0 3px;
    }
    .board-vod-type1 .view-move.type1 .view-next{
        border-radius: 0 3px 3px 0;
    }
    .view-move.type2 .view-move-con .tit{
        background-size: 10px;
    }

    /* write */
    .board-vod-type1 .help-text{
        font-size: 12px;
    }
    .board-vod-type1 .write-wrap .form-tit,
    .board-vod-type1 .write-wrap .form-con{
        text-align: left;
    }
    .board-vod-type1 .write-wrap .form-con .btn-small{
        padding: 4px 8px;
        font-size: 12px;
    }
}
