.soundBtn {
  background: #0087D5;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  cursor: pointer;
  border-radius: 50px;
}

#audioPlayer {
  display: none;
}

.sectionTitle {
  font-family: "Roboto", sans-serif;
  color: #0087D5;
  text-align: center;
}
.sectionTitle.green {
  color: #46C55C;
}

@media only screen and (max-width: 767px) {
  .sectionTitle {
    font-size: clamp(15px, 4.61vw, 18px);
  }
}
@media print, screen and (min-width: 768px) {
  .sectionTitle {
    font-size: clamp(14px, 1.53vw, 22px);
  }
}
.secTalkArea {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  overflow-y: scroll;
}
.secTalkArea .talkList {
  display: flex;
}
.secTalkArea .talkList .talkListIn {
  border: solid 1px #BCBCBC;
  padding: 12px;
  line-height: 160%;
  width: -moz-fit-content;
  width: fit-content;
}
.secTalkArea .talkList.question {
  justify-content: flex-end;
}
.secTalkArea .talkList.question .talkListIn {
  background-color: #EEF9FF;
  border-radius: 32px 32px 0 32px;
  margin-left: 32px;
}
.secTalkArea .talkList.answer {
  justify-content: flex-start;
}
.secTalkArea .talkList.answer .talkListIn {
  background-color: #ffeeee;
  border-radius: 32px 32px 32px 0;
  margin-right: 32px;
}

@media print, screen and (min-width: 768px) {
  .secTalkArea {
    margin: 20px 0 0 0;
    padding: 0px 20px 16px 0;
    height: calc(100vh - 80px - 100px - 100px);
  }
}
.secFormArea {
  border-top: solid 1px #BCBCBC;
}
.secFormArea .formAreaIn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.secFormArea textarea {
  width: calc(100% - 120px);
  background: #ffffff;
  border-radius: 16px;
  border: solid 1px #BCBCBC;
  padding: 8px;
  font-size: 16px;
}
.secFormArea .btnSubmit {
  width: 100px;
  background: #0087D5;
  color: #ffffff;
  text-align: center;
  padding: 8px;
  border-radius: 40px;
  cursor: pointer;
}

@media print, screen and (min-width: 768px) {
  .secFormArea {
    height: 80px;
    padding: 16px 0;
  }
}/*# sourceMappingURL=style.css.map */