
.my-chatbox-show-btn-area {
	z-index: 10;
	position: fixed;
	bottom: 30px;
	left: auto;
	right: 30px;
	cursor: pointer;
}
.my-chatbox-show-btn-area img {
	width: 100px;
}
.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:640px){
	.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;
	background-color: #85bd40;
	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;
}
