#top .headText {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  #top .headText {
    text-align: left;
    margin-bottom: 15px;
  }
}
#top .newsItem {
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  #top .newsItem {
    flex-direction: column;
    padding: 10px;
  }
}
#top .newsItem .day {
  width: 130px;
}
@media screen and (max-width: 480px) {
  #top .newsItem .day {
    width: 100%;
  }
}
#top .newsItem .Title {
  width: calc(100% - 160px);
}
@media screen and (max-width: 480px) {
  #top .newsItem .Title {
    width: 100%;
  }
}
#top .newsItem:first-of-type {
  border-top: 1px solid #ccc;
}