/* ── キャラクターチャート ── */
#charChartArea { margin-top: 12px; }
.chart-section {
  background: linear-gradient(145deg, #16213e, #1a1a2e);
  border: 1px solid #0f3460;
  border-radius: 10px;
  padding: 12px 10px;
}
.chart-title {
  text-align: center;
  font-size: 0.95em;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.chart-radar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chart-bar-label {
  width: 58px;
  font-size: 0.7em;
  color: #aaa;
  text-align: right;
  flex-shrink: 0;
}
.chart-bar-tracks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chart-bar-track {
  height: 10px;
  background: #0a0a1a;
  border-radius: 5px;
  overflow: hidden;
}
.chart-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.4s ease-out;
}
.chart-bar-val {
  width: 80px;
  font-size: 0.68em;
  color: #ccc;
  text-align: left;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
