body {
  font-family: "Noto Sans JP";
}
.content-section {
  width: 83.3%;
}
.content-section__header {
  gap: 14px;
}
.content-section__title {
  font-size: 56px;
  line-height: 1.14;
}
.news__inner__wrap {
  background: #fff;
}
.news__inner {
  display: flex;
  gap: 88px;
  width: 88.9vw;
  margin: 0 auto;
  padding: 72px 0 60px;
  align-items: flex-start;
}

.news__description {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 2.1;
  font-family: "Noto Sans JP";
  margin-top: 34px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .content-section {
    width: 90%;
  }
  .news__inner {
    gap: 15px;
    width: 95%;
  }
}
@media (max-width: 425px) {
  .content-section__label-wrapper {
    gap: 10px;
  }
  .content-section__header {
    gap: 11px;
  }
  .content-section__label {
    font-size: 14px;
  }
  .content-section__title {
    font-size: 32px;
  }
  .news__description {
    margin-top: 6px;
    font-size: 14px;
    line-height: 2;
  }
  .news__inner {
    display: block;
    width: 87.2%;
    padding: 32px 0 57px;
  }
  .content-section {
    width: 85.5%;
  }
}
/* ================
    サイドバー 
===================*/
.news__sidebar {
  border-radius: 16px;
  padding: 22px 0 16px 24px;
  width: 198px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
}
.news__sidebar-title {
  font-size: 12px;
  line-height: 1;
  display: flex;
  gap: 8px;
  color: #303030;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.news__sidebar-title img {
  width: 12px;
}

.tag {
  /* margin-bottom: 8px; */
  /* display: block; */
}
.tag__link {
  display: block;
  width: fit-content; /* 横幅をテキスト＋padding分に制御 */
  margin-bottom: 8px;
  /* padding: 4px 8px; */
}

.tag-list {
  gap: 0;
}

@media (max-width: 768px) {
  .news__sidebar {
    padding: 24px 0 22px;
  }
}
@media (max-width: 425px) {
  .news__sidebar {
    width: auto;
    height: auto;
    position: static;
  }
  .tag-list__group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
}
/* ================
    記事
===================*/
.news__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 76%;
}
.news__item {
  padding: 0 0 22.5px 16px;
  border-bottom: 1px solid #f2f2f2;
  display: block;
  width: auto;
}
.news__link:hover {
  opacity: 60%;
}
.news__meta {
  margin-bottom: 9px;
}
.news__date {
  font-size: 13px;
  color: #101010;
  font-family: "Noto Sans JP";
  font-weight: 300;
  margin-right: 11px;
}
.news__tag {
  font-size: 12px;
  color: #555555;
  line-height: 1;
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Noto Sans JP";
}
.news__article-title {
  color: #101010;
  font-family: "Noto Sans JP";
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 2.1;
}
@media (max-width: 768px) {
  .news__item {
    width: auto;
  }
}
@media (max-width: 425px) {
  .news__list {
    margin-top: 32px;
    width: 100%;
    gap: 16px;
  }
  .news__item {
    padding: 0 8px 15px 8px;
  }
  .news__meta {
    margin-bottom: 8px;
  }
  .news__article-title {
    line-height: 2;
  }
}
/* ==================
    ページネーション
====================*/

.page-numbers.is-current {
  pointer-events: none;
  cursor: default;
}

/* =====================
    コンテンツがない時の画面
========================*/
.no-content {
  width: 66.4vw;
  height: -webkit-fill-available;
  background-color: #e8f3ea;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.no-content__lead {
  font-size: 16px;
  font-weight: 700;
  color: #303030;
  line-height: 1.3;
}
@media (max-width: 425px) {
  .no-content {
    width: 100%;
    height: 120px;
    margin-top: 30px;
  }
}
