/* Component: C410.0C Redesigned Image - PC Layout Fix */
@media screen and (min-width: 60em) {
    .c_029 picture img {
        margin-bottom: 4px;
    }
    .no-gutter .col-6+.col-6 .VLP_Redesigned_c_029 img, .no-gutter .col-6 .VLP_Redesigned_c_029 img {
        margin-bottom: 4px !important;
    }
}

/* 1. 親要素の設定 */
.heliostext .c_001 .container-inner {
    position: relative !important;  /* 線の位置決めの基準にする */
    border-left: none !important;   /* 以前のborder指定があれば消す */
    padding-left: 40px !important;  /* テキストとの余白 */
    box-sizing: border-box;
}

/* 2. 線の描画設定（細く・長さを調整） */
.heliostext .c_001 .container-inner::before {
    content: "";
    position: absolute;      /* 絶対配置 */
    left: 0;
    
    /* ▼▼ 線を細くしました（3px → 1px） ▼▼ */
    width: 1px;              
    background-color: #000;  /* 線の色 */
    
    /* ▼▼ 長さの調整（天地をカットする量） ▼▼ */
    /* 文字の高さに合うよう、数値を微調整してください */
    top: 5px;      /* 上端を5px削る */
    bottom: 99px;   /* 下端を5px削る */
}

/* 2文字分の継ぎ目のない罫線を描画 */
.heliostext .long-dash {
    display: inline-block;       /* 幅と高さを持たせる */
    width: 2em;                  /* 全角2文字分の長さ */
    height: 1px;                 /* 線の太さ（横棒も1pxに合わせると綺麗です） */
    background-color: currentColor; /* 親の文字色と同じ色にする */
    vertical-align: middle;      /* 文字の高さの真ん中に配置 */
    
    /* 微調整 */
    position: relative;
    top: -2px; 
}

/* --- スマホ表示時の調整 --- */
@media screen and (max-width: 767px) {

    /* 1. 全体の余白調整 */
    .heliostext .c_001 .container-inner {
        padding-left: 20px !important;  /* 左の余白を減らす */
        padding-right: 15px !important; /* 右の余白確保 */
    }

    /* 2. 見出しの文字サイズを小さくする */
    .heliostext .heading-group h2,
    .heliostext .heading-group h2 span {
        font-size: 22px !important;
        line-height: 1.4 !important;
        word-break: normal !important;
    }

    /* 3. 本文の文字サイズと行間の調整 */
    .heliostext .style3-inner p,
    .heliostext .style3-inner p span {
        font-size: 14px !important;
        text-align: left !important;
    }

    /* 4. スマホ用：縦線の長さ微調整 */
    .heliostext .c_001 .container-inner::before {
        top: 5px; 
        bottom: 90px; 
    }
}

/* c_154 アコーディオンコンポーネントの下部余白を削除 */
.c_154.accordion,
.c_154.VLP_Redesigned_c_154 {
    margin-bottom: 0 !important;
}