/* ベース */
.ccp-wrapper { max-width: 720px; margin: 24px auto; padding: 0 12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px; /* iOSのズーム抑制 */
}
.ccp-card { border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 6px 18px rgba(0,0,0,.06); padding: 20px; background:#fff; }
.ccp-header { margin-bottom: 12px; }
.ccp-title { font-size: 20px; font-weight: 700; }
.ccp-sub { color:#6b7280; font-size: 12px; margin-top:4px; }

.ccp-progress { margin: 12px 0 16px; }
.ccp-progress-bar { width: 100%; height: 8px; background: #f3f4f6; border-radius: 999px; overflow: hidden; }
.ccp-progress-fill { display:block; height:100%; background:#3b82f6; transition: width .2s ease; }
.ccp-progress-text { font-size: 12px; color:#6b7280; margin-top:6px; }

.ccp-body { margin-top: 6px; }
.ccp-question { font-size: 18px; font-weight: 600; line-height: 1.5; margin-bottom: 12px; }
.ccp-options { display: grid; gap: 10px; }
.ccp-option { display:flex; align-items:center; gap: 10px; border:1px solid #e5e7eb; border-radius: 12px; padding: 12px; cursor:pointer; transition: background .15s, border-color .15s; }
.ccp-option:hover { background:#f9fafb; }
.ccp-option input { transform: scale(1.15); pointer-events: none; } /* ラベル全体をタップ領域化 */
.ccp-option span { line-height: 1.4; }

.ccp-footer { display:flex; justify-content: space-between; align-items:center; gap: 8px; margin-top: 14px; }
.ccp-btn { background:#1f2937; color:#fff; border:none; padding:10px 14px; border-radius: 12px; font-weight:600; cursor:pointer; }
.ccp-btn[disabled] { opacity:.5; cursor:not-allowed; }
.ccp-btn-ghost { background:transparent; color:#111827; border:1px solid #e5e7eb; }

.ccp-result { margin-top: 16px; padding: 14px; border:1px solid #e5e7eb; border-radius: 12px; background:#f8fafc; }
.ccp-badge { display:inline-block; padding:4px 8px; border-radius:999px; font-size:12px; font-weight:700; }
.ccp-badge.red { background:#fee2e2; color:#b91c1c; }
.ccp-badge.amber { background:#fef3c7; color:#b45309; }
.ccp-badge.green { background:#dcfce7; color:#166534; }

.ccp-note { color:#6b7280; font-size: 11px; margin-top: 10px; }

/* モバイル最適化 */
@media (max-width: 480px) {
  .ccp-card { padding: 16px; border-radius: 14px; }
  .ccp-title { font-size: 18px; }
  .ccp-question { font-size: 16px; }
  .ccp-options { gap: 8px; }
  .ccp-option { padding: 12px; }
  .ccp-footer { gap: 6px; }
  .ccp-btn { padding: 10px 12px; border-radius: 10px; font-size: 14px; }
  .ccp-btn-ghost { font-size: 14px; }
  .ccp-progress-text { font-size: 11px; }
}

/* 極小幅でボタン縦積み */
@media (max-width: 360px) {
  .ccp-footer { flex-direction: column; align-items: stretch; }
  .ccp-foot-right { width: 100%; display: flex; gap: 6px; }
  .ccp-foot-right .ccp-btn { flex: 1; }
}

/* タップのハイライト無効（Android） */
.ccp-option { -webkit-tap-highlight-color: transparent; }
