/* サービス一覧コンテナ */
.banri-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 各サービスアイテム */
.banri-service-item {
  box-sizing: border-box;
  width: calc(33.333% - 20px);
  margin: 10px;
  text-align: center;
}

/* リンク全体をクリック可能に */
.banri-service-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* 丸い背景＋アイコン */
.banri-service-icon-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  background-color: #ff5722; /* オレンジ背景 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banri-service-icon-circle img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

/* タイトル */
.banri-service-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 6px;
}

/* 本文（説明文） */
.banri-service-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* スマホ表示：1カラム */
@media (max-width: 768px) {
  .banri-service-item {
    width: 100%;
    margin: 10px 0;
  }
}
