<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.news_item {
    width: calc(100%/3 - 20px);
    margin: 0 26px 20px 0;
    background: #fff;
    position: relative;
}

.news_item:nth-child(3n){
    margin-right:0;
}

.news_itm_img {
  margin: 0;
  overflow: hidden;
}
.news_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.news_item:hover .news_itm_img img {
  transform: scale(1.1);
  
}
.news_item:hover{
    color:#00095b;
}
.news_itm_main {
  padding: 15px 0;
}
.news_itm_date {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 14px;
    border-radius: 5px;
    margin: 0 0 6px;
    color: #777;
}
.news_itm_date:before {
    content: '';
    position: relative;
    display: inline-block;
    background: url(/img/ico-date-gray.png) no-repeat center center/100% auto;
    width: 17px;
    height: 15px;
    margin-right: 5px;
    top: 4px;
}
.news_itm_ttl {
    font-size: 22px;
    line-height: 1.3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    color:var(--m-color);
    transition:all 0.3s;
}
.news_itm_txt {
  color: #666666;
  line-height: 1.5em;
  margin: 0 0 5px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}
.news_itm_more {
  margin: 0;
  font-size: 14px;
}
.news_itm_more a {
  text-decoration: none;
  color: #1a95ab;
  display: inline-block;
}
.news_itm_more:after {
  content: '';
  position: relative;
  display: inline-block;
  background: url("/W_images/b04_arr.png") no-repeat center center/100% auto;
  width: 10px;
  height: 7px;
  margin-left: 7px;
  top: -1px;
}
.news_item &gt; a {
  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%;

    }   
}
</pre></body></html>