/* footer.css */

.footer_links {
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #f0f0f0;
    padding: 2rem;
    border-top: 2px solid #ccc;
}

.footer_links h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

/* 最初のリンクリスト（TOPやログインなど） */
.footer_links > li,
.footer_links > li a {
    list-style: none;
    margin: 0.3rem 0;
    display: block;
}

.footer_links > li a {
    text-decoration: none;
    color: #007BFF;
    padding: 0.4rem 0.5rem;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.footer_links > li a:hover {
    background-color: #e0e0e0;
}

/* 認証後に表示されるリスト */
.footer_links ul {
    margin-top: 1rem;
    padding-left: 1rem;
}

.footer_links ul li {
    margin: 0.3rem 0;
}

.footer_links ul li a {
    text-decoration: none;
    color: #28a745;
    padding: 0.4rem 0.5rem;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.footer_links ul li a:hover {
    background-color: #d4edda;
}

