.member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
@media (max-width: 767px) {
  .member-list {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
}

.member-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 1;
  transition: 0.2s;
}
@starting-style {
  .member-modal {
    opacity: 0;
  }
}
.member-modal.is-active {
  transition: 0.3s;
  display: block;
}
.member-modal__layer {
  opacity: 0.9;
  background: var(--color-blue);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.member-modal__content {
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: #fff;
  width: 100%;
  height: 80vh;
  max-width: 124rem;
  overflow: auto;
}

.member-detail-head {
  margin-bottom: 12rem;
  display: grid;
  grid-template-columns: 40rem 1fr;
  gap: 8rem;
}
@media (max-width: 767px) {
  .member-detail-head {
    margin-bottom: 8rem;
    display: block;
  }
}
@media (max-width: 767px) {
  .member-detail-head__image {
    margin-bottom: 1.5rem;
  }
}
.member-detail-head__image img {
  border-radius: 2rem;
}
.member-detail-head__name {
  font-weight: bold;
  font-size: 4.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .member-detail-head__name {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
.member-detail-head__meta {
  font-weight: bold;
}
@media (max-width: 767px) {
  .member-detail-head__meta {
    line-height: 2;
  }
}
.member-detail-head__tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.member-detail-head__tag {
  width: fit-content;
  padding: 0 0.7rem;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  height: 2.1rem;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-blue);
}
@media (max-width: 767px) {
  .member-detail-head__tag {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
}
.member-detail-head__lead {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .member-detail-head__lead {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 1rem;
  }
}
.member-detail-head__desc {
  line-height: 3.6rem;
}
@media (max-width: 767px) {
  .member-detail-head__desc {
    line-height: 3rem;
  }
}

.member-detail-other {
  margin-top: 9.4rem;
  padding: 4rem 5.2rem;
  border-radius: 5rem;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .member-detail-other {
    margin-top: 8rem;
    padding: 3rem 1.5rem;
    border-radius: 2rem;
  }
}
.member-detail-other__title {
  font-size: 2.4rem;
  color: var(--accent1);
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .member-detail-other__title {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 1em;
  }
}
