@charset "utf-8";
/* CSS Document */
/*--------------------
 吹き出しを作る
--------------------*/
/* 全体のスタイル */
.kaiwa {
  margin-bottom: 25px;
}

/* 左画像 質問 */
.kaiwa-img-left {
  margin: 0;
  float: left;
  width: 100px;
  height: auto;
  margin-right: -100px;
}
/* 左画像 答え */
.kaiwa-img-left_a {
  margin: 0;
  float: left;
  width: 100px;
  height: auto;
  margin-right: -100px;
}
.kaiwa figure img {
  width: 100%;
  height: 100%;
  margin: -5px;
}
/* 画像の下のテキスト */
.kaiwa-img-description {
  padding: 15px;
  font-size: 12px;
  text-align: center;
  position: relative;
  bottom: 15px;
}
/* 左からの吹き出しテキスト */
.kaiwa-text-right {
  position: relative;
  margin-left: 120px;
  padding: 15px;
  border-radius: 10px;
  background-color: #9de385;
  margin-right: 5%;
  float: left;
}

/* 左からの吹き出しテキストblue */
.kaiwa-text-right-t {
  position: relative;
  margin-left: 120px;
  padding: 15px;
  border-radius: 10px;
  background-color: #e6f0f4;
  margin-right: 5%;
  float: left;
}

/* 左からの吹き出しテキストwhite */
.kaiwa-text-right-y {
  position: relative;
  margin-left: 120px;
  padding: 15px;
  border-radius: 10px;
  background-color: #f0e68c;
  margin-right: 5%;
  float: left;
}


p.kaiwa-text {
  margin: 5 0 20px;
}
p.kaiwa-text:last-child {
  margin-bottom: 0;
}
/* 左の三角形を作る */
.kaiwa-text-right:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  left: -30px;
}

.kaiwa-text-right:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #9de385;
  top: 15px;
  left: -19px;
}


/* 左の三角形を作るblue用 */
.kaiwa-text-right-t:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  left: -30px;
}

.kaiwa-text-right-t:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #e6f0f4;
  top: 15px;
  left: -19px;
}

/* 左の三角形を作るyellow用 */
.kaiwa-text-right-y:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  left: -30px;
}

.kaiwa-text-right-y:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #f0e68c;
  top: 15px;
  left: -19px;
}

/* 右の三角形を作る */
.kaiwa-text-left:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  right: -30px;
}
.kaiwa-text-left:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-left: 10px solid #9de385;
  top: 15px;
  right: -19px;
}

/* 右の三角形を作るblue用 */
.kaiwa-text-left-t:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  top: 15px;
  right: -30px;
}
.kaiwa-text-left-t:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-left: 10px solid #e6f0f4;
  top: 15px;
  right: -30px;
}


/* 回り込み解除 */
.kaiwa:after,.kaiwa:before {
  clear: both;
  content: "";
  display: block;
}

