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

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

.tpl-title1 {
  margin-bottom: 50px;
}

.pubItem {
  padding: 20px 0;
  border-bottom: solid 1px #CCC;
}
.pubItem a {
  display: block;
  color: #2354A2;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.pubItem .txt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
}
.pubItem .txt p {
  margin: 0;
}

.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) {
  #publication-list > .inner {
    margin: 35px auto 60px;
  }

  .pubItem a {
    font-size: 1.8rem;
  }
  .pubItem .txt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 1.4rem;
  }
}