/*
========================
front-page
========================
*/
.main {
    margin-top: calc(52px + 1px);
    background: var(--wp--custom--color--blue--100);
}

@media screen and (min-width: 1280px) {
    .main {
        margin-top: calc(80px + 1px);
    }
}

/*
========================
MV
========================
*/
.mv {
    padding: 20px;
}

.mv_wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 400px;
}

.mv_inner {
    display: flex;
    padding: 48px 28px 28px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 157, 253, 0.26) 0%, rgba(0, 157, 253, 0.26) 100%);
    z-index: 2;
}

.mv_text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mv_concept {
    font-weight: 700;
    font-size: 10px;
    color: var(--wp--custom--color--gray--50);
}

.mv_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mv_title_name {
    display: flex;
    gap: 2px;
}

.mv_title_char {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    background: var(--wp--custom--color--gradation--orange);
    font-size: 18px;
    border-radius: 2px;
    color: var(--wp--custom--color--gray--50);
    font-weight: 700;
    padding-bottom: 2px;
    box-sizing: border-box;
    text-align: center;
}

.mv_title_logo {
    height: 20px;
}

.mv_image_box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mv_image {
    display: block;
    width: 200px;
    height: 268px;
    object-fit: cover;
    object-position: top;
}

.mv_search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    box-sizing: border-box;
    width: 100%;
    max-width: 280px;
}

.search_tag_list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

@media screen and (min-width: 1280px) {
    .mv {
        padding: 40px;
    }

    .mv_wrapper {
        flex-direction: row;
        border-radius: 40px;
        height: 500px;
        box-sizing: border-box;
    }

    .mv_inner {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        padding: 32px 96px 0;
        z-index: 1;
    }

    .mv_text_box {
        align-items: flex-start;
        gap: 12px;
    }

    .mv_concept {
        font-size: 20px;
    }

    .mv_title {
        align-items: flex-start;
    }

    .mv_title_name {
        gap: 4px;
    }

    .mv_title_char {
        width: 38px;
        height: 38px;
        font-size: 32px;
        border-radius: 4px;
        padding-bottom: 3px;
    }

    .mv_title_logo {
        height: 36px;
    }

    .mv_search {
        width: 50%;
        max-width: 540px;
        align-items: flex-start;
        padding: 20px;
        border: 1px solid var(--wp--custom--color--neutral--50);
        background: rgba(255, 255, 255, 0.25);
        border-radius: 40px;
    }

    .search_tag_list {
        justify-content: flex-start;
        gap: 8px;
    }

    .mv_image_box {
        z-index: 2;
        left: auto;
        transform: none;
        right: 120px;
    }

    .mv_image {
        display: block;
        width: 280px;
        height: 440px;
    }
}

/*
========================
guide
========================
*/
.guide_wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding-top: 16px;
}

@media screen and (min-width: 1280px) {
    .guide_wrapper {
        flex-direction: row;
        padding: 40px 200px;
    }
}

/*
========================
article_box
========================
*/
.article_box {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media screen and (min-width: 1280px) {
    .article_box {
        position: relative;
        padding: 0;
        gap: 56px;
        align-items: center;
        overflow: hidden;
    }
}

/*
========================
card list
========================
*/
.card_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: visible;
    width: 100%;
}

.slide_button {
    display: none;
}

@media screen and (min-width: 1280px) {
    .card_list {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
}

/*
========================
animation card list
========================
*/
@media screen and (min-width: 1280px) {
    .animation_card_list {
        display: flex;
        justify-content: center;
        position: relative;
        left: 0;
        transition: transform 0.5s ease;
    }

    .card_list .animation_card {
        max-width: 320px;
        flex: 0 0 auto;
        opacity: 0.2;
    }

    .card_list .active {
        opacity: 1;
    }
}

/*
========================
slide button
========================
*/
@media screen and (min-width: 1280px) {
    .slide_button {
        display: flex;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: calc(1200px + (160px * 2 ));
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        box-sizing: border-box;
        padding: 0 160px;
    }

    .slide_button > .pagination_btn {
        pointer-events: auto;
        background: var(--wp--custom--color--gradation--blue, linear-gradient(135deg, #4BC0E8 0%, #0A72DB 100%));
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }

    .pagination_btn.arrow-prev-button,
    .pagination_btn.arrow-next-button {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .slide_button > .pagination_btn > svg > path {
        fill: white;
    }

    .slide_button > .pagination_btn:hover {
        background: rgba(0,0,0,0.8);
    }
}

/*
========================
dot
========================
*/
.dot_list {
    display: none;
}

@media screen and (min-width: 1280px) {
    .dot_list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .dot {
        display: block;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--wp--custom--color--neutral--50);
        cursor: pointer;
    }

    .dot_active {
        width: 18px;
        height: 18px;
        background: var(--wp--custom--color--gradation--blue);
    }
}

/*
========================
news
========================
*/
.news_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.news_list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (min-width: 1280px) {
    .news_box {
        padding: 0 160px;
        gap: 32px;
    }

    .news_list {
        padding: 0 56px;
        box-sizing: border-box;
    }
}

/*
========================
event
========================
*/
.event_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}



@media screen and (min-width: 1280px) {
    .event_box {
        padding: 0 160px;
        gap: 64px;
    }

    .event_box .card_list {
        max-width: 1280px;
    }
}
