 /* 吹き出し本体 */
.balloon { 
		width:auto;margin-bottom:16px;
		position: relative;
		padding: 10px;
		background-color: #f5f5f5; /*#bdffad;*/
		border-radius: 10px;
		box-shadow: 6px 6px 0px 0px #c0c0c0;   /*#318c30; */     /* 吹き出し本体の影 */
     }

/* 三角アイコン */
.balloon::before {
		content: '';
		position: absolute;
		display: block;
		width: 0;
		height: 0;
		left: 27px;
		bottom: -18px;
		border-top: 16px solid #c0c0c0; /*#318c30;*/
		border-right: 16px solid transparent;
		border-left: 16px solid transparent;
     }

/* 三角アイコンの影 */
.balloon::after {
		content: '';
		position: absolute;
		display: block;
		width: 0;
		height: 0;
		left: 20px;
		bottom: -15px;
		border-top: 16px solid #f5f5f5; /*#bdffad;*/
		border-right: 16px solid transparent;
		border-left: 16px solid transparent;
     }

