/* ── レイアウト ─────────────────────────────────────────────────────── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* ── ヘッダー ───────────────────────────────────────────────────────── */
.site-header {
    background: #003e8a;
    padding: 10px 20px;
    text-align: center;
}

.site-logo-link {
    display: inline-block;
    line-height: 0;
}

.site-logo-img {
    max-height: 48px;
    width: auto;
}

/* ── フッター ───────────────────────────────────────────────────────── */
.site-footer {
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    padding: 12px 20px;
    text-align: center;
}

.site-copyright {
    font-size: 12px;
    color: #888;
}
