/* フッター */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 2rem 2rem;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ================================================================
   レスポンシブデザイン統合セクション
   ================================================================ */

/* モバイル対応（768px以下） */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
}

/* デスクトップ対応（1024px以上） */
@media (min-width: 1024px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-text {
        font-size: 1rem;
    }
}

