@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 C */
.sch-wrap.type3 {
    margin-bottom: 70px;
}
.sch-wrap.type3 .form-group{
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 19px 20px;
    border: 1px solid #e0dcd5;
    border-radius: 10px;
}
.sch-wrap.type3 .form-item{
    height: 30px;
    padding: 0 20px;
    border: 0;
    font-size: 1.6rem;
}
.sch-wrap.type3 .sch-cate{
    width: 150px;
}
.sch-wrap.type3 .sch-key{
    position: relative;
    width: calc(100% - 155px);
    padding-right: 70px;
    border-left: 1px solid #e0dcd5;
}
.sch-wrap.type3 .btn-sch{
    position: absolute;
    top: 0;
    right: 10px;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../image/ic_sch_black.png');
}
.sch-wrap.type3.skin1 .form-group{
    border-radius: 50px;
}
.sch-wrap.type3.skin1 .form-group,
.sch-wrap.type3.skin2 .form-group,
.sch-wrap.type3.skin3 .form-group{
    border-radius: 50px;
}
.sch-wrap.type3.skin2 .btn-sch{
    right: 0;
    background-color: #f5f5f5;
    border: 1px solid #e0dcd5;
    border-radius: 50%;
}
.sch-wrap.type3.skin3 .sch-key{
    padding-right: 155px;
}
.sch-wrap.type3.skin3 .btn-sch{
    right: 0;
    width: 155px;
    padding: 0 30px;
    padding-left: 75px;
    border-radius: 50px;
    background-color: #f27203;
    background-position: 30px center;
    background-image: url('../image/ic_sch_white.png');
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
}

/* list */
.vod-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.vod-list > li{
    position: relative;
    width: calc((100% - 40px)/3);
    border: 1px solid #e0dcd5;
}
.vod-list > li > a{
    display: block;
    position: relative;
    transition: 0.3s ease;
}
.vod-list > li:hover > a{
    box-shadow: 0 20px 24px rgba(149,149,149,0.2);
}
.gall-img{
    display: block;
    position: relative;
    width: 100%;
    height: 245px;
    border-bottom: 1px solid #e2e2e2; 
    background-color: #fafafa;
}
.gall-img:before,
.gall-img:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.gall-img:before{
    opacity: 0.1;
    background-color: rgba(0, 0, 0, 0.3);
}
.gall-img:after{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../image/ic_play.png');
}
.gall-img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gall-text{
    padding: 25px;
}
.gall-tit{
    height: 47px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}
.ic-new{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ce5e90;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    vertical-align: top;
}
.gall-tit-wrap:has(.ic-new) .gall-tit{
    max-width: calc(100% - 30px);
}
.gall-con{
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 500;
}
.gall-con span{
    display: inline-block;
    position: relative;
    line-height: 1.3;
    vertical-align: top;
}
.gall-con span + span{ 
    padding-left: 10px;
    margin-left: 8px;
}
.gall-con span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: 11px;
    background-color: #c7d0df;
}
.vod-list .btn-admin{
    margin-top: 25px;
    text-align: center;
}
.bbs-admin{
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}
.bbs-admin .form-item{
    width: 65px;
    height: 27px;
    margin: 2px;
    padding: 0 3px;
    border-color: #565656;
    background-color: #fff;
    font-size: 1.4rem;
    vertical-align: top;
}
.bbs-admin .btn.btn-modify,
.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;
}
.bbs-admin .btn.btn-modify{
    background-image: url('../image/ic_modify.png');
}
.bbs-admin .btn.btn-delete{
    background-image: url('../image/ic_delete.png');
    background-color: #565656;
}
.vod-list .no-data{
    display: block;    
    width: 100% !important;
    padding: 50px 0;
    border-top: 2px solid #20366f;
    border-left: 0;
    border-right: 0;
    font-size: 2rem;
    font-weight: 300;
}
.vod-list .no-data img{
    margin: 0 auto 20px;
}

.vod-list > li:hover .gall-img:before{
    opacity: 1;
}

/* list::effect */
.ef01,
.ef02,
.ef03,
.ef04{
    position: relative;
}
.ef01 > a,
.ef02 > a,
.ef03 > a,
.ef04 > a{
    width: 100%;
    height: 100%;
}
.ef03:before,
.ef03:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 3px;
    background-color: #f27203;
}
.ef03:before{
    top: 0;
    left: 0;
    transition: 0.2s ease;
}
.ef03:after{
    right: 0;        
    transition: 0.2s ease 0.2s;
}
.ef03 > a:before,
.ef03 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #f27203;
}
.ef03 > a:before{
    bottom: 0;
    left: 0;
    transition: 0.2s ease 0.3s;
}
.ef03 > a:after{
    top: 0;
    right: 0;    
    transition: 0.2s ease 0.1s;
}
.ef03:hover:before{
    width: 100%;
}
.ef03 > a:hover:after{
    height: 100%;
}
.ef03:hover:after{
    width: 100%;    
}
.ef03 > a:hover:before{
    height: 100%;
}
.ef03:hover .gall-img{
    z-index: -1;
}

/* button */
.btn-admin .btn.btn-board{
    display: inline-block;
    min-width: 50px;
    height: 27px;
    padding: 2px 0;
    margin: 1px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    vertical-align: top;
}

/* view */
.view-contop{
    padding: 20px 25px;
    background-color: #fffdf3;
    border-top: 2px solid #f27203;
    border-bottom: 1px solid #e0dcd5;
}
.view-contop + .view-contents{
    border-top: 0;
}
.view-tit{
    margin-bottom: 15px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
}
.view-cnt{
    margin-bottom: 10px;
}
.view-cnt button + button{
    margin-left: 10px;
}
.view-cnt .icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    vertical-align: middle;
}
.view-cnt .cnt{
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.view-info > span{
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 1.4rem;
}
.view-info > span + span{
    padding-left: 8px;
    margin-left: 6px;
}
.view-info > span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: 14px;
    background-color: #e5e2e4;
}
.view-info > span strong{
    font-weight: 600;
}
.view-link{
    padding: 15px 20px 0;
}
.view-link > a{
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url('../image/ic_view_link.png');
    word-break: break-all;
    vertical-align: top;
}
.view-contents{
    padding: 25px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0dcd5;
    font-size: 1.8rem;
    font-weight: 500;
}
.board-view:has(.view-attach) .view-contents{
    border-bottom: 0;
}
.view-contents *{
    font: inherit;
}
.view-contents img{
    max-width: 100%;
}

.view-attach{
    padding: 0 15px 20px;
    border-bottom: 1px solid #e0dcd5;
}
.view-attach-con{
    font-size: 1.7rem;
}
.view-attach-con .con > a{
    display: block;
    padding: 13px 20px;
    padding-left: 50px;
    border: 1px solid #e0dcd5;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: 20px 15px;
    background-image: url('../image/ic_file2.png');
    line-height: 1.3;
    transition: 0.3s ease;
    word-break: break-all;
}
.view-attach-con .con > a + a{
    margin-top: 10px;
}
.view-attach-con .con > a:hover{
    border-color: #9f9f9f;
}

.view-contents .video-wrap{
    max-width: 700px;
    margin: 30px auto;
}
.video{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 62.5%;
}
.video > iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.board-write .write-wrap{
    border-color: #f27203;
}
.board-write .write-wrap .form-tit {
    background-color: #fffdf3;
}

/* =====================================

	* responsive

====================================== */
@media screen and (max-width: 1024px){
    /* list */
    .gall-tit{
        height: 43px;
    }
}
@media screen and (max-width: 768px){   
    /* Type C */
    .sch-wrap.type3 {
        margin-bottom: 35px;
    }
    .sch-wrap.type3 .form-group{
        overflow: hidden;
        padding: 7px 0;
        border-radius: 5px;
    }
    .sch-wrap.type3 .form-item{
        padding: 0 10px;
        font-size: 14px;
    }
    .sch-wrap.type3 .sch-cate{
        width: 100px;
    }
    .sch-wrap.type3 .sch-key{
        width: calc(100% - 105px);
        padding-right: 45px;
    }
    .sch-wrap.type3 .btn-sch{
        right: 0;
        width: 45px;
        height: 45px;
        background-size: 16px;
    }
    .sch-wrap.type3.skin3 .sch-key{
        padding-right: 70px;
    }
    .sch-wrap.type3.skin3 .btn-sch{
        width: 70px;
        padding: 0 15px;
        padding-left: 30px;
        background-position: 15px center;
        background-size: 13px;
        font-size: 14px;
    } 

    /* list */
    .vod-list{
        gap: 15px;
    }
    .vod-list > li{
        width: 100%;
    }
    .vod-list > li > a{
        height: auto;
    }
    .vod-list > li:hover .gall-text{
        opacity: 1;
    }
    .gall-img{
        height: 150px;
    }
    .gall-img:after{
        background-size: 40px;
    }
    .gall-text{
        padding: 15px;
    }
    .gall-tit{
        height: auto;
        font-size: 14px;
    }
    .ic-new{
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    .gall-tit-wrap:has(.ic-new) .gall-tit{
        max-width: calc(100% - 24px);
    }
    .gall-con{
        margin-top: 5px;
        font-size: 12px;
    }
    .gall-con span + span:before{
        top: 3px;
        width: 1px;
        height: 9px;
    }    
    .bbs-admin{
        display: none;
        top: 10px;
        right: 10px;
    }
    .vod-list .no-data{
        padding: 25px 15px;
        font-size: 14px;
    }
    .vod-list .no-data img{
        width: 26px;
        margin-bottom: 10px;
    }

    .vod-list.n2 > li{
        width: calc((100% - 15px)/2);
    }
    .vod-list.n2 .gall-name{
        display: block;
        margin-bottom: 3px;
        width: 100%;
    }
    .vod-list.n2 .gall-con span + span{
        margin-left: 0;
        padding: 0 5px;
    }
    .vod-list.n2 .gall-con .gall-name + span{
        margin-left: -5px;
    }
    .vod-list.n2 .gall-name + span:before{
        display: none;
    }

    /* view */
    .view-contop{
        padding: 15px;
    }
    .view-tit{
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.3;
    }
    .view-cnt{
        margin-bottom: 5px;
        font-size: 12px;
    }
    .view-cnt button + button{
        margin-left: 5px;
    }
    .view-cnt .icon{
        width: 20px;
        height: 20px;
        padding: 5px;
    }
    .view-cnt .icon img{
        max-width: 100%;
    }
    .view-cnt .cnt{
        margin-left: 3px;
    }
    .view-info > span{
        font-size: 14px;
    }
    .view-info > span + span:before{
        top: 6px;
        height: 10px;
    }
    .view-link{
        padding: 10px 0 0;
    }
    .view-link > a{
        padding-left: 15px;
        background-size: 10px;
        background-position: 0 6px;
        font-size: 13px;
    }
    .view-contents{
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    .view-contents .video-wrap {
        margin: 20px auto;
    }

    .view-attach{
        padding: 0 0 20px;
    }
    .view-attach-con .con > a{   
        padding: 10px;
        padding-left: 25px;
        background-size: 10px;
        background-position: 10px 13px;
        font-size: 12px;     
        line-height: 1.3;
    }
    .view-attach-con .con > a + a{
        margin-top: 7px;
    }
}