.txtarea {
    display: flex;
}
.child {
    flex: 1;
}
.child + .child {
    margin-left: 20px; /* 文字と画像の間のマージン */
}
.child img {
    max-width: 100%;
    height: auto;
    display: block;
}
.qualifications {
  display: flex;
  flex-direction: column;
  gap: 6px; /* 各行の余白 */
  font-size: 16px;
}

.qualifications .item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 3px;
  max-width: 400px; /* お好みで調整 */
}
