/* ==========================================================================
   Cellnets Quote Simulator
   ========================================================================== */

/* ---------- メインビジュアル（MV） ---------- */
.cnsim-mv {
  display: block;
  max-width: 1200px;
  margin: 0 auto 44px;
  line-height: 0;
  text-align: center;
}
.cnsim-mv img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .cnsim-mv {
    margin-bottom: 28px;
  }
  .cnsim-mv img {
    border-radius: 0;
  }
}

/* ---------- スピード重視バナー（ディープフォレスト） ---------- */
.cnsim-topbar {
  max-width: 880px;
  margin: 0 auto 20px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #1f6b4a 0%, #0f4d30 100%);
  color: #fff;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, auto) auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(15, 77, 48, 0.28);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  box-sizing: border-box;
}
.cnsim-topbar *, .cnsim-topbar *::before, .cnsim-topbar *::after { box-sizing: border-box; }
.cnsim-topbar__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cnsim-topbar__label {
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.4;
}
.cnsim-topbar__badge {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}
.cnsim-topbar__tel {
  position: relative;
  background: #fff;
  color: #2a2a2a !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.cnsim-topbar__tel:hover {
  background: #fff8f1;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.cnsim-topbar__tel-icon {
  color: var(--cn-primary);
  flex: 0 0 auto;
}
.cnsim-topbar__tel-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.cnsim-topbar__tel-number {
  font-size: 23px;
  letter-spacing: 0.02em;
  color: var(--cn-primary);
  font-weight: 800;
}
.cnsim-topbar__free-badge {
  position: absolute;
  top: -9px;
  right: -8px;
  background: var(--cn-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}
.cnsim-topbar__info {
  font-size: 12px;
  line-height: 1.55;
  min-width: 0;
}
.cnsim-topbar__info p {
  margin: 0 !important;
  padding: 0 !important;
}
.cnsim-topbar__photo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
}
/* takemoto_main.jpg (860x1022) の顔周りをズーム表示するため、
   画像を height 120px で拡大し、絶対配置で中央寄せ。
   顔(y=250前後)がコンテナ中央に来るように top=0 で調整済み。 */
.cnsim-topbar__photo img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
  width: auto;
  max-width: none;
  display: block;
}
.cnsim-topbar__photo:empty {
  display: none;
}

/* タブレット */
@media (max-width: 768px) {
  .cnsim-topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "main tel"
      "info info";
    gap: 10px 16px;
    padding: 12px 16px;
  }
  .cnsim-topbar__main { grid-area: main; }
  .cnsim-topbar__tel  { grid-area: tel;  }
  .cnsim-topbar__info { grid-area: info; }
  .cnsim-topbar__photo { display: none; }
}
/* モバイル */
@media (max-width: 480px) {
  .cnsim-topbar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "tel"
      "info";
    gap: 8px;
    padding: 12px 14px;
    text-align: center;
  }
  .cnsim-topbar__main { align-items: center; }
  .cnsim-topbar__tel { justify-content: center; }
  .cnsim-topbar__badge { font-size: 18px; }
  .cnsim-topbar__tel-number { font-size: 18px; }
  .cnsim-topbar__info p { font-size: 11px; }
}

/* ---------- フォームヘッダー（ダークスレート） ---------- */
.cnsim-formheader {
  max-width: 880px;
  margin: 32px auto 20px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--cn-slate-light) 0%, var(--cn-slate) 100%);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  box-sizing: border-box;
}
.cnsim-formheader *, .cnsim-formheader *::before, .cnsim-formheader *::after { box-sizing: border-box; }
.cnsim-formheader__title {
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}
.cnsim-formheader__bracket {
  display: inline-block;
}
.cnsim-formheader__sub {
  font-size: 15px;
  margin-left: 8px;
  font-weight: 600;
  opacity: 0.95;
}
.cnsim-formheader__desc {
  flex: 1;
  min-width: 240px;
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .cnsim-formheader {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
    gap: 8px;
    margin: 24px auto 16px;
  }
  .cnsim-formheader__title {
    font-size: 15px;
    text-align: center;
  }
  .cnsim-formheader__sub {
    font-size: 13px;
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
  .cnsim-formheader__desc {
    font-size: 12px;
    padding: 8px 10px;
  }
}



/* ---------- wpautop / テーマCSS に対する防御リセット ---------- */
/* テーマが素の HTML5 要素（header/section/aside 等）に強い上書きを当てている
   ケース（position:fixed, margin:100px 等）を無害化するための予防ライン。
   .cnsim 配下の全セマンティック要素を中立化。 */

.cnsim p:empty,
.cnsim > br { display: none !important; }

.cnsim p { margin: 0; padding: 0; }

.cnsim ul, .cnsim ol {
  background: transparent;
}
.cnsim ul { list-style-type: disc; }
.cnsim li { background: transparent; }

/* label は padding/margin を指定しない（.cnsim-opt 側に任せる） */
.cnsim label {
  font-weight: normal;
}

.cnsim input[type="radio"],
.cnsim input[type="checkbox"] {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* 強力：.cnsim 配下の HTML5 セマンティック要素をすべて中立化 */
.cnsim header,
.cnsim footer,
.cnsim section,
.cnsim article,
.cnsim aside,
.cnsim nav,
.cnsim main,
.cnsim figure {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
  background: transparent !important;
  z-index: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  box-shadow: none !important;
}

.cnsim div { max-width: none; }

/* ---------- 本体スタイル ---------- */
/* CSS変数をグローバルに（トップバー/フォームヘッダー/Sticky等の外側要素でも参照できるように） */
:root {
  --cn-primary: #F88529;       /* セルネッツブランドオレンジ */
  --cn-primary-dark: #D96A1C;  /* 濃オレンジ */
  --cn-primary-light: #FFF4E6; /* 薄オレンジ（選択中の背景） */
  --cn-accent: #f39800;
  --cn-border: #e6d7c5;
  --cn-border-soft: #f0e5d6;
  --cn-text: #2b2b2b;
  --cn-muted: #6b6b6b;
  --cn-bg: #fffaf5;
  --cn-white: #ffffff;
  --cn-slate: #6F615A;         /* ウォームグレー（濃側）：誠実さと温かみの中庸 */
  --cn-slate-light: #8D7F74;   /* ウォームグレー（明側）：グラデの明部 */
}

.cnsim {

  max-width: 880px;
  margin: 0 auto 40px;
  padding: 0;
  color: var(--cn-text);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
  box-sizing: border-box;
}
.cnsim *, .cnsim *::before, .cnsim *::after { box-sizing: border-box; }

/* ---------- Hero（タイトルバー） ---------- */
.cnsim-hero {
  background: linear-gradient(135deg, var(--cn-primary) 0%, var(--cn-primary-dark) 100%);
  color: #fff;
  padding: 16px 22px;
  border-radius: 6px;
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.cnsim-hero__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
  flex: 1;
  min-width: 0;
}
.cnsim-hero__bracket {
  font-weight: 700;
}
.cnsim-hero__badge {
  background: #fff;
  color: var(--cn-primary-dark);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- Question card ---------- */
.cnsim-q {
  background: var(--cn-white);
  border: 1px solid var(--cn-border-soft);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  gap: 22px;
  align-items: start;
}
.cnsim-q__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  padding-top: 4px;
}
.cnsim-q__num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cn-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
}
.cnsim-q__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.cnsim-q__note {
  font-size: 12px;
  color: var(--cn-muted);
  font-weight: 500;
  margin-left: 4px;
}

/* ---------- Option ---------- */
.cnsim-q__options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cnsim-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px 13px 16px;
  border: 2px solid var(--cn-border);
  border-radius: 8px;
  background: var(--cn-white);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  user-select: none;
}
.cnsim-opt:hover {
  border-color: var(--cn-accent);
  background: #fffdfa;
}
.cnsim-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cnsim-opt__box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid #bdbdbd;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.cnsim-opt input[type="radio"] + .cnsim-opt__box {
  border-radius: 50%;
}
.cnsim-opt input[type="checkbox"] + .cnsim-opt__box {
  border-radius: 4px;
}
.cnsim-opt__label {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
}
.cnsim-opt--checked {
  border-color: var(--cn-primary);
  background: var(--cn-primary-light);
  box-shadow: 0 0 0 1px var(--cn-primary) inset;
}
.cnsim-opt--checked .cnsim-opt__box {
  border-color: var(--cn-primary);
  background: var(--cn-primary);
}
.cnsim-opt--checked input[type="radio"] + .cnsim-opt__box::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}
.cnsim-opt--checked input[type="checkbox"] + .cnsim-opt__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- エラー表示（バリデーション失敗時） ---------- */
.cnsim-q--error {
  border-color: #e53935 !important;
  background: #fff7f7;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.15);
}
.cnsim-q--error .cnsim-q__num {
  background: #e53935;
}
.cnsim-q__error-msg {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 8px 14px;
  background: #ffe7e6;
  color: #b71c1c;
  border-left: 3px solid #e53935;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  animation: cnsim-shake 0.3s ease;
}
@keyframes cnsim-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---------- お客様情報フィールドのエラー表示 ---------- */
.cnsim-field-error input[type="text"],
.cnsim-field-error input[type="email"],
.cnsim-field-error input[type="tel"],
.cnsim-field-error textarea {
  border-color: #e53935 !important;
  background: #fff7f7 !important;
  box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.2);
}
.cnsim-field-error-msg {
  margin-top: 6px;
  padding: 6px 12px;
  color: #b71c1c;
  background: #ffe7e6;
  border-left: 3px solid #e53935;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  animation: cnsim-shake 0.3s ease;
}

/* ---------- Summary ---------- */
.cnsim-summary {
  margin-top: 28px;
  background: var(--cn-white);
  border: 2px solid var(--cn-primary);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 6px 20px rgba(234, 97, 0, 0.15);
}
.cnsim-summary__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--cn-primary-dark);
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cn-primary-light);
}
.cnsim-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  font-size: 18px;
  gap: 12px;
}
.cnsim-summary__val {
  font-size: 26px;
  font-weight: 700;
  color: var(--cn-text);
  white-space: nowrap;
}
.cnsim-summary__row--base {
  color: var(--cn-muted);
  border-bottom: 1px dashed var(--cn-border);
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.cnsim-summary__row--sub {
  color: var(--cn-text);
  font-weight: 600;
}
.cnsim-summary__row--sub .cnsim-summary__val {
  color: var(--cn-primary);
}
.cnsim-summary__row--total {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 3px double var(--cn-primary);
  font-size: 22px;
}
.cnsim-summary__row--total .cnsim-summary__label {
  font-weight: 700;
}
.cnsim-summary__row--total .cnsim-summary__label small {
  font-size: 13px;
  font-weight: 500;
  color: var(--cn-muted);
  margin-left: 4px;
}
.cnsim-summary__val--total {
  font-size: 44px;
  font-weight: 800;
  color: var(--cn-primary-dark);
  letter-spacing: 0.02em;
}
.cnsim-unit {
  font-size: 58%;
  font-weight: 700;
  margin-left: 3px;
  color: inherit;
}
.cnsim-summary__val--total .cnsim-unit {
  font-size: 20px;
  color: var(--cn-text);
  margin-left: 4px;
}

/* ---------- Q&A リスト（確認画面で表示） ---------- */
.cnsim-qa-list {
  margin: 0 0 22px;
  padding: 22px 26px;
  background: var(--cn-white);
  border: 1px solid var(--cn-border);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.cnsim-qa-list__title {
  margin: 0 0 14px;
  padding: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--cn-primary-dark);
  border-bottom: 2px solid var(--cn-primary-light);
}
.cnsim-qa-item {
  padding: 12px 0;
  border-bottom: 1px dashed var(--cn-border);
}
.cnsim-qa-item:last-child {
  border-bottom: 0;
}
.cnsim-qa-item__q {
  font-size: 13px;
  font-weight: 600;
  color: var(--cn-muted);
  margin-bottom: 6px;
}
.cnsim-qa-item__a {
  font-size: 15px;
  color: var(--cn-text);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-top: 2px;
}
.cnsim-qa-item__a::before {
  content: "▶";
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--cn-primary);
}
.cnsim-qa-item__a--empty {
  color: var(--cn-muted);
  font-style: italic;
}
.cnsim-qa-item__a--empty::before {
  color: var(--cn-muted);
}

/* ---------- Notes ---------- */
.cnsim-notes {
  margin-top: 20px;
  padding: 16px 20px;
  background: #fffbea;
  border-left: 4px solid var(--cn-accent);
  border-radius: 4px;
  font-size: 13px;
  color: #5a4100;
}
.cnsim-notes p { margin: 0 0 6px; font-weight: 700; }
.cnsim-notes ul { margin: 0; padding-left: 18px; }
.cnsim-notes li { margin-bottom: 3px; }

/* ---------- CTA ブロック（フォームへの案内） ---------- */
.cnsim-cta-block {
  margin: 40px 0 24px;
  padding: 24px 28px;
  background: var(--cn-primary-light);
  border: 1px solid #f0c9a0;
  border-left: 4px solid var(--cn-primary);
  border-radius: 6px;
  text-align: center;
}
.cnsim-cta-block__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cn-primary-dark);
  margin-bottom: 10px;
}
.cnsim-cta-block__text {
  font-size: 14px;
  line-height: 1.75;
  color: #3a2a15;
}

/* ---------- 送信ボタン周辺 ---------- */
/* テーマの .btnWrap input スタイル（オレンジ #F88529 背景・白文字・padding 20px 40px）
   および .btnWrap { margin: 50px 0 } をそのまま使う。
   ただし送信ボタン下の余白は simulator ページ用に拡張＋区切り線を追加。 */
.block {
  margin-bottom: 100px;
}
.block .btnWrap {
  margin-bottom: 80px;
}
.block::after {
  content: "";
  display: block;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 1px;
  background: #e0e0e0;
}
@media (max-width: 640px) {
  .block {
    margin-bottom: 30px;
  }
  .block .btnWrap {
    margin-bottom: 90px;
  }
}


/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .cnsim-q {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cnsim-q__head { padding-top: 0; }
}
@media (max-width: 640px) {
  .cnsim-hero {
    padding: 14px 16px;
    margin-bottom: 24px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 8px;
  }
  .cnsim-hero__title { font-size: 17px; }
  .cnsim-hero__bracket { display: block; margin-top: 2px; }
  .cnsim-hero__badge { font-size: 12px; padding: 5px 10px; }
  .cnsim-q { padding: 14px 14px; margin-bottom: 8px; }
  .cnsim-q__title { font-size: 15px; line-height: 1.45; }
  .cnsim-q__num { width: 26px; height: 26px; font-size: 13px; }
  .cnsim-q__options { gap: 5px; }
  .cnsim-opt { padding: 10px 12px; }
  .cnsim-opt__label { font-size: 14px; line-height: 1.5; }
  .cnsim-summary { margin-top: 18px; padding: 18px 16px; }
  .cnsim-summary__title { font-size: 17px; margin-bottom: 10px; padding-bottom: 8px; }
  .cnsim-summary__row { padding: 8px 0; font-size: 16px; }
  .cnsim-summary__val { font-size: 22px; }
  .cnsim-summary__row--total { font-size: 18px; padding-top: 12px; }
  .cnsim-summary__val--total { font-size: 32px; }
  .cnsim-summary__val--total .cnsim-unit { font-size: 15px; }
  .cnsim-qa-list { padding: 18px 16px; margin-bottom: 16px; }
  .cnsim-qa-list__title { font-size: 15px; margin-bottom: 10px; padding-bottom: 8px; }
  .cnsim-qa-item__q { font-size: 12px; }
  .cnsim-qa-item__a { font-size: 14px; padding-left: 16px; }
  .cnsim-notes { margin-top: 14px; padding: 12px 14px; font-size: 12px; }
  .cnsim-cta-block { margin: 28px 0 16px; padding: 18px 16px; }
  .cnsim-cta-block__title { font-size: 16px; margin-bottom: 6px; }
  .cnsim-cta-block__text { font-size: 13px; }

  /* ボタン余白はテーマのデフォルトに従う */
}






.cnsim-sb { font-family: -apple-system, "Hiragino Sans", sans-serif; font-size: 12px; line-height: 1.5; color: #333; background: #fff; border-radius: 6px; overflow: hidden; margin-bottom: 20px; border: 1px solid #ddd; }
.cnsim-sb__hero { background: #f5862e; color: #fff; padding: 12px; text-align: center; }
.cnsim-sb__hero-title { font-size: 14px; font-weight: bold; line-height: 1.4; }
.cnsim-sb__hero-badge { display: inline-block; background: #fff; color: #f5862e; font-size: 11px; padding: 3px 8px; border-radius: 3px; margin-top: 6px; font-weight: bold; }
.cnsim-sb__q { padding: 10px; border-bottom: 1px solid #eee; background: #fafafa; }
.cnsim-sb__q-head { display: flex; align-items: flex-start; margin-bottom: 8px; gap: 6px; }
.cnsim-sb__q-num { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; background: #f5862e; color: #fff; border-radius: 50%; font-size: 11px; font-weight: bold; flex-shrink: 0; }
.cnsim-sb__q-title { font-size: 12px; font-weight: bold; line-height: 1.4; }
.cnsim-sb__q-opts { display: flex; flex-direction: column; gap: 4px; }
.cnsim-sb__opt { display: flex; align-items: flex-start; gap: 6px; padding: 6px 8px; background: #fff; border: 1px solid #ddd; border-radius: 3px; cursor: pointer; font-size: 11px; line-height: 1.4; transition: border-color 0.15s; }
.cnsim-sb__opt:hover { border-color: #f5862e; }
.cnsim-sb__opt input { margin: 2px 0 0 0; flex-shrink: 0; }
.cnsim-sb__opt input:checked + span { color: #f5862e; font-weight: bold; }
.cnsim-sb__summary { background: #fff8f0; border-top: 2px solid #f5862e; padding: 12px; }
.cnsim-sb__summary-title { background: #f5862e; color: #fff; text-align: center; padding: 6px; font-weight: bold; font-size: 12px; border-radius: 3px; margin-bottom: 8px; }
.cnsim-sb__row { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; font-size: 12px; border-bottom: 1px dotted #ddd; }
.cnsim-sb__row b { font-weight: bold; }
.cnsim-sb__row--total { border-bottom: none; padding-top: 8px; font-weight: bold; }
.cnsim-sb__row--total small { font-size: 10px; font-weight: normal; }
.cnsim-sb__total { color: #d32f2f; }
.cnsim-sb__total b { font-size: 20px; }
.cnsim-sb__notes { padding: 8px 12px; font-size: 10px; color: #666; line-height: 1.5; background: #fafafa; }