<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;
}
.news_item {
  width: calc(100%/4  - 30px);
 margin: 0 40px 45px 0;
}
.news_item:nth-child(4n){
  margin-right: 0;
}
.news_itm_img {
  margin: 0;
  overflow: hidden;
  
}
.news_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.news_item a {
  display: block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
  border-radius: 10px;
  overflow:hidden;
}
.news_item a:hover .news_itm_img img {
  transform: scale(1.1, 1.1);
}
.news_itm_main{padding: 20px 10px;
    background: #fbfbfb;
   }
.news_itm_date {
  font-size: 16px;
  color: #f2b517;
  margin-bottom: 10px;
}
.news_itm_date:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/news_date.png") no-repeat center center/100% auto;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  top: 2px;
}
.news_itm_ttl {
    color: #25aae2;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-size: 16px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_itm_txt {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news_itm_txt span {
  color: #104cba;
}
.news_item a:hover {
  opacity: 0.7;
}

@media screen and (max-width:768px) {
    .news_itm_info span {
        font-size: 12px;
    }
}

@media screen and (max-width:480px) {
    .news_item a {
        display: block;
    }

    .news_list {
        display: block;
    }

    .news_item {
        width: 100%;
        padding: 0 0 20px;
        margin: 0 0 25px;
    }
.news_item a {
    display: flex;
    
}
	.news_itm_img {
    flex-shrink: 0;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;margin-bottom: 0;
}
.news_itm_img img {
    height: 100%;
    object-fit: cover;
}
.news_itm_main {
    padding: 10px;
    width: 100%;
}
.news_itm_ttl{font-size:16px;margin-bottom: 10px;}
.news_itm_txt{-webkit-line-clamp: 3;font-size:14px;}
	
}
</pre></body></html>