#board {
    padding: 20px 0;
}
.customerServiceTab{
    display: none;
}
.customerServiceTab nav ul{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.customerServiceTab nav ul li a{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: #111111;
}

#board section{
    padding: 30px 0 120px;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
#board .titleBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#board .boardTitle{
    font-weight: 600;
    font-size: 48px;
    line-height: 62px;
    letter-spacing: -0.025em;
    color: #111111;
}
#board .linkBox{
    display: flex;
    gap: 8px;
}
#board .linkBox.mobile{
    display: none;
}
#board .linkBox input{
    width: 120px;
    border: 0;
    border-bottom: 1px solid #F1F1F5;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}
#board .linkBox a{
    display: flex;
    align-items: center;
    padding: 0 20px;
    border: 1px solid;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.025em;
    transition: all 0.5s;
    color: #fff;
}
#board .linkBox a.boardModify{
    border-color: #767676;
    background-color: #767676;
}
#board .linkBox a.boardModify:hover{
    background-color: transparent;
    color: #767676;
}
#board .linkBox a.boardDelete{
    border-color: #DC0000;
    background-color: #DC0000;
}
#board .linkBox a.boardDelete:hover{
    background-color: transparent;
    color: #DC0000;
}
#board .linkBox a.boardList{
    border-color: #111111;
    background-color: #111111;
}
#board .linkBox a.boardList:hover{
    background-color: transparent;
    color: #111111;
}
.boardTable{
    margin-top: 50px;
    width: 100%;
    border-top: 1px solid #111111;
}
.boardTable .tableRow{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #F1F1F5;
}
.boardTable .empty{
    text-align: center;
    padding: 50px 0;
    border-bottom: 1px solid #F1F1F5;
}
.boardTable .tableRow .tableItem{
    text-align: center;
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
}
.boardTable .tableRow .tableItem.no{
    width: 5%;
}
.boardTable .tableRow .tableItem.title{
    width: 75%;
}
.boardTable .tableRow .tableItem.title a{
    padding-left: 10px;
    display: block;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: #111111;
}
.boardTable .tableRow .tableItem.writer{
    width: 10%;
}
.boardTable .tableRow .tableItem.date{
    width: 10%;
}

.viewTable{
    margin-top: 50px;
    width: 100%;
    border-top: 1px solid #111111;
}
.viewTable .tableRow{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #F1F1F5;
}
.viewTable .tableRow .tableItem{
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #767676;
}
.viewTable .tableRow .tableItem.no{
    width: 5%;
    color: #111111;
}
.viewTable .tableRow .tableItem.title{
    width: 75%;
    color: #111111;
    font-size: 16px;
    line-height: 24px;
}
.viewTable .tableRow .tableItem.name{
    width: 10%;
}
.viewTable .tableRow .tableItem.date{
    width: 10%;
}
.viewTable .tableRow .tableItem.content{
    min-height: 300px;
}

#board.view .btnBox{
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    gap: 10px;
}
#board.view .btnBox a{
    background-color: #111111;
    padding: 5px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.025em;
    border: 1px solid #111111;
    transition: all 0.5s;
}
#board.view .btnBox a:hover{
    background-color: #ffffff;
    color: #111111;
}
#board.view .btnBox button{
    background-color: #111111;
    padding: 5px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.025em;
    border: 1px solid #111111;
    transition: all 0.5s;
}
#board.view .btnBox button:hover{
    background-color: #ffffff;
    color: #111111;
}
/* faq */
.faq {
    margin-top: 50px;
}
.faq .faqTab{
    display: flex;
}
.faq .faqTab li{
    flex: 1;
    position: relative;
}
.faq .faqTab li a{
    padding: 10px;
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.025em;
    color: #505050;
    border-bottom: 1px solid #F1F1F5;
    transition: all 0.5s;
}
.faq .faqTab li::after{
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background-color: #111111;
    opacity: 0;
    transition: all 0.5s;
}
.faq .faqTab li.on a,.faq .faqTab li:hover a{
    font-weight: 600;
    color: #111111;
}
.faq .faqTab li.on::after,.faq .faqTab li:hover::after{
    opacity: 1;
}
.faq #faqAccordion .accordion-item{
    border: 0;
    border-bottom: 1px solid #F1F1F5;
}
.faq #faqAccordion .accordion-item .accordion-button{
    padding-left: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #111111;
    display: flex;
    gap: 10px;
}
.faq #faqAccordion .accordion-item .accordion-button span.category{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: #767676;
}
.faq #faqAccordion .accordion-item .accordion-button i{
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: #111111;
}
.faq #faqAccordion .accordion-item .accordion-button:not(.collapsed){
    color: #111;
    background-color: transparent;
}
.faq #faqAccordion .accordion-item .accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq #faqAccordion .accordion-body{
    background-color: #F7F7FB;
    padding: 30px;
}
.faq #faqAccordion .accordion-body *{
    background-color: transparent !important;
}
.faq #faqAccordion .empty{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
}
.boardHelper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.btn_write{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 36px;
    background: #111111;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}
.faqSearch{
    position: relative;
}
.faqSearch select{
    -webkit-appearance: none;  /* 크롬 화살표 없애기 */
    -moz-appearance: none; /* 파이어폭스 화살표 없애기 */
    appearance: none;  /* 화살표 없애기 */
    height: 56px;
    width: 100px;
    padding: 0 10px;
    background: url(/resources/images/select_icon.png) no-repeat 85% 50%;
}
.faqSearch input{
    height: 56px;
    width: 300px;
    padding-left: 30px;
    position: relative;
}
.faqSearch input::after{
    position: absolute;
    display: block;
    content: '';
    background: #f00;
    width: 30px;
    height: 30px;
}
.faqSearch .btn-search{
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translate(0, -50%);
}
#writeForm{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
#writeForm input{
    flex: 0 0 20%;
}
#writeForm input + input{
    margin-left: 15px;
}
#writeForm textarea{
    margin-top: 10px;
    flex: 0 0 100%;
}
#writeForm input[type=password]{
    position: absolute;
    bottom: 0;
    right: 90px;
    width: 20%;
}
.formBtn{
    flex: 0 0 100%;
    gap: 10px;
    display: flex;
    justify-content: flex-end;
}
.formBtn input{
    flex: 0 0 18%;
}
.formBtn button{
    background-color: #111111;
    color: #fff;
    border: 1px solid #111111;
    padding:0 20px;
    transition: all 0.5s;
    height: 38px;
}
#writeForm .formBtn button:hover{
    background-color: transparent;
    color: #111111;
}
.commentBox {
    margin-top: 10px;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
}
.commentBox input{
    flex: 0 0 30%;
    height: 60px;
}
.commentBox textarea{
    flex: 0 0 100%;
}
.commentBox button{
    background-color: #111111;
    padding: 5px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.025em;
    border: 1px solid #111111;
    transition: all 0.5s;
    margin-left: auto;
}
.commentBox button:hover{
    background-color: #ffffff;
    color: #111111;
}
.commentBox#recommentBox{
    padding-bottom: 10px;
    border-bottom: 1px solid #F1F1F5;
}
.commentList .comment{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F1F1F5;
}
.commentList .comment .infoBox{
    display: flex;
    align-items: center;
    gap: 30px;
}
.commentList .comment .name{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #111111;
}
.commentList .comment .date{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #767676;
}
#board.view .commentList .comment .btnBox{
    margin-top: 0;
}
#board.view .commentList .comment button{
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.025em;
    color: #767676;
    background-color: transparent;
    padding: 0;
    border: 0;
}
.commentList .comment .contentBox{
    margin-top: 10px;
    flex : 0 0 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #767676;
}
.commentList .recomment{
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #F1F1F5;
}
.commentList .recomment .recommentIcon{
    padding-top: 15px;
}
.commentList .recomment .comment{
    flex: auto;
    border: 0;
}
.commentBox .comment_btn_box{
    flex: 0 0 100%;
    display: flex;
    justify-content: flex-end;
}
.commentBox .comment_btn_box button{
    margin-left: 10px;
}
.deleteBox{
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    gap: 10px;
}
.deleteBox input{
    width: 120px;
    border: 0;
    border-bottom: 1px solid #F1F1F5;
}
#board.view .commentList .comment .deleteBox button{
    background-color: #DC0000;
    padding: 5px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.025em;
    border: 1px solid #DC0000;
    transition: all 0.5s;
    margin-left: auto;
}
#board.view .commentList .comment .deleteBox button:hover{
    background-color: #ffffff;
    color: #DC0000;
}
@media screen and (max-width: 768px) {
    #board section{
        padding: 20px;
    }
    #board .titleBox{
        flex-direction: column;
        align-items: flex-start;
    }
    #board .boardTitle{
        font-weight: 600;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -0.025em;
    }
    .titleBox > *{
        width: 100%;
    }
    .titleBox > form{
        margin-top: 15px;
    }
    .faqSearch select{
        width: 25%;
    }
    .faqSearch input{
        width: 74%;
    }
    .faqSearch .btn-search{
        left: 85px;
    }
    .faq{
        margin-top: 10px;
    }
    .faq .faqTab{
        display: none;
    }
    .faq #faqAccordion .accordion-item .accordion-button span.category{
        display: none;
    }
    .boardTable .tableRow .tableItem{
        font-weight: 400;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: -0.025em;
        color: #767676;
        padding: 5px;
    }
    .boardTable .tableRow .tableItem.no{
        width: 100%;
        text-align: left;
    }
    .boardTable .tableRow .tableItem.title{
        width: 100%;
        text-align: left;
    }
    .boardTable .tableRow .tableItem.title a{
        padding-left: 0;
    }
    .boardTable .tableRow .tableItem.writer{
        width: auto;
        text-align: left;
    }
    .boardTable .tableRow .tableItem.date{
        width: auto;
        text-align: left;
    }
    .viewTable{
        border-top: 0;
        margin-top: 24px;
    }
    .viewTable .tableRow .tableItem{
        padding: 10px 0;
    }
    .viewTable .tableRow .tableItem.no{
        display: none;
    }
    .viewTable .tableRow .tableItem.title{
        width: 100%;
        border-bottom: 1px solid #111111;
    }
    .viewTable .tableRow .tableItem.name{
        width: auto;
        text-align: left;
    }
    .viewTable .tableRow .tableItem.date{
        width: auto;
        text-align: left;
    }
    .viewTable .tableRow .tableItem.date::before{
        display: inline-block;
        padding: 0 5px;
        content:'|'
    }
    #writeForm{
        justify-content: space-between;
    }
    #writeForm input{
        flex: 0 0 48%;
    }
    #writeForm input[name=bd_title]{
        flex: 0 0 100%;
    }
    #writeForm input + input{
        margin: 0;
    }
    #writeForm input[type=password]{
        position: static;
    }
    .commentBox {
        gap: 10px 2%;
    }
    #board.view .btnBox{
        margin-top: 10px;
    }
    #board.view .btnBox button{
        flex: 1;
    }
    .commentBox input{
        flex: 0 0 49%;
    }
    .commentBox .comment_btn_box{
        gap: 10px;
    }
    .commentBox .comment_btn_box button{
        flex: 1;
        margin-left: 0;
    }
    #board .linkBox{
        display: none;
    }
    #board .linkBox.mobile{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-top: 10px;
    }
    #board .linkBox.mobile input{
        width: auto;
        margin-right: auto;
    }
    #board .linkBox a.boardList{
        flex: 0 0 100%;
        padding: 10px 20px;
        justify-content: center;
    }
}