/**
 * 口コミページ専用CSS
 */

/* 「もっと見る」ボタンスタイル */
.more-btn-container {
  text-align: center;
  margin: 30px 0;
}

.btn-more {
  background: #00b39a;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 12px 50px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-more:hover {
  background: #009b85;
}

.btn-more:disabled {
  background: #ccc;
  cursor: not-allowed;
}
