@charset "utf-8";
/* =====================================

	* board
    
    CSS CONTENTS :
    01. list
    02. list::column width
    03. button
    04. list::paging
    05. view
    06. view::comment
    07. view::move
    08. write

====================================== */
/* search */
.sch-wrap.type1{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.sch-wrap.type1 .form-group:after{
    display: block;
    content: '';
    clear: both;
}
.sch-wrap.type1 .form-item{
    height: 40px;
    margin: 0 5px;
    border-color: #dcdcdc;
    border-radius: 3px;
    font-size: 1.5rem;
    letter-spacing: -0.015em;
}
.sch-wrap.type1 .sch-cate{
    width: 120px;
}
.sch-wrap.type1 .sch-key{
    width: 300px;
    margin: 0 5px;
}
.sch-wrap.type1 .btn-sch{
    height: 40px;
    padding: 0 25px;
    padding-left: 40px;
    background-color: #ac3c6a;
    background-repeat: no-repeat;
    background-image: url('/assets/image/board/ic_sch.png');
    background-position: 12px center;
    border-radius: 3px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.sch-wrap.type1.skin1 .btn-sch{
    padding-left: 0;
    width: 40px;
    margin-left: -10px;
}

/* button */
.board-wrap .btn-wrap{
    margin-top: 20px;
}
.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('/assets/image/board/ic_modify.png');
}
.btn-admin .btn.btn-delete{    
    border-color: #565656;
    background-color: #565656;
    background-image: url('/assets/image/board/ic_delete.png');
}
.board-view + .btn-wrap{
    text-align: right;
}

/* view */
.view-contop{
    padding: 20px 25px;
    background-color: #f7f7f7;
    border-top: 2px solid #ac3c6a;
    border-bottom: 1px solid #e2e2e2;
    font-size: 1.5rem;
}
.view-contop + .view-contents{
    border-top: 0;
}
.view-tit{
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}
.view-tit .bbs-cate {
    display: inline-block;
    padding: 7px 15px;
    margin-top: -3px;
    margin-right: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: #ac3c6a;
    color: #fff;
    line-height: 1;
    border-radius: 30px;
    vertical-align: middle;
}
.view-tit .bbs-cate.cate-2{
    background-color: #4986ac;
}

.view-contop:not(:has(.view-cnt)) .view-tit{
    margin-bottom: 10px;
}
.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;
}
.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: 20px 25px 0;
}
.view-link > a{
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url('/assets/image/board/ic_view_link.png');
    word-break: break-all;
    vertical-align: top;
}
.view-contents{
    overflow-x: auto;
    min-height: 400px;
    padding: 25px;
    font-family: initial;
    font-size: 1.8rem;
    font-weight: 500;
}
.view-contents *{
    font: inherit;
}
.view-contents img{
    max-width: 100%;
}

/* write */
.write-contop{
    margin-bottom: 10px;
}
.help-text{
    font-size: 14px;
}
.write-wrap{
    border-top: 2px solid #ac3c6a;
}

/* 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: #f7f7f7;
    transition: 0.5s ease;
}
.ef01:hover:before{
    right: 0;
}
.ef02:before,
.ef02:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0;
    background-color: #f7f7f7;
    transition: 0.5s ease;
}

/* LIST::DEFAULT */
.board-list{
    width: 100%;
    border-top: 2px solid #ac3c6a;
}
.board-list > li{
    display: table;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    table-layout: fixed;
}
.board-list > li.active{
    background-color: #fff9ef;
}
.board-list > li > div{
    display: table-cell;
    padding: 10px;
    font-size: 1.7rem;
    text-align: center;
    vertical-align: middle;
}
.board-list .list-head{
    border-color: #e2e2e2;
}
.board-list .list-head > div{
    position: relative;
    padding: 13px 0;
    background-color: #f7f7f7;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}
.board-list .list-head > div:not(:first-child):before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: #bbbbbb;
}
.ic-notice:not(img){
    display: inline-block;
    padding: 3px 5px;
    min-width: 36px;
    border: 1px solid #367ded;
    border-radius: 50px;
    background-color: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #367ded;
    line-height: 1;
}
.ic-reply{
    font-size: 1.7rem;
    font-weight: 700;
    color: #f35b33;
}
.board-list .bbs-tit{
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}
.bbs-tit > a{
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}
.board-list > li:not(.list-head) .bbs-tit{
    text-align: left;
}
.board-list > li:not(.list-head) > div{
    border-left: 1px solid #e2e2e2;
}
.board-list > li:not(.list-head) > div:first-child{
    border-left: 0;
}
.ic-new{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #f35b33;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
}
.bbs-tit:has(.ic-new) > a{
    max-width: calc(100% - 30px);
}
.ic-cnt{
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    min-width: 30px;
    padding: 3px 5px;
    border: 1px solid #bbbbbb;
    background-color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #7b7b7b;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
}
.bbs-tit:has(.ic-cnt) > a{
    width: calc(100% - 35px);
}
.bbs-tit:has(.ic-new):has(.ic-cnt) > a{
    width: calc(100% - 65px);
}
.bbs-show .form-item{
    width: 65px;
    height: 27px;
    padding: 0 5px;
    font-size: 1.4rem;
}
.board-list .no-data{
    padding: 30px;
    font-size: 1.5rem;
}

/* list::column width */
.bbs-col-xs{
    width: 6%;
}
.bbs-col-s{
    width: 8%;
}
.bbs-col-m{
    width: 10%;
}
.bbs-col-l{    
    width: 12%;
}
.bbs-col-xl{
    width: 15%;
}


/* =====================================

	* responsive

====================================== */
@media screen and (max-width: 768px){
    /* Type A */
    .sch-wrap.type1{
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .sch-wrap.type1 .num {
        margin-bottom: 10px;
    }
    .sch-wrap.type1 .form-group{
        width: 100%;
    }
    .sch-wrap.type1  .form-item{
        display: block;
        float: left;
        margin: 0;
        font-size: 14px;
        border-radius: 2px;
    }
    .sch-wrap.type1 .sch-cate{
        width: calc((100% - 10px)/2);
    }
    .sch-wrap.type1 .sch-cate + .sch-cate{
        margin-left: 10px;
    }
    .sch-wrap.type1 .sch-key{
        width: calc(100% - 80px);
        margin: 0;
        margin-top: 10px;
    }
    .sch-wrap.type1 .btn-sch{
        width: 80px;
        margin-top: 10px;
        padding: 0 18px;
        background-position: 18px center;
        background-size: 15px;
        border-radius: 2px;
        font-size: 14px;
        text-align: right;
    }
    .sch-wrap.type1.skin1 .btn-sch{
        padding-left: 0;
        margin-left: 0;
        margin-top: 0;
        background-position: center;
    }
    .sch-wrap.type1.skin1 .sch-cate{
        width: 90px;
    }
    .sch-wrap.type1.skin1 .sch-key{
        width: calc((100% - 140px));
        margin-top: 0;
        margin-left: 10px;
    }

    /* button */
    .board-view + .btn-wrap{
        text-align: center;
    }

    /* view */
    .view-contop{
        padding: 20px 15px;
    }
    .view-tit{
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.3;
    }
    .view-tit .bbs-cate {
        font-size: 12px;
    }
    .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 10px 0;
    }
    .view-link > a{
        padding-left: 15px;
        background-size: 10px;
        background-position: 0 6px;
        font-size: 13px;
    }
    .view-contents{
        overflow-x: auto;
        min-height: 200px;
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* LIST::DEFAULT */
    .board-list .list-head{
        display: none;
    }
    .board-list > li:not(.list-head) > div{
        border-left: 0;
    }
    .board-list > li{
        position: relative;
        padding: 10px 0;
    }
    .board-list > li > div{
        display: inline-block;
        position: relative;
        width: auto;
        padding: 0 10px;
        font-size: 14px;
        vertical-align: middle;
    }    
    .board-list > li > div:before{
        display: block;
        content: '';
        clear: both;
        position: absolute;
        top: 5px;
        left: 0;
        width: 1px;
        height: 10px;
        background-color: #bfbfbf;
    }
    .board-list > li .n-bar:before{
        display: none;
    }
    .board-list > li .bbs-no,
    .board-list > li .bbs-file,
    .board-list > li .bbs-show,
    .board-list > li .bbs-admin{
        display: none;
    }
    .board-list .bbs-tit{
        padding: 0 10px;
    }
    .board-list > li .bbs-no:has(.ic-notice){
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 10px;
        padding: 0;
    }
    .board-list > li:has(.ic-notice){
        padding-left: 55px;
    }
    .ic-notice{
        width: 20px;
        margin: 0 5px;
    }
    .ic-notice:not(img){
        padding: 3px 0;
        margin: 0;
        min-width: 31px;
        font-size: 12px;
    }
    .board-list > li .bbs-tit{
        display: block;
        width: 100%;
        font-weight: 600;
    }
    .board-list > li .bbs-Name,
    .board-list > li .bbs-team {
        display: block;
        width: 100%;
        text-align: left;
        font-weight: 600;
    }
    .ic-reply{
        padding-left: 20px;
        background-repeat: no-repeat;
        background-position: 0 center;
        background-image: url('/assets/image/board/ic_reply.png');
        background-size: 13px;
    }
    .ic-new{
        width: 20px;
        height: 20px;
        font-size: 10px;
    }    
    .ic-cnt{
        position: static;
        top: auto;
        right: auto;
        transform: none;
        min-width: 28px;
        font-size: 12px;
    }
    .bbs-tit:has(.ic-new):has(.ic-cnt) > a{
        width: calc(100% - 60px);
    }
    .board-list .no-data{
        padding: 25px 15px;
        font-size: 14px;
    }

}