/*フッターのスタイル*/
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 14px;
    border-top: 1px solid #555;
    padding-top: 15px;
    margin-top: 15px;
}

/* スマホのみ縦並び */
@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    footer a {
        display: block;
        margin: 0;
    }
}