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

.guide-overview .ja-body { max-width: 720px; margin: 0 auto 2rem; text-align: center; }

.guide-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.field-tag {
  padding: 6px 14px;
  border: 1px solid var(--primary-pale);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--primary-pale);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.feature-card__title {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  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;
}
.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(42,74,53,0.04);
}
.comparison-table thead th.highlight {
  background: var(--primary);
  color: var(--white);
}
.comparison-table td:first-child { color: var(--text-mid); font-weight: 400; }

.guide-rso { max-width: 720px; }
.guide-rso__body .ja-body { margin-top: 1.5rem; }

.cost-note { max-width: 640px; margin: 0 auto; text-align: center; }

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