/* ================================================================
   MIYAMA LINK — page-settlement.css
   ================================================================ */

.story-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
}
.story-body .ja-body { margin-top: 1.5rem; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
  font-family: var(--font-ja);
}
.comparison-table thead th {
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 400;
  font-size: 0.875rem;
}
.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(42, 74, 53, 0.05);
}
.comparison-table thead th.highlight {
  background: var(--primary);
  color: var(--white);
}
.comparison-table td:first-child { text-align: left; color: var(--text-mid); }
.check { color: var(--primary); font-size: 1.1rem; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.support-card {
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
}
.support-card .en-label { display: block; margin-bottom: 0.75rem; }
.support-card__title {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (max-width: 1023px) {
  .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .support-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .support-grid { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 0.75rem; font-size: 0.8rem; }
}
