/* 連動性玩具の解説ページ（2026-08-01ユーザー要望）。
   list.css を先に読んでカード類を借りているので、ここは記事側の見た目だけを書く。 */

.wrap { max-width: 1000px; }

.toys { margin-top: 8px; }

.toys-hero { padding-bottom: 6px; border-bottom: 1px solid var(--border); margin-bottom: 26px; }
.toys-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: .18em; font-weight: 700;
  color: var(--fetish); margin-bottom: 6px;
}
.toys h1 { font-size: 27px; margin: 0 0 16px; letter-spacing: .02em; }
.toys-lead { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.toys-face {
  width: 96px; height: 96px; flex: none; border-radius: 10px; object-fit: cover;
  border: 1px solid var(--border);
}
.toys-lead-body { flex: 1; min-width: 0; }
.toys-lead-body p { margin: 0 0 9px; line-height: 1.75; }
.toys-lead-body strong { color: var(--fetish); }

.toys-section { margin-bottom: 34px; }
.toys h2 {
  font-size: 17px; margin: 0 0 12px; padding-left: 11px;
  border-left: 3px solid var(--accent); line-height: 1.4;
}
.toys-section > p { margin: 0 0 10px; line-height: 1.75; }
.toys-sub { color: var(--text-dim); font-size: 13px; }
.toys-note { color: var(--text-dim); font-size: 13px; }

/* 仕組みの4段 */
.toys-flow { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 8px; }
.toys-flow li {
  display: grid; grid-template-columns: 30px 150px 1fr; gap: 12px; align-items: baseline;
  padding: 10px 14px; background: var(--panel); border: 1px solid var(--border); border-radius: 8px;
}
.toys-flow-n {
  font-size: 15px; font-weight: 700; color: var(--fetish); font-variant-numeric: tabular-nums;
}
.toys-flow-t { font-weight: 700; font-size: 14px; }
.toys-flow-d { color: var(--text-dim); font-size: 13px; line-height: 1.6; }
@media (max-width: 620px) {
  .toys-flow li { grid-template-columns: 26px 1fr; }
  .toys-flow-d { grid-column: 2; }
}

/* 玩具ごとの節 */
.toy-grid { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: start; }
@media (max-width: 720px) { .toy-grid { grid-template-columns: 1fr; } }
.toy-figure {
  margin: 0; padding: 16px 14px 10px; text-align: center;
  background: linear-gradient(160deg, rgba(168,108,255,.09), rgba(255,77,126,.06));
  border: 1px solid var(--border); border-radius: 10px;
}
.toy-figure svg { width: 100%; max-width: 210px; height: auto; color: var(--text-dim); }
.toy-figure img { width: 100%; max-width: 210px; height: auto; border-radius: 8px; display: block; margin: 0 auto; }
.toy-figure figcaption { margin-top: 8px; font-size: 11.5px; color: var(--text-dim); line-height: 1.5; }
.toy-body p { margin: 0 0 10px; line-height: 1.8; }

.toys-disclaimer { color: var(--text-dim); font-size: 11.5px; margin-top: 26px; line-height: 1.7; }

.toys-link {
  display: inline-block; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
}
.toys-link:hover { border-color: var(--accent); }
/* 配布元の2つは横並び（2026-08-01ユーザー指示）。狭い画面では自然に折り返す */
.toys-links { display: flex; flex-wrap: wrap; gap: 10px 24px; }

/* 作品カード（list.cssの.result-cardをそのまま使う。列数だけここで決める） */
.toys-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.toys-cta { margin-top: 20px; text-align: center; }
.toys-cta-line { color: var(--text-dim); font-size: 13px; margin: 0 0 10px; }
.toys-cta-btn {
  display: inline-block; padding: 13px 30px; border-radius: 9px;
  background: linear-gradient(135deg, rgba(168,108,255,.20), rgba(255,77,126,.20));
  border: 1px solid var(--fetish); color: var(--text);
  font-size: 15px; font-weight: 700; text-decoration: none; transition: all .15s ease;
}
.toys-cta-btn:hover { border-color: var(--accent); box-shadow: 0 3px 16px rgba(168,108,255,.30); }
