.pagehead-blue {
  padding-block: 4.5rem 4.25rem;
}
@media screen and (max-width: 400px) {
  .pagehead-blue__label {
    font-size: 11.0256vw;
  }
}

.product {
  padding-top: 6.25rem;
}
.product__list {
  display: grid;
  gap: 2.5rem;
  margin-top: 5rem;
}

.productItem {
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.14);
  display: grid;
  grid-template-columns: 10.5rem auto;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
}
.procuntItem__details {
  background-color: rgb(246 246 246 / 0.96);
  border-radius: 8px;
  padding: 0.5rem 1rem 1rem 1rem;
}
.productItem__title {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 700;
}
.productItem__label {
  margin-top: 0.5rem;
}
.productItem__first-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.productItem__first-list li {
  font-size: .875rem;
  line-height: 1.8;
  width: fit-content;
  display: inline-block;
  position: relative;
  padding-right: 1.0625rem;
}
.productItem__first-list li:not(:last-of-type)::after {
  content: "";
  background-color: var(--color-gray);
  width: 1px;
  height: .75rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.productItem__button-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.125rem;
}
.productItem__button-list li {
  display: inline-block;
  border-radius: 200px;
  border: 1px solid var(--color-black);
  font-size: .875rem;
  line-height: 1;
  padding: .3125rem .75rem .375rem;
}

.productItem__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .625rem;
}
.productItem__badge {
  background-color: var(--color-gray);
  border-radius: 100px;
  line-height: 1;
  padding: .25rem .75rem .375rem;
  white-space: nowrap;
}
.supplyCard__name .productItem__badge {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.75rem;
  padding: .125rem .75rem .1875rem;
  margin-left: .5rem;
}
@media screen and (max-width: 767px) {
  .product__list {
    margin-top: 2.5rem;
  }
  .productItem {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .procuntItem__details {
    margin-top: 1rem;
  }
  .productItem__first-list {
    display: block;
  }
  .productItem__first-list li {
    display: inline;
    padding-right: .5rem;
    margin-right: .25rem;
    border-right: 1px solid var(--color-gray);
  }
  .productItem__first-list li:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .productItem__first-list li:not(:last-of-type)::after {
    content: none;
  }
}

.supply,
.supply__list,
.option {
  padding-top: 5rem;
}
.supply__list {
  display: grid;
  gap: 5rem;
}
.productItem__lead-text {
  font-size: .875rem;
  line-height: 1.8;
}

.join {
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .supply__list {
    gap: 2.5rem;
    padding-top: 2.5rem;
  }
  .join {
    margin-bottom: 5rem;
  }
  .option .supplyCards {
    margin-top: 0;
  }
}