/* visual */
.visual{
    width: calc(100% - 54px);
    height: 120px;
    background: linear-gradient(-45deg, #EAEEF6 40%, #EFF2F9 40%);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 27px;
}
.visual p{
    font-size: 16px;
    font-weight: 500;
    color: #165FFF;
}

/* s2 */
.section2 > div{
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.section2 > div:nth-child(1) span{
    color: #165FFF;
    padding-left: 4px;
}
.section2 > div:nth-child(2){
    justify-content: space-between;
    margin: 16px 0;
    color: #A9AAAD;
}
.section2 > div .line{
    width: 1px;
    height: 10px;
    background: #272A31;
    margin: 0 10px;
}

/* below 540 */
@media screen and (max-width: 540px){

    .visual{
        position: relative;
        height: 64px;
        padding: 0 14px;
        width: calc(100% - 28px);
        margin-bottom: 16px;
    }
    .visual p{
        font-size: 12px;
    }
    .visual img{
        position: absolute;
        right: 14px;
        bottom: 0;
        height: 90%;
    }
    .section2 > div{
        font-size: 14px;
    }
    .section2 > div .line{
        margin: 0 8px;
    }
    .section2 > div:nth-child(2){
        margin: 8px 0 12px;
    }

}
