#qa-section{
  margin-bottom: 30px;
}

.question-answer{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  --qa-width: 11px;
}

.qa-title{
  font-size: 15pt;
  font-weight: bold;
  margin-bottom: 30px;
}

.qa-container{
  background: var(--comment-color);
  box-sizing: border-box;
  width: 100%;
  max-width: 327px;
  border-radius: 5px;
  padding: 40px 30px 0 ;
  margin-bottom: 10px;
  position: relative;
}

.qa{
  padding-bottom: 15px;
}

.qa-title-img{
  width: 104px;
  position: absolute;
  top: -20px;
  left: 110px;
}

.qa-title-img img{
  width: 100%;
}

.qa-line{
  display: flex;
  padding-bottom: 15px;
}

.question{
  display:flex;
}

.qa-img{
  padding-top: 3px;
  padding-right: 5px;
  width: var(--qa-width);
  height: auto;
}

.qa-img img{
  width: 100%;
}

.qa-text{
  width: calc(100% - var(--qa-width));
  font-size: 12pt;
}

.question-text{
  font-weight: bold;
}