/* レスポンシブ表示の微調整 */
body { overflow-x: hidden; }
.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.service-card p, .work-meta h3, .news-list span { overflow-wrap: anywhere; }
.service-card p { max-width: none; }
@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(52px, 16vw, 68px); letter-spacing: -0.05em; }
  .section-heading h2 { line-height: 1.25; }
  .service-card h3 { font-size: 28px; }
}
