.chatbot-notice{
    background:#f0f7ff;
    padding:20px;
    border-radius:8px;
    margin-bottom:30px;
}

/* 中央制御の核 */
.chatbot-inner{
    display:flex;
    align-items:center;
    justify-content:center;   /* 全体を中央へ */
    gap:36px;

    max-width:560px;          /* 横に伸びすぎ防止 */
    margin:0 auto;            /* セクション内中央 */
}

/* テキスト */
.chatbot-text{
    text-align:left;
}

.chatbot-title{
    margin:0;
    font-weight:bold;
}

.chatbot-desc{
    margin:5px 0 0;
    font-size:0.9em;
}

/* ボタン */
.chatbot-second-button{
    width:56px;
    height:56px;
    border-radius:50%;
    background:rgb(34,30,31);
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .2s;
    flex-shrink:0;
}

.chatbot-second-button:hover{
    transform:scale(1.08);
}


