#contentBodyWrap .guide-wrap {
    padding-top: 62px;
}
#contentBodyWrap .guide-wrap .guide-title-box {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 16px 0;
}
#contentBodyWrap .guide-wrap .guide-title-box .title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: normal;
    color: var(--text200);
}

/* search input */
.faq-search {
    margin-top: 37px;
    padding: 0 16px;
}
.faq-search .field{
    margin-right: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px 8px 10px;
    width: 100%;
    height: 42px;
    background: #EFEFF2;
    border-radius: 2px;
}
.faq-search .field .faq-search-input {
    padding: 0;
    height: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text400);
    background-color: transparent;
    border: none;
}
.faq-search .field .btn-search {
    position: relative;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: transparent url("/static/global/images/icons/search.svg") no-repeat 0 0;
    overflow: hidden;
    text-indent: -9999px;
}

.faq-ask-box {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
    font-weight: 400;
    text-align: center;
}
.faq-ask-txt {
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #000;
}
.faq-ask-btn {
    display: block;
    padding: 13px 0;
    font-size: 0.9375rem;
    color: var(--nc-blue1);
    border: 1px solid var(--nc-blue1);
    border-radius: 2px;
}

.contents-header {
    padding: 0 16px;
    display: flex;
    justify-content: end;
}

.contents-header .select-wrap {
    margin-top: 26px;
    display: flex;
    align-items: center;
    position: relative;
}
.contents-header .select-wrap .faqCategory {
    padding-right: 28px;
    width: 100%;
    min-height: 26px;
    text-align: right;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text400);
}
.contents-header .select-wrap .icon-expand-more {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

#faqWrap {
    margin-top: 4px;
    border-top: 2px solid #5D5D5D;
}

#faqWrap .faq-list-box {
    padding: 17px 20px 16px;
    border-bottom: 1px solid #D6DCE0;
    cursor: pointer;
}
#faqWrap .faq-list-box.ui-state-active {
    /* Accordiorn 아이템 열림 상태 */
    border-bottom: none;
}
#faqWrap .faq-list-box.no-search-result {
    /* 검색 결과 없음 */
    border-bottom: none;
}

#faqWrap .faq-list-box .faq-list-txt {
    color: var(--nc-blue1);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.375rem;
}
#faqWrap .faq-list-box .faq-list-tit {
    color: var(--text200);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 2rem;
}

.faq-content-box {
    background-color: #FFF;
    padding-bottom: 16px;
    border-bottom: 1px solid #D6DCE0;
}
.faq-content-box .faq-content {
    padding: 20px 20px 12px;
    background-color: #F6F6F6;
}
.faq-content-box .faq-content .faq-content-txt {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: var(--text300);
}