body {
  margin: 0;
  min-width: 300px;
}



/* ここから */
.parts__recList_S--child {
  padding: var(--mp15px);
  margin: auto;
  max-width: 430px;
}

.parts__recList_S h2 {
  margin: 0 auto 10px;
  padding-left: 5px;
  font-size: 1.4rem;
  font-weight: bold;
}

.recList_S__mainContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--mp15px) 10px;
  margin: 0 auto var(--mp15px);
}

.parts__recCard {
  width: 48%;
  flex: 0 0 auto;
}

.recList_S__moreBtn {
  width: 100%;
  text-align: center;
}

.recList_S__moreBtn a {
  font-weight: bold;
  font-size: 0.8rem;
  color: var(--systemColor--defaultText);
  text-decoration: none;
  padding: 8px var(--mp15px);
  border: solid 1px var(--systemColor--defaultText);
  border-radius: 30px;
}



@media (min-width: 670px) {


  .parts__recList_S--child {
    max-width: 950px;
    position: relative;
  }

  .parts__recList_S h2 {
    margin: 0 0 10px;
  }

  .recList_S__mainContent {
    justify-content: flex-start;
    gap: 10px;
  }


  .parts__recCard {
    width: calc(100% / 4 - (10px * 3/4));
  }

  .recList_S__moreBtn {
    position: absolute;
    width: fit-content;
    top: 20px;
    right: 20px;
  }
}