/* ============================================
   /news/ アーカイブ専用スタイル
   ============================================ */
.news-archive-page {
  background: #fff;
  min-height: 100vh;
}

/* ヒーロー */
.news-arc-hero {
  position: relative;
  background: linear-gradient(135deg, #fff0f5 0%, #ffd6e5 55%, #ffe8f2 100%);
  padding: 80px 24px 60px;
  overflow: hidden;
  text-align: center;
}
.news-arc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.news-arc-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  color: #1e2240;
  margin: 8px 0 14px;
  line-height: 1.3;
}
.news-arc-lead {
  font-size: 14px;
  color: rgba(30,34,64,0.58);
  line-height: 1.9;
}
.news-arc-hero-deco {
  position: absolute;
  right: -10px; bottom: -18px;
  font-size: clamp(72px, 13vw, 150px);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: rgba(240,62,122,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ボディ */
.news-arc-body { padding: 56px 0 80px; }

/* リスト */
.news-arc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pink-light);
  margin-bottom: 40px;
}

/* アイテム */
.narc-item {
  display: grid;
  grid-template-columns: 96px 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--pink-light);
  text-decoration: none;
  color: var(--navy);
  border-radius: 6px;
  transition: background 0.2s, padding-left 0.2s;
  animation: fadeUp 0.6s ease both;
}
.narc-item:hover {
  background: var(--pink-pale);
  padding-left: 14px;
}

/* サムネ */
.narc-thumb {
  width: 96px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--pink-pale);
}
.narc-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.narc-thumb-noimg { width:100%; height:100%; overflow:hidden; }


/* テキスト */
.narc-body { min-width: 0; }
.narc-meta { margin-bottom: 6px; }
.narc-date {
  font-size: 12px;
  color: rgba(30,34,64,0.42);
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.06em;
}
.narc-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--navy);
  white-space: normal;
  word-break: break-all;
  overflow-wrap: anywhere;
  margin-bottom: 6px;
}
.narc-exc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 矢印 */
.narc-arrow {
  font-size: 20px;
  color: var(--pink-main);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
  justify-self: center;
}
.narc-item:hover .narc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* SP */
@media (max-width: 560px) {
  .narc-item {
    grid-template-columns: 72px 1fr 24px;
    gap: 12px;
    padding: 16px 4px;
  }
  .narc-thumb { width: 72px; height: 52px; }
  .narc-title { font-size: 14px; }
  .narc-exc   { display: none; }
  .narc-arrow { opacity: 1; transform: none; }
}

/* ページネーション */
.news-arc-pager { text-align: center; margin-bottom: 40px; }
.news-arc-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  margin: 0 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(240,62,122,0.2);
  transition: background 0.2s, color 0.2s;
}
.news-arc-pager .page-numbers.current,
.news-arc-pager .page-numbers:hover {
  background: var(--pink-main);
  color: #fff;
  border-color: var(--pink-main);
}

/* 戻るリンク */
.news-arc-back-wrap { text-align: center; }
.news-arc-back {
  font-size: 13px;
  color: rgba(30,34,64,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.news-arc-back:hover { color: var(--pink-main); }

/* empty */
.narc-empty {
  padding: 48px 0;
  text-align: center;
  color: rgba(30,34,64,0.4);
  font-size: 14px;
}
