.content-box-green {
  background: linear-gradient(to bottom, #ffffff 0%, #e2ffd7 3%, #e2ffd7 97%, #ffffff 100%);
  padding: 40px 8vw 32px 8vw;
  margin-bottom: 40px;
}

.section-content {
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.doctor-image img {
  max-width: 220px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0001;
  display: block;
  margin: 0 auto;
  margin-bottom: 1em;
}

.doctor-text {
  flex: 2;
  min-width: 240px;
  max-width: 70vw;
  margin: 0 auto;
}

/* 経歴 */
.history {
  max-width: 70vw;
  margin: 0 auto;
}

.history dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: flex-start;
  /* dtとddのテキストを上揃えにする */
}

.history dt {
  width: 30%;
  font-size: 14px;
  color: #47ac4f;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history dl dt {
  width: 30%;
  padding-top: 20px;
  margin: 8px 10px 15px 0;
  border-top: 1px solid #f2e5e5;
}

.history dl dd {
  border-top: 1px solid #f2e5e5;
}

.history dd {
  width: 60%;
  padding-top: 20px;
  font-size: 14px;
  margin: 8px 0 15px;
  color: #555;
}

.history-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
}


/* 資格・所属学会 */
.license ul {
  list-style: none;
  width: 70%;
}

.license li {
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2e5e5;
  line-height: 1.7;
  font-size: 14px;
  color: #555;
}

.license li:before {
  content: "・";
  color: #8ad1ed;
}

.license li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}