/* 게시판 공통 start */
.include_patten{
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    z-index: 100;
}
.district .include_patten{
    background: url('/images/user/sub/bg_board1.png') no-repeat;
    background-size: cover;
}
.entire .include_patten{
    background: url('/images/user/sub/bg_board2.png') no-repeat;
    background-size: cover;
}
.include_patten::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.include_patten h3{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
}
.include_patten p{
    color: rgba(255, 255, 255, 0.8);
}
/* .include_patten h3::before{
    content: '';
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 60px;
    height: 4px;
    margin-bottom: 3px;
    background-color: var(--orange)
} */
.board_layout .search_wrap{
    padding: 30px 80px;
    background-color: #F4F4F4;
    border-radius: 15px;
}
.board_layout .search_wrap form{
    width: 100%;
    display: flex;
    gap: 10px;
}
.board_layout .search_wrap form select{
    width: 20%;
}
.board_layout .search_wrap form input[type='search']{
    width: calc(100% - 32px);
    height: 48px;
    margin-left: 1px;
    border: none;
    background-color: #fff;
    outline: none;
}
.board_layout .search_wrap form .search{
    display: flex;
    align-items: center;
    padding: 0;
}
.board_layout .search_wrap form .search button{
    height: 100%;
    padding-right: 6px;
}
.board_layout .board_list{
    margin-top: 40px;
}
.board_layout .board_list .total{
    font-size: 15px;
    margin-bottom: 8px;
}
.board_layout .board_list .total span{
    color: var(--orange);
}
.board_layout .table_style{
    border-top: 2px solid #222;
    border-bottom: 1px solid #ddd;
}
.board_layout .table_style thead td{
    text-align: center;
    padding: 20px 0;
    font-weight: 500;
}
.board_layout .table_style tbody tr{
    width: 100%;
    cursor: pointer;
    transition: all .2s;
}
.board_layout .table_style tbody tr:hover{
    background-color: #0070bb0d;
}
.board_layout .table_style tbody td{
    border-top: 1px solid #ddd;
    margin: 0 auto;
    padding: 16px 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}
.board_layout .table_style tbody td p{
    /* display: table-cell; */
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.board_layout .table_style tbody td p span{
    vertical-align: middle;
}
.board_layout .table_style tbody td:nth-child(n + 3){
    color: #666;
}
.board_layout .table_style .text_left{
    display: flex;
    text-align: left;
}
.board_layout .table_style .mobile_head{
    display: none;
}
.board_layout .table_style .comment{
    color: var(--red);
    margin-left: 8px;
}
.board_layout .table_style .notice{
    background-color: #e5494909;
}
.board_layout .table_style .notice td:nth-child(1) div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 26px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    margin: 0 auto;
    background-color: var(--red);
}
.board_layout .table_style .notice .text_left{
    font-weight: 600;
}
.board_layout .new_write{
    margin: 0 auto;
}
.board_layout .select_zone select{
    width: 140px;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
	background-image: url('/images/user/common/select_white_arrow.svg'); 
	background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    margin-bottom: 26px;
}
.board_layout .select_zone select:nth-child(2){
    color: var(--blue);
    background-color: #EDF5FA;
    background-image: url('/images/user/common/select_blue_arrow.svg'); 
    border: 1px solid #ccdce6;
    margin-left: 8px;
}
.board_layout .big_btn_wrap button{
    width: 120px;
}
.board_layout.detail .title_zone{
    font-size: 30px;
    padding: 30px;
    border-bottom: 1px solid #ddd;
}
.board_layout.detail .writer_info{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 16px 30px;
    border-bottom: 1px solid #ddd;
}
.board_layout.detail .writer_info .sect{
    display: flex;
    gap: 16px;
}
.board_layout.detail .writer_info .sect .tit{
    color: #aaa;
}
.board_layout.detail .board_cont{
    font-size: 18px;
    padding: 30px 30px 40px;
    line-height: 1.4rem;
    /* border-bottom: 1px solid #222; */
    word-break: break-all;
}
.board_layout.detail .board_cont > img{
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
}
.board_layout.detail .board_cont .view_image img{
    max-width: 80%;
    height: auto;
    display: block;
    margin: 16px auto 16px auto;
}
.board_layout.detail .board_cont .file_attach{
    margin-top: 30px;
}
.board_layout.detail .board_cont .file_attach li a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F8F8;
    border-radius: 10px;
    margin-top: 10px;
    padding: 14px 24px;
}
.board_layout.detail .board_cont .file_attach li a p{
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.board_layout.detail .board_cont .file_attach li a p::before{
    content: '';
    display: inline-block;
    vertical-align: bottom;
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 16px;
    background: url('/images/user/common/file_attach.svg') no-repeat center center;
}
.board_layout.detail .comment_zone {
    padding: 24px 0 14px 0;
    border-top: 1px dashed #ddd;
}
.board_layout.detail .comment_wrap .comment_zone:first-child{
    border-top: 1px solid #ddd;
}
.board_layout.detail .comment_zone .top_zone{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.board_layout.detail .comment_zone .top_zone *{
    display: flex;
    align-items: center;
}
.board_layout.detail .comment_zone .name{
    font-weight: 600;
}
.board_layout.detail .comment_zone .zone{
    font-weight: 600;
    color: var(--blue);
    margin-left: 4px;
}
.board_layout.detail .comment_zone .date{
    margin-left: 16px;
    color: #aaa;
    font-weight: 300;
}
.board_layout.detail .comment_zone .edit_btn{
    display: flex;
    align-items: center;
    gap: 20px;
}
.board_layout.detail .comment_zone .edit_btn button{
    color: #aaa;
}
.board_layout.detail .comment_zone .edit_btn button.edit::before{
    content: '';
    width: 24px;
    height: 24px;
    background: url('/images/user/common/comment_edit.svg') no-repeat center center;
}
.board_layout.detail .comment_zone .edit_btn button.delete::before{
    content: '';
    width: 24px;
    height: 24px;
    background: url('/images/user/common/comment_delete.svg') no-repeat center center;
}
.board_layout.detail .comment_zone textarea{
    display: block;
    width: 100%;
    height: auto;
    min-height: 40px;
    font-size: 18px;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
    color: #222;
    -webkit-text-fill-color: #222;
    -webkit-opacity: 1;
    opacity:1;
    overflow: visible;
    box-sizing: border-box; /* 패딩과 테두리를 요소의 전체 너비/높이에 포함 */
}
.board_layout.detail .comment_zone textarea:disabled{
    height: auto;
    border: none;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    color: #222;

}
.board_layout.detail .write_comment{
    position: relative;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 10px;
    border-radius: 5px;
    padding: 10px 12px;
    background-color: #f8f8f8;
}
.board_layout.detail .write_comment::before{
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    border-top: 1px dashed #ddd;
}
.board_layout.detail .write_comment b{
    width: 100%;
}
/* .board_layout.detail .write_comment textarea{
    width: calc(100% - 130px);
    height: 100%;
    height: 150px;
    padding: 20px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
} */
.board_layout.detail .write_comment textarea{
    display: block;
    width: 100%;
    height: auto;
    min-height: 30px;
    border-radius: 5px;
    font-size: 16px;
    overflow: hidden;
    border: none;
    outline: none;
    resize: none;
}
.board_layout.detail .write_comment textarea::placeholder{
    color: #aaa;
    font-size: 16px;
}
.board_layout.detail .write_comment button{
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 15px;
    color: #fff;
}
.board_layout .list_form_style{
    padding: 0;
    /* padding-bottom: 30px; */
}
.board_layout.form .list_form_style {
    padding: 12px 0;
}
.board_layout.form .list_form_style .area{
    max-width: 1100px;
    margin-top: 40px;
}
.board_layout.form .list_form_style .area:nth-of-type(1){
    margin-top: 0;
}
.board_layout.form .list_form_style .area b{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.board_layout.form textarea{
    min-height: 342px;
    resize: none;
}
.board_layout.form .file_attach {
    width: 55%;
}
.board_layout.form .file_attach .edit_file{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.board_layout.form .file_attach {
    max-width: 500px;
}
.board_layout.form .file_attach .notice_font{
    font-size: 16px;
    margin-bottom: 16px;
    color: #E54949;
}
.board_layout.form .file_attach .file-upload-button{
    width: 100%;
    height: 50px;
}
.board_layout.form .file_attach .file-name{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.board_layout.form .file_attach .file-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding-bottom: 4px;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
}
.board_layout.form .file-list .remove_btn{
    display: inline-block;
    width: 20px;
    min-width:20px;
    height: 20px;
    min-height: 20px;
    background: #999 url('/images/user/common/icon_cancel.svg') no-repeat center center;
    border-radius: 50%;
    cursor: pointer;
}
/* 영상자료 */
.youtube_index .youtube_wrap{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 60px 40px;
    padding: 30px 0;
}
.youtube_index .include_patten{
    width: 100%;
    background: url(/images/user/sub/bg_youtube.png) no-repeat center center;
    background-size: cover;
}
.youtube_index .youtube_wrap .item{
    width: calc((100% - 120px) / 4);
}
.youtube_index .youtube_wrap .item .img_box{
    border-radius: 10px;
    overflow: hidden;
}
.youtube_index .youtube_wrap .item .img_box img{
    width: 100%;
    object-fit: contain;
}
.youtube_index .youtube_wrap .youtube_txt{
    width: 100%;
    margin-top: 12px;
}
.youtube_index .youtube_wrap .youtube_txt .tit{
    /* font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    -webkit-line-clamp: 2;
    text-overflow: ellipsis; */
}
.youtube_index .youtube_wrap .youtube_txt .tit p{
    /* font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis; */
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: unset;
    text-overflow: ellipsis;
    word-break: break-all;
}
.youtube_index .youtube_wrap .youtube_txt .date{
    margin-top: 8px;
    color: #aaa;
    font-size: 15px;
}
.youtube_detail.board_layout .board_cont{
    padding-left: 120px;
    padding-right: 120px;
}
.youtube_detail .wrapper_video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-bottom: 30px;
}
.youtube_detail .wrapper_video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media screen and (max-width: 1240px){
    .youtube_index .youtube_wrap .item{
        width: calc((100% - 80px) / 3);
    }
}
@media screen and (max-width: 1024px){
    /* 게시판 index */
    .include_patten{
        height: auto;
        min-height: 300px;
    }
    .district .include_patten{
        background-position: center 20%;
    }
    .entire .include_patten{
        background-position: center 20%;
    }
    .board_layout .select_zone select{
        font-size: 16px;
        width: 120px;
        padding: 8px 16px;
        background-position: right 16px center;
        margin-bottom: 16px;
    }
    .board_layout .search_wrap{
        padding: 20px 40px;
    }
    .board_layout .search_wrap form select{
        width: 30%;
    }
    .board_layout .table_style{
        width: 100%;
    }
    .board_layout .table_style thead{
        display: none;
    }
    .board_layout .table_style colgroup{
        display: none;
    }
    .board_layout .table_style tr{
        display: flex;
        flex-wrap: wrap;
        padding: 16px 24px;
        border-bottom: 1px solid #ddd;
    }
    .board_layout .table_style tbody td{
        /* display: flex; */
        margin: unset;
        text-align: left;
        border-top: none;
        padding: 0;
    }
    .board_layout .table_style tbody td:nth-child(1){
        display: none;
    }
    .board_layout .table_style tbody td:has(.textCut){
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    .board_layout .table_style tbody .notice td:nth-child(1){
        width: 100%;
        display: flex;
        margin-bottom: 10px;
    }
    .board_layout .table_style tbody .notice td:nth-child(1){
        margin-bottom: 4px;
    }
    .board_layout .table_style tbody .notice td:nth-child(1) div{
        width: 46px;
        height: 22px;
        margin: unset;
        font-size: 14px;
    }
    .board_layout .table_style tbody td:nth-child(2){
        width: 100%;
        margin-bottom: 10px;
    }
    .board_layout .table_style tbody td:nth-child(n + 3){
        margin-right: 24px;
        font-size: 16px;
    }
    .board_layout .table_style tbody td .mobile_head{
        display: inline-block;
        color: #aaa;
        margin-right: 8px;
    }
    .board_layout .big_btn_wrap button{
        width: 100px;
    }
    /* 게시판 detail */
    .board_layout.detail .title_zone{
        font-size: 24px;
        padding: 20px;
    }
    .board_layout.detail .writer_info{
        gap: 10px;
        padding: 12px 20px;
    }
    .board_layout.detail .board_cont{
        padding: 20px 20px 30px;
    }
    .board_layout.detail.entire .writer_info .sect{
        width: calc(50% - 5px);
    }
    /* 게시판 form */
    .board_layout.form .list_form_style .area{
        width: 100%;
    }
    .board_layout.form .file_attach{
        max-width: 100%;
    }
    /* 영상자료 */
    .youtube_index .youtube_wrap{
        gap: 40px 20px;
    }
    .youtube_index .youtube_wrap .item{
        width: calc((100% - 40px) / 3);
    }
    .youtube_index .youtube_wrap .youtube_txt .tit{
        font-size: 16px;
    }
}
@media screen and (max-width: 768px){
    .include_patten{
        height: auto;
        min-height: 260px;
        margin-bottom: 40px;
    }
    /* 게시판 index */
    .board_layout .search_wrap{
        margin-top: 30px;
        padding: 12px 16px;
    }
    .board_layout .search_wrap form select{
        width: 40%;
    }
    .board_layout .search_wrap form input[type='search']{
        height: 38px;
        padding: 0 12px;
    }
    .board_layout .table_style tr{
        justify-content: space-between;
        padding: 10px;
    }
    .board_layout .table_style tbody td:nth-child(n + 3){
        width: calc(50% - 5px);
        line-height: 1.2rem;
        margin-right: 0;
    }
    .board_layout .table_style tbody td:nth-child(n + 3) span{
        white-space: nowrap;
    }
    /* 게시판 detail */
    .board_layout.detail .list_form_style{
        margin-top: 30px;
    }
    .board_layout.detail .writer_info{
        padding: 10px;
        gap: 4px;
    }
    .board_layout.detail.entire .writer_info .sect{
        width: 100%;
        font-size: 16px;
    }
    .board_layout.detail .board_cont{
        font-size: 16px;
        padding:  10px;
    }
    .board_layout.detail .board_cont .file_attach{
        margin-top: 20px;
    }
    .board_layout.detail .board_cont .file_attach li a{
        padding: 8px 12px;
    }
    .board_layout.detail .board_cont .file_attach li a p{
        font-size: 15px;
        gap: 10px;
    }
    .board_layout.detail .board_cont .file_attach li a p::before{
        width: 22px;
        min-width: 22px;
        height: 22px;
        margin-right: 8px;
        background-size: contain;
    }
    .board_layout.detail .board_cont .file_attach li a img{
        width: 20px;
        min-width: 20px;
        height: 20px;
    }
    .board_layout.detail .comment_zone{
        padding: 16px 0;
        margin-top: 0px;
    }
    .board_layout.detail .comment_zone .top_zone{
        flex-direction: column-reverse;
        align-items: unset;
        gap: 4px;
    }
    .board_layout.detail .comment_zone .top_zone *{
        font-size: 16px;
    }
    .board_layout.detail .comment_zone .edit_btn{
        gap: 12px;
        justify-content: flex-end;
    }
    .board_layout.detail .comment_zone .top_zone .wirter_info{
        flex-wrap: wrap;
    }
    .board_layout.detail .comment_zone .date{
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }
    .board_layout.detail .comment_zone textarea{
        font-size: 16px;
    }
    .board_layout.detail .write_comment{
        margin: 10px 0;
    }
    .board_layout.detail .write_comment::before{
        top: -10px;
    }
    .board_layout.detail .write_comment button{
        width: 80px;
    }
    .board_layout.detail .write_comment textarea{
        width: calc(100% - 90px);
    }
    .board_layout.form .list_form_style{
        margin-top: 30px;
    }
    /* 영상자료 */
    .youtube_index .youtube_wrap{
        gap: 30px 10px;
    }
    .youtube_index .youtube_wrap .item{
        width: calc((100% - 10px) / 2);
    }
    .youtube_index .youtube_wrap .youtube_txt .tit{
        font-size: 15px;
    }
    .youtube_detail .wrapper_video {
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 520px){
    .board_layout .big_btn_wrap button{
        width: 100%;
        font-size: 16px;
    }
    .board_layout .select_zone select{
        padding: 6px 16px;
    }
    /* 게시판 detail */
    .board_layout.detail .title_zone{
        font-size: 20px;
        padding: 10px;
    }
    
    .board_layout.detail .board_cont > img{
        max-width: 100%;
    }
    .board_layout.detail .board_cont .view_image img{
        max-width: 100%;
    }
    .board_layout.detail .comment_zone textarea{
        width: 100%;
    }
    .board_layout.detail .comment_zone .edit_btn button.edit::before{
        width: 20px;
        height: 20px;
        background-size: contain;
    }
    .board_layout.detail .comment_zone .edit_btn button.delete::before{
        width: 20px;
        height: 20px;
        background-size: contain;
    }
    .board_layout.detail .write_comment textarea{
        width: 100%;
        padding: auto;
    }
    .board_layout.detail .write_comment button{
        /* width: 100%; */
        /* height: 40px; */
    }
}
@media screen and (max-width: 425px){
    .board_layout .select_zone select:nth-child(2){
        margin-left: 4px;
    }
}
/* 게시판 공통 end */

/* 소개글 start */
.introduce_index .include_patten{
    width: 100%;
    background: url('/images/user/sub/bg_introduce.png') no-repeat;
    background-size: cover;

}
.introduce_index .mini_title{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font: 30px var(--font-bold);
    margin-bottom: 60px;
}
.introduce_index .mini_title::before{
    content: '';
    display: block;
    width: 95px;
    height: 16px;
    background: url('/images/user/sub/deco_arrow.svg') no-repeat;
    background-size: contain;
    /* background-color: var(--blue); */
    margin-right: 16px;
}
.introduce_index .mini_title::after{
    content: '';
    display: block;
    width: 95px;
    height: 16px;
    background: url('/images/user/sub/deco_arrow.svg') no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    margin-left: 16px;
}
.introduce_index .vision_wrap {
    padding-bottom: 100px;
}
.introduce_index .vision_wrap img{
    width: 100%;
    display: block;
    max-width: 600px;
    margin: 0 auto;
    margin-top: -24px;
}
.introduce_index .purpose_wrap {
    padding-bottom: 60px;
}
.introduce_index .purpose_wrap .frame_wrap{
    position: relative;
    max-width: 60%;
    margin: 0 auto;
    padding: 60px 50px;
    border: 2px solid #D0A84B;
}
.introduce_index .purpose_wrap .frame_wrap h4{
    position: relative;
    text-align: center;
    font: 30px var(--font-bold);
}
.introduce_index .purpose_wrap .frame_wrap p{
    margin-top: 24px;
    line-height: 26px;
}
.introduce_index .purpose_wrap .frame_wrap p b{
    display: block;
}
.introduce_index .purpose_wrap .frame_wrap > img{
    position: absolute;
}
.introduce_index .purpose_wrap .frame_wrap .corner1{
    top: -20px;
    left: -20px;
}
.introduce_index .frame_wrap .corner2{
    top: -20px;
    right: -20px;
    transform: scaleX(-1);
}
.introduce_index .purpose_wrap .frame_wrap .corner3{
    bottom: -20px;
    left: -20px;
    transform: scaleY(-1);
}
.introduce_index .purpose_wrap .frame_wrap .corner4{
    bottom: -20px;
    right: -20px;
    transform: scale(-1, -1);
}
.introduce_index .purpose_wrap .frame_wrap .text_cc{
    position: relative;
    text-align: center;
    margin-top: 40px;
    z-index: 1;
}
.introduce_index .purpose_wrap .frame_wrap .text_cc h4{
    font-size: 24px;
}
.introduce_index .organization_wrap .orga_list{
    margin-bottom: 40px;
}
.introduce_index .organization_wrap .orga_list .m_tit{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.introduce_index .organization_wrap .sect_list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.introduce_index .organization_wrap .sect_list li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((100% - 30px) / 4);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 14px 20px;
    text-align: center;
    word-break: break-all;
}
.introduce_index .organization_wrap .sect_list li .name{
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--blue);
}
.introduce_index .organization_wrap .sect_list li .info{
    color: #555;
}

@media screen and (max-width: 1024px){
    .introduce_index .include_patten{
        background-position: center 20%;
    }
    .introduce_index .purpose_wrap .frame_wrap{
        max-width: calc(100% - 26px);
    }
    .introduce_index .organization_wrap .sect_list li{
        width: calc((100% - 20px) / 3);
    }
    .introduce_index .mini_title{
        font-size: 26px;
    }
    .introduce_index .vision_wrap{
        padding-bottom: 80px;
    }
}
@media screen and (max-width: 768px){
    .include_patten {
        min-height: 200px;
        margin-bottom: 0;
    }
    .introduce_index .include_patten{
        margin-bottom: 30px;
    }
    .introduce_index .mini_title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .introduce_index .mini_title::before,
    .introduce_index .mini_title::after{
        width: 60px;
        height: 13px;
    }
    .introduce_index .vision_wrap{
        padding-bottom: 60px;
    }
    .introduce_index .vision_wrap img{
        width: 70%;
    }
    .introduce_index .purpose_wrap .frame_wrap{
        padding: 34px 20px;
    }
    .introduce_index .purpose_wrap .frame_wrap h4{
        font-size: 20px;
    }
    .introduce_index .purpose_wrap .frame_wrap p{
        line-height: 24px;
        font-size: 16px;
        margin-top: 16px;
    }
    .introduce_index .purpose_wrap .frame_wrap > img{
        width: 80px;
    }
    .introduce_index .purpose_wrap .frame_wrap .corner1{
        top: -10px;
        left: -10px;
    }
    .introduce_index .purpose_wrap .frame_wrap .corner2{
        top: -10px;
        right: -10px;
    }
    .introduce_index .purpose_wrap .frame_wrap .corner3{
        bottom: -10px;
        left: -10px;
    }
    .introduce_index .purpose_wrap .frame_wrap .corner4{
        bottom: -10px;
        right: -10px;
    }
    .introduce_index .purpose_wrap .frame_wrap .text_cc h4{
        font-size: 18px;
    }
    .introduce_index .organization_wrap .sect_list li{
        width: calc((100% - 10px) / 2);
        font-size: 16px;
    }
    
    
}
@media screen and (max-width: 520px){

    .board_layout.detail .board_cont .file_attach li a{
        margin-top: 4px;
    }
    .introduce_index .organization_wrap .sect_list li{
        width: 100%;
    }
}
@media screen and (max-width: 425px){
    .include_patten {
        min-height: 160px;
    }
    .board_layout .search_wrap{
        border-radius: 0;
        margin: 0 -10px;
    }
    .board_layout .search_wrap form{
        gap: 4px;
    }
}
/* 소개글 end */

/* footer 이용약관들  start*/
.privacy .list_form_style{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.privacy .list_form_style p{
    line-height: 24px;
}
.privacy .list_form_style p b{
    display: block;
    margin-bottom: 4px;
}
@media screen and (max-width: 768px){
    .privacy .list_form_style{
        gap: 10px;
    }
    .privacy .list_form_style p{
        font-size: 16px;
    }
}
/* footer 이용약관들 end */


/* 페이지네이션  start*/
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.pagination li a{
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination li.active a{
    border-radius: 3px;
    border: 1px solid var(--orange);
    color: var(--orange);
    font-weight: 500;
}
.pagination .next,
.pagination .last{
    transform: rotate(180deg);
}
@media screen and (max-width: 520px){
    .pagination{
        margin-top: 20px;
    }
    .pagination li a{
        width: 30px;
        height: 30px;
    }
}
/* 페이지네이션  end*/







/* 에디터 라인 */
.tox .tox-edit-area::before
{
	border: none !important;
}