div.footer_shadow {
    height: 12px;
    box-shadow: 0 5px 5px -5px var(--gray-col);
    position: relative;
}
footer{
    width:100%;
    margin:0;
    background-color:var(--light_yellow-col);
    font-size:12px;
}

footer div.footer_body{
    max-width:var(--base-width);
    width:100%;
    margin: 0 auto;
}
footer div.footer_body > div.footer_body_child {
    display:inline-block;
    width: 49%;
    box-sizing: border-box;
    border:0px;
}
footer div.footer_body > div.footer_body_child > div{
    display:inline-block;
}
footer a{
    color:var(--black-col);
}
footer div.footer_body > div.footer_body_child div.kugiri {
    margin: 0 1rem;
    width: 1px;
    height: 0.75rem;
    background-color: var(--base-col);
}
footer img{
    top: 5px;
    left: 10px;
    display: inline-block;
    position: relative;
}



@media screen and (min-width: 1024px) {
    footer{
        height:70px;
        line-height:70px;
    }
    footer div.footer_body > div.footer_body_child {
        display:inline-block;
        width: 49%;
        box-sizing: border-box;
        border:0px;
    }
    footer div.footer_body > div.footer_body_child.last {
        text-align:right;
    }
}
@media screen and (max-width: 1023px) {
    footer{
        padding-top:10px;
        height:100px;
        line-height:40px;
    }
    footer div.footer_body > div.footer_body_child {
        display:block;
        width: 100%;
        box-sizing: border-box;
        border:0px;
        text-align:center;
    }
}


@media screen and (max-width:932px) {

    footer {
        height: 50px;
        line-height: 0px;
    }

    footer img {
        top: 8px;
        left: 0px;
    }

    footer div.footer_body > div.footer_body_child > div.footer_body_child_first {
        display: none;
    }

}