/* =========================================================
   News（お知らせ）詳細テンプレート 共通スタイル
   service.css を前提に追加（軽量・短文向け）
   ========================================================= */
.news { padding: 40px 0 0; }
.news__wrap { width: 680px; max-width: 90%; margin: 0 auto; }

.news-bc { font-size: 12.5px; color: var(--ink-faint); margin: 0 0 22px; }
.news-bc a { color: var(--ink-soft); text-decoration: none; }
.news-bc a:hover { color: var(--accent-to); }
.news-bc span { margin: 0 7px; opacity: .6; }

.news-meta { display: flex; align-items: center; gap: 14px; margin: 0 0 14px; }
.news-cat { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: #fff;
  background: var(--accent); border-radius: 999px; padding: 6px 14px; }
.news-date { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.news-title { font-size: clamp(22px, 3.2vw, 31px); font-weight: 800; line-height: 1.55; margin: 0 0 26px; letter-spacing: .01em; }

/* アイキャッチ（あれば表示・無ければブロックごと削除でOK） */
.news-thumb { margin: 0 0 30px; }
.news-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; display: block; }
.news-thumb__ph { aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #3aa0ff, #9b6bff); display: grid; place-items: center; }
.news-thumb__ph span { color: rgba(255,255,255,.85); font-weight: 800; letter-spacing: .12em; font-size: 12px; }

/* 本文（短文・ゆったり） */
.news-body { font-size: 16px; line-height: 2.05; color: #2c2c36; }
.news-body p { margin: 0 0 20px; }
.news-body strong { color: var(--ink); font-weight: 800; }
.news-body a { color: var(--accent-to); font-weight: 700; }

/* 要点ボックス（日時・場所・リンク等。必要な時だけ） */
.news-info { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 8px 24px; margin: 30px 0 0; }
.news-info dl { display: grid; grid-template-columns: 92px 1fr; margin: 0; }
.news-info dt, .news-info dd { padding: 14px 0; border-bottom: 1px solid var(--line); margin: 0; font-size: 14px; }
.news-info dl > dt:last-of-type, .news-info dl > dd:last-of-type { border-bottom: none; }
.news-info dt { font-weight: 800; color: var(--ink); }
.news-info dd { color: var(--ink-soft); }
.news-info dd a { color: var(--accent-to); font-weight: 700; }

/* シェア */
.news-share { display: flex; align-items: center; gap: 10px; margin: 34px 0 0; }
.news-share__label { font-size: 12px; font-weight: 800; color: var(--ink-faint); letter-spacing: .06em; }
.news-share a { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); transition: .2s; }
.news-share a:hover { border-color: transparent; background: var(--accent); color: #fff; }
.news-share svg { width: 15px; height: 15px; }

/* ===== 導線（短い記事の主役） ===== */
.news-foot { width: 680px; max-width: 90%; margin: 56px auto 0; }
.news-foot__h { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--ink-faint); margin: 0 0 6px; }
.nrow { display: flex; align-items: baseline; gap: 16px; padding: 16px 4px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink); transition: .2s; }
.nrow:first-of-type { border-top: 1px solid var(--line); }
.nrow:hover { background: var(--bg); }
.nrow__date { font-size: 12.5px; font-weight: 700; color: var(--ink-faint); flex-shrink: 0; width: 78px; }
.nrow__cat { font-size: 10.5px; font-weight: 800; color: var(--accent-to); flex-shrink: 0; width: 86px; }
.nrow__t { font-size: 14.5px; font-weight: 700; line-height: 1.5; }

.news-pn { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 0; }
.news-pn a { display: flex; flex-direction: column; gap: 5px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; color: var(--ink); transition: .2s; }
.news-pn a:hover { border-color: var(--accent-to); }
.news-pn .dir { font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--ink-faint); }
.news-pn .t { font-size: 13.5px; font-weight: 700; line-height: 1.5; }
.news-pn a.next { text-align: right; align-items: flex-end; }
.news-pn a.placeholder { opacity: .4; pointer-events: none; }

.news-back { text-align: center; margin: 36px 0 0; }

@media (max-width: 640px) {
  .news-pn { grid-template-columns: 1fr; }
  .nrow { flex-wrap: wrap; gap: 6px 16px; }
  .nrow__t { flex: 1 1 100%; }
  .news-info dl { grid-template-columns: 80px 1fr; }
}
