.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* 商品 */
.boxlist {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.box {
  width: 50%;
  box-sizing: border-box;
  padding: 4px;
}

.box-image {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.box-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* カテゴリ一覧 */
.top-category {
  width: 100%;
  padding: 1px 0px;
  background: #e3e5e4;
  box-sizing: border-box;
}

.top-category__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}

.top-category__subtitle {
  font-size: 14px;
  font-weight: normal;
}

.top-category__section {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 10px;
  text-align: left;
}

.top-category__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.top-category__item {
  display: flex;
  align-items: center;
  padding: 0px 12px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  height: 65px; 
}

.top-category__item img:first-child {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 10px;
  flex-shrink: 0;
}

.top-category__text {
  flex-grow: 1;
  font-size: 12px;
}

.top-arrow-icon {
  width: 15px;
  height: 15px;
  margin-left: 8px;
}