.section-flow_list {
    margin: 0 auto;
    max-width: 850px;
}
.section-flow_list-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    text-align: left;
    align-items: flex-start;
    grid-gap: 0 50px;
    background-image: url(../images/line.png);
    background-repeat: repeat-y;
    background-position: 79px 160px;
}
.section-flow_list-item:last-child {
    background-image: none;
}
.section-flow_icon {
    border: 2px solid #7c7c3e;
    border-radius: 100px;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    grid-row: 1/3;
    grid-column: 1/2;
    height: 160px;
    margin-bottom: 70px;
}
.section-flow_list-item img {
    height: 64px;
    width: auto;
}
.section-flow_step-name {
    font-size: 2.4rem;
    align-self: center;
    margin-top: 0;
}
.section-flow_step-name span {
    display: inline;
    font-size: 2rem;
    color: #ffffff;
    background-color: #7c7c3e;
    padding: 4px 12px 6px 15px;
    margin-right: 20px;
    letter-spacing: 0.2rem;
}
.section-flow_description {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 0;
}
@media(max-width:1040px) {
    .section-flow_list {
        padding: 30px 25px 50px;
    }
    .section-flow_step-name {
        font-size: 1.8rem;
        line-height: 1.8;
    }
    .section-flow_step-name span {
        font-size: 1.4rem;
        padding: 2px 4px 2px 5px;
        margin-right: 20px;
        letter-spacing: 0.2rem;
    }
    .section-flow_icon {
        border: 2px solid #7c7c3e;
        border-radius: 100px;
        background-color: #ffffff;
        display: grid;
        place-items: center;
        grid-row: 1/3;
        grid-column: 1/2;
        height: 80px;
        width: 80px;
        margin-bottom: 70px;
    }
    .section-flow_list-item {
        grid-template-columns: 80px 1fr;
        grid-gap: 0 20px;
        background-image: url(../images/line.png);
        background-position: 40px 160px;
        padding-bottom: 50px;
    }
    .section-flow_list-item img {
        height: 40px;
        width: auto;
    }
    .section-flow_description {
        padding-top: 5px;
    }

}