.member-wrap {
  max-width: 1280px;
  width: 89%;
  display: flex;
  margin: 150px auto;
  justify-content: space-between;
}

.member-ttl {
  position: relative;
  line-height: 1;
}

.member-ttl h2 {
  font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
  color: #333333;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.member-ttl p {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.member-ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  left: -25px;
  top: -8px;
  background-color: #03BFB5;
  border-radius: 50%;
}

.member-list {
  width: 66%;
  max-width: 745px;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.member-item {
  width: 100%;
}

.member-item-image img{
  width: 100%;
  height: auto;
}

.member-item-postion {
  margin: 38px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.member-item-name {
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
}

.member-item-name-en {
  font-size: 18px;
  margin-left: 15px;
}

.member-item-border {
  width: 100%;
  height: 1px;
  background-color: #707070;
  margin: 37px 0 30px 0;
}

.member-item-desc {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .member-wrap {
    max-width: 1280px;
    width: 89%;
    display: block;
    margin: 60px auto;
    justify-content: space-between;
  }

  .member-ttl {
    width: fit-content;
    margin: auto;
    position: relative;
  }

  .member-ttl h2 {
    font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
    color: #333333;
    font-weight: 500;
    margin: 0 0 3px 0;
  }

  .member-ttl p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: center;
  }

  .member-list {
    width: auto;
    margin-top: 49px;
    max-width: 745px;
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .member-item-postion {
    margin: 22px 0 0 0;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
  }

  .member-item-name {
    margin: 10px 0 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
  }

  .member-item-name-en {
    font-size: 14px;
    margin-left: 15px;
  }

  .member-item-border {
    width: 100%;
    height: 1px;
    background-color: #707070;
    margin: 24px 0 20px 0;
  }

  .member-item-desc {
    
    font-size: 16px;
    font-weight: 300;
  }

  .member-item:nth-of-type(2) {
    width: 100%;
    margin-bottom: 60px;
  }
}