@charset "utf-8";
/* boxFloor */
.boxFloor{
    text-align: center;
}
/* btnBox */
.boxFloor .btnBox{
    margin-top: 7rem;
}
.boxFloor .btnBox a{
    width: 46rem;
    height: 10rem;
    border-radius: 5rem;
    color: #041640;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--pcFontSize22);
    font-weight: bold;
    margin: 0 auto;
    text-decoration: none;
}
.boxFloor .btnBox a span{
    position: relative;
    display: block;
    padding-left: 3rem;
}
.boxFloor .btnBox a span::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: url(../img/index/iconBtn.png) center top / cover no-repeat;
}
/* txtFloor */
.boxFloor .txtFloor{
    margin-top: 4rem;
}
.boxFloor .txtFloor .txt{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_18);
}
.boxFloor .txtFloor a.txt{
    text-decoration: underline;
    color: inherit;
}
@media only screen and (max-width:767px){
    /* btnBox */
    .boxFloor .btnBox {
        margin-top: 4rem;
    }
    .boxFloor .btnBox a{
        width: 30rem;
        height: 6rem;
        border-radius: 3rem;
        font-size: var(--spFontSize14);
    }
    .boxFloor .btnBox a span{
        padding-left: 2.1rem;
    }
    .boxFloor .btnBox a span::before{
        width: 1.4rem;
        height: 1.4rem;
    }
    /* txtFloor */
    .boxFloor .txtFloor{
        margin-top: 2rem;
    }
    .boxFloor .txtFloor .txt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_167);
    }
}