.category-insert-section {
  min-width: 750px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.category-insert-section img {
  display: block;
  margin: 0 auto 20px;
}

/* item section */

.items-section {
  /* background-color: #F3F1EF; */
  padding: 20px 20px 0 20px;
  align-items: center;
  min-width: 750px;
  max-width: 1100px;
  margin: 0 auto;
}

.item-display-options {
font-size: 18px;
color: #661912;
display: flex;
align-items: center;
margin: 16px 32px;
column-gap: 24px;
}

.item-display-options span {
font-weight: 500;
}

.item-display-options a {
color: #661912;
text-decoration: none;
font-weight: 400;
}

.items-list {display: flex;flex-wrap: wrap;
/* 2列表示に設定 */gap: 20px;justify-items: center;max-width: 1032px;margin-left: auto;margin-right: auto;justify-content: center;}

.item {
flex: 0 1 calc(25% - 20px);
box-sizing: border-box;
border-radius: 5px;
overflow: hidden;
width: 100%;
max-width: 240px;
height: 347px;
min-width: 240px;
}

.item a.item-link {
  text-decoration: none;
}

.item a.item-link:hover {
  opacity: 0.7;
}

.item-img {
  width: 100%;
  aspect-ratio: 1;
  /* background-color: white; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.item img {
  height: auto;
  display: block;
  width: 100%;
}

.item-info h3 {
  font-size: 16px;
  font-weight: 500;
  height: 43px;
  color: #413622;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 10px 0 8px;
}

.item-info img {
  width: 10px;
  width: 15px;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-container .favorite {
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  background-image: url('../img/item_favorite.svg');
  background-size: 100%;
  background-repeat: no-repeat;
}

.price-container .favorite.active {
  background-image: url('../img/item_favorite_active.svg');
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 30px;
  column-gap: 5px;
}

.pagination ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  column-gap: 10px;
  font-size: 18px;
}

.pagination a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #622023;
}

.pagination .numbers .current {
  color: #D8CDCD;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.no-item {
  font-size: 20px;
  margin: 0 0 30px;
}
