.footer {
    position: relative;
    width: 100%;
    padding: 5rem 12rem 2rem;
    box-sizing: border-box;

    background-color: #D4D5D8;

    color: #181A31;
}



.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_container-leftBx p {
    font-size: 1.4rem;
    font-style: normal;
    text-align: left;
    line-height: 1.8;
}
.footer_container-leftBx p span {
    display: block;
    text-align: left;
}
.footer_container-rightBx {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 50%;
}
.footer_container-rightBx ul li {
    width: 16rem;

    font-size: 1.4rem;
    line-height: 2.7;
}
.footer_container-rightBx ul li a::before {
    content: "▶";
    color: #00A0B4;
    padding-right: 0.4rem;
    font-size: 0.8rem;
    position: relative;
    top: -0.2rem;
}



.footer > p {
    width: 100%;
    margin-top: 5rem;
    
    font-size: .6rem;
    text-align: center;
}





@media screen and (max-width: 800px) {
    .footer {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    
        background-color: #D4D5D8;
    
        color: #181A31;
    }



    .footer_container {
        display: block;
        width: 100%;
        padding: 5rem 5rem 2rem;
        box-sizing: border-box;
    }
    .footer_container-leftBx {
        text-align: center;
    }
    .footer_container-leftBx p {
        width: 70%;
        margin: 0 auto;
        font-style: normal;
        text-align: center;
        line-height: 1.8;
    }
    .footer_container-leftBx p span {
        display: block;
        text-align: center;
    }
    .footer_container-rightBx {
        display: block;
        width: 100%;
        height: 16rem;
        padding-top: 3rem;
    }
    .footer_container-rightBx ul {
        width: 100%;
    }
    .footer_container-rightBx ul li {
        width: 50%;
        float: left;
    }



    .footer > p {
        width: 100%;
        margin-top: 0;
        padding-bottom: 2rem;
        
        font-size: .6rem;
        text-align: center;
    }
}





@media screen and (max-width: 520px) {
    .footer_container {
        padding: 3rem 3rem;
        box-sizing: border-box;
    }


    
    .footer > p {
        width: 100%;
        margin-top: 0rem;
        padding-bottom: 2rem;
        
        font-size: .6rem;
        text-align: center;
    }
}