/*20260615タブ形式のチャットウィンドウボタン*/
.my-chatbox-show-btn-area {
	position: fixed;
	right: -12px;
	bottom: 80px;
	width: auto;
	height: auto;
	cursor: pointer;
	z-index: 9999;
}
.my-chat-trigger-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	border-radius: 8px 0 0 8px;
	padding: 14px 10px 10px 0;

	box-shadow: -2px 2px 8px rgba(0,0,0,0.25);
	width: 56px;
	box-sizing: border-box;
	transition: transform 0.25s ease;
}
.my-chatbox-show-btn-area:hover .my-chat-trigger-btn {
	transform: translateX(-12px);
}
.my-chat-trigger-btn .btn-text {
	writing-mode: vertical-rl;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.3;
	margin-bottom: 10px;
	white-space: nowrap;
}
.my-chat-trigger-btn .btn-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}
.my-chat-trigger-btn .btn-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
/*タブ形式のチャットウィンドウボタンここまで*/



.my-chatbox-area {
	display:none;

	/*高さは iframe_chat/js/my_function.jsで自動設定*/
	/*height: 660px;*//*PC用*/
	/*height: 550px;*//*SP用*/

	max-height:90%;
	width: 400px;
	max-width: 100%;
	overflow: hidden;
	border: 0;
	border-radius: 10px;
	background: none;

	box-shadow: 0 0 8px gray;
}

@media screen and (min-width:641px){
	.my-chatbox-area-position {
		position: fixed;
		bottom: 50px;
		left: auto;
		right: 50px;
		z-index: 20000;
	}
}
@media screen and (max-width:640px){
	.my-chatbox-area-position {
		position: fixed;
		top: 0;
		right: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 5px;
		background: #555;
		transform: translateX(100vw);
		transition: all .3s linear;
		z-index: 20000;
	}

}
.my-chatbox-header {
	height: 76px;
	color:white;
	border-radius: 10px 10px 0 0;
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 20px;
	padding-right: 10px;
	font-size:initial;
}

.my-chatbox-iframe {

	/*高さは iframe_chat/js/my_function.jsで自動設定*/
	/*height: 600px;*//*PC用*/
	/*height: 474px;*//*SP用*/

	width: 400px;
	max-width: 100%;
}

.my-chatbox-hide-btn {
	cursor: pointer;
}
