@charset "UTF-8";
.label{
  font-size: 22px;
  color: white;
  background-color: #85023e;
  width: 100%;
  text-align: center;
  margin: auto;
  margin-bottom: 21px;
  border-radius: 5px;
}

.member_group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.content_member {
  display: flex;
  width: 480px;
  height: 270px;
  align-items: flex-start;
  justify-content: left;
  border: 1px solid black;
  border-radius: 8px;
  padding: 5px;
  margin: auto;
  margin-bottom: 10px;
}
.pic_member {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pic_member img {
  height: 260px;
  width: auto;
  border-radius: 10%;
}
.info_member {
  margin-left: 10px;
}
.prof {
  margin-bottom: 5px;
}
.name {
  font-size: 25px;
  line-height: 1.2;
  text-align: left;
  vertical-align: top;
  width: 150px;
}
.ruby {
  font-size: 18px;
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  text-align: left;
}
.job {
  font-size: 17px;
  margin: 0;
  text-align: center;
}
.dep {
  font-size: 17px;
  line-height: 1;
  text-align: left;
  text-wrap: nowrap;
}
.desc_member {
  border-collapse: collapse;
  margin-top: 5px;
}
.desc_member th,
.desc_member td {
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.desc_member th{
  white-space: nowrap;
}
.info_detail {
  font-weight: 400;
}

@media (max-width: 950px) {
  .label{
    font-size: 22px;
    width: 95%;
  }
  
  .member_group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .content_member {
  display: flex;
    width: 430px;
    height: 230px;
    align-items: flex-start;
    border: 1px solid black;
    border-radius: 8px;
    padding: 5px;
    margin: auto;
    margin-bottom: 10px;
  }
  .pic_member {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pic_member img {
    width: 150px;
    height: auto;
    border-radius: 10%;
  }
  .info_member {
    margin-left: 10px;
  }
  .prof {
    margin-bottom: 5px;
  }
  .name {
    font-size: 25px;
    line-height: 1.2;
    text-align: left;
    vertical-align: top;
    width: 150px;
  }
  .ruby {
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    text-align: left;
  }
  .job {
    font-size: 17px;
    margin: 0;
    text-align: center;
  }
  .dep {
    font-size: 17px;
    line-height: 1;
    text-align: left;
  }
  .desc_member {
    border-collapse: collapse;
    margin-top: 5px;
  }
  .desc_member th,
  .desc_member td {
    text-align: left;
    vertical-align: top;
    font-size: 14px;
  }
  .desc_member th{
    white-space: nowrap;
  }
  .info_detail {
    font-weight: 400;
  }
}