/* ===== news.css : news.html 固有スタイル（共通は sub.css）===== */
.nlist {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
}
.nrow {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px 6px;
  border-bottom: 1px solid var(--line);
}
.nrow:first-child {
  border-top: 1px solid var(--line);
}
.nmeta {
  display: contents;
}
.ndate {
  font-family: var(--serif-en);
  letter-spacing: 0.08em;
  color: var(--taupe);
  font-size: 14px;
}
.ncat {
  justify-self: start;
  font-family: var(--sans-jp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-dk);
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}
.ntitle {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
  transition: 0.25s;
}
.ntitle:hover {
  color: var(--green-dk);
}
@media (max-width: 600px) {
  .nrow {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 8px 14px;
    padding: 20px 4px;
  }
  .ntitle {
    grid-column: 1 / -1;
  }
}

/* ===== news single（記事詳細）===== */
.nsingle {
  max-width: 720px;
  margin: 0 auto;
}
.nmeta-s {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.nbody p {
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--ink-soft);
  margin-bottom: 1.4em;
}
.nbody p:last-child {
  margin-bottom: 0;
}
/* WPエディタで挿入した画像は本文幅いっぱい（width:100%） */
.nbody img {
  width: 100%;
  height: auto;
  display: block;
  margin: 1.4em auto;
  border-radius: 4px;
}
.nbody figure {
  margin: 1.4em 0;
}
.nbody figure img {
  margin: 0 auto;
}
.nbody figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 8px;
}
.nback {
  display: inline-block;
  margin-top: 48px;
  color: var(--green-dk);
  border: 1px solid var(--green);
  border-radius: 24px;
  padding: 12px 30px;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: 0.3s;
}
.nback:hover {
  background: var(--green);
  color: #fff;
}

/* newsヒーロー写真を表示（news.png）＋veilは治療ページと同じ薄さ */
.page-hero .hero-art .ph {
  display: block;
}
.page-hero .hero-veil {
  background: linear-gradient(
    180deg,
    rgba(245, 240, 230, 0.34) 0%,
    rgba(245, 240, 230, 0.22) 42%,
    rgba(238, 231, 213, 0.6) 100%
  );
}

/* SP: 15.5px → 14px */
@media (max-width: 768px) {
  .ntitle {
    font-size: 14px;
  }
  .nbody p {
    font-size: 14px;
  }
}

/* お知らせ ページ送り（the_posts_pagination） */
.pagination {
  margin-top: 44px;
  text-align: center;
}
.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  font-family: var(--sans-jp);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: 0.2s;
}
.pagination a.page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.pagination .page-numbers.dots {
  border: none;
  min-width: 0;
}
