/*--------------------
    フッター
----------------------*/
body footer {
    width: 100%;
    background-color: #1B224C;
    position: absolute;
}

footer .footer-contents {
    width: 80%;
    margin: auto;
    padding-top: 50px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
}

footer .links {
    display: flex;
    padding-bottom: 20px;
    margin: 0 0 auto auto;
}

footer .links ul {
    margin-right: 50px;
}

footer .links .skyblue {
    color: #00ACBA;
}

footer .links p {
    color: #fff;
    font-size: 16px;
    line-height: 2;
}

footer .links a {
    color: #fff;
    font-size: 14px;
    line-height: 1.75;
    font-weight: bold;
}

footer .footer_bottom {
    display: flex;
    align-items: center;
    background-color: #fff;
    text-align: center;
    width: 100%;
    font-size: 12px;
    margin-bottom: 0;
}

footer .footer_bottom a {
    line-height: 2.5;
}

footer .footer_bottom p {
    font-size: 12px;
}

footer .footer_bottom .flex {
    margin: auto;
    padding: 1rem 0;
    width: 80%;
    justify-content: space-between;
    position: relative;
}

footer .footer_bottom .absolute {
    position: absolute;
    left: 150px;
}

#user_footer {
    display: none;
}

@media screen and (max-width: 900px) {
    #user_footer {
        display: block;
        padding: 15px;
        position: fixed;
        bottom: 0;
        height: 80px;
        background-color: #ddd;
        z-index: 99999;
    }

    #user_footer .nav {
        display: flex;
        justify-content: space-around;
        margin: auto;
        width: 100%;
        height: 100%;
    }

    #user_footer .nav a {
        display: block;
        width: auto;
    }

    #user_footer .nav i.fa-regular,
    #user_footer .nav i.fa-solid,
    #user_footer .nav i.fas {
        margin: auto;
        font-size: 30px;
    }

    #user_footer .nav li {
        width: 50px;
        height: 50px;
        background-color: #83ae50;
        text-align: center;
        line-height: 50px;
        border-radius: 100%;
    }

    #user_footer .nav li a {}

    #user_footer .nav li a i {
        color: #fff;
    }


}