/* 営業時間外メッセージのスタイル */
.chatbot-closed-banner {
	position: fixed;
	bottom: 24px;
	right: 12px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px 24px;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
	max-width: 320px;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	animation: slideInUp 0.5s ease-out;
	backdrop-filter: blur(10px);
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.chatbot-closed-banner .icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
	text-align: center;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.chatbot-closed-banner .title {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 8px;
	text-align: center;
	letter-spacing: 0.3px;
}

.chatbot-closed-banner .message {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.95;
	text-align: center;
}

.chatbot-closed-banner .time {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 12px 0 8px;
	text-align: center;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px;
	border-radius: 8px;
	letter-spacing: 1px;
}

.chatbot-closed-banner .note {
	font-size: 0.75rem;
	opacity: 0.8;
	margin-top: 12px;
	text-align: center;
	line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
	.chatbot-closed-banner {
		bottom: 16px;
		right: 16px;
		left: 16px;
		max-width: none;
		padding: 18px 20px;
	}
}