/* ========================================
   G-SHOWROOM 買取査定ページ
   ======================================== */

/* ========================================
   ステップフロー（4ステップ表示）
   ======================================== */
.steps-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin: 40px 0;
}

.step-item {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-item__header {
    margin-bottom: 15px;
}

.step-item__number {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

.step-item__icon {
    width: 120px;
    height: 100px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item__icon img {
    max-width: 100%;
    max-height: 100%;
}

.step-item__icon .placeholder {
    width: 120px;
    height: 100px;
    background: #e8f4fc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29ABDD;
    font-size: 12px;
}

.step-item__text {
    font-family: var(--font-ja);
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.8;
    text-align: left;
}

/* 矢印 */
.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: #29ABDD;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ========================================
   レスポンシブ（1024px以下）
   ======================================== */
@media (max-width: 1024px) {
    .steps-flow {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-item {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }

    .step-item__icon {
        width: 150px;
        height: 120px;
    }

    .step-arrow {
        display: none;
    }
}

/* ========================================
   レスポンシブ（768px以下）
   ======================================== */
@media (max-width: 768px) {
    .steps-flow {
        gap: 30px;
    }

    .step-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .step-item__number {
        font-size: 16px;
    }

    .step-item__icon {
        width: 140px;
        height: 110px;
    }

    .step-item__icon .placeholder {
        width: 140px;
        height: 110px;
    }

    .step-item__text {
        font-size: 16px;
    }
}

/* ========================================
   レスポンシブ（390px以下）
   ======================================== */
@media (max-width: 390px) {
    .step-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .step-item__icon {
        width: 160px;
        height: 130px;
    }

    .step-item__icon .placeholder {
        width: 160px;
        height: 130px;
        font-size: 11px;
    }
}

/* ========================================
   説明文ボックス
   ======================================== */
.assessment-note {
    text-align: center;
    margin: 40px 0 0 0;
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    color: var(--color-white);
}

.assessment-note__text {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
}

@media (max-width: 768px) {
    .assessment-note {
        padding: 20px;
    }

    .assessment-note__text {
        font-size: 16px;
        line-height: 1.9;
    }
}
