#income_calc{
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    width: 100%;
    background-color: #ffffff;
}
.ic_col{
    max-width: 60%;
    width: 100%;
    padding: 20px;
}
.ic_col.ic_col_res{
    max-width: 35%;
    background-color: #15302F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 3px;
    align-items: center;
    padding: 0;
}
.ic_row{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}
.ic_row:last-of-type{
    margin-bottom: 0;
}
.ic_col.ic_col_res p{
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}
.ic_col.ic_col_res p:last-of-type{
    font-size: 22px;
    font-weight: 600;
}
.ic_col p{
    color: #000000;
    margin: 0;
    font-weight: 600;
}
.ic_col .ic_row input[type=text]{
    border: 1px solid #15302F;
    width:150px;
    background-color: #ffffff;
    border-radius: 3px;
    box-sizing: border-box;
    line-height: 29px;
    color: #000000;
    padding: 0 10px;
    text-align: left;
    margin-bottom: 0;
    font-family: "PP Mori";
    font-style: normal;
}
.ic_col.ic_col_res .ic_row{
    max-width: 328px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px){
    .ic_col.ic_col_res .ic_row{
        max-width: 90%;
    }
}
@media (max-width: 1024px){
    .ic_col p{
        line-height: 130%;
    }
}
@media (max-width: 800px){
    #income_calc{
        flex-direction: column;
    }
    .ic_col,
    .ic_col.ic_col_res,
    .ic_col.ic_col_res .ic_row{
        max-width: 100%;
    }
    .ic_col.ic_col_res{
        padding: 10px;
    }
    .ic_col p{
        font-size: 16px;
    }
    .ic_col input{
        width: 80px;
        margin-left: 10px;
    }
    .ic_col{
        padding: 10px;
    }
}