.wheel_wrap {
  max-width: 1200px;
  margin: 0 auto 20px;
}

.wheel_wrap a {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  color: #000;
  border-bottom: none;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px 0;
}

.wheel-name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 5px;
  overflow-wrap: anywhere;
}

.wheel-img {
  width: 60%;
}

.wheel-img img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.wheel_wrap a:active {
  background-color: rgba(0, 0, 0, 0.1); /* 少しだけ透明度を減らして明るく見せる */
}

@media (min-width: 600px) {
  .wheel-img img{
    height: 370px;
  }
}

@media (min-width: 1200px) {

  .wheel_wrap a {
    font-size: 1.6rem;
    text-align: center;
  }

  .wheel-name,
  .wheel-img {
    width: 50%;
  }
  
  .wheel-img img{
    height: 370px;
  }

  .wheel_wrap a:hover  {
    background-color: rgba(0, 0, 0, 0.1); /* 少しだけ透明度を減らして明るく見せる */
  }
}