.tpl-contents-header {
  background-image: url(../images/common/bg_contents_header4.png);
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

#news-list > .inner {
  max-width: 960px;
  margin: 35px auto 120px;
  padding: 0 15px;
}

.newsItem {
  display: flex;
  padding: 20px 0;
  border-bottom: solid 1px #CCC;
}
.newsItem time {
  display: flex;
  align-items: center;
  position: relative;
  display: inline-block;
  width: 9em;
  height: 26px;
  margin-right: 5em;
  color: #36414B;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.newsItem time.new:after {
  position: absolute;
  content: "NEW";
  width: 58px;
  height: 26px;
  line-height: 26px;
  right: -5em;
  top: 0;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background: #000;
}
.newsItem .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 26px;
  line-height: 1;
  margin-right: 20px;
  color: #999999;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background: #CCC;
}
.newsItem .tag.news-release {
  background-color: #F2F2F2;
  color: #6A6A6A;
}
.newsItem .tag.press-release {
  background-color: #D8EFEE;
  color: #6A6A6A;
}
.newsItem a {
  flex: 1;
  color: #2354A2;
  font-size: 1.6rem;
  font-weight: bold;
}

.pagenation {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}
.pagenation ul {
  display: flex;
  position: relative;
  margin: 0;
  padding: 0 60px;
  list-style: none;
}
.pagenation a, .pagenation span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  margin: 0 2px;
  border: 1px solid #CCC;
  border-radius: 4px;
  background: #fff;
  font-size: 1rem;
  font-weight: bold;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.pagenation a {
  color: #2354A2;
}
.pagenation a:hover {
  background: #CCC;
  text-decoration: none;
}
.pagenation span {
  border-color: #2354A2;
  background-color: #2354A2;
  color: #fff;
}
.pagenation .prev {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
.pagenation .prev::before {
  position: absolute;
  content: "";
  left: 14px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2354a2;
  border-right: 2px solid #2354a2;
  transform: rotate(225deg);
}
.pagenation .next {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}
.pagenation .next::before {
  position: absolute;
  content: "";
  right: 14px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #2354a2;
  border-right: 2px solid #2354a2;
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  #news-list > .inner {
    margin: 35px auto 60px;
  }

  .newsItem {
    display: block;
  }
  .newsItem a {
    display: block;
    margin-top: 20px;
  }
}