@charset "UTF-8";
/*-------------------------------------------
ball
-------------------------------------------*/
.ball {
  margin-bottom: 80px;
}
.ball .img {
  margin-bottom: 80px;
}
.ball .title {
  font-family: serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.ball .text {
  line-height: 1.8;
  margin-bottom: 60px;
}
.ball .tournament {
  font-size: 22px;
  font-weight: 500;
  color: #8D8A40;
  margin-bottom: 10px;
}
.ball .tournament-list {
  margin-bottom: 20px;
}
.ball .tournament-list li {
  padding: 10px 0px 10px 10px;
}
.ball .tournament-list i {
  margin-right: 5px;
  color: #8D8A40;
}
.ball .ball-list {
  margin: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .page-header {
    margin-bottom: 40px;
  }
  .page-header .img img {
    height: 240PX;
  }
  .ball {
    padding: 80px 0;
    margin-bottom: 30px;
  }
  .ball .ball-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}