@scope (.sp_none .chatbot-fixed-container) {
  :scope {
    position: fixed;
    bottom: 10px; /* アイコンの下からの表示位置を指定*/
    right: 80px; /* アイコンの右からの表示位置を指定*/
    z-index: 1000;
    text-align: right;
  }

  #triggerImage {
    background-image: url(../images/image.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .trigger-image {
    cursor: pointer;
    width: 192px; /* アイコンの幅を変更*/
    height: 64px; /* アイコンの高さを変更*/
    margin-left: auto;
  }

  .chatbot-container {
    display: none;
    width: 400px; /* チャットボットの幅を変更*/
    height: 600px; /* チャットボットの高さを変更*/
    position: relative;
  }

  .chatbot-header {
    border-radius: 10px 10px 0 0%;
    position: absolute;
    top: -40px;
    left: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 40px;
    background-color: #0277BD; 
  }

  .close-button {
    margin-top: 10px;
    margin-right: 20px;
    width: 148px;
    height: 24px;
    font-size: 12px;
    color: white;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .chatbot-content {
    border-radius: 0 0% 10px 10px;
    width: 100%;
    height: 100%;
    border: none;
  }

}
