/* Shared site footer. Kept external so every page uses one maintainable source. */
.site-footer {
    background: #fff;
    color: #333;
}

.site-footer .footertop {
    padding: 40px 24px 28px;
    text-align: center;
}

.site-footer .site-footer__logo {
    margin: 0 auto 24px;
}

.site-footer .site-footer__logo img {
    display: block;
    width: 80px;
    height: auto;
    margin: 0 auto;
}

.site-footer .site-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .site-footer__links li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-footer .site-footer__links li + li::before {
    width: 1px;
    height: 1em;
    margin: 0 18px;
    background: #d9b9b5;
    content: "";
}

.site-footer .site-footer__links a {
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
}

.site-footer .site-footer__links a:hover,
.site-footer .site-footer__links a:focus-visible {
    color: #cf2937;
}

.site-footer .footerbottom {
    padding: 20px 24px 22px;
    border-top: 1px solid #ead7d4;
    background: #fff8f7;
    text-align: center;
}

.site-footer .footerbottom p {
    margin: 0;
}

.site-footer .site-footer__copyright {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}

.site-footer .site-footer__rights {
    margin-left: 0.35em;
}

.site-footer .site-footer__notice {
    max-width: 640px;
    margin: 6px auto 0;
    color: #666;
    font-size: 12px;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .site-footer .footertop {
        padding: 36px 18px 26px;
    }

    .site-footer .site-footer__logo {
        margin-bottom: 20px;
    }

    .site-footer .site-footer__links li + li::before {
        margin: 0 14px;
    }

    .site-footer .site-footer__links a {
        font-size: 14px;
    }

    .site-footer .footerbottom {
        padding: 18px 16px calc(76px + env(safe-area-inset-bottom));
    }

    .site-footer .site-footer__copyright {
        font-size: 12px;
    }

    .site-footer .site-footer__rights {
        display: block;
        margin: 2px 0 0;
    }

    .site-footer .site-footer__notice {
        font-size: 11px;
    }
}
