@charset "UTF-8";

.team-photo {
  display: inline-block;
  width: 100%;
}

.team-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.team-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 1.25rem;
}

.team-info-left {
  width: 150px;
}

.map {
  width: 49%;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-right: 2%;
}

.map:nth-child(2n + 2) {
  margin-right: 0;
}

.staff_block {
  display: flex;
  margin-bottom: 10px;
}

.staff_block h3 {
  background-color: #d4dbff;
  padding: 5px 10px;
}

.staff_left {
  width: 25%;
}

.staff_right {
  width: 75%;
  padding: 0 10px;
}

.staff_right > div {
  padding: 10px 5px;
}

.staff_name {
  font-size: 1.5rem;
}

.team-info-content {
  margin: 10px 0;
  padding: 15px;
  border: 1px solid #a9a9a9;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .text-container {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 最初の3行 */
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
  }

  .text-container.expanded {
    -webkit-line-clamp: unset;
  }

  .more-btn {
    border-radius: 20px;
    width: 250px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    background-color: #575757;
    color: #fff;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 10px;
  }

  .map {
    width: 100%;
  }

  .staff_right {
    width: 100%;
    margin-bottom: 20px;
  }
}
