@charset "utf-8";

.members {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}
.members_title {
  font-size: 24px;
  font-weight: 600;
}
.members_list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-top: 24px;
}
.members_list_item {
  width: calc(20% - 19.2px);
  transition: transform 0.15s ease;
  cursor: pointer;
}
.members_list_item_img {
  width: 100%;
  height: auto;
}
.members_list_item_wrapper {
  margin-top: 8px;
  padding: 0 4px;
}
.members_list_item_name {
  font-weight: 600;
}
.members_list_item_position {
  margin-top: 4px;
  font-size: 12px;
}
.members_list_item_plus {
  display: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
  position: relative;
}
.members_list_item_plus::after {
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c5d0da;
}
.members_list_item_plus::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #c5d0da;
}

@media screen and (max-width: 1040px) {
  .members_list_item {
    width: calc(25% - 18px);
  }
}

@media screen and (max-width: 860px) {
  .members_list_item {
    width: calc(33.333% - 16px);
  }
}

@media screen and (min-width: 641px) {
  .members_list_item:hover {
    transform: scale(1.05, 1.05);
  }
}

@media screen and (max-width: 640px) {
  .members {
    padding: 0 20px 40px;
  }
}

@media screen and (max-width: 580px) {
  .members_list_item {
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 480px) {
  .members_title {
    font-size: 20px;
  }
  .members_list_item {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .members_list_item_img {
    flex-shrink: 0;
    width: 80px;
  }
  .members_list_item_wrapper {
    flex: 1;
    margin-top: 0;
    padding: 0 16px;
  }
  .members_list_item_plus {
    display: block;
  }
}
