@charset "utf-8";
/* --- 自動生成されるインタラクティブ要素 --- */
/* JSによって自動でspanタグで囲まれた部分に適用されます */
.doctor-auto-link {
	display: inline-block;
	cursor: pointer;
	color: var(--color-secondary);
	font-weight: 500;
	padding: 2px 4px;
	border-radius: 5px;
	transition: background-color 0.15s ease-out;
	position: relative;
	text-decoration: underline;
}
.doctor-auto-link:hover {
	background-color: var(--color-secondary);
	color:#FFF;
}
/* --- バルーン（ツールチップ）スタイル --- */
#doctorBalloon {
	position: absolute;
	display: none;
	width: 300px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	border: 1px solid var(--color-border);
	overflow: hidden;
	pointer-events: none;
	transition: opacity 0.15s ease-in-out; 
	opacity: 0;
	will-change: transform, opacity; 
}
#doctorBalloon.show {
	display: block;
	opacity: 1;
}
/* バルーンの矢印 */
#doctorBalloon::after {
	content: '';
	position: absolute;
	top: -6px;
	left: 20px;
	width: 12px;
	height: 12px;
	background: white;
	transform: rotate(45deg);
	border-top: 1px solid #e2e8f0;
	border-left: 1px solid #e2e8f0;
}
/* バルーン内部レイアウト (Flexbox) */
.balloon-inner {
	display: flex;
	align-items: flex-start;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.balloon-img-wrapper {
	flex-shrink: 0;
	margin-right: 10px;
}
.balloon-avatar {
	width: 60px;
	height: 60px;
	border-radius: 9999px;
	object-fit: cover;
	/*
	border: 2px solid white;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	outline: 1px solid #f3f4f6;
	*/
}
.balloon-content {
	flex-grow: 1;
	min-width: 0; /* Flexbox内での文字折り返し用 */
}
.balloon-position {
	background-color: var(--color-accent);
	color:#fff;
	padding: 4px 10px 6px;
	border-radius: 3px;
	display:inline-block;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
.balloon-name {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 10px;
}
.balloon-desc {
	color: var(--color-text-gray);
	font-size: 1.2rem;
	line-height: 1.25;
}
.balloon-desc li{
	margin-bottom:5px;
	}
/* タグバッジ */
.balloon-tag-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.balloon-tag {
	padding: 2px 8px;
	background-color: var(--color-bg-light);
	color: var(--color-text-gray);
	font-size: 1.0rem;
	border-radius: 9999px;
	border: 1px solid var(--color-border);
}