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

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

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

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

.fg-report__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.fg-report__score {
  width: 150px;
  height: 150px;
  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 16px rgba(201, 15, 15, 0.35);
}

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

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

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

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

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

.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: 12px;
  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 {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #b60d0d;
}

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

.fg-report__legend-color {
  width: 14px;
  height: 14px;
  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: 15px;
}

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

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

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

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

.fg-report__comment {
  color: #4a2a2a;
  line-height: 1.5;
}

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

.fg-report__btn {
  border: 1px solid #c90f0f;
  background: #c90f0f;
  color: #fff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 10px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fg-report__btn:hover,
.fg-report__btn:focus {
  background: #a30b0b;
  border-color: #a30b0b;
}

.fg-report.is-empty::before {
  content: "口コミがまだありません";
  display: block;
  text-align: center;
  padding: 18px 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;
}

@media (max-width: 992px) {
  .fg-report__body {
    gap: 14px;
  }

  .fg-report__score {
    width: 120px;
    height: 120px;
  }

  .fg-score__value {
    font-size: 1.7rem;
  }

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