/* ------------------------------

    ボトム

------------------------------ */
.bottomBody{
    height: 80vh;
}

.bottomMessage{
    width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottomMessageBody{
    font-size: 1.5rem;
    letter-spacing: 0.125rem;
}

.bottomMessageBody br{
    display: none;
}



/* ------------------------------

    フッター

------------------------------ */
footer{
    background-color: #000000;
    height: 20vh;
    margin: 0;
}

.footerGroup{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerItem{
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    cursor: pointer;
}

/* ============================================================

    SP対応

============================================================ */
/* @media screen and (max-width: 768px){ */
@media screen and (max-width: 1279px){

    /* ------------------------------

        ボトム

    ------------------------------ */
    .bottomBody{
        height: 85vh;
    }

    .bottomMessage{
        width: 80%;
        margin: 0 auto;
    }

    .bottomMessageBody{
        line-height: 2.5rem;      
    }

    .bottomMessageBody br{
        display: block;
    }

    /* ------------------------------

        フッター

    ------------------------------ */
    footer{
        height: 15vh;
    }

    .footerItemLink{
        display: none;
    }
}