@charset "euc-kr";
/*ÀÏ¹Ý°Ô½ÃÆÇ °Ë»ö¹Ù*/
.board_top {
}

.board_search {
    display: flex;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #f4f5f6;
    gap: 12px;
}

.board_search .p-input {
    height: 50px;
    border-radius: 8px;
    margin: 0 !important;
}

.board_search select.p-input {
    width: auto !important;
}

.board_search .p-btn {
    margin-top: 0;
    flex-shrink: 0;
}

.board_search .p-btn .btn {
    font-size: 18px;
    width: 90px;
    height: 50px;
    padding: 0;
}

.board_paging {
    display: flex;
    display: -webkit-flex;
    margin-top: 50px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

.board_paging .all {
    color: #444;
    font-size: 18px;
    font-weight: 600;
}

.board_paging .all em {
    color: #136acb;
    font-style: normal;
}

.board_paging .all span {
    font-weight: 400;
}

/*ÀÏ¹Ý°Ô½ÃÆÇ ¸®½ºÆ®*/
.boardlist {
    overflow: hidden;
    width: 100%;
}

.boardlist table {
    width: 100%;
    table-layout: fixed;
    border-top: 2px solid #33363d;
    line-height: 30px;
    border-collapse: collapse;
}

.boardlist table thead tr {
    border-bottom: 1px solid #cdd1d5;
}

.boardlist table thead tr th {
    padding: 14px 10px;
    background-color: #f4f5f6;
    color: #222;
    font-weight: 500;
    line-height: 22px;
    font-size: 18px;
}

.boardlist table tbody tr {
    border-bottom: 1px solid #cdd1d5;
}

.boardlist table tbody tr:hover {
    background-color: #fbfafa;
}

.boardlist table tbody tr td {
    /* overflow:hidden; */
    height: 70px;
    padding: 14px 10px;
    color: #464c53;
    font-size: 18px;
    text-align: center;
}

.boardlist table tbody tr td.m_hidden {
    display: table-cell !important;
}

.boardlist table tbody tr td.title_box .title {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.boardlist table tbody tr td.title_box .title.center {
    justify-content: center;
}

.boardlist table tbody tr td.title_box .title a {
    overflow: hidden;
    color: #464c53;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.boardlist table tbody tr td.title_box .title a:hover {
    text-decoration: underline;
}

.boardlist table tbody tr td.title_box .title a i.new {
    margin-left: 2px;
    background-color: #0778d6;
    border-radius: 9px;
    font-size: 0;
    width: 22px;
    display: inline-block;
    height: 19px;
    vertical-align: middle;
    font-style: normal;
    margin-top: -2px;
    text-align: center;
}

.boardlist table tbody tr td.title_box .title a i.new:before {
    display: block;
    content: 'N';
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
}

.boardlist table tbody tr td.title_box .title span.comment {
    margin-left: 5px;
}

.boardlist table tbody tr td.title_box .title img.secret {
    margin-left: 7px;
}

.boardlist table tbody tr td.title_box .title.comment a {
    padding-left: 23px;
    background-image: url('../images/board/icon_comment.png');
    background-repeat: no-repeat;
    background-position: left center;
}

.boardlist table tbody tr td div.radio_box input[type=radio] + label {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    padding-left: 0;
}

.boardlist table tbody tr.fix {
    background-color: #f6faff !important;
}

.boardlist table tbody tr.fix td span.notice {
    display: inline-block;
    width: 62px;
    border-radius: 25px;
    background-color: #136acb;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 32px;
    white-space: nowrap;
}

.boardlist table tbody tr td .file_icon {
    font-size: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../images/board/file_icon.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.nodata {
    padding: 50px 0 !important;
    color: #222 !important;
    font-size: 18px;
    text-align: center;
}

.nodata:hover {
    background-color: #fff !important;
}

/*ÇÏ´Ü ¹öÆ°*/
.button_box {
    display: flex;
    display: -webkit-flex;
    position: relative;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.button_box > div {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    align-items: center;
    gap: 8px;
}

.button_box .left {
    justify-content: flex-start
}

.button_box .center {
    justify-content: center;
}

.button_box .right {
    justify-content: flex-end;
    margin-top: 0;
}

.button_box .p-btn {
    margin-top: 0;
}

.button_box .btn {
    margin-left: 10px;
    word-break: keep-all;
    font-size: 18px;
    width: 90px !important;
    height: 50px;
    padding: 0;
    line-height: 48px;
}

.button_box .btn:first-child {
    margin-left: 0 !important;
}

.button_box .btn.right {
    position: absolute;
    top: 0;
    right: 0;
}

.button_box.bw80 .btn {
    width: auto;
    min-width: 80px;
    padding: 0 24px;
}

.button_box.bw180 .btn {
    max-width: 180px;
}

/*ÆäÀÌÂ¡*/
.paging {
    display: flex;
    display: -webkit-flex;
    margin-top: 45px;
    justify-content: center;
}

.paging button {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 3px;
    border: 0;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    color: #464c53;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    line-height: 40px;
}

.paging button:last-child {
    margin-right: 3px;
}

.paging button:hover, .paging button.on {
    background-color: #f4f5f6;
    color: #136acb;
    font-weight: 500;
}

.paging button.btn-paging-first {
    margin: 0 6px 0 0;
    border-width: 1px;
    background-image: url('../images/board/paging_first.png');
    background-size: 15px;
}

.paging button.btn-paging-pre {
    margin: 0 15px 0 0;
    border-width: 1px;
    background-image: url('../images/board/paging_prev.png');
    background-size: 9px;
}

.paging button.btn-paging-next {
    margin: 0 0 0 15px;
    border-width: 1px;
    background-image: url('../images/board/paging_next.png');
    background-size: 9px;
}

.paging button.btn-paging-last {
    margin: 0 0 0 6px;
    border-width: 1px;
    background-image: url('../images/board/paging_last.png');
    background-size: 15px;
}

.paging button.btn-paging-first:hover, .paging button.btn-paging-pre:hover, .paging button.btn-paging-next:hover, .paging button.btn-paging-last:hover {
    opacity: 1;
    background-color: transparent;
}

/*ÀÏ¹Ý°Ô½ÃÆÇ »ó¼¼*/
.board_detail {
    /* border-top:2px solid #222;*/
}

.board_detail .title_box {
    display: flex;
    display: -webkit-flex;
    padding: 0 0 35px;
    justify-content: space-between;
    align-items: center;
    /* border-bottom:1px solid #9ba5af;*/
}

.board_detail .title_box h3 {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    color: #222;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.board_detail .title_box h3:before {
    display: none;
}

.board_detail .title_box h3 .answer {
    margin-right: 15px;
    padding-left: 23px;
    background: url('../images/board/icon_comment.png') no-repeat 0 2px;
    color: #666;
    font-size: 16px;
}

.board_detail .title_box h3 .notice {
    width: 60px;
    height: 30px;
    margin-right: 10px;
    border-radius: 5px;
    background-color: #dd2f4f;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
}

.board_detail .title_box h3 .new {
    margin-left: 10px;
}

.board_detail .title_box .date {
    color: #666;
    font-size: 14px;
}

.board_detail > div, .board_detail > ul {
    /* border-bottom:1px solid #e4e4e4;*/
}

.board_detail .list_box {
    padding: 0 20px 30px 20px;
}

.board_detail .list_box li.answerer {
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.board_detail .list_box li.date {
    color: #666;
    font-size: 15px;
}

.board_detail .list_box2 {
    padding: 15px 20px;
}

.board_detail .content_bar {
    display: flex;
    display: -webkit-flex;
    position: relative;
    padding: 30px 0 5px;
    border-bottom: 0;
    justify-content: flex-end;
}

.board_detail .content_bar button {
    margin-right: 10px;
}

.board_detail .content_bar button:last-of-type {
    margin-right: 0;
}

.board_detail .content_bar .btn_more {
    height: 40px;
    padding: 0 20px;
    border-radius: 40px;
    background-color: #dd2f4f;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.board_detail .content_bar .btn_more .icon {
    width: 6px;
    height: 11px;
    margin-left: 15px;
}

.board_detail .content_bar .btn_more .icon::after, .board_detail .content_bar .btn_more .icon::before {
    left: -4px;
    border-radius: 2px;
    background-color: #fff;
    transform-origin: right;
}

.board_detail .content_bar .btn_more .icon::after {
    transform: rotate(45deg);
}

.board_detail .content_bar .btn_more .icon::before {
    top: calc(50% - 3px);
    transform: rotate(-45deg);
}

.board_detail .content_bar .share_box {
    display: none;
    position: absolute;
    top: 78px;
    right: 0;
    z-index: 30;
    padding: 20px !important;
    border: 1px solid #e4e4e4;
    background-color: #fff;
}

.board_detail .content_bar .share_box.in {
    display: block;
}

.board_detail .content_bar .share_box .btn_close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.board_detail .content_bar .share_box .btn_close .icon {
    width: 17px;
    height: 17px;
}

.board_detail .content_bar .share_box .btn_close .icon::after, .board_detail .content_bar .share_box .btn_close .icon::before {
    top: 8px;
    left: -2px;
    width: 21px;
    height: 1px;
    background-color: #606060;
}

.board_detail .content_bar .share_box .button_box {
    margin: 0 0 20px;
    padding: 0 20px;
}

.board_detail .content_bar .share_box .button_box .btn_share {
    width: 80px;
    font-size: 15px;
}

.board_detail .content_bar .share_box .button_box .btn_share span {
    display: block;
    margin-top: 5px;
}

.board_detail .content_bar .share_box .link_box {
    display: flex;
    display: -webkit-flex;
}

.board_detail .content_bar .share_box .link_box .inpbox {
    width: 100%;
    height: 40px;
}

.board_detail .content_bar .share_box .link_box button {
    width: 90px;
    height: 40px;
    margin-left: 10px;
    background-color: #475157;
    color: #fff;
    flex: none;
}

.board_detail .content_box {
    padding: 25px 20px;
    color: #222;
    font-size: 18px;
    line-height: 1.44;
    word-break: break-all;
}

.board_detail .content_box img {
    max-width: 100%;
}

.board_detail .list_box {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-flex-wrap: wrap;
}

.board_detail .list_box li {
    position: relative;
    margin-right: 25px;
    padding-right: 25px;
    color: #666;
    font-size: 16px;
}

.board_detail .list_box li::after {
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    width: 1px;
    height: 11px;
    background-color: #ccc;
    content: '';
}

.board_detail .list_box li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.board_detail .list_box li:last-child::after {
    display: none;
}

.board_detail .list_box li span {
    margin-right: 18px;
    color: #333;
    font-weight: 500;
}

.board_detail .file_box {
    position: relative;
    padding: 30px 40px 30px 150px;
    border-radius: 12px;
    background-color: #f4f5f6;
}

.board_detail .file_box:before {
    display: block;
    position: absolute;
    top: 30px;
    left: 40px;
    content: 'Ã·ºÎÆÄÀÏ';
    color: #222;
    font-size: 18px;
}

.board_detail .file_box li {
    display: flex;
    display: -webkit-flex;
    margin-bottom: 8px;
    align-items: stretch;
}

.board_detail .file_box li:last-child {
    margin-bottom: 0;
}

.board_detail .file_box li a {
    position: relative;
    padding: 0 10px 0 28px;
    background-image: url('../images/board/file_icon.png');
    color: #444;
    font-size: 18px;
    background-repeat: no-repeat;
    background-position: 0 3px;
    text-decoration: underline;
    line-height: 1.2;
}

.board_detail .file_box li .button_box {
    margin-top: 0;
    align-items: flex-start;
}

.board_detail .file_box li button {
    width: 90px;
    height: 28px;
    margin-left: 5px;
    background-size: 13px;
    font-size: 13px;
    flex: none;
}

.board_detail .slider-for {
    position: relative;
    width: 900px;
    margin: 0 auto 10px;
}

.board_detail .slider-for .slick-arrow {
    opacity: 1;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.68);
}

.board_detail .slider-for .slick-arrow::after, .board_detail .slider-for .slick-arrow::before {
    top: 24px;
    left: 20px;
    width: 15px;
    height: 2px;
    border-radius: 0;
    background-color: #fff;
}

.board_detail .slider-for .slick-arrow.slick-prev {
    left: 0;
}

.board_detail .slider-for .slick-arrow.slick-next {
    right: 0;
}

.board_detail .slider-for .slick-list .slick-track .slick-slide .list button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.4);
}

.board_detail .slider-for .slick-list .slick-track .slick-slide .list button::after, .board_detail .slider-for .slick-list .slick-track .slick-slide .list button::before {
    position: absolute;
    top: 50%;
    left: calc(50% - 9px);
    width: 19px;
    height: 1px;
    background-color: #fff;
    content: '';
}

.board_detail .slider-for .slick-list .slick-track .slick-slide .list button::before {
    transform: rotate(90deg);
}

.board_detail .slider-for .slick-list .slick-track .slick-slide .list img {
    width: 100%;
}

.board_detail .slider-nav {
    width: 910px;
    margin: 0 auto 40px;
}

.board_detail .slider-nav .slick-list .slick-track .slick-slide {
    overflow: hidden;
    padding: 0 5px;
}

.board_detail .slider-nav .slick-list .slick-track .slick-slide .list {
    position: relative;
    height: 112px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.board_detail .slider-nav .slick-list .slick-track .slick-slide.slick-current .list::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/board/icon_check.png');
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.3);
    content: '';
}

.board_detail .video_box {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    margin-top: 30px;
}

.board_detail .video_box iframe, .board_detail .video_box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.board_detail .video_box .contents {
    width: 100%;
    height: 130px;
    padding: 15px;
    border-top: 1px solid #e1e1e1;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    overflow-y: auto;
}

.board_detail .content_box {
    padding: 60px 50px 80px 50px;
}

.board_detail .content_box img {
    max-width: 100%;
}

/*ÀÌÀü±Û ´ÙÀ½±Û*/
.view_bottom {
    margin-top: 120px;
    border-top: 1px solid #464c53;
}

.view_bottom dl {
    display: flex;
    display: -webkit-flex;
    padding: 20px 0;
    border-bottom: 1px solid #cdd1d5;
}

.view_bottom dl dt {
    width: 190px;
    padding: 0 34px;
    color: #222;
    font-size: 18px;
    font-weight: 500;
}

.view_bottom dl dt span {
    position: relative;
    padding-left: 35px;
}

.view_bottom dl dt span::after {
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    width: 20px;
    height: 14px;
    content: '';
}

.view_bottom dl.next dt span::after {
    background: url('../images/board/board_arrow.png') no-repeat center;
}

.view_bottom dl.prev dt span::after {
    background: url(../images/board/board_arrow.png) no-repeat center;
    transform: rotate(180deg);
}

.view_bottom dl dd {
    width: calc(100% - 120px);
    padding: 0 20px 0 30px;
}

.view_bottom dl dd a {
    display: block;
    overflow: hidden;
    color: #464c53;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view_bottom dl dd a:hover {
    text-decoration: underline;
}

.photo_swiper {
    overflow: hidden;
}

.photo_swiper .swiper-wrapper {
}

.photo_swiper .swiper-slide {
    height: 100%;
    background: #f4f5f6 url(/idolbom/images/hmpg/sub/dolbom_none_img.png) no-repeat center / 99px;
    aspect-ratio: 16/9;
}

.photo_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.photo_swiper.mySwiper2 {
    border-radius: 20px;
}

.photo_swiper.mySwiper2 .swiper-wrapper {
}

.photo_swiper.mySwiper2 .swiper-slide {
}

.photo_swiper.mySwiper2 .swiper-slide img {
}

.photo_swiper.mySwiper {
    margin-top: 20px;
}

.photo_swiper.mySwiper .swiper-wrapper {
}

.photo_swiper.mySwiper .swiper-slide {
    cursor: pointer;
}

.photo_swiper.mySwiper .swiper-slide,
.photo_swiper.mySwiper .swiper-slide button {
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
}

.photo_swiper.mySwiper .swiper-slide button {
    outline-offset: -1px;
}

@media (max-width: 1000px) {
    .board_search {
        padding: 15px;
        gap: 5px;
    }

    .board_search .p-input {
        font-size: 15px;
        height: 44px;
    }

    .board_search select.p-input {
    }

    .board_search .p-btn {
    }

    .board_search .p-btn .btn {
        width: 70px !important;
        font-size: 16px;
        height: 44px;
    }

    .board_paging {
        margin: 30px 0 10px;
    }

    .board_paging .all {
        font-size: 14px;
    }

    .board_paging .all em {
    }

    /*ÀÏ¹Ý°Ô½ÃÆÇ ¸®½ºÆ®*/
    .boardlist table, .boardlist table tbody, .boardlist table tbody tr td {
        display: block;
    }

    .boardlist table thead {
        display: none;
    }

    .boardlist table tbody tr {
        display: flex;
        display: -webkit-flex;
        position: relative;
        padding: 10px 0;
        flex-wrap: wrap;
        align-items: center;
        -webkit-flex-wrap: wrap;
    }

    .boardlist table tbody tr:hover {
        background: 0;
    }

    .boardlist table tbody tr td {
        height: auto;
        padding: 3px 0;
        font-size: 12px;
        text-align: left;
        line-height: 16px;
    }

    .boardlist table tbody tr td.m_hidden {
        display: none !important;
    }

    .boardlist table tbody tr td.title_box {
        width: 100%;
    }

    .boardlist table tbody tr td.title_box .title.center {
        justify-content: left;
    }

    .boardlist table tbody tr td.title_box .title a {
        color: #222;
        font-size: 16px;
        line-height: 16px;
    }

    .boardlist table tbody tr td.title_box .title a i.new {
        width: 14px;
        margin: -3px 0 0 2px;
        height: 14px;
        border-radius: 4px;
    }

    .boardlist table tbody tr td.title_box .title a i.new:before {
        font-size: 10px;
        line-height: 14px;
    }

    .boardlist table tbody tr td.title_box .title span.comment {
        margin-left: 5px;
    }

    .boardlist table tbody tr td.title_box .title img.secret {
        width: 12px;
        margin: -2px 0 0 5px;
    }

    .boardlist table tbody tr td.title_box .title.comment a {
        padding-left: 20px;
        background-size: 12px auto;
    }

    .boardlist table tbody tr td.title_box.w_hidden {
        margin: 0 0 5px;
    }

    .boardlist table tbody tr td.block {
        display: block;
        width: 100%;
    }

    .boardlist table tbody tr td.topright {
        position: absolute;
        top: 10px;
        right: 0;
    }

    .boardlist table tbody tr td.bottomright {
        position: absolute;
        right: 0;
        bottom: 10px;
    }

    .boardlist table tbody tr td.flex {
        display: flex;
        display: -webkit-flex;
        width: 100%;
    }

    .boardlist table tbody tr td.flex span {
        margin-right: 20px;
    }

    .boardlist table tbody tr td.line {
        position: relative;
        margin-right: 7px;
        padding-right: 8px;
    }

    .boardlist table tbody tr td.line::after {
        position: absolute;
        top: calc(50% - 5px);
        right: 0;
        width: 1px;
        height: 10px;
        background-color: #c6c6c6;
        content: '';
    }

    .boardlist table tbody tr td.date {
        line-height: 24px;
    }

    .boardlist table tbody tr td .file_icon {
        width: 15px;
    }

    .boardlist table tbody tr.fix { /* padding:5px 10px;*/
    }

    .boardlist table tbody tr.fix td span.notice {
        width: 35px;
        height: 20px;
        margin: -4px 5px 0 0;
        border-radius: 20px;
        font-size: 11px;
        line-height: 20px;
    }

    .boardlist table tbody tr td.nodata {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }

    .boardview.boardlist2 table tbody tr {
        position: relative;
    }

    .boardlist.boardlist2 table tbody tr td {
        width: calc(100% - 35px);
        margin-left: 35px;
        padding: 5px 0;
        font-size: 12px;
        text-align: left;
    }

    .boardlist.boardlist2 table tbody tr td .check_box.center input[type=checkbox] + label::before {
        left: 0;
    }

    .boardlist.boardlist2 table tbody tr td:first-child {
        position: absolute;
        top: calc(50% - 16px);
        left: -35px;
        width: 18px;
    }

    .boardlist.boardlist2 table tbody tr td:first-child div.radio_box input[type=radio] + label {
        width: 18px;
        height: 18px;
    }

    .boardlist.boardlist2 table tbody tr td .w_hidden {
        display: inline-block !important;
        margin-right: 5px;
    }

    .boardlist.boardlist2 table tbody tr td .w_hidden::after {
        display: none;
    }

    .boardlist.boardlist2 table tbody tr td a {
        font-size: 12px;
    }

    /*ÇÏ´Ü ¹öÆ°*/
    .button_box {
        margin-top: 10px;
    }

    .button_box .btn {
        margin-left: 5px;
        font-size: 16px;
        width: auto !important;
        height: 44px;
        padding: 0 18px;
        line-height: 42px;
    }

    .button_box .btn.right {
        position: relative;
        top: 0;
        right: 0;
    }

    .button_box.bw80 .btn {
        min-width: 70px;
        padding: 0 23px;
        font-size: 15px;
    }

    .button_box.flexwrap {
        flex-wrap: wrap;
    }

    .button_box.flexwrap > div + div {
        margin-top: 10px;
    }

    .button_box.flexwrap .right {
        justify-content: left;
    }

    .button_box.many {
        flex-wrap: wrap;
    }

    .button_box.many > div {
        justify-content: center;
    }

    .button_box.many > div + div {
        margin-top: 10px;
    }

    /*ÆäÀÌÂ¡*/
    .paging {
        margin-top: 10px;
    }

    .paging button {
        width: 30px;
        height: 30px;
        background-size: auto 10px;
        font-size: 14px;
        line-height: 26px;
    }

    .paging button.btn-paging-first {
        margin: 0 3px 0 0;
        background-size: 12px;
    }

    .paging button.btn-paging-pre {
        margin: 0 5px 0 0;
        background-size: 7px;
    }

    .paging button.btn-paging-next {
        margin: 0 0 0 5px;
        background-size: 7px;
    }

    .paging button.btn-paging-last {
        margin: 0 0 0 3px;
        background-size: 12px;
    }

    /*ÀÏ¹Ý°Ô½ÃÆÇ »ó¼¼*/
    .board_detail .title_box {
        padding: 5px 0;
    }

    .board_detail .title_box h3 {
        font-size: 20px;
    }

    .board_detail .title_box h3 .answer {
        margin-right: 5px;
        padding-left: 20px;
        background: url('/idolbom/images/hmpg/icon_comment.png') no-repeat 0 2px / 12px auto;
        font-size: 13px;
    }

    .board_detail .title_box h3 .notice {
        width: 45px;
        height: 24px;
        margin-right: 5px;
        border-radius: 3px;
        font-size: 12px;
        line-height: 24px;
    }

    .board_detail .title_box h3 .new {
        margin-left: 5px;
    }

    .board_detail .title_box .date {
        font-size: 12px;
    }

    .board_detail .list_box {
        padding: 10px 10px 15px;
    }

    .board_detail .file_box li a {
        font-size: 14px;
        position: relative;
        top: 2px;
        padding: 0 5px 0 18px;
        background-position: 0 3px;
        background-size: 12px;
    }

    .board_detail .list_box li {
        margin-right: 5px;
        padding-right: 5px;
        font-size: 15px;
        line-height: 1.6;
    }

    .board_detail .list_box li.answerer {
        font-size: 14px;
    }

    .board_detail .list_box li.date {
        font-size: 11px;
    }

    .board_detail .content_bar {
        display: flex;
        display: -webkit-flex;
        padding: 15px 0 0;
        border-bottom: 0;
        justify-content: flex-end;
    }

    .board_detail .content_bar .btn_more {
        height: 30px;
        padding: 0 10px 0 15px;
        font-size: 13px;
    }

    .board_detail .content_bar .btn_more .icon {
        margin-left: 10px;
        transform: scale(0.8);
    }

    .board_detail .content_bar .btn_more .icon::after, .board_detail .content_bar .btn_more .icon::before {
        left: -10px;
    }

    .board_detail .content_bar .btn_more .icon::before {
        top: calc(50% - 1px);
    }

    .board_detail .content_bar .btn_share img {
        width: 30px;
    }

    .board_detail .content_bar .share_box {
        top: 50px;
        padding: 10px !important;
    }

    .board_detail .content_bar .share_box .btn_close {
        top: 2px;
        right: 2px;
        transform: scale(0.7);
    }

    .board_detail .content_bar .share_box .button_box {
        margin: 0 0 10px;
        padding: 0;
    }

    .board_detail .content_bar .share_box .button_box .btn_share {
        width: 52px;
        margin-left: 0;
        font-size: 11px;
    }

    .board_detail .content_bar .share_box .link_box .inpbox {
        height: 32px;
    }

    .board_detail .content_bar .share_box .link_box button {
        width: 70px;
        height: 32px;
    }
    
    .board_detail .video_box .youtube {
        position: relative;
        width: 100%;
        height: auto;
        padding-top: 56.25%;
    }

    .board_detail .video_box .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .board_detail .video_box .video {
        width: 100%;
    }

    .board_detail .video_box .contents {
        margin-top: 20px;
        padding: 15px;
        font-size: 14px;
        line-height: 22px;
    }

    .board_detail .content_box {
        padding: 20px 15px;
        font-size: 16px;
    }

    .board_detail .file_box {
        padding: 12px 15px;
        border-radius: 8px;
    }

    .board_detail .file_box:before {
        display: none;
        position: relative;
        top: auto;
        left: auto;
        font-size: 16px;
        font-weight: 500;
    }

    .board_detail .slider-for {
        width: calc(100% - 4px);
        margin: 0 2px 4px;
    }

    .board_detail .slider-for .slick-arrow {
        top: calc(50% - 12px);
        width: 25px;
        height: 25px;
    }

    .board_detail .slider-for .slick-arrow::after, .board_detail .slider-for .slick-arrow::before {
        top: 12px;
        left: 10px;
        width: 7px;
        height: 1px;
    }

    .board_detail .slider-for .slick-list .slick-track .slick-slide .list button {
        width: 22px;
        height: 22px;
    }

    .board_detail .slider-for .slick-list .slick-track .slick-slide .list button::after,
    .board_detail .slider-for .slick-list .slick-track .slick-slide .list button::before {
        left: calc(50% - 5px);
        width: 10px;
    }

    .board_detail .slider-nav {
        width: 100%;
        margin: 0 auto 20px;
    }

    .board_detail .slider-nav .slick-list .slick-track .slick-slide {
        overflow: hidden;
        padding: 0 2px;
    }

    .board_detail .slider-nav .slick-list .slick-track .slick-slide .list {
        height: auto;
        padding-top: 65%;
    }

    .board_detail .slider-nav .slick-list .slick-track .slick-slide.slick-current .list::after {
        background-size: 20%;
    }

    /*ÀÌÀü±Û ´ÙÀ½±Û*/
    .view_bottom {
        margin-top: 30px;
    }

    .view_bottom dl {
        padding: 15px 0;
        font-size: 13px;
    }

    .view_bottom dl dt {
        width: 62px;
        padding: 0;
        font-size: 15px;
    }

    .view_bottom dl dt span {
        position: relative;
        padding-left: 23px;
    }

    .view_bottom dl dt span::after {
        top: 2px;
        width: 20px;
        height: 14px;
    }

    .view_bottom dl.next dt span::after {
        background-size: 10px auto; /* background-position:0 center;*/
    }

    .view_bottom dl.prev dt span::after {
        background-size: 10px auto; /* background-position:0 center;*/
    }

    .view_bottom dl dd {
        width: calc(100% - 62px);
        padding: 0 0 0 10px;
    }

    .view_bottom dl dd a {
        font-size: 15px;
    }
}

/* Æ÷Åä °Ô½ÃÆÇ */
.photo_list {
    margin-top: 24px;
    border-top: 2px solid #33363d;
    padding-top: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.photo_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 16px;
}

.photo_list ul li {
    overflow: hidden;
    width: calc(calc(100% - 48px) / 4);
    border-radius: 8px;
}

.photo_list ul li a {
    display: block;
}

.photo_list ul li .news-img {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 469 / 260;
}

.photo_list ul li .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.photo_list ul li .news-title {
    margin-top: 16px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    word-break: keep-all;
    transition: 0.25s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo_list ul li .news-date {
    margin-top: 8px;
    color: #777;
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 1001px) {
    .photo_list ul li:hover .news-img img {
        transform: scale(1.125);
    }

    .photo_list ul li:hover .news-title {
        color: #136acb;
    }
}

@media (max-width: 1000px) {
    .photo_list {
        margin-top: 10px;
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .photo_list ul {
        gap: 20px 16px;
    }

    .photo_list ul li {
        width: calc(calc(100% - 16px) / 2);
    }

    .photo_list ul li .news-title {
        margin-top: 12px;
        font-size: 16px;
    }

    .photo_list ul li .news-date {
        margin-top: 4px;
        font-size: 14px;
    }

    .photo_list ul li:hover {
    }
}

@media (max-width: 767px) {
    .photo_list ul li {
        width: 100%;
    }

    .photo_list ul li .news-img img {
        height: auto
    }
}
