@charset "utf-8";
/*-----------------------------------------------
    secCmnNextLoad
-----------------------------------------------*/
.secCmnNextLoad{
    width: 40rem;
    height: 8rem;
    margin: 6rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secCmnNextLoad .btn{
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--ColorWhite);
    border: 1px solid var(--ColorBlack);
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: var(--pcFontSize16);
    box-shadow: inset 0 -0.7rem 0 0 var(--nextLoad_shadow);
}
.secCmnNextLoad .btn::before,
.secCmnNextLoad .btn::after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 4rem;
    width: 1.4rem;
    height: 0.2rem;
    background-color: var(--ColorBlack);
}
.secCmnNextLoad .btn::after{
    transform: rotate(90deg);
}
.secCmnNextLoad #listLoading{
    display: none;
}
@media only screen and (max-width:1215px){
    .secCmnNextLoad{
        width: 27.5rem;
        height: 5.4rem;
        margin-top: 3rem;
    }
    .secCmnNextLoad .btn{
        border-radius: 2.7rem;
        font-size: var(--spFontSize12);
        box-shadow: inset 0 -0.4rem 0 0 var(--nextLoad_shadow);
    }
    .secCmnNextLoad .btn::before,
    .secCmnNextLoad .btn::after{
        left: 3rem;
        width: 1.2rem;
    }
}