/* 공지사항 */
.title_wrap {
    margin-bottom:2rem;
    border-radius: 0;
    background: none;
    padding: 0;
    text-align: left;
}

.title_wrap .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #ddd;
}

.boardList .board_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.boardList .board_top .bd_cnt span {
    color: var(--color-org);
    font-weight: 500;
}

.boardList .board_top .search_wrap select {
    min-width: auto;
    padding: 0.875rem 2.5rem 0.75rem 1rem;
    vertical-align: middle;
    border-color: #ddd;
}

.boardList .board_top .search_wrap .btn {
    height: 42px;
    font-size: 14px;
}

.notice .item_num {
    width: 10%;
}

.notice .item_title {
    width: calc(100% - 10% - 10% - 15%);
}

.notice .item_hit {
    width: 10%;
}

.notice .item_date {
    width: 15%;
}

.bd_list_item.fix .item_num .icon_box {
    width: 22px;
    height: 22px;
    background: url('../../img/renew/member/icon-information.svg') center no-repeat;
    text-indent: -99999px;
    display: block;
    margin: 0 auto;
}

.bd_list_item .item_title a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    line-height: 1.4;
}

.service_page .post_nav {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.service_page .post_nav>div {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    background: #f6f6f6;
    cursor: pointer;
}

.service_page .post_nav>div:first-child {
    margin-bottom: 10px;
}

.service_page .post_nav p {
    font-weight: 500;
    color: #444;
    box-sizing: border-box;
    padding-left: 0.5rem;
    width: 80px;
}

.service_page .post_nav span {
    color: #444;
    width: calc(100% - 80px - 22px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service_page .post_nav .icon_box {
    width: 26px;
    height: 26px;
    background: url('../../img/renew/common/icon-right-arrow-fill.svg') no-repeat center center / contain;
}

.service_page .post_nav .before .icon_box {
    transform: rotate(90deg);
}

.service_page .post_nav .after .icon_box {
    transform: rotate(-90deg);
}

.service_page .post_nav .goList_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

/* 자주하는 질문 */
.faqTop5_wrap {
    box-sizing: border-box;
    border: 2px solid #ddd;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.faqTop5_wrap .faqTop5_tit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-deep-blue);
    margin-bottom: 1.5rem;
}

.faqTop5_wrap .faqTop5_tit:before {
    content:'';
    width: 22px;
    height: 22px;
    background: url('../../img/renew/member/icon_question_mark.svg') center no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    margin-top: -3px;
}

.faqTop5_wrap  .faqTop5 {
    padding-left: 0.25rem;
}

.faqTop5_wrap  .faqTop5 li a {
    box-sizing: border-box;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
    transition: 0.2s all linear;
    font-size: 17px;
}

.faqTop5_wrap .faqTop5 li a:before {
    content:'Q.';
    font-size: 1.125rem;
    font-family: 'YdestreetL';
    font-weight: 600;
    color: var(--color-red);
    position: absolute;
    left: 0;
    top: -2px;
}

.faqTop5_wrap  .faqTop5 li + li {
    margin-top: 1rem;
}

.faqTop5_wrap  .faqTop5 li a:hover,
.faqTop5_wrap  .faqTop5 li a.on {
    color: var(--color-red);
    transition: 0.2s all linear;
}

.accordion_wrap {
    border-top:2px solid var(--color-deep-blue);
}

.accordion_wrap .accordion {

}

.accordion_wrap .accordion .faq_title {
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.75rem 1.5rem 1.75rem 4.5rem;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s all linear;
}

.accordion_wrap .accordion .faq_title:before {
    content: 'Q';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-family: 'YdestreetL';
    font-weight: 600;
    background: var(--color-red);
    color: #fff;
    position: absolute;
    left: 1.5rem;
    top: 1.25rem;
}

.accordion_wrap .accordion .faq_title:after {
    content:'';
    width: 25px;
    height: 25px;
    background: url('../../img/renew/common/icon-right-arrow-fill.svg');
    transform: rotate(-90deg);
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    transition: 0.2s all linear;
}

.accordion_wrap .accordion .faq_title.active {
    color: var(--color-red);
    transition: 0.2s all linear;
}

.accordion_wrap .accordion .faq_title.active:after {
    transform: rotate(90deg);
    transition: 0.2s all linear;
}

.accordion_wrap .accordion .faq_answer {
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    padding: 2rem;
    background: #f8f8f8;
    display: none;
}

/* 지사안내 */
.branch .choice_box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 0.625rem;
    box-sizing: border-box;
    padding: 1.25rem;
    border: 1px solid #ddd;
    border-radius: 1rem;
}

.branch .choice_box a {
    width: calc((100% - (0.625rem * 5)) / 6);
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.5px;
    padding: 0.75rem 0;
    border-radius: 2rem;
    transition: 0.2s all linear;
}

.branch .choice_box a:hover,
.branch .choice_box a.active {
    color: #fff;
    background: var(--color-red);
    transition: 0.2s all linear;
}

.branch .board_table p {
    width: calc(100% / 3);
}

.branch .bd_list_item p {
    padding: 0.875rem 0;
    word-break:keep-all;
}

/* 사이트맵 */
.site_map .map_wrap {
    border: 1px solid #ddd;
    padding: 3.75rem 2rem;
    border-radius: 1rem;
}

.site_map .map_wrap + .map_wrap {
    margin-top: 3.75rem;
}

.site_map .map_wrap .box {
    width: 165px;
    height: 40px;
    border-radius: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site_map .map_wrap li .box {
    width: 100%;
}

.site_map .map_wrap .box.menu {
    background: var(--color-red);
    color: #fff;
    font-size: 1.125rem;
    margin: 0 auto 5rem;
    position: relative;
}

.site_map .map_wrap .box.menu::after {
    height: 3.5rem;
    bottom: -3.5rem;
    left: calc(50% - 1px) !important;
}

.site_map .map_wrap .box.fst_depth {
    background: var(--color-deep-blue);
    color: #FFF;
    margin-bottom: 1.5rem;
    position: relative;
}

.site_map .map_wrap .box.fst_depth::after,
.site_map .map_wrap .box.fst_depth::before,
.site_map .map_wrap .box.menu::after {
    content: '';
    display: block;
    position: absolute;
    background: #ddd;
    width: 1px;
    left: 50%;
}


.site_map .map_wrap .box.fst_depth::before {
    height: 25px;
    top: -25px;
}

.site_map .map_wrap .box.fst_depth::after {
    height: 30px;
    bottom: -30px;
}

.site_map .map_wrap .box.sec_depth {
    background: #fff;
    color: #888;
    border: 1px solid #888;
    position: relative;
    letter-spacing: -1px;
}

.site_map .map_wrap .box.sec_depth:not(:last-child) {
    margin-bottom: 20px;
}

.site_map .map_wrap .box.sec_depth:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 20px;
    background: #ddd;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -21px;
}

.site_map .map {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 1.5rem;
}

.site_map .map::before {
    content: '';
    display: block;
    position: absolute;
    width: 82.25%;
    height: 1px;
    background: #ddd;
    top: -25px;
    left: 50%;
    transform: translate(-50%, 0);
}

.site_map .map li {
    width: calc((100% - (1.5rem * 4)) / 5);
}

/* 자료 요청 */
.data .board_top {
    justify-content: end;
}

.data .bd_list_item a {
    padding: 0.875rem 0;
}

.data .item_num {
    width: 6%;
}

.data .item_filename {
    width: calc(100% - 6% - (15% * 2) - 14% - 10%);
}

.data .item_author {
    width: 10%;
}

.data .item_cate,
.data .item_date {
    width: 15%;
}

.data .item_state {
    width: 14%;
}

.data .item_cate span,
.data .item_filename span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.data .item_cate span {
    color: var(--color-red);
    border: 1px solid var(--color-red);
    font-size: 14px;
    padding: 5px 0.75rem;
    border-radius: 2rem;
    letter-spacing: -0.5px;
    width: 120px;
    margin: 0 auto;
}

.data .item_state span {
    border: 1px solid var(--color-red);
    font-size: 14px;
    padding: 5px 0.75rem;
    border-radius: 5px;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.data .item_state .ready {
    color: var(--color-red);
}

.data .item_state .complete {
    background: var(--color-red);
    color: #fff;
}

.data .btn_wrap {
    margin-top: 1rem;
}

.data.detail .comment_wrap {
    margin-top: 2rem;
    box-sizing: border-box;
}

.data.detail .comment_wrap .comment_write.top {
    display: none;
}

.data.detail .comment_wrap .comment_list {

}

.data.detail .comment_wrap .comment_list li {
    position: relative;
    box-sizing: border-box;
}

.data.detail .comment_wrap .comment_list li:before {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 0.875rem solid var(--color-deep-blue);
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
    position: absolute;
    left: 0;
    top: -0.875rem;
}

.data.detail .comment_wrap .comment_list li + li {
    margin-top: 2rem;
}

.data.detail .comment_wrap .comment_list li .name {
    display: block;
    width: 100%;
    background: var(--color-deep-blue);
    color: #fff;
    box-sizing: border-box;
    padding: 1rem 1.5rem;
    overflow: hidden;
}

.data.detail .comment_wrap .comment_list li .comment_control {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    color: #fff;
}

.data.detail .comment_wrap .comment_list li .comment_control button {
    display: inline-block;
    color: var(--color-red);
    border: 1px solid var(--color-red);
    background: #fff;
    padding: 5px 0.5rem;
    font-weight: 600;
    border-radius: 5px;
    font-size: 90%;
    margin-top: -0.375rem;
    transition: 0.2s all linear;
}

.data.detail .comment_wrap .comment_list li .comment_control button + button {
    margin-left: 0.25rem;
}

.data.detail .comment_wrap .comment_list li .comment_control button:hover {
    background: var(--color-red);
    color: #fff;
    transition: 0.2s all linear;
}

.data.detail .comment_wrap .comment_list li .comment_control .date {
    margin-left: 1rem;
}

.data.detail .comment_wrap .comment_list li pre,
.data.detail .comment_wrap .comment_list li textarea {
    background: #fff;
    box-sizing: border-box;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0 0 1rem 1rem;
    line-height: 1.4;
}

.data.detail .comment_wrap .comment_list li.reply {

}

/* 이용약관, 개인정보처리방침 */
.privacy .text_box {
    width: 100%;
    height: 820px;
    background: #f8f8f8;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
    color: #000;
    overflow: auto;
}


/* 반응형 */
@media(max-width:1200px){
    /* 자료요청 */
    .data .item_cate {
        width: 18%;
    }
    .data .item_filename {
        width: calc(100% - 6% - 15% - 18% - 14% - 10%);
    }
}

@media(max-width:1024px){
    .title_wrap .title {
        font-size: 24px;
    }

    /* 자주하는 질문 */
    .tab_contents .tab_con {
        min-height: 400px;
    }
}

@media(max-width:970px){

    /* 사이트맵 */
    .site_map .map_wrap {
        padding: 3.25rem 1.5rem;
    }
    .site_map .map {
        gap: 1rem;
    }
    .site_map .map li {
        width: calc((100% - (1rem * 4)) / 5);
    }

}

@media(max-width:768px){
    .title_wrap .title {
        font-size: 22px;
    }

    /* 자주하는 질문 */
    .accordion_wrap .accordion .faq_title {
        font-size: 1rem;
        padding: 1.75rem 1rem 1.75rem 3.5rem;
    }
    .accordion_wrap .accordion .faq_title:before {
        width: 28px;
        height: 28px;
        left: 1rem;
        line-height: 27px;
    }
    .accordion_wrap .accordion .faq_title:after {
        right: 1rem;
    }

    /* 지사안내 */
    .branch .choice_box a {
        width: calc((100% - (0.625rem * 3)) / 4);
    }

    /* 사이트맵 */
    .site_map .map_wrap {
        padding: 2.5rem 1rem;
    }
    .site_map .map {
        gap: 0.5rem;
    }
    .site_map .map li {
        width: calc((100% - (0.5rem * 4)) / 5);
    }
    .site_map .map_wrap .box.sec_depth,
    .site_map .map_wrap .box.fst_depth {
        letter-spacing: -1px;
    }
    .site_map .map_wrap .box {
        width: 150px;
    }
    .site_map .map_wrap .box.menu {
        margin: 0 auto 3.75rem;
    }
    .site_map .map_wrap .box.menu::after {
        height: 2.25rem;
        bottom: -2.25rem;
        left: 50% !important;
    }
    .site_map .map::before {
        width: 81%;
    }

    /* 자료요청 */
    .data .item_cate span {
        letter-spacing: -1px;
        width: 110px;
        padding: 5px 0;
        font-size: 13px;
    }
    .data .item_cate {
        width: 20%;
    }
    .data .item_filename {
        width: calc(100% - 6% - 15% - 20% - 14% - 10%);
    }
    .data .item_date {
        letter-spacing: -0.5px;
    }

}

@media(max-width:640px){
    .title_wrap .title {
        font-size: 20px;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    /* 공지사항 */
    .notice .item_num {
        width: 60px;
    }
    .notice .bd_head .item_hit, .notice .bd_head .item_date {
        display: none;
    }
    .board_table .bd_list_item .item_info,
    .notice .item_title {
        width: calc(100% - 60px);
    }
    .board_table .item_hit a:before {
        content: '';
        width: 16px;
        height: 16px;
        background: url(../../img/withsam/sub/icon-view.png) no-repeat center;
        background-size: contain;
        display: inline-block;
        vertical-align: middle;
        margin-top: -1px;
        margin-right: 0.25rem;
    }
    .board_table .bd_list_item .item_info p {
        padding: 0;
    }
    .notice .item_hit, .notice .item_date {
        width: auto;
    }
    .board_table .bd_list_item .item_title {
        padding-bottom: 2.25rem;
    }
    .search_wrap input[type="text"] {
        padding: 0 10px;
        height: 40px;
    }
    .boardList .board_top .search_wrap select {
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        margin-top: -2px;
    }
    .boardList .board_top .search_wrap .btn {
        height: 40px;
        font-size: 13px;
    }

    /* 자주하는 질문 */
    .accordion_wrap .accordion .faq_title {
        font-size: 15px;
        padding: 1.375rem 3rem 1.5rem 3.5rem;
        word-break: keep-all;
        line-height: 1.4;
    }
    .accordion_wrap .accordion .faq_title:before {
        font-size: 14px;
        top: 17px;
    }
    .accordion_wrap .accordion .faq_title:after {
        top: 19px;
    }
    .accordion_wrap .accordion .faq_answer {
        padding: 1.5rem;
    }

    /* 사이트맵 */
    .site_map .map_wrap {
        padding: 0;
        overflow: hidden;
    }
    .site_map .map_wrap .box.menu {
        margin: 0;
        padding:1rem;
        width: 100%;
        font-size: 1rem;
        border-radius: 0;
        height: auto;
    }
    .site_map .map_wrap .box.fst_depth::after, .site_map .map_wrap .box.fst_depth::before, .site_map .map_wrap .box.menu::after, .site_map .map::before, .site_map .map_wrap .box.sec_depth:not(:last-child)::after {
        display: none;
    }
    .site_map .map {
        gap: 1rem;
        flex-wrap: wrap;
        padding: 2rem 1rem 1.25rem;
    }
    .site_map .map li {
        width: 100%;
        margin-bottom: 1rem;
    }
    .site_map .map_wrap .box.fst_depth {
        width: calc((100% - 8px - 20px) / 3);
        height: 36px;
        margin-bottom: 1rem;
    }
    .site_map .map_wrap .box.sec_depth {
        padding: 0;
        box-sizing: border-box;
        width: calc((100% - 8px - 20px) / 3);
        display: inline-block;
        text-align: center;
        height: 34px;
        border-radius: 7px;
        line-height: 32px;
    }
    .site_map .map_wrap .box.sec_depth + .sec_depth {
        margin-left: 10px;
    }
    .site_map .map_wrap .box.sec_depth + .sec_depth:nth-child(3n+2) {
        margin-left: 0px;
    }
    .site_map .map_wrap .box.sec_depth:not(:last-child) {
        margin-bottom: 10px;
    }

    /* 자료요청 */
    .board_table .bd_head p {
        display: none;
    }
    .board_table .bd_head p.item_num,
    .board_table .bd_head p.item_filename {
        display: block;
    }
    .data .item_num {
        width: 60px;
    }
    .data .board_table .bd_list_item {
        padding: 1rem 0 0.5rem
    }
    .data .board_table .bd_head p.item_filename,
    .data .board_table .bd_list_item .item_filename,
    .data .board_table .bd_list_item .item_info {
        width: calc(100% - 60px);
    }
    .data .board_table .bd_list_item .item_filename {
        padding-bottom: 2.25rem;
    }
    .data .board_table .bd_list_item .item_filename a {
        display: flex;
        gap: 0.25rem;
        align-items: center;
        padding: 0;
    }
    .data .item_filename span.cate {
        font-size: 90%;
        border: 1px solid var(--color-red);
        color: var(--color-red);
        padding: 4px 0.625rem;
        border-radius: 2rem;
        letter-spacing: -0.75px;
        box-sizing: border-box;
        min-width: 68px;
        text-align: center;
    }
    .board_table .bd_list_item .item_info {
        bottom: 0.75rem;
    }
    .data .board_table .bd_list_item .item_info div {
        width: auto;
        position: relative;
    }
    .data .board_table .bd_list_item .item_info div:after {
        content: '';
        width: 1px;
        height: 1rem;
        background: #ddd;
        position: absolute;
        right: -0.75rem;
        top: 0;
    }
    .data .board_table .bd_list_item .item_info div:last-child:after {
        display: none;
    }
    .data .board_table .bd_list_item .item_info div a {
        padding: 0;
    }
    .data .item_state span {
        font-size: 12px;
    }

}

@media(max-width:480px){
    /* 공지사항 */
    .search_wrap input[type="text"] {
        height: 36px;
        width: 150px;
    }
    .boardList .board_top .search_wrap select {
        padding: 0.625rem 2.5rem 0.625rem 0.625rem;
        margin-top: -2px;
    }
    .boardList .board_top .search_wrap .btn {
        height: 36px;
    }
    .service_page .post_nav p {
        width: 55px;
        padding-left: 0.25rem;
    }
    .service_page .post_nav .icon_box {
        width: 20px;
        height: 20px;
    }
    .service_page .post_nav>div {
        padding:  0 0.75rem;
    }
    .service_page .post_nav span {
        width: calc(100% - 55px - 20px);
    }

    /* 자주하는 질문 */
    .accordion_wrap .accordion .faq_title:before {
        width: 26px;
        height: 26px;
        left: 0.75rem;
        line-height: 24px;
    }
    .accordion_wrap .accordion .faq_title {
        font-size: 14px;
        padding: 1.25rem 2.75rem 1.25rem 2.875rem;
    }
    .accordion_wrap .accordion .faq_title:after {
        right: 0.75rem;
    }

    /* 지사안내 */
    .branch .choice_box {
        gap: 0.5rem;
    }
    .branch .choice_box a {
        width: calc((100% - (0.5rem * 2)) / 3);
        padding: 0.625rem 0.25rem;
    }

    /* 사이트맵 */
    .site_map .map_wrap .box.fst_depth,
    .site_map .map_wrap .box.sec_depth {
        width: calc((100% - 4px - 10px) / 2);
    }
    .site_map .map_wrap .box.sec_depth + .sec_depth:nth-child(3n+2) {
        margin-left: 10px;
    }
    .site_map .map_wrap .box.sec_depth + .sec_depth:nth-child(2n+2) {
        margin-left: 0px;
    }

    /* 자료요청 */
    .data .item_num {
        width: 60px;
    }
    .data .board_table .bd_head p.item_filename,
    .data .board_table .bd_list_item .item_filename,
    .data .board_table .bd_list_item .item_info {
        width: calc(100% - 60px);
    }
    .board_table .bd_list_item .item_info {
        left: 60px;
    }
    .data.detail .comment_wrap .comment_list li .name {
        padding: 1rem 1.25rem;
    }
    .data.detail .comment_wrap .comment_list li pre,
    .data.detail .comment_wrap .comment_list li textarea {
        padding: 1.25rem;
    }
}

@media(max-width:380px){
    /* 공지사항 */
    .boardList .board_top {
        display: block;
        position: relative;
        margin-top: 5rem;
    }
    .boardList .search_wrap {
        position: absolute;
        bottom: 2rem;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .search_wrap input[type="text"] {
        width: 170px;
    }

    /* 지사안내 */
    .branch .choice_box {
        padding: 1rem;
    }

    /* 자료요청 */
    .data .boardList .board_top {
        display: flex;
        margin-top: 0;
    }
}