@charset "utf-8";

/*********************************************************************
*
*  For artist
*
*********************************************************************/

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (max-width: 767px) {
    .page_cp .contents_wrap::before {
        display: none;
    }
}

/* ---------------------------------------------------- */
/* sec_artist_wrap */
/* ---------------------------------------------------- */
.sec_artist_wrap .list {
    position: relative;
}

.sec_artist_wrap .list+.list {
    margin-top: 70px;
}

.sec_artist_wrap .list_sat {
    z-index: 2;
}

.sec_artist_wrap .list .day {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    margin: 0 auto 70px;
    width: 200px;
    height: 200px;
    color: #FFF;
    font-size: 4.0rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.1em;
    border-radius: 50%;
}

.sec_artist_wrap .list .day.sat {
    background-color: #3966b4;
}

.sec_artist_wrap .list .day.sun {
    background-color: #d9534e;
}

.sec_artist_wrap .list .day span {
    margin-top: 5px;
    width: 100%;
    font-size: 2.0rem;
    letter-spacing: 0.05em;
}

.sec_artist_wrap .list>ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.sec_artist_wrap .list>ul>li {
    position: relative;
    margin: 0 10px 20px;
    width: 310px;
}

.sec_artist_wrap .list a {
    display: block;
}

.sec_artist_wrap .list .img {
    position: relative;
    margin-bottom: 15px;
    background-color: #FFF;
}

.sec_artist_wrap .list .new .img::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    display: block;
    width: 54px;
    height: 54px;
    background-image: url(../../common/img/ico/new_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sec_artist_wrap .list .img img {
    transition: opacity 0.3s ease-in-out;
}

.sec_artist_wrap .list a:hover .img img {
    opacity: 0.6;
}

.sec_artist_wrap .list .name {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
}

.sec_artist_wrap .andmore {
    margin-top: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

@media (min-width: 768px) {
    /* .sec_artist_wrap .list_sat>ul>li:nth-child(7),
    .sec_artist_wrap .list_sat>ul>li:nth-child(9) {
        margin-left: 50px;
    }
    .sec_artist_wrap .list_sat>ul>li:nth-child(8),
    .sec_artist_wrap .list_sat>ul>li:nth-child(10) {
        margin-right: 50px;
    }

    .sec_artist_wrap .list_sun>ul>li:nth-child(7),
    .sec_artist_wrap .list_sun>ul>li:nth-child(9) {
        margin-left: 50px;
    }
    .sec_artist_wrap .list_sun>ul>li:nth-child(8),
    .sec_artist_wrap .list_sun>ul>li:nth-child(10) {
        margin-right: 50px;
    } */
}


@media (max-width: 767px) {

    .sec_artist_wrap .nav_days {
        position: relative;
        margin-bottom: 50px;
        z-index: 3;
    }

    .sec_artist_wrap .nav_days>ul {
        display: flex;
    }

    .sec_artist_wrap .nav_days>ul>li {
        position: relative;
        width: 50%;
    }

    .sec_artist_wrap .nav_days>ul>li.sat {
        background-color: #3966b4;
    }

    .sec_artist_wrap .nav_days>ul>li.sun {
        background-color: #d9534e;
    }

    .sec_artist_wrap .nav_days>ul>li::after {
        content: "";
        position: absolute;
        top: 0;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        z-index: 2;
    }

    .sec_artist_wrap .nav_days>ul>li.sat::after {
        right: -20px;
        border-width: 40px 40px 0 0;
        border-color: #3966b4 transparent transparent transparent;
    }

    .sec_artist_wrap .nav_days>ul>li.sun::after {
        left: -20px;
        border-width: 0 0 40px 40px;
        border-color: transparent transparent #d9534e transparent;
    }

    .sec_artist_wrap .nav_days a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        color: #FFF;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.05em;
    }

    .sec_artist_wrap .nav_days a span>span {
        margin-left: 5px;
        font-size: 1.2rem;
    }

    .sec_artist_wrap .list::before {
        content: "";
        position: absolute;
        left: 0;
        top: -100px;
        display: block;
        margin: 0 -20px;
        width: calc(100% + 40px);
        height: 281px;
        background-image: url(../../common/img/bg/deco_3.png), url(../../common/img/bg/deco_4.png);
        background-size: 100px auto, 100px auto;
        background-position: left top, right top;
        background-repeat: no-repeat;
    }

    .sec_artist_wrap .list+.list {
        margin-top: 50px;
    }

    .sec_artist_wrap .list .day {
        margin: 0 auto 20px;
        width: 100px;
        height: 100px;
        font-size: 2.4rem;
    }

    .sec_artist_wrap .list .day span {
        font-size: 1.5rem;
    }

    .sec_artist_wrap .list>ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 -8px -15px;
    }

    .sec_artist_wrap .list>ul>li {
        margin: 0 8px 15px;
        width: calc(50% - 16px);
    }

    .sec_artist_wrap .list .img {
        margin-bottom: 8px;
    }

    .sec_artist_wrap .list .new .img::after {
        right: -8px;
        bottom: -8px;
        width: 28px;
        height: 28px;
    }

    .sec_artist_wrap .list .name {
        font-size: 1.4rem;
    }

    .sec_artist_wrap .andmore {
        margin-top: 20px;
        font-size: 1.3rem;
    }
}

@media (max-width: 374px) {
    .sec_artist_wrap .list .name {
        font-size: 1.3rem;
    }
}