/* ****************************************************************************
 * [システム]       シナリオレス型ＡＩチャットボット
 * [パッケージ]     bot/css
 * [プログラム名]   bot.css
 * [説明]           Bot用CSSファイル
 * ****************************************************************************/
/* ****************************************************************************
 * 履歴		日時		氏名		内容
 * 3.1		2021/11/01	川村		初期作成
 * ****************************************************************************/

 @charset "utf-8";

.chatbot {
    position: fixed;
    right:50px;
    bottom: 30px;
    opacity: 0.8;
    transition-duration: 0.3s;
  }

  .chatbot.mobile {
    position: fixed;
    right:-30px;
    bottom: -15px;
    opacity: 0.8;
    transition-duration: 0.3s;
  }
  
  .chatbot:hover {
    transform: scale(1.1);
    opacity: 1;
    transition-duration: 0.3s;
  }

  .botDelete{
    position: fixed;
    right:80px;
    bottom: 145px;
  }

  .botDelete.mobile{
    position: fixed;
    right:10px;
    bottom: 110px;
  }

  #botDelete_btn{
    width: 20px;
  }
