@keyframes infinity-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 45s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
}

.scroll-infinity__item > img {
  width: 100%;
}

/* ボタン中央寄せ（確定版） */
.btn-wrap {
  text-align: center;
}

.bukatu-btn_02 {
  display: block;
  margin: 10px auto;
  float: none;
  position: relative;
  left: 8px; 
}
/* セル内を中央基準にする */
.club-table td {
  text-align: center;
  vertical-align: top;
}

/* 画像を中央配置 */
.club-table td img {
  display: block;
  margin: 0 auto 10px;
}

/* ボタンを画像の真下・中央に固定 */
.bukatu-btn_02 {
  display: block;
  margin: auto;
  float: none;
}

