/* ---------------------------------------------------------- */
/* news */
/* ---------------------------------------------------------- */

#zone-cont{
	margin: 70px auto 0 auto;
	padding: 0 0 50px 0;
}

#news-cont{
	width: 100%;
	display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0;
}

.news-card{
    display: inline-flex;
    width: 100%;
    padding: 0 20px 40px 20px;
    gap: 40px;
    border-bottom: solid 2px #ffffff;
}

.news-card:last-child{
    border-bottom: none;
}

.news-card .news-thumb{
	width: 50%;
}

.news-card .news-thumb img{
	width: 100%;
	height: auto;
}

.news-card .news-data{
    width: 50%;
}

.news-data .news-ttl{
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-weight: 400;
}

.news-data .news-cat{
    font-size: 1.8rem;
    padding: 8px 0 8px 0;
}

.news-data .news-date{
    font-size: 1.1rem;
    padding: 20px 0 4px 0;
    color: #ffffff;
}

.news-data .news-desc{
    font-size: 1.4rem;
    color: #606060;
}



/* ////////////////////////////////////////////////////////// */
/* Tablet */
/* ////////////////////////////////////////////////////////// */

@media only screen and (max-width:1024px) {
    
    #zone-cont{
        margin: 50px auto 0 auto;
        padding: 0 0 20px 0;
    }

    .news-data .news-ttl{
        font-size: 2.4rem;
        line-height: 2.6rem;
        font-weight: 400;
    }

}


/* ////////////////////////////////////////////////////////// */
/* Smart Phone */
/* ////////////////////////////////////////////////////////// */

@media only screen and (max-width:599px) {
    
    #zone-cont{
        margin: 20px auto 0 auto;
        padding: 0 0 30px 0;
    }

    #news-cont{
        gap: 30px 0px;
    }

    .news-card{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 0 30px 0;
        gap: 15px 0px;
        border-bottom: solid 2px #ffffff;
    }

    .news-card .news-thumb{
        width: 100%;
    }

    .news-card .news-data{
        width: 100%;
    }

    .news-data .news-ttl{
        font-size: 2.0rem;
        line-height: 2.2rem;
    }
    
    .news-data .news-cat{
        font-size: 1.4rem;
        padding: 4px 0 4px 0;
    }

    .news-data .news-date{
        font-size: 1.0rem;
        padding: 10px 0 0px 0;
        color: #ffffff;
    }

    .news-data .news-desc{
        font-size: 1.4rem;
        color: #606060;
    }    

}