/* ============================================================
   component: hero
   左にコピー + CTA、右にビジュアル
   ============================================================ */

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.hero__title { margin-bottom: 22px; }

/* 見出しと同じ幅で折り返す（カラム幅いっぱい） */
.hero__text {
  max-width: none;
  margin-bottom: 32px;
}

.hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9; /* GMS.png (1366×768) の比率に合わせてトリミングなし */
  background: var(--c-surface-alt);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}
