.year-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.year-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 480px;
}
.year-table th, .year-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  text-align: right;
}
.year-table th:first-child, .year-table td:first-child { text-align: center; }
.year-table th { background: #fafaf8; font-weight: 700; color: var(--ink2); }
.year-table tr:last-child td { border-bottom: none; font-weight: 700; background: #fafaf8; }
.year-table .highlight { color: var(--accent); font-weight: 700; }
.year-table .big-total {
  background: var(--primary);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.big-total::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(107,159,212,.25), transparent 70%);
  pointer-events: none;
}
.big-total-label { font-size: 11px; color:var(--primary-mid); font-family: 'DM Mono', monospace; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.big-total-val { font-family: 'Plus Jakarta Sans', var(--font-body, 'Noto Sans JP'), sans-serif; font-size: clamp(28px, 7vw, 52px); font-weight: 900; color: #ffffff; line-height: 1.1; margin-bottom: 4px; }
.big-total-val em { color:var(--primary-mid); font-style: normal; font-size: .5em; }
.big-total-sub { color: rgba(255,255,255,0.55); font-size: 13px; }
.limit-note {
  background: var(--accent-light);
  border: 1px solid rgba(200,87,10,.2);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--accent);
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.tax-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--r-full);
  margin-top: 3px;
}
.conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
@media (min-width: 520px) { .conditions-grid { grid-template-columns: repeat(3, 1fr); } }
.cond-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 10px;
  text-align: center;
}
.cond-label { font-size:12px; color: var(--ink3); margin-bottom: 4px; }
.cond-val { font-size: 13px; font-weight: 700; color: var(--ink); }
.bar-chart-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.bar-chart-year { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink3); width: 32px; flex-shrink: 0; }
.bar-chart-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-chart-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green), #4ade80); }
.bar-chart-val { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--green); width: 60px; text-align: right; flex-shrink: 0; }