/* お知らせページのスタイル */

/* 一覧ページ */
#news .news__newsList {
  margin: 50px auto;
  max-width: 980px;
  padding: 0 20px;
  display: grid;
  grid-row-gap: 20px;
}

#news .news__newsList .news__newsBox {
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}

#news .news__newsList .news__newsBox .tag {
  border-radius: 999px;
  border: 1px solid #00b312;
  padding: 2px;
  color: #00b312;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  width: 110px;
  display: block;
  margin-bottom: 0.75rem; /* 12px */
}

#news .news__newsList .news__newsBox .news__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 24px;
  margin-bottom: 0;
  text-decoration: none;
}

@media (min-width: 768px) {
  #news .news__newsList .news__newsBox .news__content {
    grid-template-columns: 1fr 270px;
  }
}

#news .news__newsList .news__newsBox .news__content:hover {
  color: inherit;
  text-decoration: none;
}

#news .news__newsList .news__newsBox .news__text .news__day {
  margin-bottom: 0.75rem; /* 12px */
  font-size: 0.75rem;
  color: #888;
}

@media (min-width: 768px) {
  #news .news__newsList .news__newsBox .news__text .news__day {
    margin-bottom: 0;
  }
}

#news .news__newsList .news__newsBox .news__text .news__title {
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 0.75rem; /* 12px */
}

#news .news__newsList .news__newsBox .news__content .news__image {
  overflow: hidden;
  border-radius: 10px;
}

#news .news__newsList .news__newsBox .news__content .news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#news .btn-more {
  width: 300px;
  display: inline-block;
  border: solid 2px #151e4a;
  border-radius: 9999px;
  padding: 12px 0;
  font-size: 1rem;
  white-space: nowrap;
  margin-bottom: 3.75rem; /* 60px */
}

#news .btn-more:hover {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  #news .news__newsList .news__newsBox .news__content .news__image img {
    max-height: 135px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 576px) {
  #news .news__newsList {
    max-width: 90%;
    grid-template-columns: 1fr;
  }

  #news .news__newsList img {
    max-width: none;
    width: 100%;
  }
}

/* プロジェクトカード（関連する求人） */
.ProjectCards {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.ProjectCards li {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.ProjectCards li:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ProjectCards li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ProjectCards li img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.ProjectCards li h4 {
  padding: 1rem;
  font-size: 0.9rem;
  margin: 0;
}

/* ページネーション */
.clear-pagination-m {
  margin-top: 3rem;
}

.clear-pagination-m .page-numbers {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.clear-pagination-m .page-numbers li {
  display: inline-block;
}

.clear-pagination-m .page-numbers a,
.clear-pagination-m .page-numbers span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.clear-pagination-m .page-numbers a:hover {
  background-color: #00b312;
  color: #fff;
  border-color: #00b312;
}

.clear-pagination-m .page-numbers .current {
  background-color: #00b312;
  color: #fff;
  border-color: #00b312;
}

/* ユーティリティクラス */
.mt-8 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
}
.font-weight-bold {
  font-weight: bold;
}

@media (min-width: 768px) {
  .mt-md-8 {
    margin-top: 2rem;
  }
  .mt-md-12 {
    margin-top: 3rem;
  }
  .mb-md-5 {
    margin-bottom: 1.25rem;
  }
}
