﻿.news_list {
	display: flex;
    flex-wrap:wrap;
	margin-bottom: 40px;
}
.news_item {
    padding-bottom: 0;
    transition: all 0.3s;
    width: calc(100%/3 - 20px);
    margin-right: 30px;
    margin-bottom: 60px;
    position: relative;
}
.news_item:nth-child(3n){margin-right:0;}
.news_item:hover {
	opacity: 0.7;
}
.news_itm_img {
    margin: 0;
}
.news_itm_img img {
	width: 100%;
}
.news_itm_main {
    background: #fff;
    margin: -30px 20px 0 0;
    position: relative;
    padding: 30px 40px;
	-webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow:    0px 0px 16px 0px rgba(0, 0, 0, 0.1);
box-shadow:         0px 0px 16px 0px rgba(0, 0, 0, 0.1);
	color: #666;
}
.news_itm_ttl {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 8px;
}
.news_itm_txt {
    margin: 0;
    line-height: 1.3em;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.news_item a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

/*.news-date {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #ff9d57;
    color: #fff;
    width: 150px;
    text-align: center;
    font-size: 16px;
    padding: 3px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all 0.5s ease;
}*/

@media screen and (max-width:768px) {
    .news_item {
        width: calc(33% - 20px);
        margin: 0 33px 20px 0;
    }

    .news_itm_main{padding:10px;}

    .news_itm_date{font-size:10.5px;}

    .news_itm_ttl{font-size:16px;}

    .news_itm_txt{font-size:12px;}
}

@media screen and (max-width:480px) {    
    .news-list {
        display: block;
    }
    .news_item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 45px;
    }   
}
