/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ================================================================
   MainLayout — ToamiCoreAuth
   ================================================================ */

/* ── アプリバー ──────────────────────────────────────────────── */
.ml-appbar[b-5nfk1niiyb] {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 3px solid #dc2626;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    padding: 0 20px 0 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.ml-hamburger[b-5nfk1niiyb] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
    transition: background 0.15s;
    flex-shrink: 0;
}

.ml-hamburger:hover[b-5nfk1niiyb] { background: rgba(0, 0, 0, 0.06); }

.ml-hamburger svg[b-5nfk1niiyb] {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.ml-appbar-sep[b-5nfk1niiyb] {
    width: 1px;
    height: 32px;
    background: #cbd5e1;
    flex-shrink: 0;
    margin: 0 16px;
}

.ml-appbar-logo[b-5nfk1niiyb] {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ml-appbar-title[b-5nfk1niiyb] {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1e293b;
    white-space: nowrap;
    margin-left: 16px;
    flex-shrink: 0;
    transform: translateY(1px);
}

/* グループ会社ロゴ列 */
.ml-appbar-logos[b-5nfk1niiyb] {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
}

.ml-company-logo[b-5nfk1niiyb] {
    height: 30px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.ml-appbar-spacer[b-5nfk1niiyb] { flex: 1; }

/* ── ユーザー情報（2行縦並び） ──────────────────────────── */
.ml-user-info[b-5nfk1niiyb] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-right: 4px;
    line-height: 1.4;
    flex-shrink: 0;
}

.ml-user-name[b-5nfk1niiyb] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

.ml-user-role[b-5nfk1niiyb] {
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
}

/* ── ログアウトアイコンボタン ────────────────────────────── */
.ml-logout-icon-btn[b-5nfk1niiyb] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #ef4444;
    transition: background 0.15s;
    flex-shrink: 0;
}

.ml-logout-icon-btn:hover[b-5nfk1niiyb] {
    background: rgba(239, 68, 68, 0.1);
}

.ml-logout-icon-btn svg[b-5nfk1niiyb] {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .ml-user-info[b-5nfk1niiyb] { display: none; }
}

@keyframes mlOverlayIn-b-5nfk1niiyb {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── ドロワー（サイドバー） ──────────────────────────────── */
.ml-drawer[b-5nfk1niiyb] {
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    width: 264px;
    background: #991b1b;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.18);
    z-index: 150;
    transform: translateX(-100%);
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.ml-drawer--open[b-5nfk1niiyb] {
    transform: translateX(0);
}

.ml-drawer-link[b-5nfk1niiyb] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.12s, color 0.12s, border-left-color 0.12s;
    min-height: 48px;
}

.ml-drawer-link svg[b-5nfk1niiyb] {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.88);
    flex-shrink: 0;
}

.ml-drawer-link:hover[b-5nfk1niiyb] {
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-left-color: rgba(255, 255, 255, 0.7);
}

.ml-drawer-link:hover svg[b-5nfk1niiyb] {
    fill: #ffffff;
}

.ml-drawer-link--active[b-5nfk1niiyb] {
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    border-left-color: #ffffff;
    font-weight: 700;
}

.ml-drawer-link--active svg[b-5nfk1niiyb] {
    fill: #ffffff;
}

/* ── メインコンテンツ ────────────────────────────────────── */
.ml-main[b-5nfk1niiyb] {
    min-height: 100vh;
    background: #f0f4f9;
    transition: margin-left 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.ml-main--shifted[b-5nfk1niiyb] {
    margin-left: 264px;
}

/* ── ログアウト確認ダイアログ ────────────────────────────── */
.ml-confirm-overlay[b-5nfk1niiyb] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: mlOverlayIn-b-5nfk1niiyb 0.2s ease;
}

.ml-confirm-dialog[b-5nfk1niiyb] {
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
    animation: mlDialogIn-b-5nfk1niiyb 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mlDialogIn-b-5nfk1niiyb {
    from { transform: translateY(16px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.ml-confirm-header[b-5nfk1niiyb] {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 55%, #dc2626 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.ml-confirm-header svg[b-5nfk1niiyb] {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    flex-shrink: 0;
}

.ml-confirm-msg[b-5nfk1niiyb] {
    padding: 1.5rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.75;
    margin: 0;
}

.ml-confirm-actions[b-5nfk1niiyb] {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.ml-confirm-ok[b-5nfk1niiyb] {
    flex: 1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
}

.ml-confirm-ok:hover[b-5nfk1niiyb] {
    opacity: 0.88;
    transform: translateY(-1px);
}

.ml-confirm-cancel[b-5nfk1niiyb] {
    padding: 0.75rem 1.25rem;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.ml-confirm-cancel:hover[b-5nfk1niiyb] {
    background: #e2e8f0;
    color: #334155;
}

/* ── Blazorエラー ────────────────────────────────────────── */
#blazor-error-ui[b-5nfk1niiyb] {
    color-scheme: light only;
    background: #dc2626;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: white;
    font-size: 0.875rem;
}

#blazor-error-ui .dismiss[b-5nfk1niiyb] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ── レスポンシブ ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ml-appbar-logos[b-5nfk1niiyb] { display: none; }
}

@media (max-width: 768px) {
    /* モバイルではドロワーをオーバーレイ表示（コンテンツシフトなし） */
    .ml-main--shifted[b-5nfk1niiyb] {
        margin-left: 0;
    }
    .ml-drawer[b-5nfk1niiyb] {
        z-index: 500;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    }
}

@media (max-width: 640px) {
    .ml-appbar-title[b-5nfk1niiyb] { display: none; }
    .ml-appbar-logo[b-5nfk1niiyb]  { display: none; }
    .ml-appbar-sep[b-5nfk1niiyb]   { display: none; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-4dwg1e2yc8],
.components-reconnect-repeated-attempt-visible[b-4dwg1e2yc8],
.components-reconnect-failed-visible[b-4dwg1e2yc8],
.components-pause-visible[b-4dwg1e2yc8],
.components-resume-failed-visible[b-4dwg1e2yc8],
.components-rejoining-animation[b-4dwg1e2yc8] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-retrying[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-failed[b-4dwg1e2yc8],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-4dwg1e2yc8] {
    display: block;
}


#components-reconnect-modal[b-4dwg1e2yc8] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-4dwg1e2yc8 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-4dwg1e2yc8 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-4dwg1e2yc8 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-4dwg1e2yc8]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-4dwg1e2yc8 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-4dwg1e2yc8 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-4dwg1e2yc8 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-4dwg1e2yc8 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-4dwg1e2yc8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-4dwg1e2yc8] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-4dwg1e2yc8] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-4dwg1e2yc8] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-4dwg1e2yc8] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-4dwg1e2yc8] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-4dwg1e2yc8] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-4dwg1e2yc8 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-4dwg1e2yc8] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-4dwg1e2yc8 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AdminLog.razor.rz.scp.css */
/* ===== ページ幅・テーブル表示 ===== */
.admin-body[b-532xp4pbbd] { max-width: 1800px; }
.admin-table tbody td[b-532xp4pbbd] { white-space: nowrap; }

/* ===== 検索パネル ===== */
.search-panel[b-532xp4pbbd] {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(200,16,46,0.08);
    box-shadow: 0 1px 3px rgba(200,16,46,0.05);
    padding: 1.125rem 1.5rem;
    margin-bottom: 1.5rem;
}

.search-fields[b-532xp4pbbd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.search-field[b-532xp4pbbd] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 160px;
    min-width: 130px;
}

.search-field.search-narrow[b-532xp4pbbd] { flex: 0 1 130px; }

.search-label[b-532xp4pbbd] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.search-actions[b-532xp4pbbd] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    flex-shrink: 0;
    padding-bottom: 0;
}

.btn-search[b-532xp4pbbd] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1.125rem;
    background: var(--toami-red); color: #fff;
    border: none; border-radius: 8px;
    font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.btn-search svg[b-532xp4pbbd] { width: 16px; height: 16px; fill: currentColor; }
.btn-search:hover:not(:disabled)[b-532xp4pbbd] { background: var(--toami-red-hover); }
.btn-search:disabled[b-532xp4pbbd] { opacity: 0.6; cursor: not-allowed; }

.btn-clear[b-532xp4pbbd] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: #fff; color: #374151;
    border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.btn-clear svg[b-532xp4pbbd] { width: 15px; height: 15px; fill: currentColor; }
.btn-clear:hover:not(:disabled)[b-532xp4pbbd] { background: #f9fafb; }
.btn-clear:disabled[b-532xp4pbbd] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 768px) {
    .search-fields[b-532xp4pbbd] { flex-direction: column; }
    .search-field[b-532xp4pbbd], .search-field.search-narrow[b-532xp4pbbd] { flex: 1 1 auto; min-width: 0; }
    .search-actions[b-532xp4pbbd] { width: 100%; }
    .btn-search[b-532xp4pbbd], .btn-clear[b-532xp4pbbd] { flex: 1; justify-content: center; }
}

.col-terminal[b-532xp4pbbd] { white-space: nowrap; }
.col-date[b-532xp4pbbd] {
    white-space: nowrap;
    font-size: 0.8125rem;
    color: #475569;
    font-family: 'SFMono-Regular', 'Consolas', monospace;
}

.ip-text[b-532xp4pbbd] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.8125rem;
    color: #475569;
}

.status-badge[b-532xp4pbbd] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    border: 1px solid;
    white-space: nowrap;
}
.status-success[b-532xp4pbbd] { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.status-error[b-532xp4pbbd]   { background: #fff0f0; color: #C8102E;  border-color: #fecaca; }
.status-logout[b-532xp4pbbd]  { background: #f8f5ff; color: #6d28d9;  border-color: #ddd6fe; }
.status-expired[b-532xp4pbbd] { background: #fff7ed; color: #c2410c;  border-color: #fed7aa; }
.status-valid[b-532xp4pbbd]   { background: #eff6ff; color: #1d4ed8;  border-color: #bfdbfe; }
.status-unknown[b-532xp4pbbd] { background: #f8fafc; color: #64748b;  border-color: #e2e8f0; }

/* ===== ページネーション ===== */
.pagination[b-532xp4pbbd] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.page-btn[b-532xp4pbbd] {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db; border-radius: 8px;
    background: #fff; color: #C8102E;
    font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.page-btn svg[b-532xp4pbbd] { width: 16px; height: 16px; fill: currentColor; }
.page-btn:hover:not(:disabled)[b-532xp4pbbd] { background: #fff0f0; border-color: #C8102E; }
.page-btn:disabled[b-532xp4pbbd] { opacity: 0.4; cursor: not-allowed; }

.page-info[b-532xp4pbbd] { font-size: 0.8125rem; color: #64748b; }

/* ===== アーカイブ通知バナー ===== */
.archive-banner[b-532xp4pbbd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.125rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    flex-wrap: wrap;
}
.archive-banner svg[b-532xp4pbbd] { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

.archive-banner-success[b-532xp4pbbd] { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.archive-banner-warning[b-532xp4pbbd] { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.archive-banner-error[b-532xp4pbbd]   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.banner-actions[b-532xp4pbbd] { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.btn-archive[b-532xp4pbbd] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.875rem;
    background: #d97706; color: #fff;
    border: none; border-radius: 7px;
    font-size: 0.8125rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.btn-archive svg[b-532xp4pbbd] { width: 14px; height: 14px; fill: currentColor; }
.btn-archive:hover[b-532xp4pbbd] { background: #b45309; }

.btn-archive-link[b-532xp4pbbd] {
    display: inline-flex; align-items: center;
    padding: 0.375rem 0.75rem;
    background: rgba(21, 128, 61, 0.1); color: #15803d;
    border: 1px solid #bbf7d0; border-radius: 7px;
    font-size: 0.8125rem; font-weight: 600;
    text-decoration: none; white-space: nowrap; transition: background 0.15s;
}
.btn-archive-link:hover[b-532xp4pbbd] { background: rgba(21, 128, 61, 0.18); }

.banner-loading[b-532xp4pbbd] { font-size: 0.8125rem; color: #92400e; }
/* /Components/Pages/AdminPasswordLog.razor.rz.scp.css */
/* ===== ページ幅・テーブル表示 ===== */
.admin-body[b-8xwr2c9lnf] { max-width: 1800px; }
.admin-table tbody td[b-8xwr2c9lnf] { white-space: nowrap; }

/* ===== 検索パネル ===== */
.search-panel[b-8xwr2c9lnf] {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(200,16,46,0.08);
    box-shadow: 0 1px 3px rgba(200,16,46,0.05);
    padding: 1.125rem 1.5rem;
    margin-bottom: 1.5rem;
}

.search-fields[b-8xwr2c9lnf] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.search-field[b-8xwr2c9lnf] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 160px;
    min-width: 130px;
}

.search-field.search-narrow[b-8xwr2c9lnf] { flex: 0 1 150px; }

.search-label[b-8xwr2c9lnf] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.search-actions[b-8xwr2c9lnf] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    flex-shrink: 0;
    padding-bottom: 0;
}

.btn-clear[b-8xwr2c9lnf] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: #fff; color: #374151;
    border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.btn-clear svg[b-8xwr2c9lnf] { width: 15px; height: 15px; fill: currentColor; }
.btn-clear:hover:not(:disabled)[b-8xwr2c9lnf] { background: #f9fafb; }
.btn-clear:disabled[b-8xwr2c9lnf] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 768px) {
    .search-fields[b-8xwr2c9lnf] { flex-direction: column; }
    .search-field[b-8xwr2c9lnf], .search-field.search-narrow[b-8xwr2c9lnf] { flex: 1 1 auto; min-width: 0; }
    .search-actions[b-8xwr2c9lnf] { width: 100%; }
    .btn-clear[b-8xwr2c9lnf] { flex: 1; justify-content: center; }
}

/* ===== 集計パネル ===== */
.summary-panel[b-8xwr2c9lnf] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(200,16,46,0.08);
    box-shadow: 0 1px 3px rgba(200,16,46,0.05);
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.25rem;
}

.summary-title[b-8xwr2c9lnf] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}

.summary-chip[b-8xwr2c9lnf] {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
}

.col-terminal[b-8xwr2c9lnf] { white-space: nowrap; }
.col-date[b-8xwr2c9lnf] {
    white-space: nowrap;
    font-size: 0.8125rem;
    color: #475569;
    font-family: 'SFMono-Regular', 'Consolas', monospace;
}

.ip-text[b-8xwr2c9lnf] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.8125rem;
    color: #475569;
}

.status-badge[b-8xwr2c9lnf] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    border: 1px solid;
    white-space: nowrap;
}
.status-success[b-8xwr2c9lnf] { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.status-error[b-8xwr2c9lnf]   { background: #fff0f0; color: #C8102E;  border-color: #fecaca; }
.status-logout[b-8xwr2c9lnf]  { background: #f8f5ff; color: #6d28d9;  border-color: #ddd6fe; }
.status-expired[b-8xwr2c9lnf] { background: #fff7ed; color: #c2410c;  border-color: #fed7aa; }
.status-valid[b-8xwr2c9lnf]   { background: #eff6ff; color: #1d4ed8;  border-color: #bfdbfe; }
.status-unknown[b-8xwr2c9lnf] { background: #f8fafc; color: #64748b;  border-color: #e2e8f0; }

/* ===== ページネーション ===== */
.pagination[b-8xwr2c9lnf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.page-btn[b-8xwr2c9lnf] {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db; border-radius: 8px;
    background: #fff; color: #C8102E;
    font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.page-btn svg[b-8xwr2c9lnf] { width: 16px; height: 16px; fill: currentColor; }
.page-btn:hover:not(:disabled)[b-8xwr2c9lnf] { background: #fff0f0; border-color: #C8102E; }
.page-btn:disabled[b-8xwr2c9lnf] { opacity: 0.4; cursor: not-allowed; }

.page-info[b-8xwr2c9lnf] { font-size: 0.8125rem; color: #64748b; }
/* /Components/Pages/AdminSyain.razor.rz.scp.css */
/* ===== 検索パネル ===== */
.search-panel[b-j1vwx3j39x] {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(200,16,46,0.08);
    box-shadow: 0 1px 3px rgba(200,16,46,0.05);
    padding: 1.125rem 1.5rem;
    margin-bottom: 1.5rem;
}

.search-fields[b-j1vwx3j39x] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.search-field[b-j1vwx3j39x] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 150px;
    min-width: 130px;
}

.search-field.search-wide[b-j1vwx3j39x]   { flex: 1 1 220px; }
.search-field.search-narrow[b-j1vwx3j39x] { flex: 0 1 130px; }

.search-label[b-j1vwx3j39x] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.search-actions[b-j1vwx3j39x] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.btn-search[b-j1vwx3j39x] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1.125rem;
    background: var(--toami-red); color: #fff;
    border: none; border-radius: 8px;
    font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.btn-search svg[b-j1vwx3j39x] { width: 16px; height: 16px; fill: currentColor; }
.btn-search:hover[b-j1vwx3j39x] { background: var(--toami-red-hover); }

.btn-clear[b-j1vwx3j39x] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: #fff; color: #374151;
    border: 1px solid #d1d5db; border-radius: 8px;
    font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.btn-clear svg[b-j1vwx3j39x] { width: 15px; height: 15px; fill: currentColor; }
.btn-clear:hover[b-j1vwx3j39x] { background: #f9fafb; }

@media (max-width: 768px) {
    .search-fields[b-j1vwx3j39x] { flex-direction: column; }
    .search-field[b-j1vwx3j39x], .search-field.search-wide[b-j1vwx3j39x], .search-field.search-narrow[b-j1vwx3j39x] { flex: 1 1 auto; min-width: 0; }
    .search-actions[b-j1vwx3j39x] { width: 100%; }
    .btn-search[b-j1vwx3j39x], .btn-clear[b-j1vwx3j39x] { flex: 1; justify-content: center; }
}

.pw-expired[b-j1vwx3j39x] { color: #C8102E; font-weight: 600; }
.pw-warn[b-j1vwx3j39x]    { color: #d97706; font-weight: 600; }

.linked-badge[b-j1vwx3j39x]   { font-size: 0.7rem; font-weight: 600; background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; border-radius: 20px; padding: 0.2rem 0.6rem; }
.unlinked-badge[b-j1vwx3j39x] { font-size: 0.7rem; font-weight: 600; background: #f8fafc; color: #94a3b8; border: 1px solid #e2e8f0; border-radius: 20px; padding: 0.2rem 0.6rem; }

/* ===== Hanko連携セル ===== */
.hanko-cell[b-j1vwx3j39x] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.hanko-id-short[b-j1vwx3j39x] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.75rem;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
    white-space: nowrap;
    user-select: none;
}
.hanko-id-short:hover[b-j1vwx3j39x] { background: #e0e7ef; color: #1e293b; }

.btn-session[b-j1vwx3j39x] {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: #fff0f0; color: var(--toami-red);
    border: 1px solid #fecaca;
    font-size: 0.75rem; font-weight: 600;
    padding: 0.25rem 0.625rem; border-radius: 7px;
    cursor: pointer; transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn-session:hover[b-j1vwx3j39x] { background: var(--toami-red); color: #fff; }

.btn-icon[b-j1vwx3j39x] { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* ===== Hanko ID 全文表示 ===== */
.hanko-id-full-label[b-j1vwx3j39x] {
    font-size: 0.75rem; font-weight: 600; color: #64748b;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}
.hanko-id-full[b-j1vwx3j39x] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.875rem; color: #1e293b;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 8px; padding: 0.75rem 1rem;
    word-break: break-all; line-height: 1.6;
    margin: 0;
}

/* ===== セッションダイアログ ===== */
.session-dialog-panel[b-j1vwx3j39x] { max-width: 680px; }

.dialog-subtitle[b-j1vwx3j39x] {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

.session-count-badge[b-j1vwx3j39x] {
    display: inline-flex; align-items: center;
    background: #fff0f0; color: var(--toami-red);
    border: 1px solid #fecaca; border-radius: 20px;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem; font-weight: 600;
    margin-bottom: 1rem;
}

.session-list[b-j1vwx3j39x] { display: flex; flex-direction: column; gap: 0.875rem; }

.session-card[b-j1vwx3j39x] {
    border: 1px solid #e2e8f0; border-radius: 12px;
    overflow: hidden; transition: box-shadow 0.15s;
}
.session-card:hover[b-j1vwx3j39x] { box-shadow: 0 4px 16px rgba(200,16,46,0.08); }

.session-card-header[b-j1vwx3j39x] {
    background: #f8fafc; border-bottom: 1px solid #e2e8f0;
    padding: 0.625rem 1rem;
}

.session-id-badge[b-j1vwx3j39x] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.7rem; color: #475569;
    word-break: break-all;
}

.session-card-body[b-j1vwx3j39x] {
    padding: 0.875rem 1rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.625rem 1.5rem;
}

.session-field[b-j1vwx3j39x] { display: flex; flex-direction: column; gap: 0.2rem; }
.session-field-ua[b-j1vwx3j39x] { grid-column: 1 / -1; }

.session-field-label[b-j1vwx3j39x] {
    font-size: 0.6875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em; color: #94a3b8;
}
.session-field-value[b-j1vwx3j39x] { font-size: 0.8125rem; color: #334155; word-break: break-word; }
.session-ua[b-j1vwx3j39x] { font-size: 0.75rem; color: #64748b; line-height: 1.5; }
.session-active[b-j1vwx3j39x]  { color: #15803d; font-weight: 600; }
.session-expired[b-j1vwx3j39x] { color: var(--toami-red); font-weight: 600; }

.session-card-footer[b-j1vwx3j39x] {
    padding: 0.625rem 1rem; background: #fafafa;
    border-top: 1px solid #f1f5f9;
    display: flex; align-items: center; gap: 0.5rem;
}

.btn-delete-session[b-j1vwx3j39x] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: #fff0f0; color: var(--toami-red);
    border: 1px solid #fecaca;
    font-size: 0.8125rem; padding: 0.35rem 0.875rem;
    border-radius: 7px; font-weight: 500;
    cursor: pointer; transition: background 0.15s, color 0.15s;
}
.btn-delete-session:hover[b-j1vwx3j39x] { background: var(--toami-red); color: #fff; }

.btn-confirm-delete[b-j1vwx3j39x] {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--toami-red); color: #fff; border: none;
    font-size: 0.8125rem; padding: 0.35rem 0.875rem;
    border-radius: 7px; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
}
.btn-confirm-delete:hover:not(:disabled)[b-j1vwx3j39x] { background: var(--toami-red-hover); }
.btn-confirm-delete:disabled[b-j1vwx3j39x] { opacity: 0.6; cursor: not-allowed; }

.btn-cancel-confirm[b-j1vwx3j39x] {
    background: #f8fafc; color: #374151;
    border: 1px solid #d1d5db;
    font-size: 0.8125rem; padding: 0.35rem 0.75rem;
    border-radius: 7px; font-weight: 500;
    cursor: pointer; transition: background 0.15s;
}
.btn-cancel-confirm:hover:not(:disabled)[b-j1vwx3j39x] { background: #e5e7eb; }
.btn-cancel-confirm:disabled[b-j1vwx3j39x] { opacity: 0.5; cursor: not-allowed; }

.confirm-text[b-j1vwx3j39x] { font-size: 0.8125rem; color: #374151; font-weight: 500; }

.btn-spinner-sm[b-j1vwx3j39x] {
    width: 13px; height: 13px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: admin-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .session-card-body[b-j1vwx3j39x] { grid-template-columns: 1fr; }
    .hanko-cell[b-j1vwx3j39x] { flex-wrap: wrap; }
}
/* /Components/Pages/AdminSystem.razor.rz.scp.css */
.systems-grid[b-godqdyztep] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.system-card[b-godqdyztep] {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(200,16,46,0.06), 0 4px 16px rgba(200,16,46,0.08);
    border: 1px solid rgba(200,16,46,0.08);
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.15s;
}
.system-card:hover[b-godqdyztep]         { box-shadow: 0 4px 20px rgba(200,16,46,0.14); transform: translateY(-1px); }
.system-card.card-disabled[b-godqdyztep] { opacity: 0.55; }

.system-card-header[b-godqdyztep] {
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 100%);
    padding: 1.125rem 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
}

.system-icon[b-godqdyztep] {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.system-icon svg[b-godqdyztep] { width: 22px; height: 22px; fill: rgba(255,255,255,0.9); }

.system-card-info[b-godqdyztep] {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 0.2rem;
}

.system-name[b-godqdyztep] {
    font-size: 0.9375rem; font-weight: 700; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.system-key-badge[b-godqdyztep] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.7rem; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.12);
    border-radius: 4px; padding: 0.1rem 0.4rem;
    display: inline-block; align-self: flex-start;
}

.system-card-meta[b-godqdyztep] {
    padding: 0.75rem 1.25rem;
    display: flex; gap: 1.5rem;
    background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.meta-item[b-godqdyztep]  { font-size: 0.8125rem; color: #475569; }
.meta-label[b-godqdyztep] { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; color: #94a3b8; letter-spacing: 0.05em; margin-right: 0.3rem; }

.system-card-actions[b-godqdyztep] { padding: 0.75rem 1.25rem; display: flex; gap: 0.5rem; }

/* active-badge / inactive-badge はapp.cssで定義済み */

.form-hint[b-godqdyztep]  { font-size: 0.75rem; color: #64748b; }
.text-muted[b-godqdyztep] { color: #94a3b8; }
/* /Components/Pages/AdminUser.razor.rz.scp.css */
/* ===== Admin Container ===== */
.admin-container[b-c2t8snki0m] {
    min-height: calc(100vh - 56px);
    background-color: #f0f4f9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Yu Gothic UI', sans-serif;
}

/* ===== Header ===== */
.admin-header[b-c2t8snki0m] {
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 60%, #D4172B 100%);
    padding: 1.75rem 2.5rem;
    box-shadow: 0 4px 24px rgba(200, 16, 46, 0.35);
}

.admin-header-inner[b-c2t8snki0m] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.admin-title-area[b-c2t8snki0m] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-icon[b-c2t8snki0m] {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.admin-icon svg[b-c2t8snki0m] {
    width: 28px;
    height: 28px;
    fill: rgba(255, 255, 255, 0.9);
}

.admin-title[b-c2t8snki0m] {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.admin-subtitle[b-c2t8snki0m] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.3rem 0 0;
}

.stat-badge[b-c2t8snki0m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 0.875rem 1.75rem;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.stat-number[b-c2t8snki0m] {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label[b-c2t8snki0m] {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== Body ===== */
.admin-body[b-c2t8snki0m] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem 3rem;
}

/* ===== Alert ===== */
.alert[b-c2t8snki0m] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.alert-icon[b-c2t8snki0m] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.alert-error[b-c2t8snki0m] {
    background: #fff0f0;
    border: 1px solid #fecaca;
    border-left: 4px solid #C8102E;
    color: #7a000e;
}

.alert-error .alert-icon[b-c2t8snki0m] {
    fill: #C8102E;
}

.alert-success[b-c2t8snki0m] {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
    color: #15803d;
}

.alert-success .alert-icon[b-c2t8snki0m] {
    fill: #22c55e;
}

/* ===== Loading ===== */
.loading-container[b-c2t8snki0m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.loading-spinner[b-c2t8snki0m] {
    width: 44px;
    height: 44px;
    border: 3px solid #dde4ef;
    border-top-color: #C8102E;
    border-radius: 50%;
    animation: spin-b-c2t8snki0m 0.75s linear infinite;
    margin-bottom: 1.25rem;
}

@keyframes spin-b-c2t8snki0m {
    to { transform: rotate(360deg); }
}

.loading-text[b-c2t8snki0m] {
    font-size: 0.875rem;
    color: #7e8fa8;
    margin: 0;
}

/* ===== Empty State ===== */
.empty-state[b-c2t8snki0m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    color: #94a3b8;
}

.empty-icon[b-c2t8snki0m] {
    width: 52px;
    height: 52px;
    fill: #cbd5e1;
    margin-bottom: 1rem;
}

.empty-state p[b-c2t8snki0m] {
    font-size: 0.9375rem;
    margin: 0;
}

/* ===== Table ===== */
.table-wrapper[b-c2t8snki0m] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(200, 16, 46, 0.06), 0 8px 24px rgba(200, 16, 46, 0.09);
    overflow: hidden;
    border: 1px solid rgba(200, 16, 46, 0.07);
}

.admin-table[b-c2t8snki0m] {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead[b-c2t8snki0m] {
    background: linear-gradient(to right, #8B0000, #C8102E);
}

.admin-table thead th[b-c2t8snki0m] {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    border: none;
    white-space: nowrap;
}

.admin-table tbody tr[b-c2t8snki0m] {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.12s ease;
}

.admin-table tbody tr:last-child[b-c2t8snki0m] {
    border-bottom: none;
}

.admin-table tbody tr:hover[b-c2t8snki0m] {
    background-color: #fff5f5;
}

.admin-table tbody td[b-c2t8snki0m] {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    font-size: 0.875rem;
    color: #334155;
}

/* ===== ID Badge ===== */
.col-id[b-c2t8snki0m] {
    width: 1%;
    white-space: nowrap;
}

.id-badge[b-c2t8snki0m] {
    font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
    font-size: 0.7rem;
    background: #f8f9fa;
    color: #475569;
    padding: 0.3rem 0.625rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    display: inline-block;
    max-width: 320px;
    word-break: break-all;
    line-height: 1.4;
}

/* ===== Email Tag ===== */
.col-emails[b-c2t8snki0m] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.email-tag[b-c2t8snki0m] {
    display: inline-flex;
    align-items: center;
    background: #fff0f0;
    color: #C8102E;
    border: 1px solid #fecaca;
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* ===== Action Buttons ===== */
.btn-action[b-c2t8snki0m] {
    padding: 0.4rem 1rem;
    border-radius: 7px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.col-actions[b-c2t8snki0m] {
    width: 1%;
    white-space: nowrap;
}

.btn-session[b-c2t8snki0m] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #fff0f0;
    color: #C8102E;
    border: 1px solid #fecaca;
}

.btn-session:hover[b-c2t8snki0m] {
    background: #C8102E;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.35);
}

.btn-icon[b-c2t8snki0m] {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ===== Dialog ===== */
.dialog-backdrop[b-c2t8snki0m] {
    position: fixed;
    inset: 0;
    background: rgba(60, 0, 10, 0.45);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn-b-c2t8snki0m 0.15s ease;
}

@keyframes fadeIn-b-c2t8snki0m {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.dialog-panel[b-c2t8snki0m] {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(200, 16, 46, 0.25);
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-c2t8snki0m 0.2s ease;
    overflow: hidden;
}

@keyframes slideUp-b-c2t8snki0m {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.dialog-header[b-c2t8snki0m] {
    background: linear-gradient(135deg, #8B0000 0%, #C8102E 60%, #D4172B 100%);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}

.dialog-title-area[b-c2t8snki0m] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
}

.dialog-header-icon[b-c2t8snki0m] {
    width: 36px;
    height: 36px;
    fill: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.dialog-title[b-c2t8snki0m] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.dialog-subtitle[b-c2t8snki0m] {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    overflow: hidden;
}

.dialog-userid[b-c2t8snki0m] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.7rem;
    word-break: break-all;
}

.dialog-close[b-c2t8snki0m] {
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}

.dialog-close:hover[b-c2t8snki0m] {
    background: rgba(255, 255, 255, 0.22);
}

.dialog-close svg[b-c2t8snki0m] {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.85);
}

.dialog-body[b-c2t8snki0m] {
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
    flex: 1;
}

/* ===== Session List ===== */
.session-count-badge[b-c2t8snki0m] {
    display: inline-flex;
    align-items: center;
    background: #fff0f0;
    color: #C8102E;
    border: 1px solid #fecaca;
    border-radius: 20px;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.session-list[b-c2t8snki0m] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.session-card[b-c2t8snki0m] {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.15s;
}

.session-card:hover[b-c2t8snki0m] {
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.08);
}

.session-card-header[b-c2t8snki0m] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.625rem 1rem;
}

.session-id-badge[b-c2t8snki0m] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.7rem;
    color: #475569;
    word-break: break-all;
}

.session-card-body[b-c2t8snki0m] {
    padding: 0.875rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem 1.5rem;
}

.session-field[b-c2t8snki0m] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.session-field-ua[b-c2t8snki0m] {
    grid-column: 1 / -1;
}

.session-field-label[b-c2t8snki0m] {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

.session-field-value[b-c2t8snki0m] {
    font-size: 0.8125rem;
    color: #334155;
    word-break: break-word;
}

.session-ua[b-c2t8snki0m] {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.session-active[b-c2t8snki0m] {
    color: #15803d;
    font-weight: 600;
}

.session-expired[b-c2t8snki0m] {
    color: #C8102E;
    font-weight: 600;
}

/* ===== Session Card Footer (delete) ===== */
.session-card-footer[b-c2t8snki0m] {
    padding: 0.625rem 1rem;
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-delete-session[b-c2t8snki0m] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff0f0;
    color: #C8102E;
    border: 1px solid #fecaca;
    font-size: 0.8125rem;
    padding: 0.35rem 0.875rem;
    border-radius: 7px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-delete-session:hover[b-c2t8snki0m] {
    background: #C8102E;
    color: #fff;
}

.btn-confirm-delete[b-c2t8snki0m] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #C8102E;
    color: #fff;
    border: none;
    font-size: 0.8125rem;
    padding: 0.35rem 0.875rem;
    border-radius: 7px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-confirm-delete:hover:not(:disabled)[b-c2t8snki0m] {
    background: #A0001C;
}

.btn-confirm-delete:disabled[b-c2t8snki0m] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cancel-confirm[b-c2t8snki0m] {
    background: #f8fafc;
    color: #374151;
    border: 1px solid #d1d5db;
    font-size: 0.8125rem;
    padding: 0.35rem 0.75rem;
    border-radius: 7px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-cancel-confirm:hover:not(:disabled)[b-c2t8snki0m] {
    background: #e5e7eb;
}

.btn-cancel-confirm:disabled[b-c2t8snki0m] {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-text[b-c2t8snki0m] {
    font-size: 0.8125rem;
    color: #374151;
    font-weight: 500;
}

.btn-spinner-sm[b-c2t8snki0m] {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-c2t8snki0m 0.7s linear infinite;
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .admin-header[b-c2t8snki0m] {
        padding: 1.5rem 1.25rem;
    }

    .admin-header-inner[b-c2t8snki0m] {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-badge[b-c2t8snki0m] {
        flex-direction: row;
        gap: 0.625rem;
        padding: 0.625rem 1rem;
        align-self: stretch;
        justify-content: center;
    }

    .stat-number[b-c2t8snki0m] {
        font-size: 1.25rem;
    }

    .admin-body[b-c2t8snki0m] {
        padding: 1.25rem 1rem 2rem;
    }

    .admin-table thead th[b-c2t8snki0m],
    .admin-table tbody td[b-c2t8snki0m] {
        padding: 0.75rem 1rem;
    }

    .id-badge[b-c2t8snki0m] {
        max-width: 180px;
    }

    .session-card-body[b-c2t8snki0m] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Admin/LogArchive.razor.rz.scp.css */
.col-num[b-ck11srzrlx] {
    text-align: right;
    white-space: nowrap;
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.8125rem;
}

.col-filename[b-ck11srzrlx] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.8125rem;
    color: #475569;
    word-break: break-all;
    max-width: 220px;
}

.col-date[b-ck11srzrlx] {
    white-space: nowrap;
    font-size: 0.8125rem;
    color: #475569;
    font-family: 'SFMono-Regular', 'Consolas', monospace;
}

.col-biko[b-ck11srzrlx] {
    color: #64748b;
    font-size: 0.8125rem;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col-ops[b-ck11srzrlx] {
    white-space: nowrap;
    text-align: center;
}

.month-badge[b-ck11srzrlx] {
    display: inline-block;
    background: #fff0f0;
    color: #C8102E;
    border: 1px solid rgba(200,16,46,0.2);
    border-radius: 6px;
    padding: 0.2rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
}

.month-badge-current[b-ck11srzrlx] {
    background: #e2e8f0;
    color: #64748b;
    border-color: rgba(100,116,139,0.2);
}

.archive-not-ready[b-ck11srzrlx] {
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
    margin-right: 0.375rem;
    cursor: default;
}

/* ダウンロードボタン */
.btn-dl[b-ck11srzrlx] {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.375rem 0.75rem;
    background: #1e40af; color: #fff;
    border: none; border-radius: 7px;
    font-size: 0.8125rem; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap; margin-right: 0.375rem;
}
.btn-dl svg[b-ck11srzrlx] { width: 15px; height: 15px; fill: currentColor; }
.btn-dl:hover:not(:disabled)[b-ck11srzrlx] { background: #1e3a8a; }
.btn-dl:disabled[b-ck11srzrlx] { opacity: 0.5; cursor: not-allowed; }

/* プレビューボタン */
.btn-preview[b-ck11srzrlx] {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.375rem 0.75rem;
    background: #fff; color: #374151;
    border: 1px solid #d1d5db; border-radius: 7px;
    font-size: 0.8125rem; font-weight: 500;
    cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.btn-preview svg[b-ck11srzrlx] { width: 15px; height: 15px; fill: currentColor; }
.btn-preview:hover:not(:disabled)[b-ck11srzrlx] { background: #f9fafb; border-color: #9ca3af; }
.btn-preview:disabled[b-ck11srzrlx] { opacity: 0.5; cursor: not-allowed; }

.no-file[b-ck11srzrlx] {
    color: #9ca3af;
    font-size: 0.8125rem;
    font-style: italic;
}

/* 成功アラート（ページ固有） */
.alert-success-la[b-ck11srzrlx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.alert-success-la .alert-icon[b-ck11srzrlx] { width: 20px; height: 20px; fill: currentColor; }

.alert-close-btn[b-ck11srzrlx] {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    color: inherit;
    padding: 0 0.25rem;
    opacity: 0.7;
    flex-shrink: 0;
}
.alert-close-btn:hover[b-ck11srzrlx] { opacity: 1; }

/* テスト実行パネル */
.test-archive-panel[b-ck11srzrlx] {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.test-panel-title[b-ck11srzrlx] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 0.75rem;
}

.test-archive-form[b-ck11srzrlx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-input[b-ck11srzrlx] {
    padding: 0.375rem 0.625rem;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 0.875rem;
    color: #374151;
    background: #fff;
}

.btn-primary[b-ck11srzrlx] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.375rem 1rem;
    background: #d97706;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-primary:hover:not(:disabled)[b-ck11srzrlx] { background: #b45309; }
.btn-primary:disabled[b-ck11srzrlx] { opacity: 0.55; cursor: not-allowed; }

.btn-spinner[b-ck11srzrlx] {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-ck11srzrlx 0.7s linear infinite;
}
@keyframes spin-b-ck11srzrlx { to { transform: rotate(360deg); } }

.text-error[b-ck11srzrlx] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 500;
}

.text-success[b-ck11srzrlx] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #15803d;
    font-weight: 500;
}
/* /Components/Pages/AuthVerify.razor.rz.scp.css */
/* ===== 左右2カラムレイアウト（EmployeeLogin.razor と同一構造） ===== */
.emp-login-root[b-rg2thk1lp8] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Barlow', 'Noto Sans JP', sans-serif;
}

/* ================================================================
   LEFT PANEL（フォーム）
   ================================================================ */
.emp-left-panel[b-rg2thk1lp8] {
    flex: 0 0 33%;
    min-width: 320px;
    background: #ffffff;
    border-right: 1px solid #e8ecf2;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* 最上部 4px 赤ライン */
.emp-left-panel[b-rg2thk1lp8]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #c8102e;
    z-index: 10;
}

/* ================================================================
   RIGHT PANEL（スライドショー）
   ================================================================ */
.emp-right-panel[b-rg2thk1lp8] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* ── 時計（左上） ────────────────────────────── */
.rp-clock[b-rg2thk1lp8] {
    position: absolute;
    top: 20px;
    left: 22px;
    text-align: left;
    z-index: 5;
}

.rp-time[b-rg2thk1lp8] {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a2a4a;
    line-height: 1;
    letter-spacing: 0.04em;
}

.rp-date[b-rg2thk1lp8] {
    font-size: 9px;
    color: #aaa;
    margin-top: 3px;
    font-family: 'Barlow', sans-serif;
}

/* ── フォームエリア（縦中央） ────────────────── */
.rp-form-area[b-rg2thk1lp8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
}

/* ロゴブロック */
.form-logo-block[b-rg2thk1lp8] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-logo-img[b-rg2thk1lp8] {
    height: 110px;
    width: auto;
}

/* 見出し（中央揃え） */
.welcome-wrap[b-rg2thk1lp8] {
    text-align: center;
}

.w-line1[b-rg2thk1lp8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a2a4a;
    text-shadow: 0 1px 2px rgba(10, 42, 74, 0.1);
}

.welcome-desc[b-rg2thk1lp8] {
    font-size: 12px;
    color: #999;
    margin-bottom: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ── フッター ─────────────────────────────────── */
.rp-footer[b-rg2thk1lp8] {
    padding: 16px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid #f0f2f5;
    flex-shrink: 0;
}

/* ================================================================
   認証状態カード（form-card と同じトーン）
   ================================================================ */
.verify-card[b-rg2thk1lp8] {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #e0e5ee;
    border-radius: 12px;
    padding: 30px 24px 28px;
    box-shadow: 0 2px 14px rgba(10,42,74,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-sizing: border-box;
    animation: verifyCardIn-b-rg2thk1lp8 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: border-color 0.25s, box-shadow 0.25s;
}

@keyframes verifyCardIn-b-rg2thk1lp8 {
    from { transform: translateY(10px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.verify-card-success[b-rg2thk1lp8] {
    border-color: rgba(21, 128, 61, 0.3);
    box-shadow: 0 4px 18px rgba(21, 128, 61, 0.12);
}

.verify-card-expired[b-rg2thk1lp8] {
    border-color: rgba(200, 16, 46, 0.28);
    box-shadow: 0 4px 18px rgba(200, 16, 46, 0.12);
}

/* ===== 状態アイコンバッジ ===== */
.verify-icon-badge[b-rg2thk1lp8] {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verify-icon-badge-success[b-rg2thk1lp8] {
    background: linear-gradient(135deg, #1a7a4a 0%, #2ecc71 100%);
    box-shadow: 0 4px 14px rgba(46, 204, 113, 0.35);
}

.verify-icon-badge-success svg[b-rg2thk1lp8] {
    width: 22px;
    height: 22px;
}

.verify-icon-badge-error[b-rg2thk1lp8] {
    background: linear-gradient(135deg, #6b0010 0%, #b81820 45%, #E42128 100%);
    box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
}

.verify-icon-badge-error i[b-rg2thk1lp8] {
    font-size: 22px;
    color: #ffffff;
}

/* チェックマーク描画アニメーション */
.check-path[b-rg2thk1lp8] {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: drawCheck-b-rg2thk1lp8 0.4s ease-out 0.15s forwards;
}

@keyframes drawCheck-b-rg2thk1lp8 {
    to { stroke-dashoffset: 0; }
}

/* ===== Checking：スピナー ===== */
.verify-spinner[b-rg2thk1lp8] {
    width: 2rem;
    height: 2rem;
    border: 2.5px solid rgba(35, 49, 136, 0.18);
    border-top-color: #233188;
    border-radius: 50%;
    animation: authSpin-b-rg2thk1lp8 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes authSpin-b-rg2thk1lp8 {
    to { transform: rotate(360deg); }
}

/* ===== カード内テキスト ===== */
.verify-title[b-rg2thk1lp8] {
    font-size: 1rem;
    font-weight: 700;
    color: #0a2a4a;
    margin: 0;
    line-height: 1.3;
}

.verify-card-success .verify-title[b-rg2thk1lp8] { color: #15803d; }
.verify-card-expired .verify-title[b-rg2thk1lp8] { color: #a50d25; }

.verify-subtitle[b-rg2thk1lp8] {
    font-size: 0.8125rem;
    color: #7a8699;
    margin: 0;
    line-height: 1.6;
}

/* ===== 再読み込みボタン（端末エラー用） ===== */
.emp-btn-expired[b-rg2thk1lp8] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.8125rem 1.25rem;
    margin-top: 4px;
    background: linear-gradient(135deg, #6b0010 0%, #b81820 45%, #E42128 100%);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
}

.emp-btn-expired:hover[b-rg2thk1lp8] {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ===== 右パネル スライドショー（EmployeeLogin.razor と同一） ===== */
.emp-slideshow[b-rg2thk1lp8] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* 斜め格子パターン */
.emp-slideshow[b-rg2thk1lp8]::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.018) 60px,
        rgba(255,255,255,0.018) 62px
    );
    z-index: 4;
    pointer-events: none;
}

.slideshow-overlay[b-rg2thk1lp8] {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,14,46,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(80,5,10,0.35) 100%);
    z-index: 5;
    pointer-events: none;
}

.slide[b-rg2thk1lp8] {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: empSlideFade-b-rg2thk1lp8 24s ease-in-out infinite;
    background-size: cover;
    background-position: center;
}

.slide-1[b-rg2thk1lp8] { background-image: url('/images/背景画像1.png'); animation-delay: 0s; }
.slide-2[b-rg2thk1lp8] {
    background-image: url('/images/背景画像2.png');
    animation-delay: 8s;
}
.slide-3[b-rg2thk1lp8] {
    background-image: url('/images/背景画像3.png');
    animation-delay: 16s;
}

@keyframes empSlideFade-b-rg2thk1lp8 {
    0%, 100% { opacity: 0; }
    5%, 30%  { opacity: 1; }
    35%      { opacity: 0; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 680px) {
    .emp-right-panel[b-rg2thk1lp8] { display: none; }
    .emp-left-panel[b-rg2thk1lp8] { flex: 1 1 100%; width: 100%; min-width: 0; border-right: none; }

    .rp-clock[b-rg2thk1lp8] {
        top: 16px;
        left: 20px;
    }
    .rp-form-area[b-rg2thk1lp8] {
        padding: 76px 24px 28px;
    }
    .form-logo-block[b-rg2thk1lp8] {
        margin-bottom: 14px;
    }
    .form-logo-img[b-rg2thk1lp8] {
        height: 84px;
    }
    .w-line1[b-rg2thk1lp8] {
        font-size: 26px;
    }
    .welcome-desc[b-rg2thk1lp8] {
        font-size: 11.5px;
        margin-bottom: 18px;
    }
    .verify-card[b-rg2thk1lp8] {
        padding: 22px 18px 20px;
        border-radius: 10px;
    }
    .rp-footer[b-rg2thk1lp8] {
        padding: 12px;
    }
}

@media (max-width: 420px) {
    .rp-form-area[b-rg2thk1lp8] {
        padding: 68px 16px 24px;
    }
    .form-logo-img[b-rg2thk1lp8] { height: 68px; }
    .w-line1[b-rg2thk1lp8] { font-size: 22px; }
}
/* /Components/Pages/EmployeeLogin.razor.rz.scp.css */
/* ================================================================
   TOAMI Group Portal — Employee Login
   仕様: 左パネル 400px（白・フォーム） / 右パネル flex（スライドショー）
   ================================================================ */

/* ── Layout ─────────────────────────────────────── */
.emp-login-root[b-nb6i3iulf5] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Barlow', 'Noto Sans JP', sans-serif;
}

/* ================================================================
   LEFT PANEL（フォーム）
   ================================================================ */
.emp-left-panel[b-nb6i3iulf5] {
    flex: 0 0 33%;
    min-width: 320px;
    background: #ffffff;
    border-right: 1px solid #e8ecf2;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* 最上部 4px 赤ライン */
.emp-left-panel[b-nb6i3iulf5]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #c8102e;
    z-index: 10;
}

/* ================================================================
   RIGHT PANEL（スライドショー）
   ================================================================ */
.emp-right-panel[b-nb6i3iulf5] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* ── スライドショー ───────────────────────────── */
.emp-slideshow[b-nb6i3iulf5] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* 斜め格子パターン */
.emp-slideshow[b-nb6i3iulf5]::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.018) 60px,
        rgba(255,255,255,0.018) 62px
    );
    z-index: 4;
    pointer-events: none;
}

.slideshow-overlay[b-nb6i3iulf5] {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,14,46,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(80,5,10,0.35) 100%);
    z-index: 5;
    pointer-events: none;
}

.slide[b-nb6i3iulf5] {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: empSlideFade-b-nb6i3iulf5 24s ease-in-out infinite;
    background-size: cover;
    background-position: center;
}

.slide-1[b-nb6i3iulf5] { background-image: url('/images/背景画像1.png'); animation-delay: 0s; }
.slide-2[b-nb6i3iulf5] {
    background-image: url('/images/背景画像2.png');
    animation-delay: 8s;
}
.slide-3[b-nb6i3iulf5] {
    background-image: url('/images/背景画像3.png');
    animation-delay: 16s;
}

@keyframes empSlideFade-b-nb6i3iulf5 {
    0%, 100% { opacity: 0; }
    5%, 30%  { opacity: 1; }
    35%      { opacity: 0; }
}

/* ── 時計（左上） ────────────────────────────── */
.rp-clock[b-nb6i3iulf5] {
    position: absolute;
    top: 20px;
    left: 22px;
    text-align: left;
    z-index: 5;
}

.rp-time[b-nb6i3iulf5] {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a2a4a;
    line-height: 1;
    letter-spacing: 0.04em;
}

.rp-date[b-nb6i3iulf5] {
    font-size: 9px;
    color: #aaa;
    margin-top: 3px;
    font-family: 'Barlow', sans-serif;
}

/* ── フォームエリア（縦中央） ────────────────── */
.rp-form-area[b-nb6i3iulf5] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
}

/* ロゴブロック */
.form-logo-block[b-nb6i3iulf5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-logo-img[b-nb6i3iulf5] {
    height: 110px;
    width: auto;
}

/* 見出し（中央揃え） */
.welcome-wrap[b-nb6i3iulf5] {
    text-align: center;
}

.w-line1[b-nb6i3iulf5] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 34px; 
    font-weight: 700; 
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #0a2a4a;
    text-shadow: 0 1px 2px rgba(10, 42, 74, 0.1);
}
.w-line2[b-nb6i3iulf5] {
    font-family: 'Barlow', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0a2a4a;
    letter-spacing: -0.5px;
    line-height: 1.05;
}

.welcome-desc[b-nb6i3iulf5] {
    font-size: 12px;
    color: #999;
    margin-bottom: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ── 期限切れ通知 ─────────────────────────────── */
.emp-expired-card[b-nb6i3iulf5] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(200,16,46,0.06) 0%, rgba(200,16,46,0.03) 100%);
    border: 1px solid rgba(200,16,46,0.18);
    border-left: 3px solid #c8102e;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(200,16,46,0.08);
    animation: expiredCardIn-b-nb6i3iulf5 0.35s cubic-bezier(0.16,1,0.3,1);
}

@keyframes expiredCardIn-b-nb6i3iulf5 {
    from { transform: translateY(-6px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.emp-expired-icon-wrap[b-nb6i3iulf5] {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b81820 0%, #E42128 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200,16,46,0.35);
}

.emp-expired-icon-wrap i[b-nb6i3iulf5] {
    font-size: 16px;
    color: #ffffff;
}

.emp-expired-text[b-nb6i3iulf5] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 1px;
}

.emp-expired-title[b-nb6i3iulf5] {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a50d25;
}

.emp-expired-desc[b-nb6i3iulf5] {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.6;
    color: #5c3a3d;
}

/* フォームカード */
.form-card[b-nb6i3iulf5] {
    background: #ffffff;
    border: 1.5px solid #e0e5ee;
    border-radius: 12px;
    padding: 22px 24px 20px;
    box-shadow: 0 2px 14px rgba(10,42,74,0.07);
}

/* ── フォーム要素 ─────────────────────────────── */
.emp-input-group[b-nb6i3iulf5] {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.emp-label[b-nb6i3iulf5] {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0a2a4a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.emp-input-wrap[b-nb6i3iulf5] {
    position: relative;
    display: flex;
    align-items: center;
}

.emp-icon[b-nb6i3iulf5] {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #c0c8d4;
    font-size: 18px;
    pointer-events: none;
}

.emp-input[b-nb6i3iulf5] {
    width: 100%;
    padding: 12px 16px 15px 42px;
    border: 2px solid #e0e4ea;
    border-radius: 7px;
    background: #fafbfc;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #1a2535;
    outline: none;
    transition: border-color 0.18s, background 0.15s, box-shadow 0.18s;
    box-sizing: border-box;
    appearance: none;
}
.emp-input[b-nb6i3iulf5]::placeholder {
    color: #b0bec5;
    font-size: 15px;
}

.emp-input:focus[b-nb6i3iulf5] {
    border-color: #c8102e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

.emp-input:disabled[b-nb6i3iulf5] {
    background: #f0f2f5;
    color: #90a4ae;
    cursor: not-allowed;
    border-color: #e0e4ea;
}

.emp-input-error[b-nb6i3iulf5] {
    border-color: #c8102e !important;
    background: #fff8f8;
}

/* ── エラー ──────────────────────────────────── */
.emp-error[b-nb6i3iulf5] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #c8102e;
    margin-bottom: 14px;
    padding: 9px 12px;
    background: rgba(200,16,46,0.06);
    border-left: 3px solid #c8102e;
    border-radius: 0 4px 4px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.emp-error-icon[b-nb6i3iulf5] { font-size: 15px; flex-shrink: 0; }

/* ── SIGN IN ボタン ───────────────────────────── */
.emp-btn[b-nb6i3iulf5] {
    width: 100%;
    padding: 14px 20px;
    background: #c8102e;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

/* メタリックシマー */
.emp-btn[b-nb6i3iulf5]::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
    transform: skewX(-16deg);
    transition: left 0s;
}

.emp-btn:hover:not(:disabled)[b-nb6i3iulf5] { background: #a50d25; }

.emp-btn:hover:not(:disabled)[b-nb6i3iulf5]::after {
    left: 130%;
    transition: left 0.6s ease;
}

.emp-btn:active:not(:disabled)[b-nb6i3iulf5] { transform: scale(0.99); }

.emp-btn:disabled[b-nb6i3iulf5] { opacity: 0.6; cursor: not-allowed; }

.emp-btn span[b-nb6i3iulf5], .emp-btn-arr[b-nb6i3iulf5], .emp-btn-spinner[b-nb6i3iulf5] {
    position: relative;
    z-index: 1;
}

.emp-btn-arr[b-nb6i3iulf5] { font-size: 18px; }

.emp-btn-spinner[b-nb6i3iulf5] {
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    animation: empSpin-b-nb6i3iulf5 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes empSpin-b-nb6i3iulf5 { to { transform: rotate(360deg); } }

/* ── フッター ─────────────────────────────────── */
.rp-footer[b-nb6i3iulf5] {
    padding: 16px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid #f0f2f5;
    flex-shrink: 0;
}

/* ================================================================
   CONFLICT DIALOG
   ================================================================ */
.conflict-overlay[b-nb6i3iulf5] {
    position: fixed;
    inset: 0;
    background: rgba(5,15,35,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: cfadeIn-b-nb6i3iulf5 0.2s ease;
}

@keyframes cfadeIn-b-nb6i3iulf5 { from { opacity: 0; } to { opacity: 1; } }

.conflict-dialog[b-nb6i3iulf5] {
    width: 90%;
    max-width: 420px;
    background: #ffffff;
    border-top: 4px solid #c8102e;
    border-radius: 4px;
    box-shadow: 0 16px 64px rgba(5,15,35,0.35);
    overflow: hidden;
    animation: cslideUp-b-nb6i3iulf5 0.22s cubic-bezier(0.16,1,0.3,1);
}

@keyframes cslideUp-b-nb6i3iulf5 {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.conflict-header[b-nb6i3iulf5] {
    background: #0a2a4a;
    padding: 1rem 1.375rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.conflict-icon[b-nb6i3iulf5] { width: 26px; height: 26px; fill: rgba(255,255,255,0.9); flex-shrink: 0; }
.conflict-title[b-nb6i3iulf5] { font-size: 14px; font-weight: 700; color: #fff; margin: 0; font-family: 'Noto Sans JP', sans-serif; }
.conflict-subtitle[b-nb6i3iulf5] { font-size: 11px; color: rgba(255,255,255,0.55); margin: 3px 0 0; font-family: 'Noto Sans JP', sans-serif; }
.conflict-body[b-nb6i3iulf5] { padding: 1.25rem 1.375rem; }
.conflict-msg[b-nb6i3iulf5] { font-size: 13px; color: #1a2535; line-height: 1.7; margin: 0; font-family: 'Noto Sans JP', sans-serif; }

.conflict-actions[b-nb6i3iulf5] {
    display: flex;
    gap: 8px;
    padding: 0 1.375rem 1.25rem;
}

.conflict-btn-force[b-nb6i3iulf5] {
    flex: 1; height: 42px;
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    background: #c8102e; border: none; border-radius: 7px;
    color: #fff;
    font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
}
.conflict-btn-force:hover:not(:disabled)[b-nb6i3iulf5] { background: #a50d25; }
.conflict-btn-force:disabled[b-nb6i3iulf5] { opacity: 0.6; cursor: not-allowed; }
.conflict-btn-force svg[b-nb6i3iulf5] { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.conflict-btn-cancel[b-nb6i3iulf5] {
    padding: 0 18px; height: 42px;
    background: #f5f7f9; border: 1px solid #e0e4ea; border-radius: 7px;
    color: #546e7a; font-size: 13px; font-family: 'Noto Sans JP', sans-serif;
    cursor: pointer; transition: background 0.15s;
}
.conflict-btn-cancel:hover:not(:disabled)[b-nb6i3iulf5] { background: #eaedf2; }
.conflict-btn-cancel:disabled[b-nb6i3iulf5] { opacity: 0.6; cursor: not-allowed; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 680px) {
    .emp-right-panel[b-nb6i3iulf5] { display: none; }
    .emp-left-panel[b-nb6i3iulf5] { flex: 1 1 100%; width: 100%; min-width: 0; border-right: none; }

    .rp-clock[b-nb6i3iulf5] {
        top: 16px;
        left: 20px;
    }
    .rp-form-area[b-nb6i3iulf5] {
        padding: 76px 24px 28px;
    }
    .form-logo-block[b-nb6i3iulf5] {
        margin-bottom: 14px;
    }
    .form-logo-img[b-nb6i3iulf5] {
        height: 84px;
    }
    .welcome-wrap .w-line1[b-nb6i3iulf5] {
        font-size: 26px;
    }
    .welcome-desc[b-nb6i3iulf5] {
        font-size: 11.5px;
        margin-bottom: 18px;
    }
    .form-card[b-nb6i3iulf5] {
        padding: 18px 18px 16px;
        border-radius: 10px;
    }
    .emp-expired-card[b-nb6i3iulf5] {
        padding: 12px 14px;
    }
    .rp-footer[b-nb6i3iulf5] {
        padding: 12px;
    }
}

@media (max-width: 420px) {
    .rp-form-area[b-nb6i3iulf5] {
        padding: 68px 16px 24px;
    }
    .form-logo-img[b-nb6i3iulf5] { height: 68px; }
    .welcome-wrap .w-line1[b-nb6i3iulf5] { font-size: 22px; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ================================================================
   TOAMI Group Portal — Hanko Auth (Home)
   仕様: 左パネル 33%（白・フォーム） / 右パネル flex（スライドショー）
        EmployeeLogin と同一レイアウト構造を使用
   ================================================================ */

/* ── Layout ─────────────────────────────────────── */
.emp-login-root[b-h0odrmep4d] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Barlow', 'Noto Sans JP', sans-serif;
}

/* ================================================================
   LEFT PANEL（フォーム）
   ================================================================ */
.emp-left-panel[b-h0odrmep4d] {
    flex: 0 0 33%;
    min-width: 320px;
    background: #ffffff;
    border-right: 1px solid #e8ecf2;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* 最上部 4px 赤ライン */
.emp-left-panel[b-h0odrmep4d]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #c8102e;
    z-index: 10;
}

/* ================================================================
   RIGHT PANEL（スライドショー）
   ================================================================ */
.emp-right-panel[b-h0odrmep4d] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* ── スライドショー ───────────────────────────── */
.emp-slideshow[b-h0odrmep4d] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #080e28;
}

/* 斜め格子パターン */
.emp-slideshow[b-h0odrmep4d]::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.018) 60px,
        rgba(255,255,255,0.018) 62px
    );
    z-index: 4;
    pointer-events: none;
}

.slideshow-overlay[b-h0odrmep4d] {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,14,46,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(80,5,10,0.35) 100%);
    z-index: 5;
    pointer-events: none;
}

.slide[b-h0odrmep4d] {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: homeSlideFade-b-h0odrmep4d 24s ease-in-out infinite;
    background-size: cover;
    background-position: center;
}

.slide-0[b-h0odrmep4d] {
    background-image: url('/images/hanko_bg.png');
    opacity: 1;
    animation: slide0Fade-b-h0odrmep4d 1s ease 8s forwards;
}
.slide-1[b-h0odrmep4d] { background-image: url('/images/hanko_bg1.png'); animation-delay: 8s; }
.slide-2[b-h0odrmep4d] { background-image: url('/images/hanko_bg2.png'); animation-delay: 16s; }
.slide-3[b-h0odrmep4d] { background-image: url('/images/hanko_bg3.png'); animation-delay: 24s; }

@keyframes slide0Fade-b-h0odrmep4d {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes homeSlideFade-b-h0odrmep4d {
    0%, 100% { opacity: 0; }
    5%, 30%  { opacity: 1; }
    35%      { opacity: 0; }
}

/* ── 時計（左上） ────────────────────────────── */
.rp-clock[b-h0odrmep4d] {
    position: absolute;
    top: 20px;
    left: 22px;
    text-align: left;
    z-index: 5;
}

.rp-time[b-h0odrmep4d] {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a2a4a;
    line-height: 1;
    letter-spacing: 0.04em;
}

.rp-date[b-h0odrmep4d] {
    font-size: 9px;
    color: #aaa;
    margin-top: 3px;
    font-family: 'Barlow', sans-serif;
}

/* ── フォームエリア（縦中央・横中央） ──────── */
.rp-form-area[b-h0odrmep4d] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 40px;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}

.rp-form-area > *[b-h0odrmep4d] {
    width: 100%;
}

/* ロゴブロック */
.form-logo-block[b-h0odrmep4d] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-logo-img[b-h0odrmep4d] {
    height: 110px;
    width: auto;
}

/* 見出し（中央揃え） */
.welcome-wrap[b-h0odrmep4d] {
    text-align: center;
}

.w-line1[b-h0odrmep4d] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a2a4a;
    text-shadow: 0 1px 2px rgba(10, 42, 74, 0.1);
}

.welcome-desc[b-h0odrmep4d] {
    font-size: 12px;
    color: #999;
    margin-bottom: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ── フッター ─────────────────────────────────── */
.rp-footer[b-h0odrmep4d] {
    padding: 16px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid #f0f2f5;
    flex-shrink: 0;
}

/* ===== パスワード警告 ===== */
.pw-alert[b-h0odrmep4d] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.125rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 14px;
    box-sizing: border-box;
}

.pw-alert svg[b-h0odrmep4d] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pw-alert-danger[b-h0odrmep4d] {
    background: #fff0f1;
    border: 1px solid #fecdd0;
    border-left: 4px solid #E42128;
    color: #6b0008;
}
.pw-alert-danger svg[b-h0odrmep4d] { fill: #E42128; }

.pw-alert-warn[b-h0odrmep4d] {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #d97706;
    color: #92400e;
}
.pw-alert-warn svg[b-h0odrmep4d] { fill: #d97706; }

/* ===== ログインエリア ===== */
.login-area[b-h0odrmep4d] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ===== Hankoラッパー ===== */
.hanko-wrapper[b-h0odrmep4d] {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow:
        0 4px 24px rgba(10, 14, 50, 0.12),
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 0 0 1px rgba(35,49,136,0.08);
    border: 1px solid rgba(220, 226, 242, 0.8);
    overflow: hidden;
}

.login-header[b-h0odrmep4d] {
    background: linear-gradient(135deg, #131b58 0%, #233188 55%, #2c3da5 100%);
    padding: 1.375rem 1.625rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
}

.login-header[b-h0odrmep4d]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E42128, transparent);
    opacity: 0.8;
}

.login-header[b-h0odrmep4d]::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(228,33,40,0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.login-logo[b-h0odrmep4d] {
    width: 34px;
    height: 34px;
    fill: rgba(255, 255, 255, 0.92);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(228,33,40,0.5));
}

.login-title[b-h0odrmep4d] {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.login-subtitle[b-h0odrmep4d] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.2rem 0 0;
}

/* ===== 社員番号入力画面へ戻るボタン ===== */
.btn-back-empid[b-h0odrmep4d] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: center;
    padding: 0.4375rem 1.125rem 0.4375rem 0.4375rem;
    background: #ffffff;
    border: 1.5px solid #e2e6f0;
    border-radius: 999px;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}

.btn-back-empid-icon[b-h0odrmep4d] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eef1f8;
    flex-shrink: 0;
    transition: background 0.18s, transform 0.18s;
}

.btn-back-empid svg[b-h0odrmep4d] {
    width: 13px;
    height: 13px;
    fill: #64748b;
    flex-shrink: 0;
    transition: fill 0.18s;
}

.btn-back-empid:hover[b-h0odrmep4d] {
    border-color: #233188;
    background: #f5f7fd;
    color: #233188;
    box-shadow: 0 6px 16px rgba(35, 49, 136, 0.14);
    transform: translateY(-1px);
}

.btn-back-empid:hover .btn-back-empid-icon[b-h0odrmep4d] {
    background: linear-gradient(135deg, #1a2060 0%, #233188 100%);
    transform: translateX(-2px);
}

.btn-back-empid:hover svg[b-h0odrmep4d] {
    fill: #ffffff;
}

.btn-back-empid:active[b-h0odrmep4d] {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

/* ===== hanko-auth / hanko-login 表示制御 ===== */
/* shadow DOM 読み込み完了まで非表示にし、JS側(hankoAuth.js)でvisibleに切り替える */
hanko-auth[b-h0odrmep4d],
hanko-login[b-h0odrmep4d] {
    visibility: hidden;
}

/* ===== ユーザーカード ===== */
.user-card[b-h0odrmep4d] {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow:
        0 4px 24px rgba(10, 14, 50, 0.12),
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 0 0 1px rgba(35,49,136,0.08);
    border: 1px solid rgba(220, 226, 242, 0.8);
    overflow: hidden;
    animation: slideUp-b-h0odrmep4d 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp-b-h0odrmep4d {
    from { transform: translateY(14px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.user-card-header[b-h0odrmep4d] {
    background: linear-gradient(135deg, #131b58 0%, #233188 55%, #2c3da5 100%);
    padding: 1.25rem 1.625rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
}

.user-card-header[b-h0odrmep4d]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E42128, transparent);
    opacity: 0.8;
}

.user-card-header[b-h0odrmep4d]::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(228,33,40,0.22), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.user-avatar[b-h0odrmep4d] {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar svg[b-h0odrmep4d] {
    width: 23px;
    height: 23px;
    fill: rgba(255, 255, 255, 0.92);
}

.user-info[b-h0odrmep4d] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.user-name[b-h0odrmep4d] {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-id-text[b-h0odrmep4d] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
}

.user-id-mono[b-h0odrmep4d] {
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    font-size: 0.65rem;
}

.auth-badge[b-h0odrmep4d] {
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.32);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.btn-logout[b-h0odrmep4d] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(228,33,40,0.38);
    background: rgba(228, 33, 40, 0.18);
    color: #fca5a5;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-logout:hover:not(:disabled)[b-h0odrmep4d] {
    background: rgba(228, 33, 40, 0.48);
    border-color: rgba(252, 165, 165, 0.7);
    color: #ffffff;
}

.btn-logout:disabled[b-h0odrmep4d] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-logout-icon[b-h0odrmep4d] {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-logout-spinner[b-h0odrmep4d] {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(252, 165, 165, 0.3);
    border-top-color: #fca5a5;
    border-radius: 50%;
    animation: spin-b-h0odrmep4d 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes spin-b-h0odrmep4d {
    to { transform: rotate(360deg); }
}

.user-card-body[b-h0odrmep4d] {
    padding: 1.375rem 1.625rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.session-field[b-h0odrmep4d] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.session-label[b-h0odrmep4d] {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #94a3b8;
}

.session-value[b-h0odrmep4d] {
    font-size: 0.875rem;
    color: #1e2a5e;
}

.val-valid[b-h0odrmep4d]  { color: #15803d; font-weight: 600; }
.val-expired[b-h0odrmep4d] { color: #E42128; font-weight: 600; }

.kengen-badge[b-h0odrmep4d] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    background: #f0f2fc;
    color: #233188;
    border: 1px solid #c8ceee;
    border-radius: 6px;
    padding: 0.15rem 0.5rem;
}

/* ===== システム一覧 ===== */
.systems-section[b-h0odrmep4d] {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow:
        0 4px 24px rgba(10, 14, 50, 0.12),
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 0 0 1px rgba(35,49,136,0.08);
    border: 1px solid rgba(220, 226, 242, 0.8);
    padding: 1.375rem 1.625rem;
}

.systems-title[b-h0odrmep4d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #233188;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.systems-title svg[b-h0odrmep4d] {
    width: 16px;
    height: 16px;
    fill: #233188;
}

.systems-grid[b-h0odrmep4d] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.system-card[b-h0odrmep4d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: #f7f8fd;
    border: 1px solid #dde2f5;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, transform 0.18s;
    text-align: center;
}

.system-card:hover[b-h0odrmep4d] {
    border-color: #233188;
    box-shadow: 0 4px 16px rgba(35, 49, 136, 0.16);
    background: #eef0fa;
    transform: translateY(-2px);
}

.system-icon[b-h0odrmep4d] {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1a2060 0%, #233188 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(35, 49, 136, 0.3);
}

.system-icon svg[b-h0odrmep4d] {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.system-name[b-h0odrmep4d] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e2a5e;
}

.system-key[b-h0odrmep4d] {
    font-size: 0.7rem;
    font-family: 'SFMono-Regular', 'Consolas', monospace;
    color: #5060a8;
    background: #e4e8f5;
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
}

/* ===== 成功ダイアログ ===== */
.success-dialog[b-h0odrmep4d] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, #131b58 0%, #233188 55%, #2c3da5 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 20px 60px rgba(10, 14, 50, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 0 0 1px rgba(35, 49, 136, 0.4);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.875rem 1.625rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    z-index: 9999;
    white-space: nowrap;
    overflow: hidden;
    animation: fadeInDown-b-h0odrmep4d 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-dialog[b-h0odrmep4d]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.7), transparent);
}

.success-dialog svg[b-h0odrmep4d] {
    width: 1.25rem;
    height: 1.25rem;
    fill: #86efac;
    flex-shrink: 0;
}

@keyframes fadeInDown-b-h0odrmep4d {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-60%);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%);
    }
}

/* ===== 競合ユーザー警告ダイアログ ===== */
.conflict-overlay[b-h0odrmep4d] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    animation: conflictFadeIn-b-h0odrmep4d 0.2s ease;
}

@keyframes conflictFadeIn-b-h0odrmep4d {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.conflict-dialog[b-h0odrmep4d] {
    width: 90%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(10, 14, 50, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    animation: slideUp-b-h0odrmep4d 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.conflict-header[b-h0odrmep4d] {
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 55%, #dc2626 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
}

.conflict-header[b-h0odrmep4d]::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.conflict-icon[b-h0odrmep4d] {
    width: 32px;
    height: 32px;
    fill: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(252, 165, 165, 0.6));
}

.conflict-title[b-h0odrmep4d] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.conflict-subtitle[b-h0odrmep4d] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.15rem 0 0;
}

.conflict-body[b-h0odrmep4d] {
    padding: 1.5rem;
}

.conflict-msg[b-h0odrmep4d] {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.65;
    margin: 0;
}

.conflict-actions[b-h0odrmep4d] {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.conflict-btn-force[b-h0odrmep4d] {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, transform 0.1s;
}

.conflict-btn-force svg[b-h0odrmep4d] {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    flex-shrink: 0;
}

.conflict-btn-force:hover[b-h0odrmep4d] {
    opacity: 0.88;
    transform: translateY(-1px);
}

.conflict-btn-cancel[b-h0odrmep4d] {
    padding: 0.75rem 1.25rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.conflict-btn-cancel:hover[b-h0odrmep4d] {
    background: #e2e8f0;
    color: #334155;
}

/* ================================================================
   ロゴイントロ
   ================================================================ */
.logo-intro-overlay[b-h0odrmep4d] {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 40, 0.62);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    animation: logoIntroEnter-b-h0odrmep4d 0.4s ease forwards,
               logoIntroExit-b-h0odrmep4d  0.6s ease forwards;
    animation-delay: 0s, 8s;
    transform: translateZ(0);
    will-change: opacity;
}

@keyframes logoIntroEnter-b-h0odrmep4d {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes logoIntroExit-b-h0odrmep4d {
    from { opacity: 1; }
    to   { opacity: 0; pointer-events: none; }
}

/* 親会社ロゴ行 */
.logo-intro-parent-row[b-h0odrmep4d] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 子会社ロゴ行 */
.logo-intro-child-row[b-h0odrmep4d] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* 区切り線 */
.logo-intro-divider[b-h0odrmep4d] {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: logoFadeUp-b-h0odrmep4d 0.5s ease forwards;
}

.logo-intro-item[b-h0odrmep4d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: logoFadeUp-b-h0odrmep4d 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ── ずらし遅延（親 → 子会社1〜8 の順） ── */
.logo-intro-item--parent[b-h0odrmep4d]  { animation-delay: 0ms; }
.logo-intro-item--child-1[b-h0odrmep4d] { animation-delay: 150ms; }
.logo-intro-divider--1[b-h0odrmep4d]    { animation-delay: 200ms; }
.logo-intro-item--child-2[b-h0odrmep4d] { animation-delay: 300ms; }
.logo-intro-divider--2[b-h0odrmep4d]    { animation-delay: 350ms; }
.logo-intro-item--child-3[b-h0odrmep4d] { animation-delay: 450ms; }
.logo-intro-divider--3[b-h0odrmep4d]    { animation-delay: 500ms; }
.logo-intro-item--child-4[b-h0odrmep4d] { animation-delay: 600ms; }
.logo-intro-divider--4[b-h0odrmep4d]    { animation-delay: 650ms; }
.logo-intro-item--child-5[b-h0odrmep4d] { animation-delay: 750ms; }
.logo-intro-divider--5[b-h0odrmep4d]    { animation-delay: 800ms; }
.logo-intro-item--child-6[b-h0odrmep4d] { animation-delay: 900ms; }
.logo-intro-divider--6[b-h0odrmep4d]    { animation-delay: 950ms; }
.logo-intro-item--child-7[b-h0odrmep4d] { animation-delay: 1050ms; }
.logo-intro-divider--7[b-h0odrmep4d]    { animation-delay: 1100ms; }
.logo-intro-item--child-8[b-h0odrmep4d] { animation-delay: 1200ms; }

@keyframes logoFadeUp-b-h0odrmep4d {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ロゴ画像ラッパー */
.logo-intro-img-wrap[b-h0odrmep4d] {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-intro-img-wrap--parent[b-h0odrmep4d] {
    padding: 14px 32px;
}

.logo-intro-img-wrap img[b-h0odrmep4d] {
    height: 62px;
    width: auto;
    display: block;
}

.logo-intro-img-wrap--parent img[b-h0odrmep4d] {
    height: 96px;
}

/* キャプション */
.logo-intro-caption[b-h0odrmep4d] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.06em;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .emp-right-panel[b-h0odrmep4d] { display: none; }
    .emp-left-panel[b-h0odrmep4d] {
        width: 100%;
        border-right: none;
        flex: 1;
    }
    .user-card-body[b-h0odrmep4d] {
        grid-template-columns: 1fr;
    }
    .user-card-header[b-h0odrmep4d] {
        flex-wrap: wrap;
    }
    .rp-form-area[b-h0odrmep4d] {
        padding: 76px 24px 28px;
    }
    .rp-clock[b-h0odrmep4d] {
        top: 16px;
        left: 20px;
    }
    .form-logo-block[b-h0odrmep4d] {
        margin-bottom: 14px;
    }
    .form-logo-img[b-h0odrmep4d] {
        height: 74px;
    }
    .w-line1[b-h0odrmep4d] {
        font-size: 26px;
    }
    .welcome-desc[b-h0odrmep4d] {
        font-size: 11.5px;
        margin-bottom: 18px;
    }
    .hanko-wrapper[b-h0odrmep4d],
    .user-card[b-h0odrmep4d],
    .systems-section[b-h0odrmep4d] {
        border-radius: 14px;
        max-width: none;
    }
    .login-header[b-h0odrmep4d],
    .user-card-header[b-h0odrmep4d] {
        padding: 1.125rem 1.25rem;
    }
    .login-area[b-h0odrmep4d] {
        gap: 1.125rem;
    }
    .btn-back-empid[b-h0odrmep4d] {
        align-self: stretch;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    .rp-footer[b-h0odrmep4d] {
        padding: 12px;
    }
}

@media (max-width: 420px) {
    .rp-form-area[b-h0odrmep4d] {
        padding: 68px 16px 24px;
    }
    .form-logo-img[b-h0odrmep4d] { height: 60px; }
    .w-line1[b-h0odrmep4d] { font-size: 22px; }
    .login-title[b-h0odrmep4d] { font-size: 0.9375rem; }
    .login-subtitle[b-h0odrmep4d] { font-size: 0.6875rem; }
}
/* /Components/Pages/PasswordChange.razor.rz.scp.css */
/* ================================================================
   TOAMI Group Portal — Password Change
   社員番号入力画面（EmployeeLogin）とレイアウト・配色を統一。
   仕様: 左パネル 400px（白・フォーム） / 右パネル flex（スライドショー）
   ================================================================ */

/* ── Layout ─────────────────────────────────────── */
.emp-login-root[b-u0yfe8qc70] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Barlow', 'Noto Sans JP', sans-serif;
}

/* ================================================================
   LEFT PANEL（フォーム）
   ================================================================ */
.emp-left-panel[b-u0yfe8qc70] {
    flex: 0 0 33%;
    min-width: 320px;
    background: #ffffff;
    border-right: 1px solid #e8ecf2;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* 最上部 4px 赤ライン */
.emp-left-panel[b-u0yfe8qc70]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #c8102e;
    z-index: 10;
}

/* ================================================================
   RIGHT PANEL（スライドショー）
   ================================================================ */
.emp-right-panel[b-u0yfe8qc70] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.emp-slideshow[b-u0yfe8qc70] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.emp-slideshow[b-u0yfe8qc70]::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.018) 60px,
        rgba(255,255,255,0.018) 62px
    );
    z-index: 4;
    pointer-events: none;
}

.slideshow-overlay[b-u0yfe8qc70] {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,14,46,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(80,5,10,0.35) 100%);
    z-index: 5;
    pointer-events: none;
}

.slide[b-u0yfe8qc70] {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: empSlideFade-b-u0yfe8qc70 24s ease-in-out infinite;
    background-size: cover;
    background-position: center;
}

.slide-1[b-u0yfe8qc70] { background-image: url('/images/背景画像1.png'); animation-delay: 0s; }
.slide-2[b-u0yfe8qc70] { background-image: url('/images/背景画像2.png'); animation-delay: 8s; }
.slide-3[b-u0yfe8qc70] { background-image: url('/images/背景画像3.png'); animation-delay: 16s; }

@keyframes empSlideFade-b-u0yfe8qc70 {
    0%, 100% { opacity: 0; }
    5%, 30%  { opacity: 1; }
    35%      { opacity: 0; }
}

/* ── 時計（左上） ────────────────────────────── */
.rp-clock[b-u0yfe8qc70] {
    position: absolute;
    top: 20px;
    left: 22px;
    text-align: left;
    z-index: 5;
}

.rp-time[b-u0yfe8qc70] {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a2a4a;
    line-height: 1;
    letter-spacing: 0.04em;
}

.rp-date[b-u0yfe8qc70] {
    font-size: 9px;
    color: #aaa;
    margin-top: 3px;
    font-family: 'Barlow', sans-serif;
}

/* ── フォームエリア（縦中央） ────────────────── */
.rp-form-area[b-u0yfe8qc70] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
}

/* ロゴブロック */
.form-logo-block[b-u0yfe8qc70] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-logo-img[b-u0yfe8qc70] {
    height: 110px;
    width: auto;
}

/* 見出し（中央揃え） */
.welcome-wrap[b-u0yfe8qc70] {
    text-align: center;
}

.w-line1[b-u0yfe8qc70] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a2a4a;
    text-shadow: 0 1px 2px rgba(10, 42, 74, 0.1);
}

.welcome-desc[b-u0yfe8qc70] {
    font-size: 12px;
    color: #999;
    margin-bottom: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ── 変更理由の通知カード ─────────────────────── */
.emp-expired-card[b-u0yfe8qc70] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(200,16,46,0.06) 0%, rgba(200,16,46,0.03) 100%);
    border: 1px solid rgba(200,16,46,0.18);
    border-left: 3px solid #c8102e;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(200,16,46,0.08);
    animation: expiredCardIn-b-u0yfe8qc70 0.35s cubic-bezier(0.16,1,0.3,1);
}

@keyframes expiredCardIn-b-u0yfe8qc70 {
    from { transform: translateY(-6px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.emp-expired-icon-wrap[b-u0yfe8qc70] {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b81820 0%, #E42128 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200,16,46,0.35);
}

.emp-expired-icon-wrap svg[b-u0yfe8qc70] {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.emp-expired-text[b-u0yfe8qc70] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 1px;
}

.emp-expired-title[b-u0yfe8qc70] {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a50d25;
}

.emp-expired-desc[b-u0yfe8qc70] {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.6;
    color: #5c3a3d;
}

/* フォームカード */
.form-card[b-u0yfe8qc70] {
    background: #ffffff;
    border: 1.5px solid #e0e5ee;
    border-radius: 12px;
    padding: 22px 24px 20px;
    box-shadow: 0 2px 14px rgba(10,42,74,0.07);
}

/* ── フォーム要素 ─────────────────────────────── */
.emp-input-group[b-u0yfe8qc70] {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.emp-label[b-u0yfe8qc70] {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0a2a4a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* アイコン・入力欄・表示トグルを flex で横並びにし、絶対配置由来の重なりが起きないようにする */
.emp-input-wrap[b-u0yfe8qc70] {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 50px;
    border: 2px solid #e0e4ea;
    border-radius: 8px;
    background: #fafbfc;
    transition: border-color 0.18s, background 0.15s, box-shadow 0.18s;
}

.emp-input-wrap:focus-within[b-u0yfe8qc70] {
    border-color: #c8102e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

.emp-input-wrap:has(.emp-input:disabled)[b-u0yfe8qc70] {
    background: #f0f2f5;
    border-color: #e0e4ea;
}

.emp-icon[b-u0yfe8qc70] {
    flex: 0 0 auto;
    align-self: center;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    fill: #c0c8d4;
    pointer-events: none;
}

.emp-input[b-u0yfe8qc70] {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding: 14px 12px;
    border: none;
    background: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a2535;
    outline: none;
    box-sizing: border-box;
    appearance: none;
}
.emp-input[b-u0yfe8qc70]::placeholder {
    color: #b0bec5;
    font-size: 15px;
}

.emp-input:disabled[b-u0yfe8qc70] {
    color: #90a4ae;
    cursor: not-allowed;
}

/* パスワード表示/非表示トグル */
.pw-toggle[b-u0yfe8qc70] {
    flex: 0 0 auto;
    align-self: center;
    display: flex;
    align-items: center;
    margin: 0 16px 0 4px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.pw-toggle svg[b-u0yfe8qc70] {
    width: 19px;
    height: 19px;
    fill: #b0bec5;
    transition: fill 0.15s;
}

.pw-toggle:hover svg[b-u0yfe8qc70] { fill: #78909c; }

.pwchange-validation[b-u0yfe8qc70] {
    display: block;
    font-size: 11px;
    color: #c8102e;
    margin-top: -10px;
    margin-bottom: 12px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ── エラー ──────────────────────────────────── */
.emp-error[b-u0yfe8qc70] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #c8102e;
    margin-bottom: 14px;
    padding: 9px 12px;
    background: rgba(200,16,46,0.06);
    border-left: 3px solid #c8102e;
    border-radius: 0 4px 4px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.emp-error-icon[b-u0yfe8qc70] { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ── ボタン ───────────────────────────────────── */
.pwchange-actions[b-u0yfe8qc70] {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.emp-btn[b-u0yfe8qc70] {
    flex: 1;
    width: 100%;
    padding: 14px 20px;
    background: #c8102e;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.1s;
    position: relative;
    overflow: hidden;
}

.emp-btn[b-u0yfe8qc70]::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
    transform: skewX(-16deg);
    transition: left 0s;
}

.emp-btn:hover:not(:disabled)[b-u0yfe8qc70] { background: #a50d25; }
.emp-btn:hover:not(:disabled)[b-u0yfe8qc70]::after { left: 130%; transition: left 0.6s ease; }
.emp-btn:active:not(:disabled)[b-u0yfe8qc70] { transform: scale(0.99); }
.emp-btn:disabled[b-u0yfe8qc70] { opacity: 0.6; cursor: not-allowed; }

.emp-btn span[b-u0yfe8qc70], .emp-btn-arr[b-u0yfe8qc70], .emp-btn-spinner[b-u0yfe8qc70] {
    position: relative;
    z-index: 1;
}

.emp-btn-arr[b-u0yfe8qc70] { width: 18px; height: 18px; fill: currentColor; }

.emp-btn-spinner[b-u0yfe8qc70] {
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    animation: empSpin-b-u0yfe8qc70 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes empSpin-b-u0yfe8qc70 { to { transform: rotate(360deg); } }

.pwchange-btn-skip[b-u0yfe8qc70] {
    padding: 0 20px;
    background: #f5f7f9;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    border: 1px solid #e0e4ea;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.pwchange-btn-skip:hover:not(:disabled)[b-u0yfe8qc70] { background: #eaedf2; color: #334155; }
.pwchange-btn-skip:disabled[b-u0yfe8qc70] { opacity: 0.6; cursor: not-allowed; }

/* ── フッター ─────────────────────────────────── */
.rp-footer[b-u0yfe8qc70] {
    padding: 16px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid #f0f2f5;
    flex-shrink: 0;
}

/* ================================================================
   ローディング・セッションエラー
   ================================================================ */
.pwchange-spinner-wrap[b-u0yfe8qc70] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.verify-spinner[b-u0yfe8qc70] {
    width: 2rem;
    height: 2rem;
    border: 2.5px solid rgba(200, 16, 46, 0.18);
    border-top-color: #c8102e;
    border-radius: 50%;
    animation: authSpin-b-u0yfe8qc70 0.7s linear infinite;
}

@keyframes authSpin-b-u0yfe8qc70 { to { transform: rotate(360deg); } }

.verify-checking-text[b-u0yfe8qc70] {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin: 0;
}

.pwchange-complete-wrap[b-u0yfe8qc70] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0 0.5rem;
    text-align: center;
}

.pwchange-complete-icon[b-u0yfe8qc70] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(22,163,74,0.28);
}

.pwchange-complete-icon svg[b-u0yfe8qc70] {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.pwchange-complete-title[b-u0yfe8qc70] {
    font-size: 1rem;
    font-weight: 700;
    color: #14532d;
    margin: 0.25rem 0 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.pwchange-complete-desc[b-u0yfe8qc70] {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0 0 0.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.pwchange-session-error[b-u0yfe8qc70] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    text-align: center;
}

.pwchange-session-error svg[b-u0yfe8qc70] {
    width: 36px;
    height: 36px;
    fill: #E42128;
}

.pwchange-session-error p[b-u0yfe8qc70] {
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.pwchange-login-link[b-u0yfe8qc70] {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #6b0010 0%, #E42128 100%);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s;
}

.pwchange-login-link:hover[b-u0yfe8qc70] { opacity: 0.88; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 680px) {
    .emp-right-panel[b-u0yfe8qc70] { display: none; }
    .emp-left-panel[b-u0yfe8qc70] { flex: 1 1 100%; width: 100%; min-width: 0; border-right: none; }

    .rp-clock[b-u0yfe8qc70] { top: 16px; left: 20px; }
    .rp-form-area[b-u0yfe8qc70] { padding: 76px 24px 28px; }
    .form-logo-block[b-u0yfe8qc70] { margin-bottom: 14px; }
    .form-logo-img[b-u0yfe8qc70] { height: 84px; }
    .welcome-wrap .w-line1[b-u0yfe8qc70] { font-size: 26px; }
    .welcome-desc[b-u0yfe8qc70] { font-size: 11.5px; margin-bottom: 18px; }
    .form-card[b-u0yfe8qc70] { padding: 18px 18px 16px; border-radius: 10px; }
    .emp-expired-card[b-u0yfe8qc70] { padding: 12px 14px; }
    .rp-footer[b-u0yfe8qc70] { padding: 12px; }
}

@media (max-width: 420px) {
    .rp-form-area[b-u0yfe8qc70] { padding: 68px 16px 24px; }
    .form-logo-img[b-u0yfe8qc70] { height: 68px; }
    .welcome-wrap .w-line1[b-u0yfe8qc70] { font-size: 22px; }
    .pwchange-actions[b-u0yfe8qc70] { flex-direction: column; }
}
/* /Components/Pages/PasswordExpiryWarningDialog.razor.rz.scp.css */
.pw-warn-overlay[b-zvuqps41hj] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    animation: fadeIn-b-zvuqps41hj 0.2s ease;
}

@keyframes fadeIn-b-zvuqps41hj {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pw-warn-dialog[b-zvuqps41hj] {
    width: 90%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(10, 14, 50, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    animation: slideUp-b-zvuqps41hj 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp-b-zvuqps41hj {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.pw-warn-header[b-zvuqps41hj] {
    background: linear-gradient(135deg, #78350f 0%, #b45309 55%, #d97706 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    position: relative;
    overflow: hidden;
}

.pw-warn-header[b-zvuqps41hj]::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.pw-warn-icon[b-zvuqps41hj] {
    width: 32px;
    height: 32px;
    fill: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(253, 230, 138, 0.6));
}

.pw-warn-title[b-zvuqps41hj] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.pw-warn-subtitle[b-zvuqps41hj] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.15rem 0 0;
}

.pw-warn-body[b-zvuqps41hj] {
    padding: 1.5rem;
}

.pw-warn-msg[b-zvuqps41hj] {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.65;
    margin: 0;
}

.pw-warn-days[b-zvuqps41hj] {
    color: #b45309;
    font-size: 1rem;
}

.pw-warn-actions[b-zvuqps41hj] {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.pw-warn-btn-change[b-zvuqps41hj] {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #78350f 0%, #d97706 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.15s, transform 0.1s;
}

.pw-warn-btn-change svg[b-zvuqps41hj] {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    flex-shrink: 0;
}

.pw-warn-btn-change:hover[b-zvuqps41hj] {
    opacity: 0.88;
    transform: translateY(-1px);
}

.pw-warn-btn-skip[b-zvuqps41hj] {
    padding: 0.75rem 1.25rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.pw-warn-btn-skip:hover[b-zvuqps41hj] {
    background: #e2e8f0;
    color: #334155;
}
/* /Components/Pages/RemoteLogout.razor.rz.scp.css */
/* ================================================================
   TOAMI Group Portal — Remote Logout
   社員番号入力画面（EmployeeLogin.razor）と同じレイアウト・トーンで統一
   ================================================================ */

/* ── Layout ─────────────────────────────────────── */
.emp-login-root[b-5ndr6eufmh] {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Barlow', 'Noto Sans JP', sans-serif;
}

/* ================================================================
   LEFT PANEL（フォーム）
   ================================================================ */
.emp-left-panel[b-5ndr6eufmh] {
    flex: 0 0 33%;
    min-width: 320px;
    background: #ffffff;
    border-right: 1px solid #e8ecf2;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.emp-left-panel[b-5ndr6eufmh]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #c8102e;
    z-index: 10;
}

/* ================================================================
   RIGHT PANEL（スライドショー）
   ================================================================ */
.emp-right-panel[b-5ndr6eufmh] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.emp-slideshow[b-5ndr6eufmh] {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.emp-slideshow[b-5ndr6eufmh]::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.018) 60px,
        rgba(255,255,255,0.018) 62px
    );
    z-index: 4;
    pointer-events: none;
}

.slideshow-overlay[b-5ndr6eufmh] {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,14,46,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(80,5,10,0.35) 100%);
    z-index: 5;
    pointer-events: none;
}

.slide[b-5ndr6eufmh] {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: empSlideFade-b-5ndr6eufmh 24s ease-in-out infinite;
    background-size: cover;
    background-position: center;
}

.slide-1[b-5ndr6eufmh] { background-image: url('/images/背景画像1.png'); animation-delay: 0s; }
.slide-2[b-5ndr6eufmh] { background-image: url('/images/背景画像2.png'); animation-delay: 8s; }
.slide-3[b-5ndr6eufmh] { background-image: url('/images/背景画像3.png'); animation-delay: 16s; }

@keyframes empSlideFade-b-5ndr6eufmh {
    0%, 100% { opacity: 0; }
    5%, 30%  { opacity: 1; }
    35%      { opacity: 0; }
}

/* ── 時計（左上） ────────────────────────────── */
.rp-clock[b-5ndr6eufmh] {
    position: absolute;
    top: 20px;
    left: 22px;
    text-align: left;
    z-index: 5;
}

.rp-time[b-5ndr6eufmh] {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a2a4a;
    line-height: 1;
    letter-spacing: 0.04em;
}

.rp-date[b-5ndr6eufmh] {
    font-size: 9px;
    color: #aaa;
    margin-top: 3px;
    font-family: 'Barlow', sans-serif;
}

/* ── フォームエリア（縦中央） ────────────────── */
.rp-form-area[b-5ndr6eufmh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
}

.form-logo-block[b-5ndr6eufmh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-logo-img[b-5ndr6eufmh] {
    height: 110px;
    width: auto;
}

.welcome-wrap[b-5ndr6eufmh] {
    text-align: center;
}

.w-line1[b-5ndr6eufmh] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a2a4a;
    text-shadow: 0 1px 2px rgba(10, 42, 74, 0.1);
}

.welcome-desc[b-5ndr6eufmh] {
    font-size: 12px;
    color: #999;
    margin-bottom: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.05em;
}

/* フォームカード */
.form-card[b-5ndr6eufmh] {
    background: #ffffff;
    border: 1.5px solid #e0e5ee;
    border-radius: 12px;
    padding: 22px 24px 20px;
    box-shadow: 0 2px 14px rgba(10,42,74,0.07);
}

/* ── ログアウト対象ユーザー表示 ─────────────────── */
.logout-user-row[b-5ndr6eufmh] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.logout-user-icon[b-5ndr6eufmh] {
    font-size: 30px;
    color: #c8102e;
    flex-shrink: 0;
}

.logout-user-info[b-5ndr6eufmh] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.logout-user-name[b-5ndr6eufmh] {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a2a4a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-user-sub[b-5ndr6eufmh] {
    font-size: 11px;
    color: #90a4ae;
    letter-spacing: 0.05em;
}

.logout-session-grid[b-5ndr6eufmh] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 14px 0 20px;
    border-top: 1px solid #eef1f5;
    margin-bottom: 4px;
}

.session-field[b-5ndr6eufmh] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.session-label[b-5ndr6eufmh] {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b0bec5;
}

.session-value[b-5ndr6eufmh] {
    font-size: 13px;
    color: #1a2535;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ── ログアウトボタン（SIGN INボタンと同じ意匠） ───── */
.emp-btn[b-5ndr6eufmh] {
    width: 100%;
    padding: 14px 20px;
    background: #c8102e;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.1s;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.emp-btn[b-5ndr6eufmh]::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
    transform: skewX(-16deg);
    transition: left 0s;
}

.emp-btn:hover:not(:disabled)[b-5ndr6eufmh] { background: #a50d25; }

.emp-btn:hover:not(:disabled)[b-5ndr6eufmh]::after {
    left: 130%;
    transition: left 0.6s ease;
}

.emp-btn:active:not(:disabled)[b-5ndr6eufmh] { transform: scale(0.99); }

.emp-btn:disabled[b-5ndr6eufmh] { opacity: 0.6; cursor: not-allowed; }

.emp-btn span[b-5ndr6eufmh], .emp-btn-arr[b-5ndr6eufmh], .emp-btn-spinner[b-5ndr6eufmh] {
    position: relative;
    z-index: 1;
}

.emp-btn-arr[b-5ndr6eufmh] { font-size: 18px; }

.emp-btn-spinner[b-5ndr6eufmh] {
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    animation: empSpin-b-5ndr6eufmh 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes empSpin-b-5ndr6eufmh { to { transform: rotate(360deg); } }

/* ── 「システムに戻る」ボタン（控えめなセカンダリボタン） ───── */
.emp-btn-back[b-5ndr6eufmh] {
    width: 100%;
    padding: 11px 20px;
    background: #ffffff;
    color: #546e7a;
    border: 1.5px solid #e0e4ea;
    border-radius: 7px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.emp-btn-back:hover[b-5ndr6eufmh] {
    background: #f5f7f9;
    border-color: #c0c8d4;
    color: #0a2a4a;
}

.emp-btn-back:active[b-5ndr6eufmh] { transform: scale(0.99); }

.emp-btn-back i[b-5ndr6eufmh] { font-size: 16px; }

/* ── ローディング／完了／エラー表示 ───────────────── */
.logout-status-row[b-5ndr6eufmh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #546e7a;
}

.logout-spinner-standalone[b-5ndr6eufmh] {
    border-color: rgba(10,42,74,0.15);
    border-top-color: #c8102e;
}

.logout-status-done[b-5ndr6eufmh] {
    color: #1b7a3d;
    font-weight: 700;
}

.logout-done-icon[b-5ndr6eufmh] {
    font-size: 22px;
    color: #1b7a3d;
}

.logout-status-error[b-5ndr6eufmh] {
    color: #c8102e;
    font-weight: 700;
}

.logout-error-icon[b-5ndr6eufmh] {
    font-size: 22px;
    color: #c8102e;
}

/* ── フッター ─────────────────────────────────── */
.rp-footer[b-5ndr6eufmh] {
    padding: 16px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid #f0f2f5;
    flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 680px) {
    .emp-right-panel[b-5ndr6eufmh] { display: none; }
    .emp-left-panel[b-5ndr6eufmh] { width: 100%; border-right: none; }
}
