.vc-fixVoice__simple {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    counter-reset: vc-conversation-inc;
}
.vc-fixVoice__simpleItem {
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 40px 30px;
}
.vc-fixVoice__simpleItem--col2 {
    max-width: 485px;
    width: 100%;
    
}
.vc-fixVoice__simpleItem--col2 h4 {
    position: relative;
    z-index: 0;
}
.vc-fixVoice__simpleItem--col2 h4::before {
    counter-increment: vc-conversation-inc;
    content: counter(vc-conversation-inc);
    display: block;
    color: #DDDDDD;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    font-weight: normal;
    z-index: -1;
}

.vc-fixVoice__simple h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    color: #EEAAAA;
    text-align: center;
}

.vc-fixVoice__simple p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.71;
    color: #222222;
    margin-top: 30px;
}

.vc-fixVoice__steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    counter-reset: fx_step;
}

.vc-fixVoice__stepItem {
    position: relative;
    box-sizing: border-box;
    background-color: #ffffff;
    margin-top: 50px;
    padding: 50px 20px 20px;
}

.vc-fixVoice__stepItem::before {
    content: "STEP " counter(fx_step);
    counter-increment: fx_step;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 46px;
    color: #ffffff;
    background-color: #707070;
    text-align: center;
    min-width: 150px;
    border-radius: 30px;
}

.vc-fixVoice__stepItem h5 {
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #707070;
}

.vc-fixVoice__stepItem p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.71;
    color: #222222;
    margin-top: 25px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vc-fixVoice__stepItem p.ex::before {
    display: inline;
    content: "";
    width: 57px;
    height: 45px;
    background: url('/course_vocal/images/speech_technique/ex.png') no-repeat;
    background-size: contain;
    margin-right: 10px;
}

.vc-fixVoice__stepItem--col3-1 {
    max-width: 320px;
    width: 100%;
}

.vc-fixVoice__stepItem--colorOrange h5 { color: #EEAA77; }
.vc-fixVoice__stepItem--colorOrange::before { background-color: #EEAA77; }
.vc-fixVoice__stepItem--colorPink h5 { color: #EEAAAA; }
.vc-fixVoice__stepItem--colorPink::before { background-color: #EEAAAA; }
.vc-fixVoice__stepItem--colorGreen h5 { color: #88DDBB; }
.vc-fixVoice__stepItem--colorGreen::before { background-color: #88DDBB; }
.vc-fixVoice__stepItem--colorWater h5 { color: #88CCDD; }
.vc-fixVoice__stepItem--colorWater::before { background-color: #88CCDD; }
.vc-fixVoice__stepItem--colorBlue h5 { color: #8888DD; }
.vc-fixVoice__stepItem--colorBlue::before { background-color: #8888DD; }

.vc-fixVoice__stepItem--col3-3 {
    max-width: 100%;
    width: 100%;
}