/* ======================================================
   KENNDO — page-news.css
   ====================================================== */

/* note誘導パネル。ページ内の要素がこれ1枚なので、
   左寄せの本文だと広い余白に対して据わりが悪い。中央寄せのカードで受ける。 */
.notepanel {
  max-width: 760px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 56px 48px 48px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.notepanel:hover { box-shadow: var(--shadow-md); }

.notepanel .eyebrow { margin-bottom: 14px; }
.notepanel h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800; color: var(--navy);
  line-height: 1.5; margin-bottom: 24px;
}
.notepanel p {
  font-size: 15px; color: #48535f; line-height: 2;
  max-width: 600px; margin: 0 auto 16px;
}
.notepanel .btn { margin-top: 16px; }
.notepanel-sub {
  font-size: 12px !important; color: var(--muted) !important;
  margin: 14px auto 0 !important;
}

@media (max-width: 768px) {
  .notepanel { padding: 40px 24px 36px; }
}
