/* タイトル全体の背景 */
.service_list_title_wrapper {
    display: flex;
    /* Flexbox を適用 */
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    background-color: #D7BBF8;
    /* 紫色の背景色 */
    height: 100px;
    /* 高さを固定（必要に応じて調整） */
    border-radius: 10px;
    /* 背景の角を丸める */
    margin-bottom: 20px;
    /* 下部余白 */
}

/* タイトル文字 */
.service_list_title {
    font-family: 'Poppins', sans-serif;
    /* 好みのフォントを指定 */
    font-weight: 300;
    /* 細字を指定（100～400が細字の範囲） */
    font-size: 1.8rem;
    /* タイトルサイズを調整 */
    color: #333;
    /* 落ち着いた色に設定 */
    text-align: center;
    /* 中央揃え */
    letter-spacing: 0.05em;
    /* 文字の間隔を少し広げる */
    margin: 0;
    padding: 10px 0;
}

.section_title {
    font-family: 'Poppins', sans-serif;
    /* フォントを指定 */
    font-weight: 300;
    /* 細字を指定 */
    font-size: 2rem;
    /* タイトルサイズ */
    color: #333;
    /* 文字色 */
    text-align: center;
    /* 中央揃え */
    margin: 0;
    padding: 10px 0;
    letter-spacing: 0.05em;
    /* 文字間隔を少し広げる */
}

/* タイトル背景付き（必要に応じて） */
.section_title_wrapper {
    background-color: #D7BBF8;
    /* 背景色を設定 */
    padding: 20px 0;
    /* 上下の余白 */
    border-radius: 10px;
    /* 角を丸くする */
    margin-bottom: 20px;
    /* 下部の余白 */
    text-align: center;
    /* タイトル全体を中央揃え */
}