


/* =========================
レビュー一覧ページ
========================= */

.bc-review-page {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* タイトル */

.bc-review-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.bc-orange {
  color: #ff7a00;
}

/* =========================
グリッド
========================= */

.bc-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
カード
========================= */

.bc-review-card {
  display:flex;
  flex-direction:column;
  height:100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform .2s;
}

.bc-review-card:hover {
  transform: translateY(-4px);
}

/* =========================
画像
========================= */

.bc-review-image{
  position: relative;
}

.bc-review-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* =========================
本文
========================= */

.bc-review-body {
  padding: 10px 20px 20px;
}

.bc-review-name {
  font-size: 18px;
  font-weight: bold;
}

/* =========================
プラン
========================= */

.bc-review-plan {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
}

/* プラン別 */

.bc-plan-light {
  background: #fff5e6;
  color: #ff8a00;
}

.bc-plan-standard {
  background: #f2f8f2;
  color: #2e7d32;
}

.bc-plan-value {
  background: #f2edff;
  color: #5b3fc4;
}

/* =========================
メタ情報
========================= */

.bc-review-meta-wrap{
  display:flex;
  gap:16px;
  font-size:12px;
  color:#555;
}

.bc-review-meta {
  white-space:nowrap;
  color: #555;
}


/* =========================
評価
========================= */

.bc-review-rating {
  color: #ff9d00;
  font-size: 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 8px;
}

.bc-score {
  font-size: 16px;
  color: #333;
}

/* =========================
レビュー本文
========================= */

.bc-review-text {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-top: 10px;
  flex-grow:1;
}

.review_content .bc-review-text {
  font-size: 14px;
}

.review_content .bc-review-name {
  font-size: 14px;
}

.review_content .bc-review-rating {
  font-size: 14px;
}




.bc-review-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:2px;
}


@media screen and (max-width: 480px) {
  .bc-review-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}