/* 州鵬会 職員管理 フロント画面スタイル */
.sk-wrap { max-width: 1100px; margin: 0 auto; color: #1d2327; font-size: 14px; line-height: 1.6; }
.sk-wrap *, .sk-wrap *::before, .sk-wrap *::after { box-sizing: border-box; }

/* ナビ */
.sk-nav { display: flex; gap: 4px; border-bottom: 2px solid #2271b1; margin-bottom: 20px; flex-wrap: wrap; }
.sk-tab { padding: 10px 18px; text-decoration: none; color: #2271b1; border-radius: 6px 6px 0 0; font-weight: 600; }
.sk-tab:hover { background: #f0f6fc; }
.sk-tab-active { background: #2271b1; color: #fff; }

/* 見出し */
.sk-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin: 8px 0 16px; }
.sk-head h2 { margin: 0; font-size: 22px; }
.sk-head h2 small { font-size: 14px; color: #646970; font-weight: normal; }
.sk-headbtns { display: flex; gap: 8px; }
.sk-subtitle { margin: 26px 0 8px; font-size: 16px; border-left: 4px solid #2271b1; padding-left: 10px; }

/* ボタン */
.sk-btn { display: inline-block; padding: 8px 16px; border: 1px solid #c3c4c7; background: #f6f7f7; color: #2c3338;
          border-radius: 6px; text-decoration: none; cursor: pointer; font-size: 14px; line-height: 1.4; }
.sk-btn:hover { background: #f0f0f1; }
.sk-btn-primary { background: #2271b1; border-color: #2271b1; color: #fff; }
.sk-btn-primary:hover { background: #135e96; color: #fff; }
.sk-btn-danger { background: #fff; border-color: #d63638; color: #d63638; }
.sk-btn-danger:hover { background: #d63638; color: #fff; }

/* 通知 */
.sk-notice { background: #edfaef; border-left: 4px solid #00a32a; padding: 10px 14px; margin: 12px 0; border-radius: 4px; }

/* 検索バー */
.sk-search { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 16px;
             background: #f6f7f7; padding: 12px; border-radius: 8px; }
.sk-search input[type="search"], .sk-search select { padding: 7px 10px; border: 1px solid #8c8f94; border-radius: 6px; font-size: 14px; }
.sk-search input[type="search"] { min-width: 220px; }
.sk-count { color: #646970; margin-left: auto; }

/* テーブル */
.sk-tablewrap { overflow-x: auto; border: 1px solid #e0e0e0; border-radius: 8px; }
.sk-table { width: 100%; border-collapse: collapse; background: #fff; }
.sk-table th, .sk-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #f0f0f1; white-space: nowrap; }
.sk-table thead th { background: #f6f7f7; font-weight: 600; position: sticky; top: 0; }
.sk-table tbody tr:hover { background: #f8fbff; }
.sk-table a { color: #2271b1; text-decoration: none; }
.sk-table a:hover { text-decoration: underline; }

/* バッジ */
.sk-badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; background: #e0e0e0; }
.sk-badge-active { background: #d6f3dd; color: #00731f; }
.sk-badge-left { background: #f0f0f1; color: #787c82; }

/* 詳細テーブル */
.sk-detail { width: 100%; max-width: 920px; border-collapse: collapse; margin-bottom: 8px; }
.sk-detail th { width: 230px; text-align: left; background: #f6f7f7; padding: 8px 12px; border: 1px solid #e8e8e8; font-weight: 600; }
.sk-detail td { padding: 8px 12px; border: 1px solid #e8e8e8; }

/* フォーム */
.sk-form .sk-group { border: 1px solid #dcdcde; border-radius: 8px; padding: 14px 18px; margin-bottom: 18px; }
.sk-form legend { font-weight: 700; color: #2271b1; padding: 0 8px; }
.sk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sk-field { display: flex; flex-direction: column; gap: 4px; }
.sk-field label { font-weight: 600; font-size: 13px; color: #50575e; }
.sk-field input, .sk-field select, .sk-field textarea {
    padding: 8px 10px; border: 1px solid #8c8f94; border-radius: 6px; font-size: 14px; width: 100%; background: #fff; }
.sk-field textarea { resize: vertical; }
.sk-actions { margin-top: 8px; }

@media (max-width: 640px) { .sk-grid { grid-template-columns: 1fr; } }
