/* ------------------------------------------
    チャットボットのアイコンとウィンドウのデザイン
------------------------------------------ */
#chatbot-toggle_button {
  border-radius: 15px !important;
}
#chatbot-toggle_button img {
  border-radius: 15px !important;
}
#chatbot-toggle_button a:hover {
  opacity: 1 !important;
  filter: brightness(1.5) !important;
  transition: filter 0.3s ease !important;
}
#chatbot-header {
  background: #008080 !important;
  align-items: center;
}
#chatbot-close-icon:active {
  background: none !important;
}
#chatbot-close-icon {
  height: auto !important;
}

@media (max-width: 767px) {
  #chatbot {
    z-index: 100 !important;
  }
  #chatbot-toggle_button {
    z-index: 100 !important;
  }
}





/* ------------------------------------------
    ChatBot-Content-Area エリア全体のデザイン
------------------------------------------ */
#ChatBot-Content-Area.ChatBot-Banner-Container {
  background-color: #ECF9F9;
  width: 100%;
  max-width: 890px;
  margin: 100px auto 0;
  padding: 40px 0;
}

.ChatBot-Banner-Inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}


/* --- チャット起動ボタンのデザイン --- */
.ChatBot-Banner-Button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* アイコンと文字の間隔 */
  width: 100%;
  max-width: 300px; /* ボタンの横幅 */
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #008080;
  border: none;
  cursor: pointer;
}

.ChatBot-Banner-Button:hover {
  opacity: 0.5;
}

.ChatBot-Banner-Text {
  color: #404040;
  margin: 0;
  font-size: 16px;
}


/* --- スマホ表示用（画面幅が狭い場合は縦に並べる） --- */
@media (max-width: 767px) {
  #ChatBot-Content-Area.ChatBot-Banner-Container {
    margin: 50px auto 0;
    padding: 32px 0;
  }
}