@charset "utf-8";
/* =====================================

	* Newsletter board
    
    CSS CONTENTS :
    01. list
    02. button
    03. list::paging
    04. view
    05. comment
    06. view::move
    07. write
    08. search

====================================== */

/* list */
.board-wrap {
    margin-top: 36px;
}
.board-list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 70px 60px;
    margin-bottom: -70px;
}
.board-list:after {
    content: '';
    clear: both;
}
.board-list > li {
    position: relative;
    z-index: 1;
    width: calc((100% - 180px) / 4);
    height: 100%;    
    color: #000000;
}
.board-list > li:nth-of-type(4n){
    margin-right: 0;
}
.board-list .list-con{
    height: 350px;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    background: #fff url(../image/board/bg_newsletter.png) right bottom / contain no-repeat;
}
.board-list .list-con > a{
    position: relative;    
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}
.board-list .list-con > a:before {
    content: '';
    position: absolute;
    z-index: -1;
    right: -4px;
    bottom: -4px;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.board-list .list-con > a:after {
    content: '';
    position: absolute;
    z-index: -2;
    right: -7px;
    bottom: -7px;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.board-list .active .list-con,
.board-list .list-con:hover{
    transition: 0.25s;
    border-color: #2e56a5;
    box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.05);
}
.board-list .bbs-tit{
    display: inline-flex;
    justify-content: center;
    width: 100px;
    padding: 10px 5px;
    margin-top: 25px;
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #4ea8ca;
    background: #f1fbff;
    border-radius: 50px;
    word-break: keep-all;
}
.board-list .bbs-date{    
    font-size: 15px;
    letter-spacing: -0.035em;
}
.board-list .bbs-no{
    width: auto;
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #4ea8ca;
    line-height: 1;
    letter-spacing: -0.035em;
    text-align: left;
}
.board-list .bbs-admin{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    text-align: right;
}
.board-list .bbs-admin .form-item{
    width: 70px;
    height: 30px;
    margin: 2px;
    padding: 0 5px;
    font-size: 1.4rem;
    vertical-align: top;
}
.board-list .bbs-admin .btn.btn-modify,
.board-list .bbs-admin .btn.btn-delete {
    width: 30px;
    height: 30px;
    margin: 2px;
    border: 1px solid #565656;
    background-repeat: no-repeat;
    background-position: center;
}
.board-list .bbs-admin .btn.btn-modify{
    background-color: #fff;
    background-image: url('../image/board/ic_modify.png');
}
.board-list .bbs-admin .btn.btn-delete{
    background-color: #565656;
    background-image: url('../image/board/ic_delete.png');
}
.board-list .no-data{
    display: block;
    width: 100% !important;
    height: auto;
    padding: 70px 0;
    margin-left: 0;
    border-top: 2px solid #20366f;
    border-bottom: 1px solid #e2e2e2;
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}
.board-list .no-data img{
    margin: 0 auto 35px;
}

/* button */
.board-wrap .btn-wrap {
    margin-top: 30px;
}
.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/board/ic_modify.png');
}
.btn-admin .btn.btn-delete{    
    border-color: #565656;
    background-color: #565656;
    background-image: url('../image/board/ic_delete.png');
}
.board-view + .btn-wrap{
    text-align: right;
}
.btn.btn-board,
.board-write .btn.btn-board {
    display: inline-block;
    min-width: 115px;
    padding: 12px 40px;
    margin: 4px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-align: center;
}
.btn.btn-list{
    background-color: #fff;
    border-color: #20366f;
    color: #20366f;
}
.btn.btn-modify{
    background-color: #20366f;
    border-color: #20366f;
    color: #fff;
}
.btn.btn-delete{
    background-color: #bd466a;
    border-color: #bd466a;
    color: #fff;
}
.btn.btn-reply{
    background-color: #4986ac;
    border-color: #4986ac;
    color: #fff;
}
.btn.btn-cancel{
    background-color: #8e9095;
    border-color: #8e9095;
    color: #fff;
}
.btn.btn-write{
    background-color: #20366f;
    border-color: #20366f;
    color: #fff;
}

/* list::paging */
.paging-wrap{
    margin-top: 40px;
    text-align: center;
}
.paging{
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.paging > li{
    overflow: hidden;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 1px;
    border-radius: 50%;
    vertical-align: top;
    transition: 0.3s ease;
}
.paging > .num:hover,
.paging > .num.on,
.paging > .num:hover > a,
.paging > .num.on > a{
    background-color: #4ea8ca;
    font-weight: 600;
    color: #fff;
}
.paging > li > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0;
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: 0.3s ease;
}
.paging > li:not(.num){
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s ease;
}
.paging > li:not(.num):hover{
    background-color: none;
}
.paging .first{
    background-image: url('../image/board/ic_first.png');
}
.paging .first:hover{    
    background-image: url('../image/board/ic_first_on.png');
}
.paging .prev{
    margin-right: 15px;
    background-image: url('../image/board/ic_prev.png');
}
.paging .prev:hover{
    background-image: url('../image/board/ic_prev_on.png');
}
.paging .next{
    margin-left: 15px;
    background-image: url('../image/board/ic_next.png');
}
.paging .next:hover{    
    background-image: url('../image/board/ic_next_on.png');
}
.paging .last{    
    background-image: url('../image/board/ic_last.png');
}
.paging .last:hover{
    background-image: url('../image/board/ic_last_on.png');
}

/* view */
.board-view{
    letter-spacing: -0.05em;
}
.view-contop{
    padding: 20px 25px;
    background-color: #f6f9ff;
    border-top: 2px solid #014282;
    border-bottom: 1px solid #e2e2e2;
    font-size: 1.6rem;
}
.view-contop + .view-contents{
    border-top: 0;
}
.view-tit{
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #124085;
    text-align: center;
    letter-spacing: -0.04em;
}
.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('../image/board/ic_view_link.png');
    font-weight: 500;
    color: #000;
    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{
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border: 1px solid #f8f8f8;
}
.view-attach{
    padding: 0 25px 40px;
    border-bottom: 1px solid #e2e2e2;
}
.view-attach-con{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px 30px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    background-color: #f8f8f8;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}
.view-attach-con .con > a{
    display: block;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 0 3px;
    background-image: url('../image/board/ic_file2.png');
    transition: 0.3s ease;
    word-break: break-all;
}
.view-attach-con .con > a:hover{
    background-image: url('../image/board/ic_file2_on.png');
}
.view-attach-con .con > a + a{
    margin-top: 5px;
}

/* view::comment */
.comment-wrap{
    margin-top: 50px;
    font-size: 1.6rem;
    line-height: 1.3;
}
.comment-wrap > .tit{
    padding: 0 25px;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.07em;
}
.comment-write-wrap{
    display: flex;
    gap: 15px;
    padding: 0 25px;
    font-size: 1.6rem;
    line-height: 1.4;
}
.comment-write-wrap .form-item{
    height: 80px;
    padding: 20px;
    border-color: #e7e7e7;
    border-radius: 5px;
}
.comment-write-wrap .btn-submit{
    flex: 0 0 auto;
    width: 135px;
    height: 80px;
    background-color: #20366f;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}
.comment-list-wrap{
    margin-top: 35px;
    border-top: 1px solid #e2e2e2;
}
.comment-list-wrap ul > li{
    display: flex;
    flex-wrap: wrap;
    padding: 35px 30px;
    border-bottom: 1px solid #e2e2e2;
    letter-spacing: -0.05em;
}
.comment-contop{
    width: 100%;
}
.comment-name{
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}
.comment-date{
    margin-left: 10px;
    font-size: 1.5rem;
    color: #9e9e9e;
}
.comment-contop .view-cnt{
    margin-bottom: 0;
}
.comment-contop .view-cnt .icon{
    border: 1px solid #d9dde4;
}
.comment-contents{
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
}
.comment-contents .btn-wrap{
    flex: 0 0 auto;
    margin: 0;
    padding-left: 20px;
}
.btn.btn-comment{
    display: inline-block;
    min-width: 60px;
    margin: 2px;
    padding: 3px 0;
    border-radius: 3px;     
    border: 1px solid #4986ac;
    background-color: #fff;
    color: #4986ac;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.07em;
    text-align: center;
}
.btn-comment.btn-modify{
    border-color: #20366f;
    color: #20366f;
}
.btn-comment.btn-delete{
    border-color: #bd466a;
    color: #bd466a;
}
.comment-list-wrap li.comment-reply{
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: 25px 38px;
    background-image: url('../image/board/ic_comment_reply.png');
}
.comment-reply .comment-write-wrap{
    width: 100%;
    padding: 0;
}
.comment-reply .comment-write-wrap .form-item{    
    height: 80px;
}
.comment-reply .comment-write-wrap .btn{
    flex: 0 0 auto;
    width: 110px;
    height: 80px;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

/* view::move */
.view-move{
    display: flex;
    width: 100%;
    margin-top: 70px;
}
.view-move-con{
    display: flex;
    align-items: center;
    padding: 17px 20px;
    font-size: 1.6rem;
    color: #8c8c8c;
    letter-spacing: -0.05em;
}
.view-move-con .tit{
    position: relative;
    width: 80px;
    padding: 0 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    font-weight: 600;
    transition: background 0.3s ease;
}
.view-move-con .tit:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 7px;
    width: 1px;
    height: 11px;
    background-color: #d6d6d6;
    transition: 0.3s ease;
}
.view-move-con .con{
    width: calc(100% - 80px);
    padding: 0 20px;
}
.view-move-con a{
    vertical-align: top;
}
.view-move-con:hover{
    background-color: #f6f9ff;
    color: #000;
}
.view-move-con:hover .tit:after{
    background-color: #000000;
}
.view-move.type1 .view-move-con{
    width: 50%;
    border: 1px solid #e2e2e2;
    transition: 0.3s ease;
}
.view-move.type1 .view-move-con + .view-move-con{
    border-left: 1px solid transparent;
}
.view-move.type1 .view-prev{
   border-radius: 4px 0 0 4px;
}
.view-move.type1 .view-prev .tit{
    background-image: url('../image/board/ic_arrow_prev.png');
}
.view-move.type1 .view-prev:hover .tit{    
    background-image: url('../image/board/ic_arrow_prev_on.png');
}
.view-move.type1 .view-prev .tit:after{
    right: 0;
}
.view-move.type1 .view-next{
    flex-direction: row-reverse;
    border-radius: 0 4px 4px 0;
    text-align: right;
}
.view-move.type1 .view-next .tit{
    background-position: right center;
    background-image: url('../image/board/ic_arrow_next.png');
}
.view-move.type1 .view-next:hover .tit{    
    background-image: url('../image/board/ic_arrow_next_on.png');
}
.view-move.type1 .view-next .tit:after{
    left: 0;
}
.view-move.type1 .view-move-con:hover{
    border-color: #859cc8;
}
.view-move.type2{
    flex-direction: column;
    border-top: 1px solid #e2e2e2;
}
.view-move.type2 .view-move-con .tit:after{
    right: 0;
}
.view-move.type2 .view-move-con{
    border-bottom: 1px solid #e2e2e2;
}
.view-move.type2 .view-prev .tit{
    background-image: url('../image/board/ic_arrow_top.png');
}
.view-move.type2 .view-prev:hover .tit{
    background-image: url('../image/board/ic_arrow_top_on.png');
}
.view-move.type2 .view-next .tit{
    background-image: url('../image/board/ic_arrow_bottom.png');
}
.view-move.type2 .view-next:hover .tit{
    background-image: url('../image/board/ic_arrow_bottom_on.png');
}

/* write */
.write-contop{
    margin-bottom: 10px;
}
.help-text{
    font-size: 14px;
}
.write-wrap{
    border-top: 2px solid #20366f;
}
.write-wrap > li{
    display: table;
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    table-layout: fixed;
}
.write-wrap > li > div{
    display: table-cell;
    min-height: 50px;
    padding: 10px 25px;
    line-height: 1.3;
    vertical-align: middle;
}
.write-wrap .form-tit{
    width: 20%;
    height: 100%;
    background-color: #f6f9ff;
    font-size: 1.7rem;
    font-weight: 600;
    color: #20366f;
    text-align: center;
}
.write-wrap .form-con{
    width: 80%;
    font-size: 1.7rem;
    background-color: #fff;
}
.write-wrap .form-con .btn-small{
    display: inline-block;
    padding: 6px 10px;
    margin: 2px;
    background-color: #575e71;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    vertical-align: middle;
}
.write-wrap > li:not(:has(.form-tit)) .form-con{
    width: 100%;
}

/* search */
/* Type B */
.sch-wrap.type2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background-color: #f6f8fc;
}
.sch-wrap.type2 .form-group:after{
    display: block;
    content: '';
    clear: both;
}
.sch-wrap.type2 .form-item{
    height: 40px;
    margin: 0 2px;
    border-color: #dcdcdc;
    border-radius: 2px;
    font-size: 1.5rem;
    letter-spacing: -0.015em;
}
.sch-wrap.type2 .sch-cate{
    width: 110px;
}
.sch-wrap.type2 .sch-key{
    width: 280px;
    margin: 0 2px;
}
.sch-wrap.type2 .btn-sch{
    height: 40px;
    width: 40px;
    background-color: #20366f;
    background-repeat: no-repeat;
    background-image: url('../image/board/ic_sch.png');
    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 #20366f;
    border-radius: 2px;
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #20366f;
}


/* =====================================

	* responsive

====================================== */
@media screen and (max-width: 1200px) {
    .board-list {
        gap: 70px 30px;
    }
    .board-list > li {
        width: calc((100% - 90px) / 4);
    }
    .board-list .list-con {
        height: 310px;
    }
    .board-list .list-con > a {
        padding: 28px;
    }
    .board-list .bbs-no {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 1024px){
    .board-list {
        gap: 70px 25px;
    }
    .board-list > li {
        width: calc((100% - 75px) / 4);
    }
    .board-list .list-con {
        height: 270px;
    }
    .board-list .list-con > a {
        padding: 20px;
    }
    .board-list .bbs-no {
        font-size: 2rem;
    }
    .board-list .bbs-tit {
        margin-top: 20px;
        width: 86px;
        padding: 8px 3px;
    }
    .board-list .no-data {
        padding: 50px 0;
    }

}

@media screen and (max-width: 768px){    
    
    /* base */
    /* form */
    .form-item{
        height: 30px;
        margin: 1px;
        padding: 0 10px;
    }
    .form-item.w-10p{
        min-width: 50px;
    }
    .form-item.w-20p{
        min-width: 120px;
    }
    .write-wrap .help-text{
        font-size: 13px;
    }
    .form-group:has(.form-group-text){
        flex-wrap: wrap;
    }
    .form-group .form-group-text{
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    /* radio, checkbox */
    .radio-wrap,
    .checkbox-wrap{
        gap: 5px 15px;
    }
    .radio-group, 
    .checkbox-group{
        padding-left: 25px;
    }
    .cst .radio-group input[type="radio"], 
    .cst .checkbox-group input[type="checkbox"]{
        margin-top: -4px;
        margin-left: -25px;
    }
    .cst .radio-group input[type="radio"], 
    .cst .checkbox-group input[type="checkbox"]{
        margin-right: 7px;
    }

    /* input file custom */
    .filebox label{
        width: 85px;
        padding: 7px 0;
        font-size: 14px;
    }
    .filebox .upload-name{
        width: calc(100% - 90px);
    }

    /* .board-list */
    .board-list {
        gap: 20px;
        margin-bottom: -20px;
    }
    .board-list > li {
        width: calc((100% - 20px) / 2);
    }       
    .board-list .active .list-con {
        box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.05);
    }
    .board-list .list-con {
        height: auto;
    }
    .board-list .list-con:hover{
        border-color: #d6d6d6;
        box-shadow:none;
    }
    .board-list .list-con > a {
        padding: 20px 15px 65%;
    }
    .board-list .bbs-tit{
        margin: 10px 0 20px;
        font-size: 14px;
    }
    .board-list .bbs-date {
        font-size: 12px;
    }
    .board-list .bbs-no {
        font-size: 16px;
    }
    .board-list .bbs-admin{
        display: none;
    }
    .board-list .no-data{
        padding: 30px 15px;
        font-size: 14px;
    }
    .board-list .no-data img {
        margin: 0 auto 15px;
        width: 25px;
    }

    /* button */   
    .board-wrap .btn-wrap {
        margin-top: 20px;
    } 
    .btn.btn-board, 
    .board-write .btn.btn-board {
        min-width: initial;
        padding: 8px 20px;
        font-size: 14px;
    }
    .board-view + .btn-wrap{
        text-align: center;
    }
    .btn-board.btn-list{
        float: none !important;
    }
    
    /* list::paging */
    .paging-wrap{
        margin-top: 30px;
    }
    .paging > li{
        width: 25px;
        height: 25px;
    }
    .paging > li > a{
        font-size: 14px;
    }
    .paging > li:not(.num){
        background-size: auto 10px;
    }
    .paging .prev{
        margin-right: 5px;
    }
    .paging .next{
        margin-left: 5px;
    }

    /* view */
    .view-contop{
        padding: 20px 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: 22px;
        height: 22px;
        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;
    }

    .view-attach{
        padding: 0 0 20px;
    }
    .view-attach-con{
        padding: 15px;
        border-radius: 3px;
        font-size: 14px;
    }
    .view-attach-con .con > a{   
        padding-left: 20px;
        background-size: 10px;
        font-size: 14px;     
        line-height: 1.3;
    }

    /* view::comment */
    .comment-wrap{
        margin-top: 30px;
        font-size: 14px;
    }
    .comment-wrap > .tit{
        padding: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .comment-write-wrap{
        gap: 5px;
        padding: 0;
    }
    .comment-write-wrap .form-item{
        height: 50px;
        padding: 10px;
        border-radius: 3px;
    }
    .comment-write-wrap .btn-submit{
        width: 70px;
        height: 50px;
        border-radius: 3px;
        font-size: 14px;
    }
    .comment-list-wrap{
        margin-top: 15px;
        border-radius: 3px;
    }
    .comment-list-wrap ul > li{
        padding: 15px 0;
    }
    .comment-name{
        font-size: 14px;
    }
    .comment-date{
        margin-left: 5px;
        font-size: 12px;
    }
    .comment-contents{
        flex-direction: column;
        align-items: start;
        width: 100%;
        margin-top: 5px;
        font-size: 14px;
    }
    .comment-contents .btn-wrap{
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
        text-align: right;
    }
    .btn.btn-comment{
        min-width: initial;
        padding: 3px 12px;
        font-size: 12px;
    }
    .comment-list-wrap li.comment-reply{
        padding-left: 20px;
        background-size: 13px;
        background-position: 0 17px;
    }
    .comment-reply .comment-write-wrap .form-item{
        height: 50px;
    }
    .comment-reply .comment-write-wrap .btn{
        width: 50px;
        height: 50px;
        border-radius: 3px;
    }
    
    /* view::move */
    .view-move{
        margin-top: 20px;
    }
    .view-move-con{
        padding: 8px 10px;
        font-size: 14px;
    }
    .view-move-con .tit{
        width: 65px;
        padding: 0 15px;
        background-size: 7px;
    }
    .view-move-con .tit:after{
        top: 6px;
        width: 1px;
        height: 10px;
    }
    .view-move-con .con{
        width: calc(100% - 65px);
        padding: 0;
    }
    .view-move .view-prev .con{
        padding-left: 15px;
    }
    .view-move .view-next .con{
        padding-right: 15px;
    }
    .view-move.type2 .view-move-con .con{
        padding: 0;
        padding-left: 15px;
    }
    
    .view-move.type1 .view-prev{
        border-radius: 3px 0 0 3px;
    }
    .view-move.type1 .view-next{
        border-radius: 0 3px 3px 0;
    }
    .view-move.type2 .view-move-con .tit{
        background-size: 10px;
    }

    /* write */
    .write-wrap > li{
        display: block;
    }
    .write-wrap > li > div{
        display: block;
        width: 100%;
        min-height: initial;
    }
    .write-wrap .form-tit,
    .write-wrap .form-con{
        width: 100%;
        padding: 8px 10px;
        font-size: 14px;
        text-align: left;
    }
    .write-wrap .form-tit + .form-con{
        /* border-top: 1px solid #e2e2e2; */
    }
    .write-wrap .form-con .btn-small{
        padding: 4px 8px;
        font-size: 12px;
    }
    .board-list .no-data img {
        margin: 0 auto 15px;
        width: 25px;
    }

    /* Type B */
    .sch-wrap.type2{
        display: block;
        width: 100%;
        padding: 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{
        width: 40px;
        height: 40px;
        margin-top: 10px;
        background-size: 20px;
    }
    .sch-wrap.type2 .btn-reset{
        width: 100%;
        margin: 0;
        margin-top: 10px;
        padding: 0 10px;
        border-radius: 1px;
        font-size: 14px;
    }
}