

/*
右向きの吹き出し
*/

.fukidasi01 {
position: relative;
background-color: #eee8aa;
padding: 10px;
text-align: center;
color: #333;
}
.fukidasi01::before {
content: "";
position: absolute;
border: 12px solid transparent;
border-left: 12px solid #eee8aa;
left: 100%;
top: 20%;
}
.fukidasi01 p {
margin: 0;
padding: 0;
}


/*
左向きの吹き出し
*/

.fukidasi02 {
position: relative;
background-color: #eee8aa;
padding: 10px;
text-align: center;
color: #333;
}
.fukidasi02::before {
content: "";
position: absolute;
border: 12px solid transparent;
border-right: 12px solid #eee8aa;
right: 100%;
top: 20%;
}
.fukidasi02 p {
margin: 0;
padding: 0;
}


.sankaku{
	width: 0;
	height: 0;
	border-top: 80px solid #f00;
	border-right: 80px solid #0f0;
	border-bottom: 80px solid #00f;
	border-left: 80px solid #000;
}

