/* Chat launcher icon */
.chat-launcher{
	display: none; /* チャットランチャーを非表示にする */
	position:fixed;
	bottom:16px;
	right:16px;
	z-index:9999;
	width:56px;
	height:56px;
	border-radius:50%;
	background:#2b7cff;
	color:#fff;
	box-shadow:0 6px 16px rgba(0,0,0,.24);
	/* display:flex; */
	align-items:center;
	justify-content:center;
	cursor:pointer;
	user-select:none;
}

.chat-launcher__icon{
	width:24px;
	height:24px;
	fill:currentColor;
}

.chat-launcher--hidden{display:none;}


