﻿@charset "utf-8";
.balloon-set-box	{
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0;
	}
.balloon-set-box.left	{ /* 左 */
	flex-direction: row;
	}
.balloon-set-box.right	{ /* 右 */
	flex-direction: row-reverse; /* アイコンと吹き出しの並びを入れ替える */
	}
.balloon	{
	position: relative;/* 三角の位置を固定するために設定 */
	display: inline-block;
	max-width: 600px;
	height:auto;
	margin: 10px 20px 20px; /* 上・左右・下のマージン */
	padding: 15px 22px; /* 吹き出し内の余白 */
	background: #CFFAD6; /* 背景色 */
	text-align: left; /* テキストの揃え */
	border-radius: 15px;
	}
.balloon:after	{
	content: '';
	border: 22px solid transparent;
	border-top-color: #CFFAD6;
	position: absolute;
	top: 18px;
	}
.left .balloon:after	{ /* 左側からの三角の位置 */
	left:-20px;
	}
.right .balloon:after	{ /* 右側からの三角の位置 */
	right:-20px;
	}
.icon-box	{
	width: 50px;
	height: 50px;
	border-radius: 50px;
	border: 2px solod #FFF;
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
	overflow: hidden;
	}
