html, body {
    height: 100%;
    margin: 0;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

#content-wrap {
    flex: 1 0 auto;
}

/* --- ここから固定フッター --- */
.ts-footer {
    background: #5f6369;
    color: #fff;
    text-align: center;
    padding: 20px 0 10px 0;
    font-size: 1rem;
    width: 100vw;
    box-shadow: 0 -2px 8px rgba(40,40,50,0.10);
    margin-top: auto;
}
/* ↑ position: fixed, left: 0, bottom: 0, width: 100vw を追加 */

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    grid-template-rows: 30px;
    grid-template-columns: 160px 1fr 160px;
    grid-template-areas:
        "logo login"
        "logo copylight";
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
    margin-right: 1.5em;
    font-size: 0.98em;
}

.footer-link:hover {
    color: #a1cbff;
    text-decoration: underline;
}

.footer-user {
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0.3em;
}

.footer-logout {
    color: #a1cbff;
    text-decoration: underline;
    margin-left: 0.5em;
}

.footer-logout:hover {
    color: #ff8ba7;
    text-decoration: underline;
}

.footer-home {
    display: block;
    color: #a1cbff;
    text-decoration: underline;
    margin: 0.2em auto 0 auto;
    font-size: 0.98em;
    width: fit-content;
}

.footer-home:hover {
    color: #ff8ba7;
    text-decoration: underline;
}

/* レスポンシブ（スマホ） */
@media (max-width: 600px) {
    .footer-content {
        font-size: 0.93em;
        flex-direction: column;
        align-items: center;
        gap: 0.5em;
    }
    .footer-left,
    .footer-login,
    .copylight {
        margin-bottom: 0.3em;
    }
    .footer-home { font-size: 0.93em; }
}

.f-log{
    margin-right: 6px;
    height: 50px;
}

.footer-log {
    grid-area: logo;
    padding: 0 10px;
    display: flex;
    align-items: center;
    float: left;
}

.footer-login {
    grid-area: login;
    margin: 0.2em 0 0.4em 0;
    font-size: 0.99em;
}

.copylight{
    grid-area: copylight;
    font-size: 12px;
    text-align: center;
    line-height: 25px;
}
