@charset "UTF-8";
.question {
  position: relative;
  font-size: 16px;
  padding-left: 56px;
  margin-bottom: 32px;
}
.question::before {
  content: 'Q';
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 36px;
  background-color: #ffc93b;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -5px;
  left: 0;
}
.answer {
  position: relative;
  font-size: 16px;
  padding-left: 56px;
}
.answer::before {
  content: 'A';
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 36px;
    color: #fff;
  background-color: #006eb9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -5px;
  left: 0;
}
.text-box {
    display: inline-block;
    width: 622px;
}

@media screen and (max-width: 767px) {
.question {
  position: relative;
  font-size: 14px;
  padding-left: 42px;
  margin-bottom: 24px;
}
.question::before {
  content: 'Q';
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  background-color: #ffc93b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: 0;
}
.answer {
  position: relative;
  font-size: 14px;
  padding-left: 42px;
}
.answer::before {
  content: 'A';
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
    color: #fff;
  background-color: #006eb9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: 0;
}
.text-box {
    display: block;
    width: 100%;
}
}
@media screen and (min-width: 768px) {}