.pagehead-blue {
  padding-block: 4.5rem 4.25rem;
}

/* newsページ用 */
.newsArticlesSection {
  margin-bottom: 11.25rem;
  margin-top: 6rem;
}
.newsArticles__head-wrapper {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 10.25rem;
  justify-content: space-between;
}
.voice__categories-wrapper {
  display: grid;
  grid-template-columns: 10rem auto;
}
.voice__categories-wrapper + .voice__categories-wrapper {
  margin-top: 1.5rem;
}
.voice-head__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.js-voiceTab__content {
  margin-top: 5rem;
}
.newsArticle {
  border-top: 1px solid #c8cfd5;
  display: block;
  padding: 1.4688rem 1rem;
}
.js-voice-reset {
  font-size: 0.875rem;
  height: 2.5rem;
  padding-inline: 2rem;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (hover: hover) {
  .js-voice-reset:hover {
    opacity: 0.7;
  }
}
.js-voice-reset:focus-visible {
    opacity: 0.7;
}
.js-fade-in {
  animation: fadeIn 0.5s forwards;
}
.js-hidden {
  display: none;
}
.newsArticle--last {
  border-bottom: 1px solid #c8cfd5;
}
.newsArticles__empty {
  font-size: 1rem;
  padding-block: 1.4688rem;
}
.newsArticles__button-more {
  font-size: 1.125rem;
  font-weight: 500;
  margin-inline: auto;
  margin-top: 5rem;
  transition: all 0.3s;
}
.newsArticle article {
  align-items: center;
  display: flex;
  gap: 0;
  justify-content: flex-start;
}
.newsArticle__time {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}
.newsArticle .voiceCategory {
  background-color: rgb(27 148 211 / 0.1);
  border: none;
  white-space: nowrap;
}
.newsArticle__head {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  position: relative;
}
.newsArticle__head::after {
  background-color: #c8cfd5;
  content: "";
  display: inline-block;
  height: 1.5rem;
  margin-inline: 1.0625rem;
  width: 1px;
}
.newsArticle__title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  transition: color 0.3s;
}
@media (hover:hover) {
  .newsArticle:hover .newsArticle__title {
    color: var(--color-brand-blue);
  }
}
.newsArticle:focus-visible .newsArticle__title {
  color: var(--color-brand-blue);
}

@media screen and (max-width: 1280px) {
  .newsArticles__head-wrapper {
    grid-template-columns: 1fr;
  }
  .voice-head__right {
    flex-direction: column-reverse;
  }
  .js-voice-reset {
    margin-left: auto;
  }
  .voiceCount__wrapper {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .voice__categories-wrapper {
    grid-template-columns: 1fr;
  }
  .voice__categories-wrapper {
    row-gap: 0.5rem;
  }
  .newsArticlesSection {
    margin-bottom: 5rem;
    margin-top: 2.5rem;
  }
  .newsArticle article {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 0.25rem;
  }
  .newsArticle__head::after {
    display: none;
  }
  .js-voiceTab__content {
    margin-top: 2.5rem;
  }
}
