/* レビューアイテム */
.review-item {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .profile-photo {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  .review-info {
    flex-grow: 1;
  }
  
  .review-info strong {
    font-size: 16px;
    color: #333;
  }
  
  .review-rating {
    display: block;
    color: #f39c12;
    font-size: 14px;
  }
  
  .review-body .review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }
  
  .text_center {
    text-align: center;
  }
  
  /* モバイル対応: レビューアイテムのスタイル調整 */
  @media (max-width: 768px) {
    .review-item {
      padding: 10px;
    }
  
    .profile-photo {
      width: 40px;
      height: 40px;
    }
  
    .review-info strong {
      font-size: 14px;
    }
  
    .review-rating {
      font-size: 12px;
    }
  
    .review-body .review-text {
      font-size: 12px;
    }
  }