.subpage .pg_wrap {
    margin: 0 auto;
    display: block;
    float: unset;
    text-align: center;
}

.subpage .pg_current {
    color: var(--white-color);
    border: 1px solid var(--pri-color);
    background: var(--pri-color);
}

.subpage a.btn,
.sub .btn {
    border-radius: 0 !important;
}

.subpage .btn_submit {
    background: var(--pri-color);
}

.subpage .btn_submit:hover {
    background: var(--pri-color);
}

.subpage #bo_v_top .more_opt li {
    text-align: center;
    width: 56px;
}

.subpage #bo_v_top>ul>li>a {
    padding: 0;
    height: unset;
    font-size: 16px;
    line-height: 16px;
}

/* 서브페이지 배너 */

.subpage .banner_box {
    position: relative;
    height: 560px;
    overflow: hidden;
}

.subpage .banner {}

.subpage .banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    color: var(--white-color);
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    animation: banner_h2 2s ease-in-out;
}

@keyframes banner_h2 {
    0% {
        opacity: 0;
        transform: translate(-50%, 50%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.subpage .banner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/main_visual_slide01.jpg)no-repeat center center/cover;
    overflow: hidden;
    animation: banner_scale 2s ease-in-out;
}

@keyframes banner_scale {
    0% {
        transform: scale(1.2);
        filter: blur(8px);
    }

    100% {
        transform: scale(1);
        filter: blur(0);
    }
}

.subpage .banner::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0 0 0 0;
    background: rgba(0, 0, 0, 0.5);
}

@media(max-width: 1024px) {
    .subpage .banner h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

@media(max-width: 768px) {
    .subpage .banner h2 {
        font-size: 28px;
        line-height: 28px;
    }
}

@media(max-width: 480px) {
    .subpage .banner_box {
        height: 320px;
    }
}

/* 서브페이지 네비게이션 */
.subpage_nav {
    position: relative;
    z-index: 99;
    margin: -80px 0 0 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage_nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subpage_nav .inner>ul {
    width: 100%;

}

.subpage_nav .inner>ul>li {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    transition: 0.3s;
}


.subpage_nav .inner>ul:last-child>li {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage_nav .inner>ul>li>a {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 80px;
    text-align: left;
    padding: 0 24px;
    color: var(--white-color);
}

.subpage_nav .inner>ul>li>a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%);
    width: 12px;
    height: 1px;
    background: var(--white-color);
}

.subpage_nav .inner>ul>li>a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%) rotate(90deg);
    width: 12px;
    height: 1px;
    background: var(--white-color);
    transition: 0.3s;
}

.subpage_nav .inner>ul>li.on>a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%) rotate(0);
    width: 12px;
    height: 1px;
    background: var(--white-color);
    transition: 0.3s;
}

.subpage_nav .subpage_nav_wrap {
    z-index: 9;
    position: absolute;
    top: 80px;
    left: -1px;
    width: calc(100% + 2px);
    height: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid var(--line-color);
    background: var(--white-color);

    overflow: hidden;
    visibility: hidden;

    transition: 0.3s;
}

.subpage_nav .subpage_nav_wrap>li {}

.subpage_nav .subpage_nav_wrap>li:last-child {
    border-bottom: none;
}

.subpage_nav .subpage_nav_wrap>li>a {
    display: block;
    padding: 0 24px;
    line-height: 56px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.subpage_nav .subpage_nav_wrap.on {
    height: 220px;
    overflow: auto;
    visibility: visible;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .subpage_nav {
        margin: -56px 0 0 0;
        backdrop-filter: blur(1px);
    }

    .subpage_nav .inner {
        padding: 0;
    }

    .subpage_nav .inner>ul:nth-child(1) {
        display: none;
    }

    .subpage_nav .inner>ul>li {
        border-left: none;
    }

    .subpage_nav .inner>ul>li:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .subpage_nav .inner>ul>li>a {
        line-height: 56px;
    }

    .subpage_nav .subpage_nav_wrap {
        top: 56px;
    }
}

@media (max-width: 480px) {


    .subpage_nav .inner>ul>li>a {
        font-size: 14px;
    }

    .subpage_nav .subpage_nav_wrap>li>a {
        font-size: 14px;
        line-height: 40px;
    }
}

/* 게시판 통합 basic 리스트 스킨 */


#bo_list #bo_cate {
    margin: 0 0 16px 0;
}

#bo_list #bo_cate_ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

#bo_list #bo_cate_ul li {
    display: block;
    padding: 0;
}

#bo_list #bo_cate a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 38px;
    color: #999;
    width: 80px;
    border: 1px solid var(--line-color);
    transition: 0.3s;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.subpage #bo_list #bo_cate_on {
    color: var(--white-color);
    border: 1px solid var(--pri-color);
    background: var(--pri-color);
    box-shadow: none;
}

#bo_list #bo_cate a:focus,
#bo_list #bo_cate a:hover,
#bo_list #bo_cate a:active {
    color: var(--white-color);
    background: var(--pri-color);
}

#bo_list .board_itm_wrap {
    margin: 0 0 24px 0;
}

#bo_list .board_itm_list {
    display: flex;
    flex-direction: column;
}

#bo_list .board_itm_list .board_itm {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-color);
}

#bo_list .board_itm_list .board_itm:first-child {
    border-top: 1px solid var(--line-color);
}

#bo_list .board_itm_list .board_itm .top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

#bo_list .board_itm_list .board_itm .bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #999;
    font-size: 16px;
    font-weight: 300;
}

#bo_list .board_itm_list .board_itm .bottom .sv_member {
    color: #999;
}

.board_itm .bo_cate_link {
    display: none;
}

.board_itm .bo_tit a {
    font-size: 18px;
    line-height: 18px;
    color: #333333;
}

.bo_fx .more_opt li button,
.bo_fx .more_opt li a {
    font-size: 14px;
}

@media(max-width: 768px) {
    #bo_list #bo_cate_ul>li {
        width: 100%;
        max-width: 120px;
    }

    #bo_list #bo_cate a {
        width: unset;
    }

    #bo_list .board_itm_list .board_itm {
        padding: 16px 0;
    }

    #bo_list .board_itm_list .board_itm .top {
        display: block;
    }

    .board_itm .bo_tit a {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-size: 16px;
        line-height: 16px;
    }

    #bo_list .board_itm_list .board_itm .bottom {
        font-size: 14px;
        line-height: 14px;
    }
}

@media(max-width: 480px) {
    #bo_list #bo_cate_ul {
        gap: 0;
    }

    #bo_list #bo_cate a {
        font-size: 14px;
        border-right: none;
    }

    #bo_list #bo_cate_ul li:last-child a {
        border-right: 1px solid var(--line-color);
    }

    #bo_list .board_itm_list .board_itm {
        gap: 12px;
    }

    .board_itm .bo_tit a {
        font-size: 14px;
        line-height: 14px;
    }

    #bo_list .board_itm_list .board_itm .bottom {
        font-size: 12px;
        line-height: 12px;
    }

}

/* 게시판 통합 basic 뷰스킨 */
#bo_v_header {
    padding: 40px 0;
    background: #f9f9f9;
    border-top: 2px solid var(--pri-color);
}

#bo_v_header #bo_v_title {
    margin: 0 0 24px 0;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
}

#bo_v_header .profile_info_ct {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}

#bo_v_header .profile_info_ct>li {
    position: relative;
}

#bo_v_header .profile_info_ct>li~li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(0, -50%);
    width: 1px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
}

#bo_v_header .profile_info_ct span {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: #999;
}

#bo_v_header .profile_info_ct .catagory .bo_v_cate {
    font-weight: 500;
    color: var(--pri-color);
}

#bo_v_header .profile_info_ct strong span {
    color: #444;
    margin: 0 0 0 4px;
}

.subpage #bo_v_con {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    min-height: unset;
}

.subpage #bo_v_atc {
    padding: 40px 0;
    min-height: unset;
    border-bottom: 1px solid var(--line-color);
}

.subpage #bo_v_top>ul {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: end;
    margin: 24px 0 0 0;
}

.subpage #bo_v_top>ul>li {
    margin: 0;
    padding: 0;
    width: unset;
}

@media(max-width: 768px) {
    #bo_v_header {
        padding: 24px;
    }

    #bo_v_header #bo_v_title {
        font-size: 18px;
        line-height: 26px;
        word-break: keep-all;
        margin: 0 0 16px 0;
    }

    #bo_v_header .profile_info_ct span {
        font-size: 14px;
        line-height: 14px;
    }

    #bo_v_header .profile_info_ct {
        gap: 16px;
    }

    #bo_v_header .profile_info_ct>li~li::before {
        left: -12px;
    }
}

@media(max-width: 480px) {
    #bo_v_header #bo_v_title {
        font-size: 16px;
        line-height: 24px;
    }

    #bo_v_header .profile_info_ct span {

        font-size: 12px;
        line-height: 12px;
    }

    #bo_v_header .profile_info_ct strong span {
        margin: 0;
    }

    #bo_v_header .profile_info_ct>li~li::before {
        left: -8px;
        height: 10px;
    }

    .subpage #bo_v_atc {
        padding: 24px 0;
    }

    .subpage #bo_v_con {
        font-size: 14px;
    }

    .subpage #bo_v_top>ul {
        margin: 16px 0 0 0;
    }

    .subpage #bo_v_top>ul>li>a {
        padding: 0;
        height: unset;
        font-size: 14px;
        line-height: 14px;
    }

    .subpage #bo_v_top>ul>li>a>span {}
}

/* 게시판 media 리스트 스킨 */
.gall_page #bo_gall {
    min-height: unset;
}

.gall_page #bo_gall #gall_ul {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gall_page #bo_gall #gall_ul .gall_li {
    width: 100%;
}

.gall_page #bo_gall #gall_ul .gall_box {
    margin: 0;
    border-radius: 0;
}

.gall_page #bo_gall #gall_ul .gall_box .gall_con {}

.gall_page #bo_gall #gall_ul .gall_box .bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    padding: 24px;
    height: 136px;
    border: 1px solid var(--line-color);
    border-top: none;
}

.gall_page #bo_gall #gall_ul .gall_img {
    height: 320px;
    border: 1px solid var(--line-color);
}

.gall_page #bo_gall #gall_ul .gall_img a {
    height: 100%;
}

.gall_page #bo_gall #gall_ul .gall_img a img {
    width: 100%;
    height: 100% !important;
}

.gall_page #bo_gall .gall_text_href {
    margin: 0;
}

.gall_page #bo_gall .gall_text_href>a {
    font-size: 18px;
    line-height: 26px;
    color: var(--black-color);
}

.gall_page #bo_gall .gall_info {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
}

.gall_page #bo_gall #gall_ul .gall_date,
.gall_page #bo_gall #gall_ul .gall_name {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    font-size: 16px;
    line-height: 16px;
    color: #999;
}

.gall_page #bo_gall #gall_ul .gall_date .date_time,
.gall_page #bo_gall #gall_ul .gall_name .sv_member {
    position: relative;
    color: #444;
}

.gall_page #bo_gall #gall_ul .gall_date .date_time::before,
.gall_page #bo_gall #gall_ul .gall_name .sv_member::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translate(0, -50%);
    height: 10px;
    width: 1px;
    background: rgba(0, 0, 0, 0.2);

}

@media(max-width: 1400px) {
    .gall_page #bo_gall #gall_ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 1040px) {
    .gall_page #bo_gall #gall_ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .gall_page #bo_gall #gall_ul {
        gap: 16px;
    }

    .gall_page #bo_gall .gall_text_href>a {
        font-size: 16px;
        line-height: 24px;
        word-break: keep-all;
    }

    .gall_page #bo_gall #gall_ul .gall_date,
    .gall_page #bo_gall #gall_ul .gall_name {
        font-size: 14px;
        line-height: 14px;
    }

    .gall_page #bo_gall #gall_ul .gall_box .bottom {
        height: auto;
    }
}

@media(max-width: 620px) {
    .gall_page #bo_gall #gall_ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width: 480px) {
    .gall_page #bo_gall .gall_text_href>a {
        font-size: 14px;
        line-height: 22px;
    }

    .gall_page #bo_gall #gall_ul .gall_box .bottom {
        padding: 16px;
        gap: 8px;
    }

    .gall_page #bo_gall #gall_ul .gall_img {
        height: 240px;
    }

    .gall_page #bo_gall #gall_ul .gall_date,
    .gall_page #bo_gall #gall_ul .gall_name {
        font-size: 12px;
        line-height: 12px;
    }

    .gall_page #bo_gall #gall_ul .gall_date .date_time::before,
    .gall_page #bo_gall #gall_ul .gall_name .sv_member::before {
        height: 8px;
    }
}