@charset "UTF-8";
/* 追加CSS */

/* ===============================================
# Aiチャットボタン
=============================================== */

#open-chatbot {
  padding: 0;
  border: unset;
  background: unset;
  max-width: 270px;
  position: fixed;
  z-index: 10;
  bottom: 210px;
  right: clamp(16px, 4vw, 50px);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.25s ease;
}

#open-chatbot:hover {
  transform: translateY(-10px);
}

@media (max-width: 1023px) {
  #open-chatbot {
    bottom: 180px;
  }
}

@media (max-width: 767px) {
  #open-chatbot {
    bottom: 160px;
  }
}

@media (max-width: 425px) {
  #open-chatbot {
    max-width: 230px;
    bottom: 150px;
  }
}

#open-chatbot picture {
  display: block;
}

#open-chatbot picture img {
  width: 100%;
}

