@charset "UTF-8";

:root {
  --hd-blue: #004680;
  --hd-blue-dark: #00325f;
  --hd-yellow: #F3E600;
  --hd-red: #FF4C34;
  --hd-red-dark: #e03c26;
  --grey-100: #A7BCD6;
  --grey-80: #B9C9DE;
  --grey-60: #CAD7E6;
  --grey-40: #DCE4EF;
  --grey-20: #EDF2F7;
  --grey-10: #F6F8FB;
  --black: #000000;
  --white: #FFFFFF;
  --ink-muted: rgba(0, 0, 0, 0.56);
  --shadow-panel: 0 10px 15px rgba(0,70,128,0.10), 0 24px 48px rgba(0,70,128,0.16);
  --shadow-fab: 0 8px 20px rgba(255,76,52,0.35);
  --font-jp: "Noto Sans JP", "BIZ UDPGothic", "Hiragino Sans", "Yu Gothic UI", "Meiryo", system-ui, sans-serif;

  /* ==== DADSロール変数（2026-08-04改: カラーはHOUSE DOブランドが正）====
      DADS（デジタル庁デザインシステム）からは寸法・状態遷移・表示作法のみを採用し、
      色はすべてブランドパレット（青/黄/赤系/ブルーグレー階調/黒）へマップする。DADSの色実値は不採用。
      変数名はDADS由来のロール名のまま残す（どの部品がどの役割かを追えるようにするため）。 */
  --dads-gray-900: var(--black);       /* 本文テキスト */
  --dads-gray-800: var(--black);       /* ラベル・選択肢テキスト */
  --dads-gray-600: var(--ink-muted);   /* 補足テキスト・（任意）表示 */
  --dads-gray-420: var(--grey-100);    /* 無効状態のテキスト */
  --dads-gray-300: var(--grey-60);     /* 無効状態の枠線 */
  --dads-gray-50: var(--grey-20);      /* 無効状態の背景 */
  --dads-error: var(--hd-red-dark);    /* 必須表示・エラーテキスト・エラー枠（ブランド赤の濃色） */
  --dads-error-dark: #c2331b;          /* エラーバナー文字（ブランド赤系の最濃） */
  --dads-error-bg: #FFEDE9;            /* エラー背景（ブランド赤系の淡色・改修前と同値） */
  --dads-focus-ring: var(--hd-yellow); /* フォーカスリング＝ブランド黄 */
  --dads-key: var(--hd-blue);
  --dads-key-hover: var(--hd-blue-dark);
  --dads-key-tint: var(--grey-20);     /* hover背景＝ブランドの淡ブルーグレー */
}



/* ================= チャットボット ================= */

.chat-widget {
  box-sizing: border-box; font-family: var(--font-jp); color: var(--black); -webkit-font-smoothing: antialiased;

  /* アテンション吹き出し（ページ表示後にフワッと出る。×で閉じたらセッション中は再表示しない） */
  .launcher-bubble { position: relative; display: flex; align-items: flex-start; gap: 8px; max-width: 250px; background: var(--white); color: var(--black); border: 1.5px solid var(--grey-40); border-radius: 12px; padding: 10px 12px; margin-bottom: 10px; box-shadow: var(--shadow-fab); font-size: 12.5px; font-weight: 700; line-height: 1.5; cursor: pointer; opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
  .launcher-bubble.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .launcher-bubble::after { content: ""; position: absolute; bottom: -7px; right: 26px; width: 12px; height: 12px; background: var(--white); border-right: 1.5px solid var(--grey-40); border-bottom: 1.5px solid var(--grey-40); transform: rotate(45deg); }
  .bubble-close { flex-shrink: 0; border: none; background: var(--grey-20); color: var(--ink-muted); width: 20px; height: 20px; border-radius: 50%; cursor: pointer; font-size: 12px; line-height: 1; }




  .launcher { display: flex; align-items: center; gap: 10px; border: none; cursor: pointer; background: var(--hd-red); color: var(--white); border-radius: 999px; padding: 12px 20px 12px 12px; box-shadow: var(--shadow-fab); font-family: var(--font-jp); }
  .launcher:hover { background: var(--hd-red-dark); }
  .launcher:focus-visible { outline: 3px solid var(--hd-yellow); outline-offset: 2px; }
  .launcher-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--hd-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
  .launcher-icon img { width: 40px; height: 40px; }
  .launcher-dot { position: absolute; top: -2px; right: -2px; width: 12px; height: 12px; border-radius: 50%; background: var(--hd-yellow); border: 2px solid var(--hd-red); }
  .launcher-label { font-size: 14px; font-weight: 700; white-space: nowrap; }


  .chat-panel { width: 380px; max-width: calc(100vw - 32px); height: 640px; max-height: calc(100vh - 100px); background: var(--white); border-radius: 18px; box-shadow: var(--shadow-panel); display: flex; flex-direction: column; overflow: hidden; }


  .panel-head { background: var(--hd-blue); color: var(--white); padding: 12px 12px 12px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .panel-bot-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .panel-bot-icon img { width: 36px; height:36px; }
  .panel-head-text { flex: 1; min-width: 0; }
  .panel-head-text strong { display: block; font-size: 13.5px; }
  .panel-head-text small { display: block; font-size: 11px; color: var(--grey-60); }
  .lang-switch { display: flex; gap: 3px; background: rgba(255,255,255,0.14); border-radius: 8px; padding: 3px; flex-shrink: 0; }
  .lang-switch button { border: none; background: none; color: var(--grey-60); font-size: 11px; font-weight: 700; padding: 5px 7px; border-radius: 6px; cursor: pointer; font-family: var(--font-jp); }
  .lang-switch button.active { background: var(--white); color: var(--hd-blue-dark); }
  .panel-close { width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,0.15); color: var(--white); font-size: 15px; line-height: 1; cursor: pointer; flex-shrink: 0; }
  .panel-close:hover { background: rgba(255,255,255,0.28); }
  .panel-close:focus-visible { outline: 2px solid var(--hd-yellow); }

  .bubble-row { display: flex; gap: 8px; padding: 12px 16px 0; align-items: flex-start; }
  .bubble { background: var(--grey-20); border-radius: 12px; border-top-left-radius: 4px; padding: 9px 12px; font-size: 13.5px; line-height: 1.55; color: var(--dads-gray-800); flex: 1; }
  .bubble strong { color: var(--hd-red-dark); }

  .panel-progress { padding: 10px 16px 6px; flex-shrink: 0; }
  .progress-meta { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-muted); margin-bottom: 6px; }
  .progress-meta .count { font-variant-numeric: tabular-nums; font-weight: 800; color: var(--hd-blue); }
  .progress-track { height: 6px; border-radius: 999px; background: var(--grey-40); overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 999px; background: var(--hd-yellow); transition: width 0.35s ease; }
  .progress-remaining { font-size: 10.5px; color: var(--ink-muted); margin-top: 4px; text-align: right; }

  .panel-body { flex: 1; min-height: 0; overflow-y: auto; padding: 14px 16px 20px; }
  .step-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--hd-blue); font-weight: 800; letter-spacing: 0.03em; }
  h1.step-title { font-size: 18px; line-height: 1.4; margin: 6px 0 6px; text-wrap: balance; color: var(--hd-blue-dark); }
  p.step-desc { font-size: 13.5px; color: var(--dads-gray-600); margin: 0 0 16px; line-height: 1.6; }

  .field { margin-bottom: 20px; scroll-margin-top: 12px; }
  .field.field-invalid { border-left: 4px solid var(--dads-error); padding-left: 12px; margin-left: -16px; }
  /* ラベル・必須表示はDADS Form Control Label 準拠（バッジではなく「※必須」赤テキスト／任意はグレーテキスト） */
  .field-label { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; font-size: 16px; line-height: 1.3; font-weight: 700; color: var(--dads-gray-800); margin-bottom: 8px; }
  .req-text { font-size: 14px; font-weight: 400; color: var(--dads-error); }
  .opt-text { font-size: 14px; font-weight: 400; color: var(--dads-gray-600); }
  .field-hint { font-size: 13px; color: var(--dads-gray-600); margin: -4px 0 8px; line-height: 1.5; }
  /* DADS Input Text の error-text 準拠（項目直下に「＊理由」を赤テキスト表示） */
  .field-error-text { display: block; margin-top: 8px; font-size: 14px; line-height: 1.3; font-weight: 700; color: var(--dads-error); }
  .inline-toggle { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 400; color: var(--dads-gray-800); cursor: pointer; margin-bottom: 8px; min-height: 40px; }

  /* 入力系はDADS Input Text / Textarea / Select の寸法・作法準拠（radius 8px・フォント16px・min44px・
     フォーカスは黒アウトライン+ブランド黄リング・aria-invalidで赤枠）。色はブランド（枠=ブルーグレー・hover=ブランド青） */
  input[type="text"], input[type="tel"], input[type="email"], input[type="date"], textarea, select {
    width: 100%; font-family: var(--font-jp); font-size: 16px; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--grey-100); background: var(--white); color: var(--dads-gray-900); min-height: 44px;
  }
  textarea { resize: vertical; min-height: 76px; line-height: 1.55; }
  @media (hover: hover) { input:hover, textarea:hover, select:hover { border-color: var(--hd-blue); } }
  input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 4px solid var(--black); outline-offset: 2px; box-shadow: 0 0 0 2px var(--dads-focus-ring);
  }
  input.invalid, textarea.invalid, select.invalid,
  input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--dads-error); }
  select {
    appearance: none; -webkit-appearance: none; padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%23004680' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 16px 16px;
  }
  select:disabled { border-color: var(--dads-gray-300); background-color: var(--dads-gray-50); color: var(--dads-gray-420); }
  .area-status { margin-top: 8px; font-size: 14px; line-height: 1.4; color: var(--dads-gray-600); }
  .area-status.is-error { color: var(--dads-error); font-weight: 700; }
  .area-retry {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 8px; min-height: 40px; padding: 0 12px; border-radius: 8px;
    border: 1px solid var(--dads-key); background: var(--white); color: var(--dads-key);
    font-family: var(--font-jp); font-size: 14px; font-weight: 700; cursor: pointer;
  }

  .inline-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .unit-suffix { display: flex; align-items: center; gap: 6px; }
  .unit-suffix span { font-size: 11.5px; color: var(--ink-muted); white-space: nowrap; }

  /* 選択肢はDADS Radio / Checkbox 準拠（appearance:noneの自前描画。チェックマークはDADSのclip-path実値を採用） */
  .choice-grid { display: flex; flex-direction: column; gap: 2px; }
  .choice { display: flex; align-items: center; gap: 10px; padding: 8px 2px; font-size: 16px; line-height: 1.3; color: var(--dads-gray-800); cursor: pointer; user-select: none; border-radius: 8px; min-height: 40px; }
  .radio-ctl { appearance: none; -webkit-appearance: none; flex-shrink: 0; width: 22px; height: 22px; margin: 0; border-radius: 51%; border: 2px solid var(--grey-100); background: var(--white); position: relative; min-height: 0; }
  @media (hover: hover) { .choice:hover .radio-ctl:not(:checked) { border-color: var(--hd-blue); } }
  .radio-ctl:checked { border-color: var(--dads-key); }
  .radio-ctl:checked::before { content: ""; position: absolute; inset: 0; margin: auto; width: 10px; height: 10px; border-radius: 51%; background: var(--dads-key); }
  .radio-ctl:focus-visible { outline: 4px solid var(--black); outline-offset: 2px; box-shadow: 0 0 0 2px var(--dads-focus-ring); }
  .field-invalid .radio-ctl:not(:checked) { border-color: var(--dads-error); }

  .checklist { display: flex; flex-direction: column; gap: 2px; }
  .checklist label { display: flex; align-items: center; gap: 10px; padding: 8px 2px; font-size: 16px; line-height: 1.3; color: var(--dads-gray-800); cursor: pointer; border-radius: 8px; min-height: 40px; }
  .check-ctl { appearance: none; -webkit-appearance: none; flex-shrink: 0; width: 20px; height: 20px; margin: 0; border-radius: 3px; border: 2px solid var(--grey-100); background: var(--white); display: inline-flex; align-items: center; justify-content: center; min-height: 0; }
  @media (hover: hover) { .check-ctl:not(:checked):hover { border-color: var(--hd-blue); } }
  .check-ctl:checked { border-color: var(--dads-key); background: var(--dads-key); }
  .check-ctl:checked::before { content: ""; width: 14px; height: 14px; background: var(--white); clip-path: path("M5.6,11.2L12.65,4.15L11.25,2.75L5.6,8.4L2.75,5.55L1.35,6.95L5.6,11.2Z"); }
  .check-ctl:focus-visible { outline: 4px solid var(--black); outline-offset: 2px; box-shadow: 0 0 0 2px var(--dads-focus-ring); }
  .check-ctl:disabled { border-color: var(--dads-gray-300); background: var(--dads-gray-50); }
  .check-ctl:disabled:checked { background: var(--dads-gray-300); }
  .field-invalid .check-ctl:not(:checked) { border-color: var(--dads-error); }

  .upload-box { border: 2px dashed var(--grey-60); border-radius: 12px; padding: 16px 12px; text-align: center; color: var(--ink-muted); font-size: 11.5px; }
  .upload-box.is-dragover { border-color: var(--hd-blue); background: var(--dads-gray-50); }
  .upload-box .icon { font-size: 20px; display: block; margin-bottom: 6px; }
  .camera-upload-button { margin-top: 8px; padding: 6px 12px; border: 1px solid var(--hd-blue); border-radius: 6px; background: var(--white); color: var(--hd-blue); cursor: pointer; }
  .upload-box img, .summary-group img { max-width: 100%; height: auto; display: block; margin: 8px auto 0; }
  .field[data-field="chanot_image"] .field-error-text,
  .field[data-field="customer_assessment_image"] .field-error-text { color: #EC0000; }

  .summary-group { margin-bottom: 14px; }
  .summary-group h3 { font-size: 10.5px; letter-spacing: 0.03em; color: var(--hd-blue); text-transform: uppercase; margin: 0 0 6px; }
  /* 長い項目名でも横スクロールさせず折り返す（dtにflex-shrink:0を付けると行が伸びて水平スクロールが発生する） */
  .summary-row { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    /* gap: 2px 10px;  */
    gap: 10px; 
    flex-flow: column;
    font-size: 12px; padding: 6px 0; border-bottom: 1px solid var(--grey-40); 
  }
  .summary-row dt { color: var(--ink-muted); flex: 1 1 45%; min-width: 0; overflow-wrap: anywhere; }
  .summary-row dd { 
    margin: 0; 
    /* text-align: right;  */
    font-weight: 700; overflow-wrap: anywhere; flex: 1 1 45%; min-width: 0; 
  }
  .summary-row.empty dd { color: var(--ink-muted); font-weight: 400; font-style: italic; }
  .summary-row.empty-required dd { color: var(--dads-error); font-weight: 700; font-style: normal; }

  .done-wrap { text-align: center; padding-top: 20px; }
  .done-icon {
    width: 76px; height: 76px; border-radius: 50%; background: var(--hd-blue); color: var(--white);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 34px;
    animation: pop 0.4s ease;
  }
  @keyframes pop { 0% { transform: scale(0.6); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
  @media (prefers-reduced-motion: reduce) { .done-icon { animation: none; } }

  .consent-box { border: 1px solid var(--grey-100); border-radius: 8px; background: var(--white); padding: 10px 12px; margin-bottom: 9px; }
  .consent-box label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.6; cursor: pointer; }
  .consent-box .check-ctl { margin-top: 2px; }
  .consent-box a { color: var(--dads-key); text-decoration: underline; text-underline-offset: 3px; }
  .consent-box.field-invalid { border-color: var(--dads-error); background: var(--dads-error-bg); }

  .panel-nav { border-top: 1px solid var(--grey-40); padding: 10px 16px 12px; flex-shrink: 0; }
  .upload-pending-status { margin: 0 0 8px; color: var(--dads-key); font-size: 13px; line-height: 1.4; text-align: center; font-weight: 700; }
  /* テキストリンク型ボタン（DADS Button data-type="text" 準拠: 下線・hoverで下線太く・フォーカスで黄背景） */
  .skip-link { background: none; border: none; color: var(--dads-key); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; padding: 8px; cursor: pointer; display: block; margin: 0 auto 4px; font-family: var(--font-jp); border-radius: 4px; }
  @media (hover: hover) { .skip-link:hover { text-decoration-thickness: 3px; background: var(--dads-key-tint); } }
  .skip-link:focus-visible { outline: 4px solid var(--black); outline-offset: 2px; background: var(--dads-focus-ring); box-shadow: 0 0 0 2px var(--dads-focus-ring); }
  .skip-link[hidden] { display: none; }
  .nav-buttons { display: flex; gap: 8px; }
  /* ボタンはDADS Buttonの寸法・状態仕様（md: min-height 48px / radius 8px / hoverで下線 / 黒+黄のフォーカスリング）を採用。
     色はブランド維持（primary=HOUSE DO赤=solid-fill相当／戻る=outline型・ブランド青） */
  /* 2026-08-04: フッター内ボタンは全言語で同じ寸法に固定する。
     基準=従来スタイルのタイ語表示時の実測高さ56px（「戻る=ย้อนกลับ」が88px幅で2行折返し・Chromium実測。DADSのlgボタンと同値）。
     日本語・英語もこの56pxに揃える。幅は従来どおり「戻る」88px固定＋「次へ/送信」残り全幅で言語に依存しない */
  .btn { font-family: var(--font-jp); font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 16px; border-radius: 8px; border: 4px double transparent; cursor: pointer; letter-spacing: 0.02em; }
  .btn:focus-visible { outline: 4px solid var(--black); outline-offset: 2px; box-shadow: 0 0 0 2px var(--dads-focus-ring); }
  .btn-primary { flex: 1; background: var(--hd-red); color: var(--white); }
  .btn-primary:disabled { opacity: 0.65; cursor: not-allowed; }
  @media (hover: hover) { .btn-primary:hover { background: var(--hd-red-dark); text-decoration: underline; text-decoration-thickness: 1px; } }
  .btn-primary:active { background: #c2331b; text-decoration: underline; }
  .btn-ghost { background: var(--white); color: var(--dads-key); border: 1px solid currentColor; flex: 0 0 88px; }
  @media (hover: hover) { .btn-ghost:hover { background: var(--dads-key-tint); text-decoration: underline; text-decoration-thickness: 1px; } }
  .btn-ghost:active { background: var(--grey-40); }

  .error-banner { background: var(--dads-error-bg); color: var(--dads-error-dark); border-radius: 8px; padding: 10px 12px; font-size: 13px; line-height: 1.5; margin-bottom: 12px; display: none; }
  .error-banner.show { display: block; }
  .error-banner ul { margin: 6px 0 0; padding-left: 18px; }
  .error-banner li { cursor: pointer; text-decoration: underline; margin-bottom: 2px; }

}
/* ランチャーは追従フッターに重ねない（上端＋12pxへ退避） */
.chat-widget {
  position: fixed; right: 20px; 
  bottom: 12px;
  z-index: 9999; display: flex; flex-direction: column; align-items: flex-end;
  transition: transform 0.3s ease;
}
.chat-widget.open .launcher-bubble { display: none; }
.chat-widget.open .launcher { display: none; }
.chat-widget:not(.open) .chat-panel { display: none; }

/* 追従フッターとのバッティング回避（スクロールでの.upクラス付加があるとき） */
.chat-widget.up:not(.open)  {
  transform: translateY(-126px);
}

/* cookie同意フッターとのバッティング回避 */
body.cookie-banner-active .chat-widget:not(.open) {
  transform: translateY(-126px);
}
@media (max-width: 640px) {
  body.cookie-banner-active .chat-widget:not(.open) {
    transform: translateY(-170px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-widget { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } 
}

/* パネル展開中はフッターに被ってよい（退避が必要なのは閉じている状態のランチャー・吹き出しのみ） */
.chat-widget.open { bottom: 20px; }
body.chat-panel-open { overflow: hidden; overscroll-behavior: none; }

/* ================= 入口UI: B案（円形大アイコン＋大きめ吹き出し）で確定（2026-08-03） =================
    A（ピル型）・C（全画面ポップ）は不要となったため切替UIごと削除。
    B案のスタイルは従来の body.variant-b セレクタのまま残し、起動時にJSで variant-b クラスを常時付与する。 */
body.variant-b .chat-widget .launcher { width: 92px; height: 92px; padding: 0; border-radius: 50%; justify-content: center; }
body.variant-b .chat-widget .launcher-label { display: none; }
body.variant-b .chat-widget .launcher-icon { width: 64px; height: 64px; }
body.variant-b .chat-widget .launcher-icon img { width: 64px; height: 64px; }
body.variant-b .chat-widget .launcher-dot { width: 16px; height: 16px; }
body.variant-b .chat-widget .launcher-bubble { max-width: 430px; font-size: 19px; padding: 20px 22px; border-radius: 18px; }
body.variant-b .chat-widget .bubble-close { width: 32px; height: 32px; font-size: 17px; }


/* ================= レスポンシブ（モバイル） ================= */
@media (max-width: 640px) {

  .chat-widget {

    /* 入口UIはB案（円形アイコン）で確定。「査定の入口」の認知は吹き出し文言が担う（2026-08-03 CTO確認: 吹き出しの文字で分かる）。
      以下はA案（ピル型）時代の残置スタイルで、variant-b常時適用によりラベル非表示・円形サイズが優先される */
    .launcher { padding: 9px 16px 9px 9px; }
    .launcher-label { font-size: 12.5px; }
    .launcher-icon { width: 32px; height: 32px; }
    .launcher-icon img { width: 32px; height: 32px; }
    .launcher-bubble { max-width: min(250px, calc(100vw - 40px)); }


    /* パネルは画面全体を覆うボトムシート形式に（ウィジェットの退避オフセットに影響されないようfixedで全画面化） */
    .chat-panel {
      position: fixed; left: 0; top: var(--chat-viewport-top, 0); right: 0; bottom: auto;
      width: 100vw; max-width: 100vw;
      height: var(--chat-viewport-height, 100vh); max-height: var(--chat-viewport-height, 100vh);
      border-radius: 0;
    }
  }

  .chat-widget { right: 0; 
    bottom: 12px;
    left: 0; align-items: flex-end; padding-right: 12px; }

  /* UIパターンB（モバイル時のサイズ調整） */
  body.variant-b .chat-widget .launcher { width: 80px; height: 80px; padding: 0; }
  body.variant-b .chat-widget .launcher-icon { width: 56px; height: 56px; }
  body.variant-b .chat-widget .launcher-icon img { width: 56px; height: 56px; }
  body.variant-b .chat-widget .launcher-bubble { max-width: min(430px, calc(100vw - 24px)); font-size: 18px; }
}
