/*——————–
 吹き出しを作る
——————–*/
/* 全体のスタイル */
.kaiwa {
  margin-bottom: 25px;
}
/* 左画像 */
.kaiwa-img-left {
  margin: 0;
  float: left;
  width: 60px;
  height: 60px;
  margin-right: -70px;
}
/* 右画像 */
.kaiwa-img-right {
  margin: 0;
  float: right;
  width: 60px;
  height: 60px;
  margin-left: -70px;
}
.kaiwa figure img {
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
  border-radius: 50%;
  margin: 0;
}
/* 画像の下のテキスト */
.kaiwa-img-description {
  padding: 20px 0 0;
  font-size: 10px;
  text-align: center;
  position: relative;
  bottom: 15px;
}
/* 左からの吹き出しテキスト */
.kaiwa-text-right {
  position: relative;
  margin-left: 80px;
  padding: 10px;
  border-radius: 10px;
  background: #eee;
  margin-right: 12%;
  float: left;
}
/* 右からの吹き出しテキスト */
.kaiwa-text-left {
  position: relative;
  margin-right: 0px;
  padding: 10px;
  border-radius: 10px;
  background-color: #dde7c1;
  margin-left: 12%;
  float: right;
}
p.kaiwa-text {
  margin: 0 0 20px;
}
p.kaiwa-text:last-child {
  margin-bottom: 0;
}
/* 左の三角形を作る */
.kaiwa-text-right:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  left: -20px;
}
.kaiwa-text-right:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #eee;
  top: 15px;
  left: -19px;
}
/* 右の三角形を作る */
.kaiwa-text-left:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  right: -20px;
}
.kaiwa-text-left:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-left: 10px solid #dde7c1;
  top: 15px;
  right: -19px;
}
/* 回り込み解除 */
.kaiwa:after,.kaiwa:before {
  clear: both;
  content: "";
  display: block;
}
.user_check{
    display: none;
    position: relative;
    margin-left: -40px;
    margin-top: -15px;
    font-size: 8pt;
    color: #565656;
    width: 50px;
}
.read{
    display:block !important;
}

/** メッセージ **/
.message-display{
    height:400px;
    width:100%;
    background: linear-gradient(-45deg, #b0c4de, #e6e6fa);
    overflow-y: scroll;
}

.message-article-header{
    background-color:#466;
    color:#fff;
    height:50px;
    padding:13px;
}
.message-article-header select{
    color:#333;
}
.message-content {
    padding:20px;
}
.message-ul {
  padding: 0;
  overflow-y: scroll;
  border: 1px solid #ccc
}
.message-ul2 {
  padding: 0;
  overflow-y: none;
  border: 1px solid #ccc
}
.message-li {
  list-style: none!important;
  padding: 4px
}

.message-li:nth-child(even) {
  background: #fff;
}

.message-li:nth-child(odd) {
  background: #eee;
}

#message-editor{
    width:100%;
    height:400px;
}

.lineArea{
    float:left;
    margin:0px 0px 0px 15px;
    font-size:10pt;
}
.online{
    color:green;
    font-weight:bold;
}
.offline{
    color:brown;
    font-weight:bold;
}