/* ----------- */
/* member */
/* ----------- */
.interview_list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 12px;
  justify-content: flex-start;
}

.interview_list_item {
  width: calc(33% - 6px);
}

.interview_list_item_layout_img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

/* ホバー時 */
.interview_list_item_link:hover .interview_list_item_img {
  transition: transform .6s ease;
  transform: scale(1.1);
}

.interview_list_item_img {
  width: 100%;
}

.interview_list_item_title {
  color: #F7618F;
  font-weight: bold;
  margin-top: 16px;
}

.interview_list_item_text {
  margin: 16px 0;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* ----------- */
/* manager */
/* ----------- */
.manager_list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 12px;
  justify-content: space-between;
}

.manager_list_item {
  width: calc(50% - 6px);
}

.manager_list_item_layout_img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

/* ホバー時 */
.manager_list_item_link:hover .manager_list_item_img {
  transition: transform .6s ease;
  transform: scale(1.1);
}

.manager_list_item_img {
  width: 100%;
}

.manager_list_item_title {
  color: #1F85FD;
  font-weight: bold;
  margin-top: 16px;
}

.manager_list_item_text {
  margin: 16px 0;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.manager_list_item_name {
  color: #8A8A8A;
  font-size: 14px;
  margin-bottom: 16px;
}


