/* balloon1 吹き出し本体 */
.balloon1{
  max-width:1024px;
  position: relative;
  padding: 8px;
  border-radius: 10px;
  color: #333030;
  background-color: #fff;
  margin-left: 120px;          /* 左に余白を設ける */
  margin-right: 5px;          /* 右に余白を設ける */
  box-shadow: 1px 1px 2px 2px #eee;

}
/* 画像 - 絶対配置で左上に配置 */
.balloon1 .icon{
  position: absolute;
  left: -130px;
  top: 10;
}

.balloon1::after {
	content: "";
	position: absolute;
	left: -15px;
	width: 14px;
	height: 14px;
	top: 20px;
	background: #fff;
	border: solid 2px #d5d5d5;
	border-radius: 50%;
}

.balloon1::before {
	content: "";
	position: absolute;
	left: -25px;
	width: 10px;
	height: 10px;
	top: 35px;
	background: #fff;
	border: solid 2px #d5d5d5;
	border-radius: 50%;
}


/* balloon2 吹き出し本体 */
.balloon2{
  max-width:1024px;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  color: #333030;
  background-color: #fff;
  margin-right: 100px;          /* 右に余白を設ける f4f4f4*/
  margin-left: 100px;          /* 左に余白を設ける */
  box-shadow: -1px 1px 2px 2px #eee;
}
/* 画像 - 絶対配置で右上に配置 */
.balloon2 .icon{
  position: absolute;
  right: -90px;
  top: 0;
op: 0;
}
/* 三角アイコン */
.balloon2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 20px;
  border-left: 15px solid #eee;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* balloon3 吹き出し本体 */
.balloon3{
  max-width:1024px;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  color: #333030;
  background-color: #fff;
  margin-left: 150px;          /* 左に余白を設ける */
  margin-right: 5px;          /* 右に余白を設ける */
  box-shadow: 1px 1px 2px 2px #eee;

}
/* 画像 - 絶対配置で左上に配置 */
.balloon3 .icon{
  position: absolute;
  left: -145px;
  top: 0;
}
/* 三角アイコン */
.balloon3::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #eee;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* balloon4 吹き出し本体 */
.balloon4{
  max-width:1024px;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  color: #333030;
  background-color: #fff;
  margin-right: 190px;          /* 右に余白を設ける f4f4f4*/
  margin-left: 1px;          /* 左に余白を設ける */
  box-shadow: -1px 1px 2px 2px #eee;
}
/* 画像 - 絶対配置で右上に配置 */
.balloon4 .icon{
  position: absolute;
  right: -190px;
  top: 0;
op: 0;
}
/* 三角アイコン */
.balloon4::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 120px;
  border-left: 15px solid #eee;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

