/* ============================================================
   News モーダル固有スタイル
   assets/styles/news.css
   共通スタイルは modal.css に記述
============================================================ */

/* ---- パネル幅（newsは760px） ---- */
#newsModal .modal-panel {
  width: min(92vw, 760px);
}
#newsModal .modal-loading {
  height: 260px;
}

/* ---- ヘッダー ---- */
.nm-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(200,169,110,0.12);
}
.nm-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.nm-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 300;
}
.nm-category {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  padding: 0.28rem 0.75rem;
  border: 0.5px solid var(--border);
  color: var(--accent);
  font-weight: 400;
}
.nm-category.cat-release { border-color: rgba(200,169,110,0.45); color: var(--accent); }
.nm-category.cat-live    { border-color: rgba(139,180,200,0.4);  color: #7eb8d4; }
.nm-category.cat-info    { border-color: rgba(180,180,180,0.3);  color: #aaa; }
.nm-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ---- 本文 ---- */
.nm-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(240,237,232,0.8);
  letter-spacing: 0.05em;
  white-space: pre-line;
  margin-bottom: 2rem;
}

/* ---- テーブル（イベント詳細） ---- */
.nm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.nm-table tr { border-bottom: 0.5px solid rgba(200,169,110,0.08); }
.nm-table tr:first-child { border-top: 0.5px solid rgba(200,169,110,0.08); }
.nm-table td {
  padding: 0.8rem 0;
  font-size: 0.78rem;
  vertical-align: top;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.nm-table .td-key {
  width: 90px;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  padding-right: 1.5rem;
  white-space: nowrap;
}
.nm-table .td-val {
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  white-space: pre-line;
}

/* ---- セクション（▼見出し＋箇条書き） ---- */
.nm-section { margin-bottom: 1.8rem; }
.nm-section-title {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid rgba(200,169,110,0.12);
}
.nm-section-list { list-style: none; padding: 0; }
.nm-section-list li {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(240,237,232,0.75);
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 0.3rem 0 0.3rem 1em;
  position: relative;
}
.nm-section-list li:not([class*="※"])::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---- リンク ---- */
.nm-link { margin-top: 2rem; }

/* ---- SP対応 ---- */
@media (max-width: 600px) {
  .nm-table .td-key { width: 70px; font-size: 0.58rem; }
}
