@media screen and (max-width: 750px) {
  .display--pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .display--sp {
    display: none;
  }
}

html {
  font-size: 62.5%;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
}

.sent {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  margin: 64px 50px 0;
  padding-bottom: 140px;
  font-weight: 400;
  font-size: clamp(1.5rem, 0.9375vw, 3rem);
}
.sent:first-of-type {
  margin: 100px 50px 0;
  padding-bottom: 0;
}
@media screen and (max-width: 750px) {
  .sent:first-of-type {
    margin: 56px 20px 0;
  }
  .sent:first-of-type::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    margin-top: 60px;
    background: #000;
  }
}
@media screen and (max-width: 750px) {
  .sent {
    margin: 36px 20px 0;
  }
}
.sent__text {
  grid-column: 4/10;
  margin-top: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .sent__text {
    grid-column: 1/13;
    margin-top: 24px;
    font-size: 12px;
  }
}