/* ========================================
   Vacancy (Hero内コンパクト版)
======================================== */

.kf-vacancy-section {
    margin-top: 40px;
    /* ヒーロー内なので小さめ */
}

/* =========================
   上部グリーン帯
========================= */

.kf-vacancy-header {
    background: #1f4d3c;
    color: #fff;
    padding: 20px 24px;
    /* コンパクト化 */
    position: relative;
    border-radius: 6px 6px 0 0;
}

/* 左縦ライン */

.kf-vacancy-header::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 16px;
    width: 3px;
    height: 60%;
    background: #ffffff;
}

/* 内側 */

.kf-vacancy-header__inner {
    margin-left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kf-vacancy-header__title {
    font-size: 18px;
    /* 小さく */
    font-weight: 600;
}

.kf-vacancy-header__date {
    font-size: 13px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

/* =========================
   下ボックス
========================= */

.kf-vacancy-body {
    background: #f7f6f3;
    /* 少し柔らかい色 */
    padding: 24px;
    border: 1px solid #e3e0d9;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

/* 状態 */

.kf-vacancy-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kf-vacancy-status h3 {
    font-size: 20px;
    /* 小さめ */
    font-weight: 600;
}

/* バッジ */

.kf-badge {
    background: #f5a200;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

/* メッセージ */

.kf-vacancy-message {
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.6;
    color: #444;
}