footer {
    color: var(--main-color);
}
footer a {
    color: var(--main-color);
}
@media (hover: hover) and (pointer: fine) {
    footer a:hover {
        opacity: .6;
    }
}
footer small {
    font-size: 13px;
}
.footer_wrapper {
    margin-top: 200px;
    padding: 6% 8%;
    background: #F7EEE3;
}
.container:has(.product_widget) + .footer_wrapper {
    margin-top: 0;
}
.footer_wrapper .footer_inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.footer_wrapper .footer_inner .footer_shopinfo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 40px 80px 40px 0;
    border-right: 1px solid #BBA891;
}
.footer_wrapper .footer_inner .footer_shopinfo .footer_logo {
    width: 240px;
}
.footer_wrapper .footer_inner .footer_shopinfo .footer_logo img {
    width: 100%;
    height: auto;
}
.footer_wrapper .footer_inner .footer_shopinfo .address {
    margin-top: 50px;
}
.footer_wrapper .footer_inner .footer_shopinfo .tel {
    margin-top: 16px;
}
.footer_wrapper .footer_inner .footer_shopinfo small {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-top: max(140px);
}
.footer_wrapper .footer_inner .footer_menubox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 50px 100px;
    width: 100%;
    padding: 40px 0 40px 80px;
}
.footer_wrapper .footer_inner .footer_menubox .footer_menu p {
    line-height: auto;
    font-size: 18px;
    font-weight: bold;
}
.footer_wrapper .footer_inner .footer_menubox .footer_menu ul {
    margin-top: 16px;
}
.footer_wrapper .footer_inner .footer_menubox .footer_menu ul li + li {
    margin-top: 10px;
}
.footer_small {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #D3C8BA;
}

@media screen and (max-width:990px) {
    .footer_wrapper {
        position: relative;
        padding: 70px 10% 120px;
    }
    .footer_wrapper .footer_inner {
        flex-direction: column;
    }
    .footer_wrapper .footer_inner .footer_shopinfo {
        padding: 0 0 56px;
        border-right: none;
        border-bottom: 1px solid #BBA891;
    }
    .footer_wrapper .footer_inner .footer_menubox {
        padding: 56px 0 0;
    }
    .footer_wrapper .footer_inner .footer_shopinfo small {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        white-space: nowrap;
    }
}
@media screen and (max-width:768px) {
    .footer_wrapper .footer_inner .footer_menubox {
        flex-direction: column;
    }
}
@media screen and (max-width:500px) {
    .footer_wrapper .footer_inner .footer_shopinfo .footer_logo {
        display: block;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
    .footer_wrapper {
        padding: 70px 20px 120px;
    }
}