.news {
  margin-top: 48px;
}

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

.news-pagination_btn {
  display: inline-block;
  width: 173px;
  padding: 16px 0 13px;
  font-family: 'San Francisco', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  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: 41px 10px 38px;
  margin: 0 -10px 48px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  background: #283E59;
}
.p-news_heading1_mainTxt {
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-news_heading1_subTxt {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.05em;
}
