@charset "utf-8";
.topapp{
    background: #fff;
}
#flow{
    margin: 80px auto 90px;
}
#flow h2{
    width: 100%;
    font-size: 4.0rem;
    font-weight: bold;
    padding: 30px 0;
    text-align: center;
    position: relative;
}
#flow h2::before {
    content: '';
    width: 400px;
    height: 4px;
    display: inline-block;
    background-color: #F2A88E;
    position: absolute;
    top: 10px;
    left: calc(50% - 200px);
}
#flow h2::after {
    content: '';
    width: 400px;
    height: 4px;
    display: inline-block;
    background-color: #F2A88E;
    position: absolute;
    bottom: 10px;
    left: calc(50% - 200px);
}
#flow .flw > p {
    text-align: center;
    margin-top: 50px;
}
#flow .flw .stepBox .step {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 40px;
    color: #00072A;
    align-items: stretch;
}
#flow .flw .stepBox .step > div {
    padding: 10px 1rem;
}
#flow .flw .stepBox .step > div:nth-of-type(1) {
    flex: 1;
    background-color: #52C1B0;
    margin-right: 2rem;
    border-radius: 10px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: solid 2px #F2F2F2;
    border-radius: 0 40px 40px 40px;
}
#flow .flw .stepBox .step > div:nth-of-type(1) span{
    font-size: 1.4rem;
}
#flow .flw .stepBox .step > div:nth-of-type(2) {
    flex: 4;
    border: 1px solid #AFCCC7;
    border-radius: 40px 40px 0 40px;
}
#flow .flw .stepBox .step .stptxt {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
#flow .flw .stepBox .step .stptxt div:nth-of-type(1) {
    flex: 1;
    margin: 0 1.5em 0 0;
}
#flow .flw .stepBox .step .stptxt div:nth-of-type(2) {
    flex: 6;
}
/* スマホ
----------------------- */
@media all and (max-width: 480px){
    #flow {
        margin: 40px auto 50px;
    }
    #flow h2{
        font-size: 2.4rem;
    }
    #flow h2::before{
        width: 200px;
        left: calc(50% - 100px);
    }
    #flow h2::after{
        width: 200px;
        left: calc(50% - 100px);
    }
    #flow .flw .stepBox .step {
        display: block;
    }
    #flow .flw .stepBox .step > div:nth-of-type(1){
        margin: 20px auto;
        min-height: 130px;
        padding: 20px 1em;
    }
    #flow .flw .stepBox .step > div:nth-of-type(2){
        padding: 20px 0.5em;
    }
}