/* 共通フッタースタイル */
.common-footer {
    width: 100%;
    text-align: center;
}

.common-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.common-footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.common-footer-links a:hover {
    color: #777;
    text-decoration: underline;
}

.common-footer-links a:visited {
    color: #aaa;
}

/* モバイル対応 */
@media screen and (max-width: 500px) {
    .common-footer {
        padding: 15px 0;
    }
    
    .common-footer-links {
        gap: 15px;
        flex-direction: row;
    }
    
    .common-footer-links a {
        font-size: 12px;
    }
}

