/* BlockGmapReviews — スマホ119 Googleクチコミ数ブロック */
.bk-gmap-reviews {
  font-family: -apple-system, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  padding: 20px 0;
}

.bk-gmr-header {
  text-align: center;
  margin-bottom: 24px;
}

.bk-gmr-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.bk-gmr-total {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: linear-gradient(135deg, #ff4d80 0%, #ff7aa2 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(255,77,128,.3);
}

.bk-gmr-total-num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bk-gmr-total-label {
  font-size: 13px;
  font-weight: 500;
  opacity: .9;
}

/* グリッド */
.bk-gmr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

@media (max-width: 600px) {
  .bk-gmr-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
  }
}

/* カード */
.bk-gmr-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px 10px 12px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.bk-gmr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,77,128,.15);
  border-color: #ffb3c8;
}

.bk-gmr-card--na {
  opacity: 0.55;
}

.bk-gmr-card-name {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-gmr-card-count {
  font-size: 28px;
  font-weight: 800;
  color: #ff4d80;
  line-height: 1;
  letter-spacing: -0.03em;
}

.bk-gmr-card-count--na {
  color: #ccc;
  font-size: 22px;
}

.bk-gmr-card-unit {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

.bk-gmr-card-stars {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bk-gmr-star-icon {
  color: #fbbc04;
  font-size: 14px;
}

.bk-gmr-gmap-link {
  font-size: 10px;
  color: #4285f4;
  text-decoration: none;
  white-space: nowrap;
}

.bk-gmr-gmap-link:hover {
  text-decoration: underline;
}

.bk-gmr-updated {
  text-align: right;
  font-size: 11px;
  color: #bbb;
  margin: 16px 0 0;
}
