@charset "UTF-8";
.choice-list {
  margin-bottom: 40px;
}
.choice-list__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}

.choice-list-item {
  width: calc((100% - 60px) / 3);
  margin-left: 20px;
  margin-bottom: 20px;
}
.choice-list-item__image {
  aspect-ratio: 4/3;
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.choice-list-item__text {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 15px;
  background-color: black;
  color: #fff;
  font-weight: bold;
}
.choice-list-item--brand {
  aspect-ratio: 8/3;
  width: calc((100% - 100px) / 5);
}
.choice-list-item--brand .choice-list-item__image {
  aspect-ratio: 8/3;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .choice-list__items {
    margin-left: -16px;
  }
  .choice-list-item {
    width: calc((100% - 32px) / 2);
    margin-left: 16px;
    margin-bottom: 16px;
  }
  .choice-list-item__text {
    text-align: center;
    padding: 3px 5px;
    font-size: 13px;
  }
  .choice-list-item--brand {
    width: calc((100% - 60px) / 3);
    margin-bottom: 10px;
  }
}
/**
カテゴリページ
*/
.category-notyet {
  color: red;
  border: 2px solid red;
  font-weight: bold;
  font-size: 120%;
  margin: 20px 0;
  text-align: center;
  width: 100%;
  line-height: 1.8;
  padding: 15px;
}/*# sourceMappingURL=styles.css.map */