.news-list {
  box-sizing: border-box;
}

.news-item:first-child {
  border-top: 1px solid #ccc;
}

.news-item {
	border-bottom: 1px solid #ccc;
	padding: 0 .5em;
}

.news-link__wrapper {
  display: block;
  color: #222;
  text-decoration: none;
}

.news-link__wrapper:hover {
  color: #222 !important;
  text-decoration: none !important;
}

.news-link {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 1em 0;
  transition: all .3s ease;
}

@media only screen and (min-width: 768px), print {
  .news-link {
    flex-flow: row;
    align-items: center;
    margin: 0;
    padding: 2em 0;
  }
}

.news-link:hover {
  opacity: .6;
  cursor: pointer;
}
  
.news-link__date-wrapper {
  display: flex;
  align-items: center;
  width: auto;
}

@media only screen and (min-width: 768px), print {
  .news-item__date-wrapper {
    width: 100%;
  }
}
  
.news-link__date {
  display: block;
  font-size: 1.4rem;
  color: #888;
  line-height: 1;
  width: 80px;
  text-align: left;
}
  
.news-link__contents-type {
  display: inline-block;
  margin-left: 1em;
  width: 100px;
  text-align: center;
  padding: .5em 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #222;
  background: #fff;
  border: 1px solid #222;
}

.news-link__contents-type--news {
  color: #fff;
  background: #3895df;
  border: none;
}

.news-link__contents-type--important_news {
  color: #fff;
  background: #e53935;
  border: none;
}
  
.news-link__contents-type--press_release {
  color: #fff;
  background: #0d47a1;
  border: none;
}

.news-link__contents-type--campaign {
  color: #fff;
  background: #ff9800;
  border: none;
}

.news-link__contents-type--maintenance {
  color: #fff;
  background: #9e9e9e;
  border: none;
}

.news-link__contents-type--fault_information {
  color: #fff;
  background: #f44336;
  border: none;
}
  
.news-link__subject {
  font-size: 1.4rem;
  margin: 1em 0 0 0;
  line-height: 1.7;
  text-align: left;
}

@media only screen and (min-width: 768px), print {
  .news-link__subject {
    margin: 0 0 0 1em;
  }
}

.news-paging-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-paging-item {
  margin-left: 1rem;
  list-style: none;
}

.news-paging-item:first-child {
  margin-left: 0;
}

.news-paging-item__link {
  display: block;
  color: #fff;
  background: #9ba5c2;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1em;
  line-height: 1;
  transition: all .3s ease;
}

.news-paging-item__link:hover {
  text-decoration: none;
  opacity: .6;
}

.news-paging-item__link.is-active {
  background: #3151a2;
}

.news-paging-item__link.is-active:hover {
  opacity: 1;
}