   /* ChatBot Trigger Button Style */
   .chatbot-trigger {
      position: fixed;
      bottom: 40px;
      right: 20px;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1001;
   }

   /* ChatBot Container Style */
   .chatbot-container {
      display: none;
      /* 初期状態では非表示 */
      position: fixed;
      bottom: 40px;
      right: 20px;
      width: 300px;
      background-color: #f1f1f1;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px;
      z-index: 1000;
   }

   .chatbot-messages {
      font-size: 12px;
      height: 200px;
      overflow-y: auto;
      margin-bottom: 10px;
      margin-right: 20px;
      background-color: white;
      border: 1px solid #ddd;
      padding: 5px;
   }

   .chatbot-input,
   .chatbot-button {
      font-size: 12px;
      width: calc(100% - 22px);
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
   }

   .chatbot-button {
      background-color: #007bff;
      color: white;
      cursor: pointer;
   }

   .chatbot-button:hover {
      background-color: #0056b3;
   }

   .chatbot-close-button {
      position: absolute;
      top: 5px;
      right: 10px;
      cursor: pointer;
      font-size: 20px;
   }

   .chat-message {
      padding: 10px;
      margin-bottom: 5px;
      border-radius: 10px;
      max-width: 80%;
   }

   .chat-message.user {
      background-color: #f0f0f0;
      margin-left: auto;
      margin-right: 10px;
   }

   .chat-message.reply {
      background-color: #e0e0ff;
      margin-left: 10px;
   }

   .chatbot-trigger {
      cursor: pointer;
      width: 60px;
      /* アイコンのサイズに合わせて調整 */
      height: 60px;
      /* アイコンのサイズに合わせて調整 */
      border-radius: 30px;
      /* 円形にするための設定 */
      background-color: #f0f0f0;
      /* 背景色 */
      display: flex;
      justify-content: center;
      align-items: center;
   }

   #loading {
      display: flex;
      justify-content: center;
      align-items: center;
   }

   .dot {
      animation: blink 1.4s infinite both;
      font-size: 2rem;
   }

   .dot:nth-child(2) {
      animation-delay: 0.2s;
   }

   .dot:nth-child(3) {
      animation-delay: 0.4s;
   }

   .chatbot-container {
      position: fixed;
      right: 20px;
      bottom: 20px;
      cursor: pointer;
  }

  .chatbot-icon {
      width: 50px; /* アイコンのサイズを調整 */
  }

  .chatbot-message {
     font-size: 12px;
     position: fixed;
     right: 60px;
     /* 吹き出しの位置を調整 */
     bottom: 90px;
     margin-bottom: 10px;
     background-color: #f9f9f9;
     border: 1px solid #ccc;
     border-radius: 5px;
     padding: 10px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
  }

  .chatbot-message button {
      border: none;
      background-color: transparent;
      cursor: pointer;
      font-weight: bold;
  }


   @keyframes blink {

      0%,
      80%,
      100% {
         opacity: 0;
      }

      40% {
         opacity: 1;
      }
   }
