.l-main-content {
  padding-top: 3rem;
}

.c-category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .c-category__list {
    margin: 0 auto;
    padding: 8rem 0 10rem;
    width: 86rem;
  }
}
.c-category__item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .c-category__item {
    width: calc(50% - 2rem);
  }
}
.c-category__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0.5rem 3rem 0.5rem 5rem;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background: linear-gradient(-58deg, rgb(54, 109, 158) 0%, rgb(89, 173, 229) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: var(--FontWeightBold);
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-category__link {
    padding: 0.5rem 5rem 0.5rem 7rem;
    font-size: 2rem;
  }
  .c-category__link:hover {
    background: linear-gradient(-58deg, rgb(89, 173, 229) 0%, rgb(54, 109, 158) 100%);
  }
}
.c-category__link:after {
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 1.5rem;
  height: 2rem;
  background: url(../images/common_img/arrow.webp) no-repeat center center/contain;
  content: "";
}
@media only screen and (min-width: 768px) {
  .c-category__link:after {
    right: 2rem;
    width: 2rem;
  }
}
.c-category__icon {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  width: 3rem;
}
@media only screen and (min-width: 768px) {
  .c-category__icon {
    left: 1rem;
    width: 5.1rem;
  }
}