﻿.news-list {
    display: flex;
    flex-wrap: wrap;
}
.news-item {
    width: calc(33.33% - 20px);
    margin: 0 30px 30px 0;
}
.news-item:nth-child(3n){margin-right:0;}
.news-item:last-child {
  margin-right: 0;
}
.news-item a {
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  color: #393939;
  padding: 0 0 20px;
}
.news-item a:hover {
  transform: translateY(-7px);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.1);
box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.news-itm-img {
    margin: 0 0 20px;
    position: relative;
	height: 255px;
	overflow:hidden;
	text-align:center;
}
.news-itm-img img {
 height: 100%;
}
.news-itm-date {
    background: #20409ab5;
    color: #fff;
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 14px;
    padding: 5px 13px 3px;
}
.news-itm-ttl {
    padding: 0 20px;
    font-size: 22px;
    line-height: 1.5em;
    margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
.news-itm-txt {
    margin: 0;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-bnr {
  margin: 40px 0 0;
}
.news-bnr a {
  display: block;
  transition: all 0.3s;
}
.news-bnr img {
  width: 100%;
}
.news-bnr a:hover, .b05-bnr a:hover {
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
-moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.1);
box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width:768px) {
    .news-list {justify-content: space-between;}
    .news-item {width: calc(50% - 10px);margin-right: 0;}
    .news-itm-des {padding: 10px;}
}

@media screen and (max-width:480px) {
    .news-item {
        width: 100%;
    }
}
