
.member {
  margin: 0 0 40px;
  border-top: none;
}
.member-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.member-list-item {
  display: flex;
  width: 48.18181818181818%;
  margin: 0 0 40px;
}
.member-list-item figure {
  width: 164px;
  height: 164px;
  overflow: hidden;
  margin: 0 24px 0 0;
  border-radius: 100%;
}
.member-list-item figure img {
  width: 164px;
  height: 164px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.member-list-item dl {
  flex: 1;
}
.member-list-item dt {
  margin: 0 0 8px;
  font-weight: bold;
}
.member-list-item dd {
}
.member-list-item dd + dd {
  margin-top: 16px;
}
.member-list-item dd a {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.member-list-item dd a:hover {
  text-decoration: none;
}
.member-list-item dd a span {
  display: inline-block;
  position: relative;
  transition: .3s;
}
.member-list-item dd a span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: .3s;
}
.member-list-item dd a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 0 0 16px;
  border: 1px solid #333;
  border-radius: 100%;
  background: #333;
  box-sizing: border-box;
}
.member-list-item dd a i:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 1px solid #333;
  border-radius: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.member-list-item dd a i:after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-image: url(/upload/static/icon-arrow-02.svg);
  background-size: 18px 10px;
  background-repeat: no-repeat;
  z-index: 10;
  transition: .3s;
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 768px) {
  .member-list-item dd a:hover i:before {
    width: 40px;
    height: 40px;
  }
  .member-list-item dd a:hover i:after {
    filter: none;
  }
  .member-list-item dd a:hover span:before {
    transform: scale(0, 1);
  }
}

@media screen and (max-width: 767px) {
  .member-list {
    display: block;
  }
  .member-list-item {
    width: auto;
  }
  .member-list-item figure {
    width: 130px;
    height: 130px;
  }
  .member-list-item figure img {
    width: 130px;
    height: 130px;
  }
}