#caremina-chat-launcher{ position:fixed; right:16px; bottom:16px; background:#ff8a3d; color:#fff; padding:10px 12px; border-radius:20px; cursor:pointer; z-index:9998; box-shadow:0 4px 14px rgba(0,0,0,.25); font-size:14px; }
#caremina-chatbox{ position:fixed; right:16px; bottom:72px; width:340px; max-width:90vw; background:#fff; border-radius:14px; box-shadow:0 12px 30px rgba(0,0,0,.95); z-index:9999; overflow:hidden; font-family:system-ui, -apple-system, Segoe UI, Roboto, Noto Sans JP, sans-serif; }
.cm-header{ display:flex; align-items:center; justify-content:space-between; padding:10px 12px; background:#ff8a3d; border-bottom:1px solid #eceff4; color:#fff;}
.cm-title{ font-weight:600; }
.cm-actions button{ background:transparent; border:none; cursor:pointer; font-size:14px; }
.cm-messages{ height:200px; overflow:auto; padding:12px; background:#fef8e4; }
.cm-bubble{ max-width:88%; padding:10px 12px; margin:8px 0; border-radius:12px; line-height:1.5; font-size:14px; box-shadow:0 1px 2px rgba(0,0,0,.04); }
.cm-user{ margin-left:auto; background:#e8f0ff; }
.cm-assistant{ margin-right:auto; background:#fff; border:1px solid #eef0f4; }
.cm-input{ display:flex; gap:8px; padding:10px; border-top:1px solid #eceff4; }
.cm-input input{
  flex:1; border:1px solid #e0e4ea; border-radius:10px; padding:10px;
  font-size:16px !important;   /* ← 14px から上書き */
}
.cm-input button{ border:none; background:#ff8a3d; color:#fff; border-radius:10px; padding:0 14px; }
.cm-items{ list-style:none; margin:8px 0 0; padding:0; }
.cm-item{ padding:8px 8px 10px; border:1px solid #edf0f4; border-radius:10px; margin-top:8px; }
.cm-item a{ font-weight:600; text-decoration:none; }
.cm-item p{ margin:6px 0 0; color:#555; font-size:13px; }
.cm-thinking{ display:flex; gap:8px; align-items:center; }
.cm-dots{ display:inline-flex; gap:4px; }
.cm-dots i{ width:6px; height:6px; background:#999; border-radius:50%; display:inline-block; animation:cmblink 1s infinite ease-in-out; }
.cm-dots i:nth-child(2){ animation-delay: .15s; }
.cm-dots i:nth-child(3){ animation-delay: .3s; }
@keyframes cmblink{ 0%,80%,100%{ opacity:.2 } 40%{ opacity:1 } }

@media (max-width:480px){
  #caremina-chatbox{ right:8px; width:calc(100vw - 16px); }
}