/* =========================
   お知らせ一覧・詳細
========================= */
.news-hero.pageTitleImg {
  width: 100%;
  height: 280px;
  background-image: linear-gradient(135deg, rgba(19, 54, 102, 0.82), rgba(30, 84, 159, 0.72)), url("../public/section-bg-img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.news-hero .pageTitleWraper {
  width: 100%;
  padding: 36px 0 40px;
  background: transparent;
  text-align: center;
}

.news-hero .pageTitle {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  color: #fff;
}

.news-hero .caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
}

.news-page {
  width: min(920px, 88%);
  margin: 64px auto 120px;
}

.news-archive-list {
  border-top: 1px solid rgba(30, 84, 159, 0.15);
}

.news-archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(30, 84, 159, 0.12);
  color: var(--text3, #133666);
  text-decoration: none;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.news-archive-item:hover {
  background-color: rgba(30, 84, 159, 0.04);
  padding-left: 16px;
  opacity: 1;
}

.news-archive-item-main {
  display: flex;
  align-items: baseline;
  gap: 28px;
  min-width: 0;
  flex: 1;
}

.news-archive-date {
  color: #8a94a6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  min-width: 96px;
  flex-shrink: 0;
}

.news-archive-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text3, #133666);
}

.news-archive-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(30, 84, 159, 0.08);
  color: var(--pointcolor);
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-archive-item:hover .news-archive-arrow {
  transform: translateX(3px);
  background: var(--pointcolor);
  color: #fff;
}

.news-empty {
  text-align: center;
  padding: 64px 0;
  color: #8a94a6;
  font-size: 15px;
}

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

.news-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pointcolor);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.news-pagination .page-numbers:hover {
  background-color: rgba(30, 84, 159, 0.08);
}

.news-pagination .page-numbers.current {
  background-color: var(--pointcolor);
  color: #fff;
}

/* ===== 詳細 ===== */
.news-single-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(30, 84, 159, 0.12);
}

.news-single-date {
  display: inline-block;
  color: #8a94a6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.news-single-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text3, #133666);
  letter-spacing: 0.02em;
  margin: 0;
}

.news-single-thumbnail {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 4px;
}

.news-single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 64px;
}

.news-single-body p {
  margin-bottom: 1.4em;
}

.news-single-body h2,
.news-single-body h3 {
  margin: 2em 0 0.8em;
  color: var(--text3, #133666);
  line-height: 1.5;
}

.news-single-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.news-single-body a {
  color: var(--pointcolor);
  text-decoration: underline;
}

.news-single-nav {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(30, 84, 159, 0.12);
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(30, 84, 159, 0.35);
  border-radius: 4px;
  color: var(--pointcolor);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.news-back-link:hover {
  background-color: var(--pointcolor);
  border-color: var(--pointcolor);
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

@media screen and (max-width: 767px) {
  .news-hero.pageTitleImg {
    height: 200px;
  }

  .news-hero .pageTitle {
    font-size: 24px;
  }

  .news-page {
    width: 90%;
    margin: 40px auto 80px;
  }

  .news-archive-item {
    padding: 18px 4px;
    gap: 12px;
  }

  .news-archive-item-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-archive-title {
    font-size: 15px;
  }

  .news-single-title {
    font-size: 22px;
  }

  .news-single-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .news-back-link {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
