body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto; /* 画面最下部に固定する */
    padding: 10px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 5rem;
	font-size: 1rem;
}

.footer-links a {
    text-decoration: none; /* 下線を消す */
    color: #000; /* 黒文字 */
    font-weight: bold; /* 太文字 */
}

.footer-links a:hover {
    text-decoration: none; /* 下線が付かないように維持 */
}
