@charset "utf-8";
/* CSS Document */
.footer_bn_area{
    width: 100%;
    height: 100px;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_bn_area a{
    display: contents;
    width:25%;
}
.footer_bn_area img{
    width:24%;
    padding: 10px 4px;
}
@media screen and (max-width: 959px) {
    .footer_bn_area{
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .footer_bn_area a{
        margin: 0 auto;
        display: block;
        width:100%;
        text-align: center;
    }
    .footer_bn_area img{
        width:90%;
        padding: 10px 4px;
    }
}