#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#open-chat-btn {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #FFF;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 1001;
}

#open-chat-btn.open {
    bottom: 530px;
}

/* iframeのコンテンツ (デフォルトでは非表示) */
#chat-content {
    display: none;
    margin-top: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
    background-color: #FFF;
    border-radius: 10px;
    overflow: hidden;
}

#chat-content iframe {
    border: none;  /* iframeのborderを除去 */
    border-radius: 10px;
    max-height: 500px;
}

iframe {
    border: none;
}

/* ボタンがクリックされたときのスタイル */
#chat-widget.show-content #chat-content {
    display: block;
}

#open-chat-btn:active, #open-chat-btn:focus {
    outline: none;
}

@media (max-width: 768px) {
    #chat-content iframe {
        width: 100vw;
        height: 80vh;
        max-width: 500px;
        max-height: 450px;
        border: none;
    }

    #chat-widget {
        bottom: 0;
        right: 0;
        width: 100vw;
    }

    #open-chat-btn {
        right: 3%;
        bottom: 30px;
    }

    #open-chat-btn.open {
        bottom: 460px;
        right: 3%;
    }
    
    #chat-content {
        right: 0;
    }
}