.flowLists {
    padding: 100px 0 0;
    width: 800px;
    margin: 0 auto;
}
.flowListText {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}
.flowLists ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flowLists li {
    width: 48%;
    display: flex;
    border: 2px solid #0878C0;
    margin-bottom: 60px;
    position: relative;
}
.flowLists li:nth-child(1) {
    order: 1;
}
.flowLists li:nth-child(2) {
    order: 3;
}
.flowLists li:nth-child(3) {
    order: 5;
}
.flowLists li:nth-child(4) {
    order: 7;
}
.flowLists li:nth-child(5) {
    order: 2;
}
.flowLists li:nth-child(6) {
    order: 4;
}
.flowLists li:nth-child(7) {
    order: 6;
}
.flowLists li:nth-child(8) {
    order: 8;
}
.flowLists li:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -42px;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.3px 10px 0 10px;
    border-color: #a8ddff transparent transparent transparent;
}
.flowLists li:last-child:before {
    display: none;
}
.flowNum {
    width: 20%;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0878c0;
    color: #fff;
}
.flowListBox {
    width: 80%;
    display: flex;
    padding: 15px;
    justify-content: space-between;
}
.flowListBox .flowImg {
    width: 29%;
}
.flowListBox .flowTextBox {
    width: 68%;
}
.flowTextBox h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.flowTextBox p {
    font-size: 1.4rem;
    line-height: 1.2;
}
@media screen and (max-width: 835px) {
    .flowLists {
        padding: 40px 1em 0;
        width: auto;
        margin: 0 auto;
    }
    .flowLists li {
        width: 100%;
    }
    .flowLists li:nth-child(1) {
        order: 1;
    }
    .flowLists li:nth-child(2) {
        order: 2;
    }
    .flowLists li:nth-child(3) {
        order: 3;
    }
    .flowLists li:nth-child(4) {
        order: 4;
    }
    .flowLists li:nth-child(5) {
        order: 5;
    }
    .flowLists li:nth-child(6) {
        order: 6;
    }
    .flowLists li:nth-child(7) {
        order: 7;
    }
    .flowLists li:nth-child(8) {
        order: 8;
    }
    .flowTextBox p {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    .flowListText {
        line-height: 1.4;
    }
}