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

.home_articles_sz
{
    display: flex;
    width: calc( 100% - 20px );
    max-width: 1300px;
    margin: calc( 70 * calc( 100vw / 1440 ) ) 0px calc( 70 * calc( 100vw / 1440 ) ) 0px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 1441px)
{
    .home_articles_sz
    {
        margin: 70px 0px 70px 0px;
    }
}

.home_articles_ttl
{
    display: flex;
    width: calc( 100% - 100px );
    max-width: calc( 1220px - 100px );
    align-items: center;
    margin: unset;
    padding: unset;
}

@media (max-width: 600px)
{
    .home_articles_ttl
    {
        width: calc( 100% - 60px );
    }
}

.home_articles_ttl > span:nth-child(1)
{
    background: #3695D8;
    width: 4px;
    margin-right: calc( 20 * calc( 100vw / 1440 ) );
    min-height: calc( 40 * calc( 100vw / 1440 ) );
}

.home_articles_ttl > span:nth-child(2)
{
    font-size: calc( 36 * calc( 100vw / 1440 ) );
    font-family: 'OS_LightItalic', sans-serif;
    line-height: 1;
}

@media (min-width: 1441px)
{
    .home_articles_ttl > span:nth-child(1)
    {
        margin-right: 20px;
        min-height: 40px;
    }
    .home_articles_ttl > span:nth-child(2)
    {
        font-size: 36px;
    }
}

.home_articles_ttl > span:nth-child(2) > span:nth-child(1)
{
    color: #3695D8;
    font-family: 'OS_LightItalic', sans-serif;
    line-height: inherit;
    font-size: inherit;
}

.home_articles_ttl > span:nth-child(2) > span:nth-child(3)
{
    color: #3695D8;
    font-family: 'OS_Bold', sans-serif;
    line-height: inherit;
    font-size: inherit;
    margin-left: -2px;
}

@media (max-width: 1024px)
{
    .home_articles_sz
    {
        margin-top: 50px;
    }

    .home_articles_ttl > span:nth-child(1)
    {
        margin-right: 16px;
        min-height: 32px;
    }

    .home_articles_ttl > span:nth-child(2)
    {
        display: flex;
        font-size: 30px;
    }
}

@media (max-width: 700px)
{
    .home_articles_ttl > span:nth-child(1)
    {
        margin-right: 16px;
        min-height: 50px;
    }
    .home_articles_ttl > span:nth-child(2)
    {
        display: flex;
        flex-direction: column;
        font-size: 24px;
    }

    .home_articles_ttl > span:nth-child(2) > span:nth-child(2)
    {
        display: none;
    }
}

.home_articles_list
{
    display: block;
    width: 100%;
    margin-top: calc( 36 * calc( 100vw / 1440 ) );
}

.home_articles_navigation
{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: calc( -70 * calc( 100vw / 1440 ) );
}

.home_articles_navigation_prev,
.home_articles_navigation_next
{
    cursor: pointer;
}

.home_articles_navigation_prev
{
    margin-right: 10px;
}

.home_articles_navigation > .home_articles_navigation_next svg path,
.home_articles_navigation > .home_articles_navigation_prev svg path
{
    transition: all 345ms ease;
}

.home_articles_navigation > .home_articles_navigation_next:hover svg path,
.home_articles_navigation > .home_articles_navigation_prev:hover svg path
{
    fill: #3695D8;
}

@media (min-width: 1441px)
{
    .home_articles_list
    {
        margin-top: 36px;
    }

    .home_articles_navigation
    {
        margin-top: -70px;
    }
}



.home_articles_slider
{
    display: block;
    width: 100%;
    margin: calc( 50 * calc( 100vw / 1440 ) ) 0px;
}

@media (min-width: 1441px)
{
    .home_articles_slider
    {
        margin: 50px 0px;
    }
}


.home_articles_slider.flex
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.home_articles_slider_i
{
    display: flex !important;
    width: calc( 100% / 3 );
    justify-content: center;
    text-decoration: none;
    outline: none;
}

.home_articles_slider_i_sz
{
    display: flex;
    flex-direction: column;
    width: calc( 100% - 20px );
    max-width: 390px;
}

.home_articles_slider_i_img
{
    display: block;
    width: 100%;
    aspect-ratio: 390 / 290;
    min-height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.home_articles_slider_i_img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 345ms ease;
}

.home_articles_slider_i:hover .home_articles_slider_i_img img
{
    transform: scale(1.1);
}

.home_articles_slider_i_ttl
{
    display: flex;
    margin-top: 20px;
    align-items: flex-start;
}

.home_articles_slider_i_ttl_icn
{
    display: flex;
    width: 30px;
}

.home_articles_slider_i_ttl_icn img
{
    width: 20px;
    height: auto;
}

.home_articles_slider_i_ttl_txt
{
    display: flex;
    width: calc( 100% - 40px );
    color: #000000;
    font-family: 'OS_Bold', sans-serif;
    font-size: calc( 20 * calc( 100vw / 1440 ) );
    line-height: 1.5;
    transition: all 345ms ease;
    margin-top: -5px;
}

.home_articles_slider_i_ttl:hover .home_articles_slider_i_ttl_txt
{
    color: #3695D8;
}

.home_articles_slider_i:hover .home_articles_slider_i_ttl_txt
{
    color: #3695D8;
}

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

@media (max-width: 1024px)
{
    .home_articles_slider_i_ttl_txt
    {
        font-size: 18px;
    }
}
