/* SAIMON CHAT */

#saimon-chat{
 position:fixed;
 bottom:30px;
 right:30px;
 z-index:9999;
}

/* ボタン */

#saimon-chat-button{
 width:60px;
 height:60px;
 border-radius:50%;
 background:#111;
 color:#fff;
 border:none;
 font-size:24px;
 cursor:pointer;
 box-shadow:0 6px 20px rgba(0,0,0,.3);
 transition:.3s;
}

#saimon-chat-button:hover{
 transform:scale(1.1);
}

/* ウィンドウ */

#saimon-chat-window{
 width:380px;
 height:520px;
 background:#fff;
 border-radius:12px;
 box-shadow:0 10px 40px rgba(0,0,0,.25);
 overflow:hidden;
 display:none;
 flex-direction:column;
}

/* ヘッダー */

.saimon-chat-header{
 background:#111;
 color:#fff;
 padding:14px;
 font-size:14px;
 font-weight:bold;
 display:flex;
 justify-content:space-between;
}

/* iframe */

#saimon-chat-window iframe{
 width:100%;
 height:100%;
 border:none;
}

/* 閉じる */

#saimon-close{
 cursor:pointer;
}