@charset "utf-8";

#conversation {
  overflow: hidden;
  margin: 1.5%;
}

#conversation p {
  display: block;
  margin: 10px 10px 20px 0;
  padding: 15px 15px 0 15px;
  border-radius: 10px;
  min-width: 40%;
}

#conversation .ch {
  font-size: 26px;
}

#conversation .pn {
  font-size: 16px;
  line-height: normal;
  color: #7E7E7E;
}

/* right */
#conversation p:nth-child(2n) {
  float: right;
  clear: left;
  background-color: #F4F8F9;
  border: 1px solid #DFF1F5;
  margin-left: 50px;
}

/* left */
#conversation p:nth-child(2n +1) {
  float: left;
  clear: right;
  background-color: #F5F9E9;
  border: 1px solid #D7F0C0;
  margin-right: 50px;
}

.conversationTaleRight {
  position: relative;
  top: 21px;
  float: right;
}

.conversationTaleLeft {
  position: relative;
  top: 21px;
  float: left;
}