.home_source
{
    display: flex;
    width: 100%;
    justify-content: center;
}

.home_source_sz
{
    display: flex;
    width: calc( 100% - 20px );
    justify-content: space-evenly;
    max-width: 1220px;
    background: #F0F3F5;
    border-radius: 20px;
    padding-top: calc( 64 * calc( 100vw / 1440 ) );
}

@media (min-width: 1441px)
{
    .home_source_sz
    {
        padding-top: 64px;
    }
}

.home_source_txt
{
    display: flex;
    width: calc( 60% - 40px );
    flex-direction: column;
}

.home_source_txt_ttl
{
    display: block;
    width: 100%;
    margin: unset;
    padding: unset;

    color: #000000;
    font-family: 'OS_SemiBold', sans-serif;
    line-height: 1.5;
    font-size: calc( 26 * calc( 100vw / 1440 ) );
}

.home_source_img_mobile
{
    display: none;
}

.home_source_img img
{
    max-width: 100%;

}

.home_source_txt_dsc
{
    display: block;
    width: 100%;
    margin: unset;
    padding: unset;

    color: #000000;
    font-family: 'OS_Regular', sans-serif;
    line-height: 1.5;
    font-size: calc( 20 * calc( 100vw / 1440 ) );
    margin-top: 16px;
}

@media (min-width: 1441px)
{
    .home_source_txt_ttl
    {
        font-size: 26px;
    }

    .home_source_txt_dsc
    {
        font-size: 20px;
    }
}

.home_source_txt_btn
{
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.home_source_txt_btn > a
{
    display: flex;
    align-items: center;
    background: #3695D8 0% 0% no-repeat padding-box;
    border: 2px solid #3F95D6;
    color: #FFFFFF;
    font-family: 'OS_SemiBold', sans-serif;
    line-height: 1;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 40px;
    transition: all 0ms;
}

.home_source_txt_btn > a svg
{
    margin-right: 4px;
}

.home_source_txt_btn > a svg,
.home_source_txt_btn > a svg path
{
    transition: all 0ms;
}

.home_source_txt_btn > a:hover
{
    background: #FFF;
    color: #3695D8;
}

.home_source_txt_btn > a:hover svg path
{
    fill: #3695D8;
    stroke: #3695D8
}

.home_source_img
{
    display: flex;
    width: calc( 40% - 40px );
    justify-content: center;
    margin-bottom: -30px;
}


@media (max-width: 1024px)
{
    .home_source_txt
    {
        width: calc( 100% - 40px - 300px );
    }

    .home_source_img
    {
        width: 300px;
    }

    .home_source_txt_ttl
    {
        font-size: 20px;
    }

    .home_source_txt_dsc
    {
        font-size: 18px;
    }

    .home_source_txt_btn
    {
        margin-bottom: 40px;
    }

    .home_source_txt_btn > a
    {
        font-size: 18px;
        padding: 10px 24px;
    }
}

@media (max-width: 760px)
{
    .home_source_sz
    {
        flex-direction: column;
        align-items: center;
    }

    .home_source_txt
    {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .home_source_img_mobile
    {
        display: block;
        text-align: center;
    }

    .home_source_img_mobile img:first-child
    {
        width: 200px;
    }

    .home_source_img
    {
        display: none;
    }

    .home_source_txt_ttl
    {
        text-align: center;
    }

    .home_source_txt_dsc
    {
        text-align: center;
        width: calc( 100% - 20px );
    }

    .home_source_txt_btn
    {
        justify-content: center
    }
}
