.flowContainer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid var(--color-navy);
    margin:0 calc(var(--space-50)*2) 20px;
}
.flowContainer .no{
    padding-bottom: 10px;    
    font-size: var(--font-size-12);
}
.flowContainerInner{
    display: flex;
    flex-direction: column;
    width: 10%;
    text-align: center;
    position: relative;
}
.flowContainerInner img{
    width: 100%;
    position: relative;
}
.flowText{
    width: 80%;
    font-weight: bold;
    font-size: var(--font-size-12);
}
    /* ========================================================== */
    /* ==============  2023スマホ     768px   ==================== */
    /* ========================================================== */
    @media screen and (max-width:1024px){
        .flowContainer{
            margin:0 0 20px;
            line-height: 1.5;
        }
        .flowContainerInner img{
          top:-9px;
        }
        .flowText{
            width: 80%;
            font-weight: bold;
            font-size: var(--font-size-base);
        }
    }
    /* ========================================================== */
    /* ==============  2023スマホ     600px   ==================== */
    /* ========================================================== */
    @media screen and (max-width:600px){
        .flowContainerInner{
            width: 15%;
            left: -10px;
        }
    }
        
