.news {
  margin-top: 64px;
}

/* news */
.c-newsList {
  margin-top: 64px;
}

.news-pagination {
  display: flex;
  flex-flow: row;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
}

.news-pagination_btn {
  display: inline-block;
  width: 232px;
  padding: 19px 0 16px;
  font-family: 'San Francisco', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.news-pagination_btn.prev {
  color: #3F4044;
  background-color: #fff;
  background-image: url('/img/icon-btn-arrow-left-invert.svg');
  background-repeat: no-repeat;
  background-position: left 20px center;
  border: 1px solid #C6C6C6;

  &:hover {
    background-color: #EDEDED;
  }
  
}

.news-pagination_btn.next {
  color: #fff;
  background-color: #1371C3;
  background-image: url('/img/icon-btn-arrow-right.svg');
  background-repeat: no-repeat;
  background-position: right 20px center;

  &:hover {
    background-color: #054B8B;
  }
}
.news-pagination_btn.is-hide {
  display: none;
}

/* ----- 見出し1 ----- */
.p-news_heading1 {
  display: flex;
  flex-flow: column;
  padding: 49px 80px 44px;
  margin: 0 calc(-1*(100vw - 1080px) / 2) 80px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  background: #283E59;

  @media (width <= 1120px) {
    margin: 0 -20px 80px;
  }
}
.p-news_heading1_mainTxt {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-news_heading1_subTxt {
  margin-top: 22px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
