#news header {
  background-image: url('../img/news/header.jpg');
}
#news img {
  max-width: 100%;
  vertical-align: bottom;
}
#news dl {
    max-width: 600px;
  margin: 0 auto 84px;
    
}
#news ul{
  display: flex;
  margin:10px 0 0;
}
#news li{
  margin-left: 10px;
}
#news li:first-child{
  margin-left: 0px;
}

#news dl.animate{
    transition: 0.5s 0.2s;
    transform:translate(10%,0);
}
#news dl.animated{
    transform:translate(0%,0);
}
#news dt.date {
  text-align: center;
  color: #0055A0;
  font-size: 16px;
  letter-spacing: 1px;
  border-bottom: 4px solid #334466;
  margin: 0 auto 26px;
  width: 100px;
  line-height: 48px;
    position:relative;
}
#news dt.date:before {
    content:"";
    width: 50%;
    position:absolute;
    left:  50%;
    bottom: -4px;
    height: 4px;
    background: #FFFA00;
}
#news dd.title{
    font-size: 20px; font-weight:bold;
    line-height: 30px;
    margin-bottom: 20px;
}
#news dd.detail{
    font-size: 18px;
    border-top: 1px dashed #334466;
     border-bottom: 1px solid #334466;    
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 27px;
}

@media only screen and (max-width: 768px) {
#news dl{
    padding-left: 20px;
    padding-right: 20px;
    }
}