.kpi .t,
.kpi .v {
  white-space: nowrap;
}

.hero-right .mini > div {
  margin: 0;
  padding: 0;
}


.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .table-scroll table {
    min-width: 720px;
    width: max-content;
    table-layout: auto;
  }
}

.product-link{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.product-text{
  font-weight:600;
  font-size:16px;
}

.btn.secondary{
  background:#fff;
}

.btn.secondary:hover{
  background:#eef6fb;
  border-color: rgba(2,132,199,.22);
  text-decoration:none;
}

/* ===== 製品ページリンク横並び ===== */
.product-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.product-text{
  font-weight:800;
  font-size:16px;
  color:var(--text);
  line-height:1.6;
}

/* ===== 比較表のスマホ横スクロール ===== */
.table-scroll{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  margin-top:14px;
}

.table-scroll table{
  min-width:720px;
  width:100%;
}

/* ナチュライザー行を自然に強調 */
.compare-highlight td{
  background: rgba(14,165,233,.06);
  font-weight:600;
}

/* テーブル1列目を少し広めに */
.table-scroll th:first-child,
.table-scroll td:first-child{
  min-width:180px;
}

/* スマホ表示の微調整 */
@media (max-width: 768px){
  .product-link{
    align-items:flex-start;
  }

  .product-text{
    font-size:15px;
  }

  .table-scroll table{
    min-width:680px;
  }

  th, td{
    font-size:13px;
    padding:10px 10px;
  }
}

.status-icon{
  width:56px;
  height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
  margin:0 0 16px;
}

.status-icon.ok{
  background:rgba(22,163,74,.08);
  color:#0b6b2a;
  border:1px solid rgba(22,163,74,.25);
}

.status-icon.ng{
  background:rgba(239,68,68,.06);
  color:#7a1d1d;
  border:1px solid rgba(239,68,68,.25);
}

.msg{
  padding:14px 16px;
  border-radius:14px;
  margin:18px 0;
  white-space:pre-wrap;
  line-height:1.8;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}