@charset "utf-8";

/* secCmnNextLoad */
.secCmnNextLoad{
    width: 50rem;
    height: 8rem;
    margin: 5rem auto 21rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secCmnNextLoad .btn{
    width: 100%;
    height: 100%;
    color: var(--linkColor);
    font-weight: bold;
    font-size: var(--pcFontSize16);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 1px solid var(--linkColor_35);
}
.secCmnNextLoad .txtLoad{
    display: block;
    position: relative;
    padding-right: 2.7rem;
    font-weight: bold;
}
.secCmnNextLoad .txtLoad::before{
    content: '';
    position: absolute;
    width: 2.1rem;
    height: 2.1rem;
    top: calc(50% - 1.05rem);
    right: 0;
}
.secCmnNextLoad.lazyloaded .txtLoad::before{
    background: url(../img/common/iconBtnNext.png)center top / cover no-repeat;
}
.secCmnNextLoad #listLoading{
    display: none;
}
@media only screen and (max-width:767px){
    .secCmnNextLoad{
        width: calc((335 / 375) * 100%);
        padding: 0 2rem;
        height: 6rem;
        margin: 30px auto 8rem;
    }
    .secCmnNextLoad .btn{
        font-size: var(--spFontSize13);
    }
}
