@charset "utf-8";

#contents{
    position: relative;
    overflow: hidden;
}
.h_title{
    padding: 30px 0;
    position: relative;
}
.h_title::after{ /* 가상요소 검토 필요!! */
    width: 650px;
    border-bottom: 1px solid #CFCDCD;
    position: absolute;
    content: '';
    top: 188px;
    left: 50%;
    transform: translateX(-50%);
}


.h_title h1{
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 35px;
    text-align: center;
}
.h_title ul{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.h_title ul li a{
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    padding: 0 20px;
    margin: 0 15px;
}
.h_title ul li a:hover, .h_title ul li.on a{
    color: #FF9727;
    text-decoration: underline 2px;
    text-underline-offset: 3px;
}

#artists_list ul{
    max-width: 800px;
    margin: 30px auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#artists_list ul li{
    width: 30%; /* 이미지 부분 검토 필요!! 세로 사이즈를 부여할 수는 없는 건지 무조건 이미지 사이즈를 맞추어야 하는 건지*/
    margin: 30px 1.5% 10px;
}


#artists_list ul li a figure img{
    width: 100%;
    vertical-align: top;
}


#artists_list ul li a span{
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

#bg_c_1, #bg_c_2, #bg_c_3{
    border-radius: 50%;
    position: absolute;
    text-indent: -9999px;
}

#bg_c_1{
    width: 640px;
    height: 640px;
    background: rgba(255, 151, 39, 0.8);
    top: 8%;
    left: calc(50% - 1000px);

}

#bg_c_2{
    width: 340px;
    height: 340px;
    background: rgba(255, 208, 154, 0.8);
    top: 58%;
    left: calc(50% - 700px);
}

#bg_c_3{
    width: 420px;
    height: 420px;
    background: rgba(254, 236, 175, 0.8);
    top: 27%;
    right: calc(50% - 760px);
}


@media screen and (max-width:768px) {
    #artists_list ul li{
        width: 45%;
        margin: 20px 2.5%;
    }

    .h_title::after{
        display: none;
    }
    .h_title{
        padding-bottom: 0;
    }
    .h_title h1{
        font-size: 20px;
        margin-bottom: 5px;
    }
    .h_title ul li a{
        height: 40px;
        line-height: 40px;
        font-size: 13px;
        font-weight: 500;
    }

    .h_title ul li:nth-child(1) a{
        margin-left: 30px;
        margin-right: 0;
    }

    #artists_list ul{
        margin-top: 0;
    }

    .bg_all{
        display: none;
    }




}/* mobile 0-768 */

@media screen and (min-width:769px){

    #artists_list ul li{
    z-index: 10;
    }
    #artists_list ul li a figure{
        overflow: hidden;
    } 
    #artists_list ul li a figure img{
    transition: 0.5s;
    }

    #artists_list ul li a:hover figure img{
        transform: scale(1.2);   
    }
} /* pc 769 이상 ~ */