/* assets/css/footer-links.css */
/* フッターリンクのスタイル */

.footer-links-container {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 1em 0;
    margin-top: 2em;
    text-align: center;
    font-size: 0.9em;
    color: #6b7280;
}

.footer-links-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.footer-disclaimer {
    font-size: 0.75em;
    color: #9ca3af;
    margin-bottom: 0.8em;
    line-height: 1.4;
}

.footer-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    margin-bottom: 0.5em;
}

.footer-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.8em;
    color: #9ca3af;
}

