/* ============================================
   footer-common.css — 全ページ共通フッター
   （topPage/index.html 以外）
   ============================================ */
.site-footer {
    background: rgba(0, 20, 210);
    padding: 48px 24px 36px;
    text-align: center;
}
.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 16px;
}
.site-footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer-links a:hover {
    color: white;
}
.site-footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}
