/* ボタンを横並びにするためのカスタムCSS */
.button-flex-container {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}

/* コンテナ内のボタンの不要な設定をリセット */
.button-flex-container > a.btn01 {
  margin: 0 !important;
  width: auto !important; /* ボタンの幅を中身に合わせて自動調整 */
}