@charset "utf-8";

/* 変わったバージョン */
.content_step_section {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 4rem;
}

.section_header_steps {
    margin-bottom: 2.5em; /* content_step_list の上マージンと合わせるか調整 */
    padding-bottom: 1.5em; /* 区切り線とのスペース */
    text-align: center; /* 見出しを中央揃えにする場合 */
    border-bottom: 1px solid #e5e7eb; /* 見出しとリストの間に区切り線 */
}

.main_title_steps { /* H2 */
    color: #1a2b3c; /* 濃いグレー、またはテーマカラー */
    font-family: 'Noto Sans JP', sans-serif; /* 例: 読みやすいフォント */
    font-size: 2em;   /* H2のフォントサイズ */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em; /* サブタイトルとの間隔 */
    margin-top: 0; /* 上マージンリセット */
}

.content_step_list {
    margin: 2.5em 0;
    width: 100%;
}
.content_step_item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #d1d5db;
}
.content_step_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.step_item_number_wrapper {
    flex-shrink: 0;
}
.step_item_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 50%;
    line-height: 1;
}
.step_item_content {}
.step_item_title { /* H4想定 */
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark-orange);
    margin-top: 0;
    margin-bottom: 0.5em;
    border-left: none; /* 基本のHタグスタイルを上書き */
    padding-left: 0;
}
.content_step_item p {
    font-size: 0.95em;
    color: #374151;
    margin-bottom: 0;
    line-height: 1.7;
}