/* ==========================================================================
   [kc] カイブツくん吹き出し
   - kaibutsu.life 用
   - カイブツブランドカラー: ピンク #ec1a8a / 黒 #111 / 白 #fff
   ========================================================================== */

.kchat {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 1.6em 0;
	font-size: 0.95rem;
	line-height: 1.7;
}

/* 右向き: 並びを反転 */
.kchat--r {
	flex-direction: row-reverse;
}

/* --- アイコン部分 --- */
.kchat__icon {
	flex: 0 0 auto;
	width: 80px;
	margin: 0;
	text-align: center;
}

.kchat__icon img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #111;
	box-shadow: 2px 2px 0 #111;
	padding: 4px;
	display: block;
	margin: 0 auto;
}

.kchat__name {
	margin-top: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #111;
	letter-spacing: 0.04em;
}

/* --- 吹き出し本体 --- */
.kchat__bubble {
	position: relative;
	flex: 1 1 auto;
	background: #fff;
	border: 2px solid #111;
	border-radius: 14px;
	padding: 14px 18px;
	color: #111;
	box-shadow: 3px 3px 0 #111;
	min-height: 60px;
	word-break: break-word;
}

.kchat__bubble > *:first-child { margin-top: 0; }
.kchat__bubble > *:last-child  { margin-bottom: 0; }

/* --- 吹き出しのしっぽ（左向き：左から生える） --- */
.kchat--l .kchat__bubble::before,
.kchat--l .kchat__bubble::after {
	content: "";
	position: absolute;
	top: 24px;
	width: 0;
	height: 0;
	border-style: solid;
}

.kchat--l .kchat__bubble::before {
	left: -14px;
	border-width: 8px 14px 8px 0;
	border-color: transparent #111 transparent transparent;
}

.kchat--l .kchat__bubble::after {
	left: -10px;
	border-width: 7px 12px 7px 0;
	border-color: transparent #fff transparent transparent;
}

/* --- 吹き出しのしっぽ（右向き：右から生える） --- */
.kchat--r .kchat__bubble::before,
.kchat--r .kchat__bubble::after {
	content: "";
	position: absolute;
	top: 24px;
	width: 0;
	height: 0;
	border-style: solid;
}

.kchat--r .kchat__bubble::before {
	right: -14px;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent #111;
}

.kchat--r .kchat__bubble::after {
	right: -10px;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent #fff;
}

/* --- 表情ごとの装飾（任意で発展可） --- */
/* face-2 = arms spread (welcoming) → 吹き出し背景うっすらピンク */
.kchat--face-2 .kchat__bubble {
	background: #fff5fa;
}

/* face-3 = magnifying glass (investigate) → 角丸を強める */
.kchat--face-3 .kchat__bubble {
	border-radius: 18px;
}

/* --- スマホ対応 --- */
@media (max-width: 600px) {
	.kchat {
		gap: 10px;
		font-size: 0.92rem;
	}
	.kchat__icon,
	.kchat__icon img {
		width: 60px;
		height: 60px;
	}
	.kchat__bubble {
		padding: 11px 14px;
	}
	.kchat--l .kchat__bubble::before,
	.kchat--r .kchat__bubble::before { top: 18px; }
	.kchat--l .kchat__bubble::after,
	.kchat--r .kchat__bubble::after  { top: 19px; }
}
