@charset "utf-8";

/* main visual */
.mv_box {
    min-height: inherit;
    aspect-ratio: 1 / 0.42708333;
    width: 100%;
    margin-top: 80px;
}

.mv_box img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.mv_box .mv_pagination {
    bottom: 20px;
}

.mv_box .mv_pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.mv_box .mv_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}


@media (max-width:1024px) {
    .mv_box {
        margin-top: 60px;
    }
}

@media (max-width:768px) {
    .mv_box {
        aspect-ratio: unset;
        width: 100%;
        height: 200px;
    }

    .mv_box .mv_pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* common */
.section {
    padding: 72px 0;
}

.section:first-child:not(.section_latest_album) {
    padding-top: 144px;
}

.common_title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    font-family: 'Pretendard', sans-serif;

    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: fit-content;
}

/* Section Latest Album */

.section_latest_album .album_swiper {
    margin-top: 36px;
}

.section_latest_album .item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4px;
}

.section_latest_album .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.section_latest_album .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_latest_album .name {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_latest_album .date {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_latest_album .album_progress {
    margin-top: 36px;
    width: 100%;
    height: 4px;
    background: #D9D9D9;
    border-radius: 50px;
    overflow: hidden;
}

.section_latest_album .album_progress_bar {
    width: 0;
    height: 100%;
    background: #000;
    border-radius: 50px;
    transition: width 0.3s ease;
}

/* Section Videos */

.section_videos .video_swiper {
    margin-top: 36px;
}

.section_videos .item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4px;
}

.section_videos .thumb {
    width: 100%;
    aspect-ratio: 456 / 257;
    overflow: hidden;
}

.section_videos .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_videos .name {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_videos .view {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_videos .video_progress {
    margin-top: 36px;
    width: 100%;
    height: 4px;
    background: #D9D9D9;
    border-radius: 50px;
    overflow: hidden;
}

.section_videos .video_progress_bar {
    width: 0;
    height: 100%;
    background: #000;
    border-radius: 50px;
    transition: width 0.3s ease;
}

/* Section Shop */
.section_shop {
    background: #E6F2F9;
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
    overflow: hidden;
}

.section_shop .shop_box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 50px;
    border-radius: 50px;
}

.section_shop .shop_header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section_shop .shop_header svg {
    width: 57px;
    height: 57px;
    flex-shrink: 0;
}

.section_shop .shop_header_title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_shop .shop_content {
    display: flex;
    align-items: center;
    gap: 109px;
}

.section_shop .shop_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    max-width: 771px;
}

.section_shop .shop_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section_shop .shop_title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    font-family: 'Pretendard', sans-serif;
    line-height: 130%;
}

.section_shop .shop_desc {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_shop .shop_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    height: 40px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_shop .shop_btn svg {
    flex-shrink: 0;
}

.section_shop .shop_logo {
    width: 296px;
    flex-shrink: 0;
}

.section_shop .shop_logo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.section_shop .shop_bg_img {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 1022px;
    height: 1022px;
    z-index: 0;
    pointer-events: none;
}

.section_shop .shop_bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Notice */
/* Section Notice */

.section_notice .notice_head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.section_notice .view_all {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_notice .notice_list {
    margin-top: 36px;
}

.section_notice .notice_list li {
    border-bottom: 1px solid #000;
}

.section_notice .notice_list li:first-child {
    border-top: 1px solid #000;
}

.section_notice .notice_list li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 36px 18px;
}

.section_notice .notice_list .title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Pretendard', sans-serif;
}

.section_notice .notice_list .date {
    font-size: 16px;
    font-weight: 700;
    color: #888;
    font-family: 'Pretendard', sans-serif;
    flex-shrink: 0;
}

.section_notice .notice_paging {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

.section_notice .notice_paging .prev,
.section_notice .notice_paging .next {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
}

.section_notice .notice_paging .num {
    font-size: 16px;
    font-weight: 700;
    color: #D6D6D6;
    font-family: 'Pretendard', sans-serif;
}

.section_notice .notice_paging .num.active {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #007BC1;
    border-radius: 20px;
    color: #fff;
}

.main_footer_bar {
    width: 100%;
    background: #D9D9D9;
    height: 150px;
}

@media (max-width:768px) {
    .section {
        padding: 48px 0;
    }

    .common_title {
        font-size: 28px;
    }

    .common_title svg {
        width: 40px;
        height: 40px;
    }

    .section_latest_album .name {
        font-size: 16px;
    }

    .section_latest_album .date {
        font-size: 16px;
    }

    .section_videos .name {
        font-size: 16px;
    }

    .section_videos .view {
        font-size: 16px;
    }

    .section_videos .video_progress {
        width: 100%;
    }

    .section_shop {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section_shop .shop_box {
        padding: 30px;
        border-radius: 30px;
    }

    .section_shop .shop_header_title {
        font-size: 28px;
    }

    .section_shop .shop_header svg,
    .shop_header svg
     {
        width: 40px;
        height: 40px;
    }

    .section_shop .shop_content {
        flex-direction: column;
        gap: 40px;
    }

    .section_shop .shop_title {
        font-size: 28px;
    }

    .section_shop .shop_desc {
        font-size: 16px;
    }

    .section_shop .shop_logo {
        width: 200px;
    }

    .section_shop .shop_bg_img {
        display: none;
    }

    .section_notice .notice_list li a {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 20px 10px;
    }

    .main_footer_bar {
        height: 100px;
    }


    .section:first-child:not(.section_latest_album) {
    padding-top: 100px;
    }
}

