@charset "utf-8";

.heading.team-researcher {
  background-image: url("../img/team/heading_researcher.png");
  aspect-ratio: 1280 / 196;
}
.heading.team-office {
  background-image: url("../img/team/heading_office.png");
  aspect-ratio: 1280 / 196;
}
.heading.team-cooperation {
  background-image: url("../img/team/heading_cooperation.png");
  aspect-ratio: 1280 / 196;
}

.introduction-list {
  padding-bottom: 2rem;
}
.introduction-block {
  width: 96%;
  background-color: #ffffff;
  margin: 1rem auto 0;
  padding: 1rem;
  box-sizing:border-box;
  font-size: 14px;
  border-radius: 10px;

}
.introduction-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.introduction-pic {
  width: 60%;
  aspect-ratio: 1 / 1;
}
.introduction-name {
  text-align: center;
  padding-top: 1rem;
}
.introduction-name > p.name {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
}
.introduction {
  padding-top: 1.2rem;
}
.introduction-block-other,
.contact-box {
  width: 96%;
  background-color: #ffffff;
  margin: 1rem auto 0;
  padding: 1rem;
  box-sizing:border-box;
  border-radius: 10px;
  text-align: center;
}
.introduction-block-other {
  font-size: 14px;
}
.introduction-block-other span {
  font-weight: bold;
  font-size: 16px;
}
.contact-name {
  font-weight: bold;
}

/* tablet */
@media screen and (min-width:520px) {
  .introduction-profile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .introduction-pic {
    width: 30%;
    aspect-ratio: 1 / 1;
  }

  .introduction-name {
    width: 70%;
    text-align: left;
    padding: 0;
    padding-left: 2rem;
  }
}