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

  #triggerImage {
    background-image: url(/images/iframe/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 : -webkit-calc(100vh - 285px) ;
    height : calc(100vh - 285px) ;
    position: relative;
				background: #FFF;
  }
		

  .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;
				text-align: center;
    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;
  }

}
@media screen and (min-width: 834px) {
.scrolled-down .chatbot-container {
		height : -webkit-calc(100vh - 165px) ;
		height : calc(100vh - 165px) ;
}
}
