@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 B */
.sch-wrap.type2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 2%;
    margin-bottom: 40px;
    background-color: #fffdf3;
}
.sch-wrap.type2 .form-group:after{
    display: block;
    content: '';
    clear: both;
}
.sch-wrap.type2 .form-item{
    height: 40px;
    margin: 0 5px;
    border-color: #e0dcd5;
    border-radius: 2px;
    font-size: 1.5rem;
}
.sch-wrap.type2 .sch-cate{
    width: 110px;
}
.sch-wrap.type2 .sch-key{
    width: 300px;
    margin: 0 5px;
}
.sch-wrap.type2 .btn-sch{
    height: 40px;
    width: 40px;
    border: 0;
    background-color: #f27203;
    background-repeat: no-repeat;
    background-image: url('../image/ic_sch.png');
    background-size: 18px auto;
    background-position: center;
    border-radius: 2px;
}
.sch-wrap.type2 .btn-reset{
    height: 40px;
    padding: 0 30px;
    margin: 0 5px;
    background-color: #fff;
    border: 1px solid #6e6c61;
    border-radius: 2px;
    color: #6e6c61;
}

/* list */
.board-list{
    width: 100%;
    border-top: 2px solid #f27203;
}
.board-list > li{
    width: 100%;
    border-bottom: 1px solid #e0dcd5;
}
.board-list > li.active{
    background-color: #fffdf3;
}
.board-list > li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 15px;
}
.board-list > li > div:has(.bbs-admin){
    flex: 0 0 auto;
}
.list-con{
    width: 100%;
}
.bbs-tit{
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}
.bbs-tit > a{
    vertical-align: middle;
}
.ic-new,
.ic-cnt{
    margin: 3px 0;
}
.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: 300;
    color: #fff;
    line-height: 1;
    vertical-align: top;
}
.ic-cnt{
    display: inline-block;
    min-width: 34px;
    padding: 5px;
    background-color: #f4f4f4;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #7b7b7b;
    line-height: 1;
    text-align: center;
    vertical-align: top;
}
.bbs-tit:has(.ic-new) > a{
    max-width: calc(100% - 30px);
}
.bbs-tit:has(.ic-cnt) > a{
    max-width: calc(100% - 40px);
}
.bbs-tit:has(.ic-new):has(.ic-cnt) > a{
    max-width: calc(100% - 70px);
}
.board-list .reply .bbs-tit{
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('../image/ic_reply.png');
}

.list-con > span{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
}
.list-con > span + span{
    position: relative;
    padding-left: 12px;
    margin-left: 10px;
}
.list-con > span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 5px;
    left: 0;
    width: 1px;
    height: 13px;
    background-color: #d0d0d0;
}
.bbs-cate{
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 5px;
    background-color: #f27203;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
}

.view-cnt{
    margin-bottom: 30px;
    text-align: right;
}
.view-cnt button + button{
    margin-left: 25px;
}
.view-cnt .cnt{
    display: inline-block;
    margin-left: 5px;    
    font-size: 14px;
    font-weight: 700;
    color: #474747;
    vertical-align: middle;
}

.bbs-admin{
    text-align: right;
}
.bbs-admin .form-item{
    width: 80px;
    height: 30px;
    margin: 2px;
    padding: 0 5px;
    border-color: #e0dcd5;
    background-color: #fff;
    font-size: 1.4rem;
    vertical-align: top;
}
.bbs-admin .btn.btn-modify,
.bbs-admin .btn.btn-delete{
    width: 30px;
    height: 30px;
    margin: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #e0dcd5;
}
.bbs-admin .btn.btn-modify{
    background-image: url('../image/ic_modify.png');
}
.bbs-admin .btn.btn-delete{
    background-image: url('../image/ic_delete.png');
}

.board-list .no-data{
    display: block;
    padding: 50px 0;
    font-size: 2rem;
}
.board-list .no-data img{
    margin: 0 auto 20px;
}

/* list::effect */
.ef01,
.ef02,
.ef03,
.ef04{
    position: relative;
}
.ef01{
    overflow: hidden;
}
.ef01:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    right: 100%;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #fffdf3;
    transition: 0.5s ease;
}
.ef01:hover:before{
    right: 0;
}

/* button */
.btn-admin .btn.btn-modify,
.btn-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 1px;
    border: 1px solid transparent;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-admin .btn.btn-modify{
    border-color: #7d7d7d;
    background-color: #fff;
    background-image: url('../image/ic_modify.png');
}
.btn-admin .btn.btn-delete{    
    border-color: #565656;
    background-color: #565656;
    background-image: url('../image/ic_delete.png');
}

/* 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-tit .bbs-cate{
    margin-top: -3px;
    margin-right: 5px;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
    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: 6px;
    left: 0;
    width: 1px;
    height: 14px;
    background-color: #d9d1d1;
}
.view-info > span strong{
    font-weight: 600;
}
.view-link{
    padding: 15px 20px 0;
}
.view-contop .view-cnt{
    margin-bottom: 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{
    overflow-x: auto;
    min-height: 400px;
    padding: 30px 15px;
    border-bottom: 1px solid #e0dcd5;
    font-size: 1.7rem;
}
.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;
}

.board-write .write-wrap{
    border-color: #f27203;
}
.board-write .write-wrap .form-tit {
    background-color: #fffdf3;
}

/* =====================================

	* responsive

====================================== */
@media screen and (max-width: 1024px){
}
@media screen and (max-width: 768px){
    /* Type B */
    .sch-wrap.type2{
        display: block;
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }
    .sch-wrap.type2 .form-group{
        width: 100%;
    }
    .sch-wrap.type2 .form-item{
        display: block;
        float: left;
        margin: 0;
        font-size: 14px;
        border-radius: 1px;
    }
    .sch-wrap.type2 .sch-cate{
        width: 100%;
    }
    .sch-wrap.type2 .sch-cate + .sch-cate{
        margin-left: 10px;
    }
    .sch-wrap.type2 .sch-key{
        width: calc(100% - 40px);
        margin-top: 10px;
    }
    .sch-wrap.type2 .btn-sch{
        margin-top: 10px;
    }
    .sch-wrap.type2 .btn-reset{
        width: 100%;
        margin: 0;
        margin-top: 10px;
        padding: 0 10px;
        border-radius: 1px;
        font-size: 14px;
    }

    /* 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-list > li{
        flex-direction: column;
        padding: 15px;
    }
    .list-con{
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    .bbs-tit{
        margin-bottom: 10px;
        font-size: 14px;
    }
    .ic-new,
    .ic-cnt{
        margin: 0;
    }
    .ic-new {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .ic-cnt{
        min-width: initial;
        padding: 4px 10px;
        font-size: 12px;
    }
    .bbs-tit:has(.ic-new) > a{
        max-width: calc(100% - 25px);
    }
    .bbs-tit:has(.ic-cnt) > a{
        max-width: calc(100% - 40px);
    }
    .bbs-tit:has(.ic-new):has(.ic-cnt) > a{
        max-width: calc(100% - 60px);
    }
    .list-con > span{
        font-size: 14px;
    }
    .list-con > span + span{
        padding-left: 8px;
        margin-left: 6px;
    }
    .list-con > span + span:before{
        top: 7px;
        height: 8px;
    }
    .bbs-cate{
        padding: 6px 15px;
        font-size: 12px;
    }
    .board-list .reply .bbs-tit{
        padding-left: 20px;
        background-size: 14px;
    }
    .board-list > li > div:has(.bbs-admin){
        width: 100%;
        text-align: right;
    }
    .bbs-admin{
        display: none;
    }
    
    .view-cnt{
        float: none !important;
        margin-top: 5px;
        margin-bottom: 0;
        font-size: 12px;
        text-align: right;
    }
    .view-cnt button + button{
        margin-left: 20px;
    }
    .view-cnt .icon > img{
        width: 15px;
    }
    .view-cnt .icon img{
        max-width: 100%;
    }
    .view-cnt .cnt{
        margin-left: 3px;
        font-size: 12px;
    }
    .board-list .no-data{
        padding: 25px 15px;
        font-size: 14px;
    }
    .board-list .no-data img{
        width: 26px;
        margin-bottom: 10px;
    }

    /* view */
    .view-contop{
        padding: 15px;
    }
    .view-tit{
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.3;
    }
    .view-tit strong{
        display: block;
    }
    .view-tit .bbs-cate{
        margin: 0;
        margin-bottom: 5px;
        font-size: 12px;
    }
    .view-info > span{
        font-size: 13px;
    }
    .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{
        min-height: 200px;
        padding: 20px 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .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;
    }
}