.acf-block-preview .c-memberlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px auto 0;
  max-width: 1440px;
}
.acf-block-preview .c-memberlist  li {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .acf-block-preview .c-memberlist {
    grid-template-columns: 1fr;
  }
}
.acf-block-preview .c-memberlist .item {
  display: grid;
  grid-template-columns: 228px 1fr;
  gap: 30px;
 
}
.acf-block-preview .c-memberlist .item dt{
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .acf-block-preview .c-memberlist .item {
    grid-template-columns: 1fr;
  }
}
.acf-block-preview .c-memberlist .item > div:first-child {
  max-width: 228px;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .acf-block-preview .c-memberlist .item > div:first-child {
    width: 100%;
    margin: 0 auto;
  }
}
.acf-block-preview .c-memberlist .item > div:first-child:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #EBEBEB;
  border: 1px solid #DADADA;
  border-radius: 100vw;
  overflow: hidden;
}
.acf-block-preview .c-memberlist .item > div:first-child:after {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(180deg, #7884B1 0%, #33384B 100%);
  border-radius: 100vw;
  overflow: hidden;
}
.acf-block-preview .c-memberlist .item > div:first-child > div {
  overflow: hidden;
  width: 70%;
  border-radius: 100vw;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
}
.acf-block-preview .c-memberlist .item > div:first-child img {
  width: 100%;
  object-fit: cover;
}
.acf-block-preview .c-memberlist .item dl {
  display: flex;
}
.acf-block-preview .c-memberlist .item dt:after {
  content: ":";
}