footer {
    color: whitesmoke;        /* 白文字 */
    font-size: 12px;          /* 小さめの文字 */
    text-align: center;        /* 中央揃え */
    margin-top: 40px;          /* 本文との間に余白 */
    padding: 10px 0;           /* 上下余白を確保 */
    width: 100%;               /* 幅を親に合わせる */
    box-sizing: border-box;    /* パディング込みで幅を計算 */
}

/* footer 内のすべての要素を中央揃え */
footer * {
    text-align: center !important;
}

footer a {
    color: whitesmoke;        /* リンクも白 */
    text-decoration: none;    /* 下線なし */
}

footer a:hover {
    text-decoration: underline; /* ホバー時だけ下線 */
}

.back-to-top {
    color: rgb(255, 77, 0);
    font-size: 16px;
    opacity: 0.7;
    text-decoration: none;
}

.back-to-top:hover {
    text-decoration: underline;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

