/* .news-list {
  gap: 100px;
} */

/* .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
} */

.news-list .h1,
.news-item .news-item-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.news-item-page-title h1 {
    font-family: "Zen Old Mincho", sans-serif;
    font-size: 1.5em;
}

.news-list .date {
  display: flex;
  width: 405px;
  align-items: center;
  gap: 10px;
  padding: 25px 0px 25px 203px;
  position: relative;
}

.news-list .news {
  width: 589px;
  gap: 10px;
  padding: 25px 0px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.news-list-down {
  display: flex;
  justify-content: flex-start;
  border-color: #777777;
}

.nld-1 {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.nld-2 {
    border-bottom-width: 1px;
  border-bottom-style: solid;
}

.database-info {
  display: block;

}

.news-item .rectangle {
  width: 790px;
  margin: 20px 0 40px 0;
}

.news-item-content {
  width: 790px;
  max-width: 100%;
  padding: 20px 0;
  line-height: 1.8;
}

.news-item-content p {
  margin: 0 0 1.5em;
}

.news-item-content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .news-item-content {
    width: 100%;
    padding: 20px 5%;
  }
}

.news-item .frame-2 {
  display: flex;
  width: 100%;
  gap: 40px;
}

.news-item .frame-3 {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

.news-item .btn-transition {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   Responsive design: 1440px / 1024px / 768px / 432px
   ============================================================ */
@media (max-width: 1024px) {
  .news-list .date {
    width: 285px;
    padding-left: 142px;
  }
  .news-list .news {
    width: 509px;
  }
}

@media (max-width: 768px) {
  .news-list .newslist {
    width: 72%;
    padding-bottom: 120px;
  }

  .news-list .date,
  .news-list .news {
    width: 100%;
  }

  .news-list .date {
    padding: 16px 0 4px;
    justify-content: flex-start;
  }

  .news-list .news {
    padding: 4px 0 16px;
  }

  .news-list-down {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 10%;
  }

  .news-item .rectangle {
    width: 100%;
    height: auto;
    margin: 20px 0;
  }

  .news-item .frame-2 {
    flex-direction: column;
    padding: 0 5%;
    gap: 8px;
  }
}

@media (max-width: 432px) {
    .news-list .newslist {
    width: 90%;
    padding: 40px 0 60px;
  }
}

/* お知らせ一覧のページネーション（追加） */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-bottom: 100px;
  font-family: "Zen Old Mincho", sans-serif;
}

.news-pagination .page-numbers {
  color: var(--color-text-black);
}

.news-pagination .page-numbers.current {
  text-decoration: underline;
}