/* p-profile
---------------------------------------------------------------------------- */
.p-profile {
  padding-block: 10rem 10rem;
  position: relative;
  overflow: hidden;
}

.p-profile-list {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  gap: 0 0vw;
}

.p-profile-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 20;
  justify-items: center;
}

.p-profile-item-lead {
  font-size: 8rem;
  line-height: 1;
  font-family: "Caveat";
  font-optical-sizing: auto;
  font-weight: 700;
  margin-bottom: 2rem;
}

.p-profile-img {
  width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 4rem;
}

.p-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-profile-item-ttl,
.p-profile-item-txt {
  font-size: 2.2rem;
  text-align: center;
  padding-block: 2rem;
  width: 100%;
}

.p-profile-item-ttl {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-profile {
    padding-block: 13.3333333333vw;
  }
  .p-profile-list {
    gap: 0 0vw;
  }
  .p-profile-item-lead {
    font-size: 8vw;
    margin-bottom: 2.6666666667vw;
  }
  .p-profile-img {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .p-profile-item-ttl,
  .p-profile-item-txt {
    font-size: 3.2vw;
    padding-block: 2.6666666667vw;
  }
}
