.category__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
}
@media screen and not (min-width: 960px) {
  .category__body {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 2rem;
  }
}
.category__item-name-en {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.category__item-name-ja {
  text-align: center;
}
.category__item-img {
  margin-top: 2.4rem;
}
.category__item-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6em 0;
  margin-top: 2.4rem;
}
.category__item-sub a {
  display: inline-block;
  position: relative;
  padding-left: 1.6em;
  line-height: 1;
}
.category__item-sub a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 1em;
  z-index: 1;
  transition: opacity 0.3s ease;
  font-size: 1em;
  aspect-ratio: 1/1;
  background-image: url("/pages/top/img/icon_arw_forward.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}