footer {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
}



.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.footer_container01 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 15%;
}
.footer_container01 img {
    width: 160px;
}
.footer_container01-text {
    display: flex;
    flex-direction: column;
}
.footer_container01-text .address {
    display: flex;
    flex-direction: column;
}
.footer_container01-text a {
    color: #6e3201;
    text-decoration: none;
}
.footer_container02 {
    display: flex;
    gap: 60px;
    margin-right: 30%;
}
.footer_container02 > div {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer_container02 > div a {
    color: #6e3201;
    font-size: 16px;
    text-decoration: none;
}
.footer_container02 div div {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 30px;

    border-left: solid 2px #6e3201;
}
.footer_container > a {
    display: none;
}



footer > p {
    position: absolute;
    bottom: 30px;
    left: 30px;

    font-size: 14px;
}





@media screen and (max-width:900px) {
    footer {
        position: relative;
        width: 100%;
        height: auto;
    }


    
    .footer_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 60px;
        width: 100%;
        height: 100%;
        padding: 100px 0;
    }
    .footer_container > a {
        display: block;
        margin: 0 auto;
        padding: 20px 60px;

        background: #6e3201;
        border-radius: 50px;

        color: #fff;
        font-size: 2.4rem;
        text-decoration: none;
        text-align: center;
    }
    .footer_container01 {
        margin-left: 0;
    }
    .footer_container02 {
        margin-right: 0;
    }

}