.flow .tab__btns {
    gap: 4px;
}
.flow .tab__btn {
    border-radius: 8px 8px 0 0;
    padding: 15px 0;
    background: #F0F0F0;
    color: var(--txt-gray);
    font-size: 16px;
}
.flow .tab__btn.active {
    background: var(--bg-black);
    color: var(--white);
}
.flow .tab__body {
    border: 1px solid var(--bd-gray);
    padding: 0 20px;
    border-radius: 0 0 20px 20px;
    letter-spacing: 0.05em;
}
.flow .tab__body li {
    padding: 32px 0;
    position: relative;
}
.flow .tab__body li:not(:last-child) {
    border-bottom: 1px solid var(--bd-gray);
}
.flow .tab__body li:not(:last-child)::after {
    content: "";
    width: 46px;
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/flow/flow-icon-arrow.png);
}
.flow .tab__body li .inner { 
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 510px;
    margin: 0 auto;
}
.flow .tab__body li img {
    width: 60px;
}
.flow .tab__body li p:nth-of-type(1) {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

@media screen and (min-width:768px) {
    .flow .tab__body li p:nth-of-type(1) {
        font-size: 22px;
    }
}