.fg-report-section {
  margin: 20px 0 0;
}

.fg-report__title {
  text-align: center;
  font-size: 1.2rem;
  color: #c90f0f;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 700;
}

.fg-report {
  border: 2px solid #c90f0f;
  background: #fff;
  padding: 16px;
  box-shadow: 0 6px 14px rgba(201, 15, 15, 0.08);
}

.fg-report__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fg-report__summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fg-report__score {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c90f0f, #f2b4b4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 14px rgba(201, 15, 15, 0.3);
}

.fg-score__label {
  font-size: 0.75rem;
  font-weight: 600;
}

.fg-score__value {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  margin: 4px 0;
}

.fg-score__max {
  font-size: 0.7rem;
  opacity: 0.85;
}

.fg-report__chart {
  display: flex;
  justify-content: center;
}

.fg-radar {
  width: 220px;
  height: 220px;
}

.fg-radar__grid-line {
  fill: none;
  stroke: #f0c7c7;
  stroke-width: 1;
}

.fg-radar__axis {
  stroke: #d88b8b;
  stroke-width: 1;
  opacity: 0.7;
}

.fg-radar__label {
  fill: #b60d0d;
  font-size: 11px;
  font-weight: 700;
}

.fg-radar__zone {
  fill: rgba(201, 15, 15, 0.12);
  stroke: rgba(201, 15, 15, 0.35);
  stroke-width: 2;
}

.fg-radar__current {
  fill: rgba(201, 15, 15, 0.3);
  stroke: #c90f0f;
  stroke-width: 3;
}

.fg-radar__point {
  fill: #c90f0f;
  stroke: #fff;
  stroke-width: 2;
}

.fg-report__legend {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #b60d0d;
  flex-wrap: wrap;
}

.fg-report__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fg-report__legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: rgba(201, 15, 15, 0.25);
}

.fg-report__legend-color.is-current {
  background: #c90f0f;
  border-radius: 50%;
}

.fg-report__details {
  border-top: 1px solid #f0c7c7;
  padding-top: 12px;
}

.fg-report__details-title {
  text-align: center;
  color: #c90f0f;
  font-weight: 700;
  margin-bottom: 10px;
}

.fg-report__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fg-report__entry {
  background: #fff4f4;
  border-left: 4px solid #c90f0f;
  padding: 8px 10px;
  border-radius: 6px;
}

.fg-report__points {
  font-weight: 700;
  color: #b60d0d;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.fg-report__comment {
  color: #4a2a2a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.fg-report__cta {
  margin-top: 14px;
  text-align: center;
}

.fg-report__btn {
  border: 1px solid #c90f0f;
  background: #c90f0f;
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  width: 100%;
}

.fg-report.is-empty::before {
  content: "口コミがまだありません";
  display: block;
  text-align: center;
  padding: 14px 0;
  color: #c90f0f;
  font-weight: 700;
}

.fg-report.is-empty .fg-report__summary,
.fg-report.is-empty .fg-report__list,
.fg-report.is-empty .fg-report__details-title {
  display: none;
}
