/* フッター */
footer {
    display: flex;
    justify-content: center; /* フッター全体を中央揃え */
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #555; /* 濃すぎないグレー */
    padding: 20px;
    background-color: #f9f9f9; /* 明るめの背景色 */
    border-top: 1px solid #ddd; /* 軽やかに見えるように上部にライン */
}

/* フッター内の要素を中央揃え */
.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* フッターのリンク（もし追加する場合） */
.footer-container a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.footer-container a:hover {
    text-decoration: underline;
    color: #333;
}
