.breed-table-section .breed-3col-flex {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breed-table-section .breed-3col-flex ul {
  flex: 1 1 0;
  background: #fafafa;           /* common.css の背景色 */
  border: 1px solid #ededed;     /* common.cssの薄いグレー */
  border-radius: 12px;
  padding: 0;
  min-width: 220px;
  /* フォント・色は共通継承 */
}

.breed-table-section .breed-3col-flex .coltop {
  background: #efefef;          /* common.cssのテーブルth・ヘッダー色 */
  font-weight: bold;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #ededed;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #3c3c3c;              /* デフォルトの文字色 */
}

.breed-table-section .breed-3col-flex li {
  padding: 9px 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #3c3c3c;
  background: transparent;
}

.breed-table-section .breed-3col-flex li:last-child {
  border-bottom: none;
}

.breed-table-section .dog-class-note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  background: transparent;
}

/* モバイル対応 */
@media (max-width: 766px) {
  .breed-table-section .breed-3col-flex {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 8px;
  }
  .breed-table-section .breed-3col-flex ul {
    min-width: 0;
    width: 100%;
  }
  .breed-table-section .breed-3col-flex .coltop {
    font-size: 16px;
    padding: 9px 0;
  }
  .breed-table-section .breed-3col-flex li {
    font-size: 15px;
    padding: 7px 12px;
  }
  .breed-table-section .dog-class-note {
    font-size: 12px;
    margin-top: 7px;
  }
}
