/* 英語版のみで使う共通調整（主にフッターのレイアウト調整） */
.site-footer {
    background: #f5f5f5;
    padding: 32px 0;
}

.site-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.site-footer .footer-links li {
    margin: 0;
}

.site-footer .footer-links a {
    color: #2d2d2d;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.site-footer .footer-links a:hover {
    text-decoration: underline;
}

.site-footer .copyright {
    text-align: center;
    color: #555;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 600px) {
    .site-footer .footer-links a {
        font-size: 13px;
    }

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