.profile-wrapper {
  background-color: #f7f7f7;
  padding: 15px 0 60px;
}

.profile-main__photo {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  border: 1px solid #000;
}

.profile-main__name {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

.profile-main__name-en {
  font-size: 1.2rem;
  text-align: center;
}

.profile-main__comment {
  font-size: 1.6rem;
  border-radius: 2px;
  background-color: #fff;
  padding: 15px 20px;
  position: relative;
  margin-top: 30px;
  -webkit-filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
}

.profile-main__comment::before {
  content: "";
  border-bottom: 15px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.profile-main__comment p {
  margin-bottom: 1em;
}

.profile-main__question {
  margin-bottom: 1em;
}

.profile-main.main-woman .profile-main__photo {
  border-color: #9932cc;
}

.profile-main.main-woman .profile-main__name-en,
.profile-main.main-woman .profile-main__question {
  color: #9932cc;
}

.profile-main.main-man .profile-main__photo {
  border-color: #9932cc;
}

.profile-main.main-man .profile-main__name-en,
.profile-main.main-man .profile-main__question {
  color: #9932cc;
}

.profile-detail-lists {
  font-size: 1.6rem;
  background-color: #fff;
}

.profile-detail-lists dt {
  color: #9932cc;
}

.profile-detail-lists dl:nth-child(odd) dt {
  background-color: rgba(79, 97, 216, 0.1);
}

.profile-detail-lists dl:nth-child(even) dt {
  background-color: rgba(79, 97, 216, 0.1);
}

.profile-link {
  width: 100%;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .profile-main {
    padding: 0 10px 20px;
  }
  .profile-detail-lists dt {
    padding: 10px;
  }
  .profile-detail-lists dd {
    padding: 20px 10px;
  }
  .profile-detail-program {
    margin-top: 30px;
    padding: 0 10px;
  }
  .profile-link {
    padding: 0 10px;
  }
}

@media only screen and (min-width: 768px) {
  .profile-wrapper {
    padding: 60px 0 100px;
  }
  .profile-wrapper__inner {
    max-width: 1155px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .profile-main {
    width: 27%;
  }
  .profile-detail {
    width: 66%;
  }
  .profile-detail-lists {
    display: table;
    width: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
  .profile-detail-lists dl {
    display: table-row;
  }
  .profile-detail-lists dt, .profile-detail-lists dd {
    display: table-cell;
    padding: 15px 20px;
  }
  .profile-detail-lists dt {
    white-space: nowrap;
    vertical-align: middle;
    border-bottom: 1px solid #fff;
    width: 20px;
  }
  .profile-detail-lists dd {
    border-bottom: 1px solid #e3e3e3;
  }
  .profile-detail-lists dl:first-child dt {
    border-top: 1px solid #fff;
  }
  .profile-detail-lists dl:first-child dd {
    border-top: 1px solid #e3e3e3;
  }
  .profile-detail-program {
    margin-top: 60px;
  }
  .profile-link {
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #ddd;
  }
}
