@charset "UTF-8";


/****************************************************
 * 吹き出しデザイン
 ****************************************************/

.balloonUser {
	display: flex;
	align-items: flex-start;
	margin-bottom: 24px;
	background-color: #FFF;
	border-radius: 12px;
	padding: 16px;
	opacity: 0;
	transform: translateY(20px);
	animation: balloonFadeInUp 0.6s ease-out forwards;
}
@keyframes balloonFadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.balloonUser-icon {
	flex-shrink: 0;
	margin-right: 14px;
}
.balloonUser-icon img {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	border: 2px solid #CCC;
	background-color: #FFF;
}
.balloonUser-icon::after {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #555;
	text-align: center;
	content: "";
}
.balloonUser-review {
	position: relative;
	color: #333;
	background-color: #F2F2F2;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 15px;
	line-height: 1.7;
	max-width: 100%;
}
.balloonUser-review::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 16px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 10px solid #F2F2F2;
}
.balloonUser-review b {
	color: #595445;
}
@media (max-width: 480px) {
	.balloonUser {
		flex-direction: row;
		align-items: flex-start;
	}
	.balloonUser-review {
		font-size: 14px;
		line-height: 1.6;
	}
}




/****************************************************
 * 吹き出しデザイン｜アイコン部分
 ****************************************************/

/* 吹き出し｜リノの設定 */
.balloonAuthor .balloonUser-icon::after { content:"リノ"; color:#394154; font-weight:bold; }
.balloonAuthor .balloonUser-icon img { border: 2px solid #D18F73; }

/* 吹き出し｜さくら先生の設定 */
.balloonBeginner .balloonUser-icon::after { content:"さくら先生"; color:#B093F7; font-weight:bold; }
.balloonBeginner .balloonUser-icon img { border: 2px solid #BABCDA; }
.balloonBeginner .balloonUser-review { color:#5B514A; background-color: #FFF8F3; }
.balloonBeginner .balloonUser-review::before { border-right: 10px solid #FFF8F3; }
.balloonBeginner .balloonUser-review b { color: #E18CA5; }

