.exclusive_board > .layout_max{
    transform: translateY(-45px);
}
.exclusive_board .bg_img{
    width: 100%;
    height: 270px;
    overflow: hidden;
}
.exclusive_board .bg_img img{
    width: 100%;
    position: relative;
    transform: translateY(-35%);
}
.exclusive_board .head-list{
    border-radius: 0px 0px 20px 20px;
    position: relative;
    border-radius: 20px;
}
.exclusive_board .head-list .title{
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #222222;
    padding: 20px 34px;
    cursor: pointer;
    z-index: 1;
    position: relative;
    box-shadow: 0px 10px 20px #0000001A;
    gap: 20px;
}
.exclusive_board .head-list .title .left{
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exclusive_board .head-list .title .right{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    min-width: 30px;
}
.exclusive_board .head-list .title .right .text{
    font-size: 18px;
    font-weight: 500;
    transform: translateX(150%);
    transition: 0.3s;
    opacity: 0;
}
.exclusive_board .head-list:hover .title .right .text{
    transform: translateX(0%);
    opacity: 1;
}
.exclusive_board .head-list:hover .title .right .arrow{
    background-color: #F54D03;
}
.exclusive_board .head-list .title .right .arrow{
    width: 35px;
    height: 35px;
    min-width: 35px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.exclusive_board .head-list ul{
    position: relative;
    background-color: #F8FAFF;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0px 10px 20px #0000001A;
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 25px;
    z-index: 0;
    border-left: 1px solid #222;
    border: 1px solid #222;
    max-height: 430px;
    overflow: auto;
}
.exclusive_board .head-list ul li{
    display: flex;
    align-items: center;
    position: relative;
    height: auto;
    font-size: 20px;
    border-top: 1px solid #D5DBE9;
    color: #56617B;
    font-weight: 400;
}
.exclusive_board .head-list ul li.active{
    font-weight: 600;
    color: #222;
    font-size: 22px;
}
.exclusive_board .head-list ul li.active::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/assets/bsd01/image/board/exclusive/icon_active_blue.svg) no-repeat center center;
    background-size: contain;
}
.exclusive_board .head-list ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 25px;
    padding: 20px 34px;
}
.exclusive_board .head-list ul li:first-of-type{
    border-top: 0px solid #222;
}
.exclusive_board .head-list ul li:not(.active) a:hover{
    background-color: #fff;
    color: #56617B;
    font-size: 20px;
    font-weight: 600;
}
.exclusive_board .head-list ul li:not(.active):hover::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/assets/bsd01/image/board/exclusive/icon_active_white.svg) no-repeat center center;
    background-size: contain;
}
.exclusive_board .body-view{
    padding-top: 70px;
    padding-bottom: 150px;
    font-size: 20px;
    line-height: 1.3;
}
.exclusive_board .body-view img{
    max-width: 100%;
}

@media (max-width: 1520px) {}
@media (max-width: 1300px) {
    .exclusive_board .head-list .title{
        height: 65px;
        min-height: auto;
    }
    .exclusive_board .head-list .title .left{
        font-size: 20px;
    }
    .exclusive_board .head-list ul{
        top: 50px;
        padding-top: 15px;
    }
    .exclusive_board .head-list ul li{
        font-size: 18px;
    }
    .exclusive_board .body-view{
        padding-top: 50px;
        padding-bottom: 100px;
        font-size: 18px;
    }
    .exclusive_board .head-list ul li a{
        font-size: 16px;
    }
}
@media (max-width: 1024px) {
    .exclusive_board .bg_img{
        height: 225px;
    }
    .exclusive_board .bg_img img{
        transform: translateY(-15%);
    }
    .exclusive_board > .layout_max{
        transform: translateY(-40px);
    }
}
@media (max-width: 767px) {
    .exclusive_board .bg_img{
        height: 150px;
    }
    .exclusive_board .head-list .title{
        padding: 15px 20px;
    }
    .exclusive_board .head-list .title .left{
        font-size: 17px;
    }
    .exclusive_board .head-list .title .right .arrow{
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    .exclusive_board .head-list .title .right .text{
        font-size: 14px;
    }
    .exclusive_board .body-view{
        padding-top: 30px;
        padding-bottom: 60px;
        font-size: 15px;
    }
    .exclusive_board .head-list ul li{
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
    }
    .exclusive_board .head-list ul li.active::after{
        right: 20px;
    }
    .exclusive_board .head-list ul li a{
        padding-left: 0;
        padding-right: 35px;
    }
    .exclusive_board .head-list.active .title .right .text{
        display: none;
    }
    .exclusive_board .head-list:hover .title .right .text{
        display: none;
    }
}
@media (max-width: 425px) {}





/* 사목지침 2025년 스타일 */
.year{}
.year.y2025{}
.y2025 .main_title{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 40px;
}
.y2025 .text{
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.y2025 .text.mb0{
    margin-bottom: 0;
}
.y2025 .box_st{
    position: relative;
    border: 1px solid #222222;
    padding: 40px;
    padding-top: 60px;
    margin-top: 70px
}
.y2025 .box_st .title{
    position: absolute;
    top: 0px;
    left: 15px;
    font-size: 22px;
    display: inline-block;
    padding: 10px 20px;
    transform: translateY(-50%);
    background-color: #fff;
    font-weight: 600;
    line-height: 1.3;
}
.y2025 .box_st .item{
    margin-bottom: 55px;
}
.y2025 .box_st .item .tit{
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
    color:#004A9C;
}
.y2025 .box_st .item .con{
    font-size: 20px;
    line-height: 1.7;
}
.y2025 .box_st .item:last-child{
    margin-bottom: 0;
}
.y2025 .sub_title{
    font-size: 20px;
    font-weight: 600;
    margin-top:80px;
    margin-bottom: 20px;
}
.y2025 .list_st{
    margin-top: 105px;
}
.y2025 .list_st .tit{
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 110px;
}
.y2025 .list_st .con{
    display:flex;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    border:1px solid #222;
    border-radius: 50px;
    overflow: hidden;
}
.y2025 .list_st .con .left{
    width: 30%;
}
.y2025 .list_st .con .left .image{
    position: relative;
    height:100%;
}
.y2025 .list_st .con .left .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.y2025 .list_st .con .left .image .white_text{
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
    z-index: 1;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
}
.y2025 .list_st .con .right{
    width: 70%;
}
.y2025 .list_st .con .right ul{
    padding: 38px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.y2025 .list_st .con .right ul li{
    font-size: 20px;
    line-height: 1.7;
}
@media (max-width: 1520px) {}
@media (max-width: 1300px) {}
@media (max-width: 1024px) {}
@media (max-width: 767px) {
    .y2025 .main_title{
        font-size: 20px;
        margin-bottom: 35px;
    }
    .y2025 .text{
        font-size: 15px;
    }
    .y2025 .box_st{
        padding-left: 25px;
        padding-right: 25px;
    }
    .y2025 .box_st .title{
        font-size: 18px;
        width: calc(100% - 30px);
    }
    .y2025 .box_st .item .con{
        font-size: 15px;
    }
    .y2025 .box_st .item .tit{
        font-size: 17px;
        margin-bottom: 25px;
    }
    .y2025 .sub_title{
        font-size: 18px;
        margin-top: 50px;
    }
    .y2025 .list_st{
        margin-top: 45px;
        font-size: 16px;
    }
    .y2025 .list_st .tit{
        font-size: 21px;
        padding-bottom: 35px;
    }
    .y2025 .list_st .con .left{
        width: 20%;
    }
    .y2025 .list_st .con .right{
        width: 80%;
    }
    .y2025 .list_st .con .right ul{
        padding: 20px 25px;
    }
    .y2025 .list_st .con .right ul li{
        font-size: 15px;
    }
    .y2025 .list_st .con .left .image .white_text{
        top: 40px;
        left: 20px;
        font-size: 20px;
    }
}
@media (max-width: 425px) {}











.exclusive_view{}
.exclusive_view .top_banner{
    position: relative;
    width: 100%;
    height: 245px;
    background-color: orange;
    background: url(/assets/bsd01/image/board/exclusive/bg_img.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}
.exclusive_view .top_banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}
.exclusive_view .top_banner .text{
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    position: relative;
    line-height: 1.2;
}
.bbsViewCon{
    font-size: 20px;
    line-height: 1.3;
}
@media (max-width: 1200px) {
    .exclusive_view .top_banner .text{
        text-align: left;
        word-break: keep-all;
    }
}
@media (max-width: 767px) {
    .bbsViewCon{
        font-size: 16px;
    }
    .exclusive_view .top_banner{
        margin-bottom: 35px;
    }
    .exclusive_view .top_banner{
        height: 190px;
    }
    .exclusive_view .top_banner .text{
        text-align: center;
        font-size: 23px;
    }
}








.bbsFile{
    background-color: #F5F7FC;
    padding: 38px 40px;
    border-radius: 10px;
    margin-top: 120px;
}
.bbsFile .bbsFileList{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bbsFile .bbsFileList li{

}
.bbsFile .bbsFileList li a{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
}
.bbsFile .bbsFileList li a .fa-file-image-o{

}
.bbsFile .bbsFileList i.icon{
    display: inline-block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: url(/assets/bsd01/image/board/basic/icon_atc_hwp.svg) center center no-repeat;
    background-size: contain;
}
.bbsFile .bbsFileList i.icon.image-o{
    background: url(/assets/bsd01/image/board/basic/icon_atc_jpg.svg) center center no-repeat;
    background-size: contain;
}
.bbsFile .bbsFileList i.icon.text-o{
}
.bbsFile .bbsFileList i.icon.pdf-o{
    background: url(/assets/bsd01/image/board/basic/icon_atc_pdf.svg) center center no-repeat;
    background-size: contain;
}
.bbsFile .bbsFileList i.icon.o{
}
@media (max-width: 1520px) {}
@media (max-width: 1300px) {}
@media (max-width: 1024px) {
    .bbsViewTop .viewTitle .text{
        font-size: 24px;
        padding: 0px 0;
        text-align: left;
    }
    .bbsTitleInfo{
        display: flex;
        justify-content: flex-start;
        gap: 10px 25px;
        font-size: 16px;
        padding: 15px 0;
    }
    .bbsTitleInfo > div{
        gap: 8px;
    }
}
@media (max-width: 767px) {
    .bbsViewTop .viewTitle .text{
        font-size: 18px;
        text-align: center;
    }
    .bbsTitleInfo{
        font-size: 14px;
        padding: 15px 0;
        gap: 8px 20px;
    }

    .bbsFile{
        margin-top: 35px;
        padding: 25px 15px;
    }
    .bbsFile .bbsFileList li a{
        font-size: 15px;
    }
    .bbsTitleInfo > div{
        font-weight: 400;
    }
    .bbsViewTop .viewTitle .extend-field{
        justify-content: flex-start;
    }
    .bbsViewTop .viewTitle .extend-field .box .tit{
        font-size: 13px;
    }
    .bbsViewTop .viewTitle .extend-field .box .con{
        font-size: 15px;
    }

}
@media (max-width: 425px) {}