@charset "utf-8";

/* =====================
       FOOTER（すごく簡易）
    ====================== */
.l-footer {
    background: var(--brown-opacity50);
    color: #fff;
    padding-block: 32px;
    font-size: 1.3rem;
}

.l-footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.l-footer__name {
    font-weight: 600;
    margin: 0 0 4px;
}

.l-footer__copy {
    margin-top: 18px;
    text-align: center;
    opacity: 0.6;
}

.l-footer__copy a {
    text-decoration: none;
    color: #fff;
}

.l-footer__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.l-footer__info p {
    margin: 0;
}

.l-footer__info p a img {
    width: 230px;
}

.l-footer__nav ul li {
    list-style: "ー ";
}

.l-footer__nav ul li a {
    color: #fff;
}

@media screen and (max-width:991.98px) {
    .l-footer__info p a img {
    width: 180px;
}
}

@media screen and (max-width: 767.98px) {
    .l-footer__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 190px;
        margin: 0 auto;
    }

    .l-footer__nav {
        display: flex;
        width: 100%;
        justify-content: flex-start;
    }
}