#chatbot-header
{
	align-items: center !important;
}

#chatbot-toggle_button
{
	visibility: hidden !important;
}

#chatbot
{
	width: 60% !important;
}

#chatbot-close-icon
{
	height: unset !important;
}
#chatbot-close-icon:hover
{
	opacity: 0.7 !important;
}

@media screen and (max-width: 700px) {
	#chatbot {
		width: 90% !important;
		height: 90% !important;
		left: 50%;
		transform: translateX(-50%);
	}

	#chatbot-body
	{
		height: calc(100% - 45px) !important;
	}
}



.anime-box
{
	animation: fuwa 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes poyon
{
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
	30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
	50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
	70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes fuwa
{
	0% {
		transform: translateY(-10%);
	}
	100% {
		transform: translateY(10%);
	}
}
.anime-box-close
{
	animation: close 0.8s ease-in-out;
	transform-origin: top right;
	animation-fill-mode: forwards;
}
@keyframes close
{
	0% {
		transform: rotate(0deg) scale(1) translateY(0);
	}
	100% {
		transform: rotate(90deg) scale(0.7) translateY(-150px);
	}
}

.anime-box-small-open
{
	animation: s-open 1s ease-in-out;
	transform-origin: top right;
	animation-fill-mode: forwards;
}
@keyframes s-open
{
	0% {
		transform: translateX(100px);
	}
	100% {
		transform: translateX(0);
	}
}

#ai-chat-container {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 9999;
	display: flex;
	align-items: center;
	flex-direction: row;
}
.batsu {
	position: absolute;
	top: -10px;
	right: -8px;
	z-index: 10000;
	font-size: 34px;
	color: #999;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: normal;
	cursor: pointer;
	transition: .2s;
	background: #ffffff;
	border: solid 3px;
	border-color: #999;
}
.batsu label {
    position: relative;
    top: 0px;
    left: 0px;
    cursor: pointer;
}
.batsu:hover {
    background: #444;
    color: #fff;
}
#ai-chat-button
{
	margin: 0;
	padding: 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	order: 1;
	position: relative;
	cursor: pointer;
	background-image: unset !important;
	background: url(/common/chatbot/bnr-aichat_emailsetting.png) !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	width: 278px !important;
}
#ai-chat-button:hover > img,
#ai-chat-button > img.hover
{
	display: none;
}
#ai-chat-button:hover > img.hover
{
	display: block;
}

#ai-chat-container-small {
	position: fixed;
	bottom: 25px;
	right: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	flex-direction: row;
	display: none;
}
#ai-chat-container-small:hover {
	opacity: 0.7;
	cursor: pointer;
}
#ai-chat-container-small img {
	height: 180px;
}
