.c-entry__content.p-entry-content {
  margin-top: 0 !important;
}

.researcher-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 639px) {
  .researcher-cards {
    gap: 60px;
  }
}
@media screen and (max-width: 639px) {
  .researcher-cards {
    gap: 80px;
  }
}

.researcher-card {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
@media screen and (max-width: 780px) {
  .researcher-card {
    gap: 40px;
  }
}
@media screen and (max-width: 639px) {
  .researcher-card {
    flex-direction: column;
    gap: 20px;
  }
}

.researcher-image-box {
  flex-basis: 360px;
  flex-shrink: 0;
}
@media screen and (max-width: 780px) {
  .researcher-image-box {
    flex-basis: 280px;
    flex-shrink: 1;
  }
}
@media screen and (max-width: 639px) {
  .researcher-image-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.researcher-image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.researcher-profile-text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 639px) {
  .researcher-profile-text-box {
    gap: 20px;
  }
}

.researcher-profile-gray-box {
  width: 100%;
  background-color: #f1f1f1;
  padding: 13px 16px;
  border-radius: 10px;
}

.researcher-profile-name {
  padding-bottom: 17px;
  margin-bottom: 4px;
  border-bottom: 1px solid #cbcbcb;
}

.researcher-profile-name-kanji {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 780px) {
  .researcher-profile-name-kanji {
    font-size: 20px;
  }
}
@media screen and (max-width: 639px) {
  .researcher-profile-name-kanji {
    font-size: 18px;
  }
}

.researcher-profile-name-furigana {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 639px) {
  .researcher-profile-name-furigana {
    font-size: 12px;
  }
}

.researcher-profile-post {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 639px) {
  .researcher-profile-post {
    font-size: 14px;
  }
}

.researcher-profile-field {
  width: 100%;
}

.researcher-profile-field-heading {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid #cbcbcb;
}
@media screen and (max-width: 780px) {
  .researcher-profile-field-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .researcher-profile-field-heading {
    font-size: 16px;
  }
}

.researcher-profile-field-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.researcher-profile-field-item {
  font-size: 16px;
  color: #333;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 639px) {
  .researcher-profile-field-item {
    font-size: 14px;
  }
}

.researcher-profile-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #999999;
  color: #333;
  padding: 16px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.researcher-profile-link-button:hover {
  opacity: 0.8;
}