.work-input-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.work-input-row:last-child { border-bottom: none; }
.work-select {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 9px 10px;
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--white);
  width: 100%;
  transition: border-color .15s;
  cursor: pointer;
}
.work-select:focus { outline: none; border-color: var(--accent); }
.work-price-inp {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 9px 10px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  color: var(--accent);
  background: var(--white);
  width: 120px;
  text-align: right;
  transition: border-color .15s;
}
.work-price-inp:focus { outline: none; border-color: var(--accent); }

.add-row-btn {
  border: 1.5px dashed var(--border2);
  border-radius: var(--r);
  padding: 10px;
  text-align: center;
  color: var(--ink3);
  font-size: 13px;
  cursor: pointer;
  background: #fafaf8;
  margin-top: 8px;
  transition: all .15s;
}
.add-row-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.del-btn {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink3);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .15s;
}
/* チェック結果 */
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.check-item:last-child { border-bottom: none; }

.ci-icon { font-size: 20px; flex-shrink: 0; }
.ci-body { flex: 1; }
.ci-name { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ci-status { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.ci-badge {
  font-size:12px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-full);
}
.ci-ok   { background: var(--green-light); color: var(--green); border: 1px solid rgba(42,107,60,.2); }
.ci-high { background: #fff0f0; color: #c00; border: 1px solid #f0b0b0; }
.ci-low  { background: #fff8e0; color: #8a5e00; border: 1px solid #e0c860; }
.ci-note { font-size: 11px; color: var(--ink3); line-height: 1.6; }
.ci-range { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--ink2); }

.total-verdict {
  background: var(--primary);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  margin-bottom: 14px;
  position: relative; overflow: hidden;
}
.total-verdict::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;
}
.tv-tag { font-size:11px; color:var(--primary-mid); font-family:'DM Mono',monospace; letter-spacing:.1em; text-transform:uppercase; margin-bottom:6px; }
.tv-score { font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(26px,6vw,38px); font-weight:900; color:#fff; margin-bottom:4px; }
.tv-score em { color:var(--primary-mid); font-style:normal; font-size:.55em; }
.tv-note { color:rgba(255,255,255,0.55); font-size:12px; }

.missing-box {
  background: #fff8e0;
  border: 1px solid #e0c860;
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.missing-title { font-size: 13px; font-weight: 700; color: #8a5e00; margin-bottom: 8px; }
.missing-item { font-size: 12px; color: #6a4e00; padding: 4px 0 4px 16px; position: relative; border-bottom: 1px solid #e0c860; }
.missing-item:last-child { border-bottom: none; }
.missing-item::before { content: '？'; position: absolute; left: 0; font-weight: 700; }