/* --- Process Flow Layout --- */
ol.flow-list {
    list-style: none;
    padding-left: 0;
    position: relative;
    border-left: 3px dashed;
    margin-left: 0.5rem;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-list>li {
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    /* margin-bottom: 2rem; */
    position: relative;
    border: 1px solid;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.flow-list>li::before {
    content: attr(data-step);
    position: absolute;
    left: -28px;
    /* 3px border + 25px offset */
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid;
}

.flow-list strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.flow-list ul {
    list-style: none;
    padding-left: 1rem;
    margin-top: 1rem;
}

.flow-list ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.flow-list ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}