.pdp-service {
  max-width: 1174px;
  margin: 0 auto 218px;
}

.pdp-service__list {
  display: flex;
  max-width: 1174px;
  justify-content: space-between;
  gap: 0;
}

.pdp-service__item {
  width: 350px;
  border: 1px solid var(--wp--preset--color--paper);
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.pdp-service__item:nth-of-type(1),
.pdp-service__item:nth-of-type(2) {
  margin-right: 50px;
}

.pdp-service__title {
  font-family: var(--wp--preset--font-family--zenoldmincho);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.pdp-service__instructor,
.pdp-service__note {
  font-family: var(--wp--preset--font-family--zenoldmincho);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 15px;
}

.pdp-service__note__sub {
  font-family: var(--wp--preset--font-family--zenoldmincho);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}

.pdp-service__desc {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  font-family: var(--wp--preset--font-family--zenoldmincho);
  font-size: 19px;
  letter-spacing: 0.3em;
  line-height: 3.2;
  text-align: left;
  flex-grow: 1;
}

.pdp-service__price {
  display: flex;
  justify-content: space-between;
  font-family: var(--wp--preset--font-family--zenoldmincho);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: auto;
}

@media (max-width:767px) {
  .pdp-service {
    max-width: 270px;
    margin: 0 auto 100px;
  }
  
  .pdp-service__list {
    display: block;
    max-width: 270px;
  }

  .pdp-service__item {
    width: 90%;
    margin: 0 auto;
  }
  
  .pdp-service__item:nth-of-type(1),
  .pdp-service__item:nth-of-type(2) {
    margin: 0 auto 30px;
  }

  .pdp-service__title {
    font-size: 14px;
  }

  .pdp-service__instructor,
  .pdp-service__note {
    font-size: 11px;
  }

  .pdp-service__note__sub {
    font-size: 10px;
  }

  .pdp-service__desc {
    font-size: var(--wp--preset--font-size--xs);
    font-weight: 700;
  }

  .pdp-service__price {
    font-size: 12px;
  }
}