@charset "UTF-8";

/* ===================================================
   集患→診察→再診の流れ（2754-1349）
=================================================== */

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

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

/* 見出し */
.about2_heading {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: normal;
    color: #383b42;
    text-align: center;
    letter-spacing: 0.35px;
    margin: 0;
}

/* コンテンツ全体 */
.about2_content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

/* ===================================================
   カラム行
=================================================== */
.about2_cols {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* 各カラム */
.about2_col {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* カラムヘッダー（青い矢印型背景＋テキスト） */
.about2_col_header {
    position: relative;
    height: 54px;
    width: 100%;
}

.about2_col_header_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.about2_col_header_text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    white-space: nowrap;
    /* 右側の矢印部分のテキストが欠けないよう右マージン */
    /* padding-right: 18px; */
}

/* サブ見出し */
.about2_col_sub {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #0a3e8b;
    text-align: center;
}

/* 箇条書き */
.about2_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0 16px;
    margin: 0;
}

.about2_list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    color: #383b42;
}

.about2_list li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 6px;
    border-radius: 50%;
    background-color: #006ec5;
}

/* 縦区切り線 */
.about2_divider {
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    position: relative;
    overflow: visible;
}

.about2_divider img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.1px;
    height: 100%;
    display: block;
}

/* ===================================================
   実績カード行
=================================================== */
.about2_stats {
    display: flex;
    gap: 12px;
    width: 100%;
    
}

.about2_stat_card {
    flex: 1 0 0;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* 白背景をグレー背景と区別するための影 */
    box-shadow: 0 0 0 1px #e8ecf2;
}

.about2_stat_card--double {
    gap: 32px;
    justify-content: center;
}

.about2_stat_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    white-space: nowrap;
}

.about2_stat_label {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #383b42;
}

.about2_stat_num {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.about2_stat_value {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #006ec5;
    letter-spacing: -0.84px;
}

.about2_stat_unit {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #383b42;
    letter-spacing: -0.64px;
    padding-bottom: 4px;
}


.about2_scroll_inner {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
/* ===================================================
   レスポンシブ
=================================================== */
@media screen and (max-width: 768px) {
    .about2 {
        padding: 0px 0;
    }

    .about2_inner {
        padding: 0 20px;
        gap: 24px;
    }

    .about2_heading {
        font-size: 22px;
    }

    /* SP: カラム行を横スクロール */
    .about2_content {
        gap: 20px;
    }

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

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

}
