/* 会話コンテナのスタイル */
.conversation-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px 20px;
}

/* 会話アイテムの基本スタイル */
.conversation-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 24px;
	gap: 12px;
	width: 100%;
}

/* 父親の会話は左寄せ */
.conversation-item.father {
	justify-content: flex-start;
}

/* 息子の会話は右寄せ */
.conversation-item.son {
	justify-content: flex-end;
}

/* 話者ラベル */
.speaker-label {
	font-size: 16px;
	font-weight: bold;
	color: #666;
	padding: 8px 12px;
	background: #f5f5f5;
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
	align-self: flex-start;
	margin-top: -4px;
	order: 1;
}

.conversation-item.father .speaker-label {
	background: #ffe8d6;
	color: #d97634;
	order: 1;
}

.conversation-item.son .speaker-label {
	background: #d6e8ff;
	color: #3476d9;
	order: 2;
}

/* 吹き出しスタイル */
.speech-bubble {
	position: relative;
	padding: 16px 20px;
	border-radius: 18px;
	max-width: 600px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	order: 2;
}

.conversation-item.father .speech-bubble {
	background: #fff5ed;
	border: 2px solid #ffd4b3;
	order: 2;
}

.conversation-item.son .speech-bubble {
	background: #edf5ff;
	border: 2px solid #b3d4ff;
	order: 1;
}

/* 吹き出しの三角形 */
.speech-bubble::before {
	content: '';
	position: absolute;
	top: 12px;
	width: 0;
	height: 0;
	border-style: solid;
}

.conversation-item.father .speech-bubble::before {
	left: -10px;
	border-width: 8px 10px 8px 0;
	border-color: transparent #ffd4b3 transparent transparent;
}

.conversation-item.son .speech-bubble::before {
	right: -10px;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent #b3d4ff;
}

/* テキストスタイル */
.speech-bubble p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

/* シンプルなテキストセクション */
.simple-text-container {
	max-width: 800px;
	margin: 40px auto 60px;
	padding: 20px;
	text-align: center;
}

.simple-text-container p {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif !important;
	font-size: 22px;
	line-height: 2;
	color: #666;
	margin: 0 0 10px 0;
}

.simple-text-container .bold-line {
	font-weight: bold;
	font-size: 24px;
}

.simple-text-container .highlight-red {
	color: #e74c3c;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.conversation-container {
		padding: 20px 10px 10px;
	}
	
	.speech-bubble {
		max-width: calc(100% - 80px);
		padding: 14px 16px;
	}
	
	.speech-bubble p {
		font-size: 14px;
	}
	
	.speaker-label {
		font-size: 14px;
		padding: 6px 10px;
	}
	
	.simple-text-container {
		padding: 15px;
		margin: 30px auto 40px;
	}
	
	.simple-text-container p {
		font-size: 18px;
	}
	
	.simple-text-container .bold-line {
		font-size: 20px;
	}
}
