@charset "UTF-8";

/* ===================================================
   患者さん側の診察の流れ（Figma Group 627411 / 3997:15985）
=================================================== */

.flow2 {
    background-color: #ffffff;
    padding: 70px 0;
}

.flow2_inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* 見出し */
.flow2_heading {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    color: #383b42;
    text-align: center;
    margin: 0 0 40px;
}

.flow2_heading_blue {
    color: #006ec5;
    font-weight: 600;
}

/* ----------------------
   STEPラベル行
---------------------- */
.flow2_step_labels {
    display: flex;
    gap: 40px;
    width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
}

.flow2_step_col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.flow2_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background-color: #eaefff;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #0076e5;
    white-space: nowrap;
}

.flow2_step_title {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #3e4043;
    text-align: center;
    margin: 0;
}

/* ----------------------
   イラスト + 全幅バー
---------------------- */
.flow2_visual {
    width: 100%;
    box-sizing: border-box;
}

.flow2_illust_row {
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    min-height: 190px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.flow2_illust_cell {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.flow2_illust {
    width: 100%;
    max-width: 290px;
    height: 190px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.flow2_illust img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
}

.flow2_bar_strip {
    width: 100%;
    line-height: 0;
    margin: -48px 0 0;
    position: relative;
    z-index: 0;
    pointer-events: none;
}

.flow2_bar_strip img {
    display: block;
    width: 100%;
    height: 48px;
    object-fit: fill;
}

/* ----------------------
   説明文行
---------------------- */
.flow2_descs {
    display: flex;
    gap: 40px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.flow2_desc {
    flex: 1 1 0;
    min-width: 0;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W4", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    color: #383b42;
    margin: 0;
}

/* ----------------------
   POINTボックス
---------------------- */
.flow2_point {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #dfedff;
    border: 2px solid #006ec5;
    border-radius: 12px;
    box-sizing: border-box;
}

.flow2_point_badge {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px 14px;
    background-color: #eaefff;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #0076e5;
    white-space: nowrap;
    align-self: flex-start;
}

.flow2_point_heading {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #0a3e8b;
    white-space: nowrap;
}

.flow2_point_text {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W4", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0a3e8b;
}

/* ===================================================
   レスポンシブ
=================================================== */
@media screen and (max-width: 768px) {
    .flow2 {
        padding: 20px 0;
    }

    .flow2_inner {
        padding: 0 20px;
    }

    .flow2_heading {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .flow2_scroll_wrap {
        width: calc(100% + 40px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .flow2_scroll_inner {
        display: inline-flex;
        flex-direction: column;
        min-width: 1280px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .flow2_point {
        gap: 14px;
        padding: 16px;
    }

    .flow2_point_heading {
        font-size: 20px;
        white-space: normal;
    }

    .flow2_point_text {
        font-size: 14px;
    }

    .flow2_descs {
        margin-bottom: 24px;
    }
}
