/* ==========================================
   全体のレイアウト設定
========================================== */
.step-container {
    max-width: 800px; /* 必要に応じて調整してください */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 60px; /* ステップごとの縦の隙間（図の余白感に合わせる） */
}

/* 各ステップのブロック */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* 左右の中央寄せ */
    text-align: center;  /* テキストの中央寄せ */
}

/* 画像エリア */
.step-img-box {
    width: 100%;
    max-width: 500px; /* 画像の最大横幅。図のバランスに合わせて調整してください */
    margin-bottom: 30px; /* 画像とテキストの間の余白 */
}

.step-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキストエリア */
.feature-column-carousel__sub-title-text {
    font-size: 18px; /* フォントサイズ（適宜調整） */
    font-weight: bold;
    color: #000;
    line-height: 1.5;
    margin: 0;
}


/* ==========================================
   レスポンシブ表示切り替え (SP/PC)
========================================== */

/* デフォルト（スマホ表示）：PC用画像を非表示 */
.pc-only {
    display: none !important;
}
.sp-only {
    display: block;
}

/* タブレット・PC表示（768px以上）：SP用画像を非表示、PC用を表示 */
@media (min-width: 768px) {
    .pc-only {
        display: block !important;
    }
    .sp-only {
        display: none !important;
    }
}