@charset "utf-8";

#newslist {width:96%;padding:1% 1.5% 3% ;
}
#feed {
    width:100%;
    margin:0 auto ;
    height: 200px; 
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 1%;
    max-width:96%;
}
#feed ul.entry li {max-width:100%;
    padding: 1%;border-bottom: 1px solid #ccc;line-height: 1.5;
    margin: 0;
    text-align: left;
}
#feed ul.entry li .entry-date {
    font-size: 1.1;font-weight: 700;padding-right: 1%;
}
#feed ul.entry li a{
}

.newsmore {margin: auto;text-align: center;
}


.button-more {font-size: 0.9rem;
  display: inline-block;
  width: 88%;
  padding: 3px 30px 3px 20px;
  text-align: center;
  color: #fc7e96;border:1px solid #ccc;
  margin: 1rem 0;
 /*background: #f5f5f5f5;*/
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.button-more::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #999;
  border-bottom: 1px solid #999;
  transform: skew(45deg);
  transition: .3s;
}
.button-more:hover {
  background: #ffffcc;
}
.button-more:hover::after {
  right: 10px;
  width: 30px;
  border-right: 2px solid #ff3333;
  border-bottom: 1px solid #ff3333;
}

@media screen and (max-width:992px) {

#feed {width: 100%;}
#feed ul.entry li {font-size: 0.88rem;}
#feed ul.entry li .entry-date {display: block;}

} /*end*/


