@charset "UTF-8";
.page-head {
  background-image: url("../assets/images/news/news-head.jpg");
}

.news-list {
  margin: 0 auto 40px;
  width: 100%;
  max-width: 960px;
}

.news-item {
  border-top: solid 1px #D5D5D5;
}
.news-item:last-child {
  border-bottom: solid 1px #D5D5D5;
}
.news-item a {
  font-size: 14px;
  line-height: 1.6;
  padding: 36px 40px 36px 20px;
  color: #666666;
  display: flex;
  align-items: flex-start;
  position: relative;
  transition: 0.3s;
}
.news-item a .date {
  display: block;
  margin-right: 90px;
}
.news-item a::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../assets/images/top/icon-arrow.png");
  background-size: cover;
  position: absolute;
  right: 8px;
  top: 31px;
}
.news-item a:hover {
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.page-numbers {
  display: block;
  width: 40px;
  line-height: 38px;
  border: solid 1px #9B9FA5;
  border-radius: 20px;
  font-size: 18px;
  font-family: "游明朝", "ヒラギノ明朝", serif;
  color: #666666;
  box-sizing: border-box;
  text-align: center;
  margin-right: 10px;
  transition: 0.3s;
}
.page-numbers:hover {
  opacity: 0.7;
}
.page-numbers.current {
  border: none;
  background-color: #3B1D06;
  line-height: 40px;
  color: #fff;
  pointer-events: none;
}
.page-numbers.next {
  height: 40px;
  position: relative;
  margin-left: 10px;
}
.page-numbers.next::before {
  content: "";
  background-image: url("../assets/images/top/icon-arrow.png");
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 4px;
  left: 4px;
}
.page-numbers.prev {
  height: 40px;
  position: relative;
  margin-right: 10px;
}
.page-numbers.prev::before {
  content: "";
  background-image: url("../assets/images/top/icon-arrow.png");
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 4px;
  left: 4px;
  transform: rotate(180deg);
}

@media screen and (max-width:767px) {
  .page-head {
    background-image: url("../assets/images/news/news-head-sp.jpg");
  }
  .news-item a {
    padding: 24px 40px 24px 10px;
    display: block;
  }
  .news-item a .date {
    display: block;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .news-item a::before {
    top: 50%;
    transform: translateY(-50%);
  }
}