.sp_on{
    display: none;
}

.membership_list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    height: auto;
    padding: 10rem 2rem 2rem;
    background-color: #1C2158;
    color: #ffffff;
}

.membership_list h3{
    margin-bottom: 3rem;
}

.membership_list ul {
    margin-bottom: 4rem;
}

.membership_list ul li{
    list-style: none;
    line-height: 2.4rem;
    font-size: 1.1rem;
}

.membership_list ul a{
    color: #ffffff;
    text-decoration: none;
    transition: all .3s;
}

.membership_list ul a:hover{
    color: #ECA140;
}

@media (max-width: 768px) {
    .pc_on{
        display: none;
    }

    .sp_on{
        display: block;
    }

    .membership_list ul li{
        font-size: 0.9rem;
    }
}