/* ============================================================
   Lineup: Comparison Table (仕様比較表)
============================================================ */
.lineup-compare {
  margin-bottom: var(--sp-20);
}

.lineup-compare__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-gray-200);
}

.lineup-compare__table th,
.lineup-compare__table td {
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  border-bottom: 1px solid var(--c-gray-200);
  border-right: 1px solid var(--c-gray-200);
}

.lineup-compare__table th:last-child,
.lineup-compare__table td:last-child {
  border-right: none;
}

.lineup-compare__table th.row-header {
  background: var(--c-gray-50);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  text-align: left;
  padding-left: var(--sp-5);
  width: 22%;
}

.lineup-compare__table th.col-header {
  background: var(--c-navy);
  color: var(--c-white);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  padding: var(--sp-4) var(--sp-3);
  width: 26%;
}

.lineup-compare__highlight {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--c-teal);
}

/* ============================================================
   Lineup: Product Card (製品詳細ブロック)
============================================================ */
.lineup-product {
  display: flex;
  gap: var(--sp-10);
  margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-bottom: 1px dashed var(--c-gray-300);
}

.lineup-product:last-child {
  border-bottom: none;
  margin-bottom: var(--sp-20);
  padding-bottom: 0;
}

.lineup-product__media {
  flex: 0 0 45%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}

.lineup-product__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lineup-product__badge {
  display: inline-block;
  background: var(--c-teal-light);
  color: var(--c-teal);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
  align-self: flex-start;
}

.lineup-product__name {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
  line-height: 1.1;
}

.lineup-product__catch {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-gray-800);
  margin-bottom: var(--sp-4);
}

.lineup-product__desc {
  font-size: var(--fs-base);
  color: var(--c-gray-600);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

/* 個別スペック表 */
.lineup-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-5);
  font-size: var(--fs-sm);
}

.lineup-spec-table th,
.lineup-spec-table td {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-gray-200);
}

.lineup-spec-table th {
  text-align: left;
  color: var(--c-gray-500);
  font-weight: var(--fw-medium);
  width: 30%;
}

.lineup-spec-table td {
  color: var(--c-gray-900);
  font-weight: var(--fw-bold);
}

/* ============================================================
   Lineup: Features (共通の強み)
============================================================ */
.lineup-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.lineup-feature-card {
  background: var(--c-gray-50);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border: 1px solid var(--c-gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lineup-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--c-white);
  border-color: var(--c-teal-mid);
}

.lineup-feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--c-teal);
  margin-bottom: var(--sp-4);
}

.lineup-feature-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}

.lineup-feature-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-gray-700);
  line-height: 1.6;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .lineup-product { flex-direction: column; gap: var(--sp-6); }
  .lineup-product__media { aspect-ratio: 16 / 9; }
  .lineup-features { grid-template-columns: 1fr; }
}