#chatbot {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    box-sizing: border-box;
    background: #FFF;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
    /*    overflow-y: scroll;*/
    -webkit-overflow-scrolling: touch;
    z-index: 1000000;
    position: fixed;
    overflow: hidden;
    opacity: 1;
    transition: .4s;
    background: #FFF;
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    /* Safari での Default値 */
    height: 90vh;
    width: 85%;
    bottom: 0;
    right: 0;
    margin: 0;
    box-shadow: 0px 0 25px -5px #888;
    border-radius: 10px;
    top: 53%;
    left: 55%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

#chatbot a {
    color: #2196F3;
    text-decoration: none;
}

#chatbot css {
    touch-action: none;
}

#chatbot-header {
    height: 45px;
    background: #4169e1;
    position: relative;
    display: flex;
    justify-content: space-between;
}

#chatbot-logo {
    color: #FFF;
    line-height: 60px;
    padding: 0 30px;
    font-size: 16px;
}

#chatbot-close-icon {
    display: block;
    height: 100%;
    line-height: 60px;
    padding: 0 20px;
    color: #FFF;
    cursor: pointer;
}

#chatbot-close-icon:active {
    background: #4D7999;
}

#chatbot-body {
    width: 100%;
    height: calc(100% - 45px);
    padding-top: 0px;
    background: #FFF;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
}

@media screen and (max-width: 700px) {

    /*スマホ*/
    #chatbot-body {
        height: calc(100% - 60px);
    }
}

#chatbot-body.chatbot-body-zoom {
    width: 100%;
}

#chatbot-body.chatbot-body-zoom {
    height: calc(100vh - 60px);
}

/*Chrome、Safariでスクロールバーを非表示にする*/
#chatbot-body::-webkit-scrollbar {
    display: none;
}

#chatbot-footer {
    width: 100%;
    height: 50px;
    display: flex;
    box-sizing: border-box;
    background: #FFF;
    border-top: 1.5px solid #EEE;
}

@media screen and (min-width: 700px) {

    /*PC*/
    #chatbot-footer.chatbot-footer-zoom {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 700px) {

    /*スマホ*/
    #chatbot-footer.chatbot-footer-zoom {
        position: fixed;
        margin-bottom: 60px;
    }
}

#chatbot-toggle_button {
    /* width: 100px;
    height: 100px; */
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999999;
    /* background: #ef3f98;
    opacity: 0.6; */
}

#chatbot-toggle_button a {
    position: relative;
    display: block;
    /* width: 100px;
    height: 100px; */
    text-decoration: none;
}

#chatbot-toggle_button a::before {
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -25px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

#chatbot-toggle_button a::after {
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}