.office_grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .office_grid {
    flex-direction: column;
    align-items: center;
  }

  .office_card {
    width: 100%;
    max-width: 400px;
  }
}

.office_card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ★ボタン感を出さずに、しっかり見出しとして目立たせるデザイン */
.badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  
  /* 薄い上品なグレーの背景と、上下のみの控えめなラインで「見出し感」を出す */
  background: #f8fafc;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.badge-1, .badge-2, .badge-3 {
  background: #f8fafc;
  color: #0f172a;
}

/* 画像をカードの幅いっぱいに大きく表示 */
.visual-box {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.visual-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.sub-title {
  font-size: 16px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.description {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: normal;
	text-align:left !important;
}