/* ===== ステップ全体 ===== */
.step-nav {
    display: flex;
    gap: 40px;
    margin: 10px 0;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
}

/* ===== 各ステップ ===== */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== 番号ボタン（横長四角） ===== */
.step-number {
    width: 100px;
    height: 36px;
    border-radius: 6px;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cccccc;
}

/* 現在ステップ（赤背景・白文字） */
.step-item.active .step-number {
    background-color: #d60000;
    color: #ffffff;
}

/* 未到達ステップ（白背景・赤文字） */
.step-item.inactive .step-number {
    background-color: #ffffff;
    color: #d60000;
}

/* ===== ステップ名 ===== */
.step-title {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    width: 170px;
}

/* ===== ステータス（楕円） ===== */
.step-status {
    margin-top: 2px;
    width: 90px;
    height: 24px;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

/* 未入力 → 赤背景 */
.status-none {
    background-color: #d60000;
}

/* 入力中 → オレンジ背景(サンプルと同じ色) */
.status-inputting {
    background-color: #F2A11D;
}

/* 入力済 → 緑背景 */
.status-done {
    background-color: #0E8E84; /* 緑 ※サンプルと同じ色を抽出 */
}
