/* CSS Document */

@media screen and (max-width: 667px) {
 #news article .newsContents ul {
  display: block;
 }
 #news article .newsContents ul li {
  width: 100%;
 }
 #news article section ul {
  display: block;
 }
 #news article section ul li {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
 }
 #news article section ul li:last-child {
  border-bottom: 0;
 }
 #news article section ul li:before,
 #news article section ul li:after {
  display: table;
  content: "";
 }
 #news article section ul li:after {
  clear: both;
 }
 #news article section ul li a img {
  width: 100px;
  float: left;
 }
 #news article section ul li dl {
  width: calc(100% - 110px);
  float: right;
 }
}
