.headline__lead {
    display: none;
}

.flow-list {
    padding-left: 125px;
    position: relative;
    border-left: 4px solid #c4c5c5;
    margin-left: 15px;
}

.flow-item {
    margin-bottom: 80px;
    position: relative;
}

.flow-item:last-child {
    margin-bottom: 0;
}

.flow-item::before {
    content: "";
    position: absolute;
    left: -151px;
    top: -10px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 10px solid #c4c5c5;
    border-radius: 50vh;
}

.flow-item::after {
    content: "";
    position: absolute;
    left: -101px;
    top: 14px;
    width: 60px;
    height: 1px;
    background-color: #c4c5c5;
}

.flow-item__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 0.5px solid #717171;
    padding-bottom: 80px;
}

.flow-item__content {
    flex: 1;
    min-width: 300px;
}

.flow-item__image {
    width: 45%;
    max-width: 420px;
    margin: 0;
}

.flow-item__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.flow-item__head {
    margin-bottom: 20px;
    margin-top: -8px;
}

.flow-item__step {
    font-family: "Asap Condensed Regular", sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.flow-item__step-num {
    font-size: 40px;
    font-family: "Asap Condensed", sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-left: 12px;
    transform: translateY(2px);
}

.flow-item__title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
}

.flow-item__tag {
    display: inline-block;
    border: 1px solid #717171;
    border-radius: 30px;
    padding: 8px 35px;
    font-size: 14px;
    color: #717171;
    margin-bottom: 24px;
}

.flow-item__tag-note {
    font-size: 12px;
    margin-left: 10px;
    color: #717171;
}

.flow-item__desc {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

@media (max-width: 991.98px) {
    .flow-list {
        border-left: 3px solid #d9d9d9;
        padding-left: 20px;
        margin-left: 10px;
    }

    .flow-item::before {
        width: 24px;
        height: 24px;
        border-width: 4px;
        left: -32px;
    }

    .flow-item::after {
        left: -8px;
        top: 10px;
        width: 20px;
        height: 3px;
    }

    .flow-item__inner {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .flow-item__image {
        width: 100%;
        max-width: none;
    }

    .flow-item__step-num {
        font-size: 32px;
    }

    .flow-item__title {
        font-size: 20px;
    }

    .flow-item__tag {
        display: block;
        width: fit-content;
    }

    .flow-item__tag-note {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

.flow-bg-wrapper {
    background: url(../../img/top/fv-bg.jpg) center center / cover no-repeat;
    padding: 120px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.flow-total-duration {
    border: 1px solid #717171;
    padding: 40px 60px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.flow-total-duration__label {
    font-size: 20px;
    font-weight: bold;
    color: #555;
    position: relative;
    padding-right: 60px;
    border-right: 1px solid #717171;
    white-space: nowrap;
}

.flow-total-duration__content {
    text-align: left;
}

.flow-total-duration__time {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Asap Condensed", sans-serif;
}

.flow-total-duration__time-sub {
    font-size: 18px;
    font-weight: normal;
}

.flow-total-duration__desc {
    font-size: 14px;
    color: #717171;
    margin: 0;
}

@media (max-width: 991.98px) {
    .flow-total-duration {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        align-items: flex-start;
    }

    .flow-total-duration__label {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #717171;
        padding-bottom: 15px;
        width: 100%;
        text-align: center;
    }

    .flow-total-duration__content {
        width: 100%;
        text-align: center;
    }

    .flow-total-duration__time {
        font-size: 20px;
    }

    .flow-total-duration__time-sub {
        font-size: 16px;
        display: block;
        /* Break line on mobile if needed */
        margin-top: 5px;
    }
}