/* =========================
   NEWS 一覧
========================= */
.news-page {
  padding-top: 60px;
  padding-bottom: 80px;
}

.news-header {
  margin-bottom: 30px;
}

.news-title {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
}

.news-date {
  width: 110px;
  flex-shrink: 0;
}

.news-date-main {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
}

.news-date-year {
  display: block;
  margin-top: 4px;
  font-size: 1.3rem;
  color: #666;
}

.news-body {
  flex: 1;
  min-width: 0;
}

.news-item-title {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.5;
  color: #111;
  text-decoration: none;
}

.news-item-title:hover {
  text-decoration: underline;
}

.no-news {
  padding: 30px 0;
  font-size: 1.6rem;
  color: #666;
}

.news-pagination {
  margin-top: 30px;
  text-align: center;
}

.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  background: #fff;
}

.news-pagination .current {
  background: #333;
  color: #fff;
  border-color: #333;
}


/* =========================
   NEWS 詳細
========================= */
.news-detail {
  padding-top: 60px;
  padding-bottom: 80px;
}

.news-meta-top {
  margin-bottom: 20px;
}

.news-date-full {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.7;
}

.news-detail-title {
  margin: 0 0 30px;
  font-size: 3.6rem;
  line-height: 1.4;
}

.news-thumb {
  margin-bottom: 30px;
}

.news-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.news-content {
  font-size: 1.6rem;
  line-height: 2;
}

.news-content p {
  margin: 0 0 1.5em;
}

.news-content img {
  max-width: 100%;
  height: auto;
}

.news-back {
  margin-top: 50px;
	text-align:right;
}

.news-back-link {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition: .3s;
}

.news-back-link:hover {
  background: #f5f5f5;
}


/* =========================
   レスポンシブ
========================= */
@media screen and (max-width: 767px) {
  .news-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .news-title {
    font-size: 2.8rem;
  }

  .news-item {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }

  .news-date {
    width: auto;
  }

  .news-date-main {
    display: inline;
    font-size: 2rem;
  }

  .news-date-year {
    display: inline;
    margin-left: 6px;
    font-size: 1.2rem;
  }

  .news-item-title {
    font-size: 1.7rem;
  }

  .news-detail {
    padding-bottom: 60px;
  }

  .news-detail-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }

  .news-date-full {
    font-size: 1.4rem;
  }

  .news-content {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}