/* hero.min-480.css
   ヒーローセクション専用レスポンシブCSS
   適用条件: (min-width: 480px)
   役割: 480px以上の画面幅におけるヒーローセクションのレイアウト・タイポグラフィ調整
   注意: 既存のベーススタイル( css/hero.css と <style> inline )に対する上書き用
*/

@media (min-width: 480px) {
  /* 画面高の中央配置（ナビ固定分を考慮） */
  .hero {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
  }

  /* 重なり順を維持 */
  .hero__container {
    position: relative;
  }
  .hero__content {
    position: relative;
    z-index: 2;
  }
  .hero__visual {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  /* タイポ調整（圧縮） */
  .hero__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  /* 説明文の余白と行間を圧縮 */
  .hero__description {
    margin-bottom: var(--spacing-sm);
  }
  .hero__description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ビジュアル領域をさらに圧縮して全体高を抑制 */
  .hero__kanji-logo {
    height: 200px;
  }

  /* コンテンツの左右中央寄せ + 余白調整 */
  .hero__container {
    /* grid-template-columns: 1fr; */
    justify-items: center;
    gap: var(--spacing-sm);
  }
  .hero__content,
  .hero__visual {
    justify-self: center;
    text-align: center;
  }

  /* CTAボタンのサイズ/間隔を圧縮 */
  .hero__content .hero__liquid-cta {
    --lg-min-width: 180px;
    --lg-min-height: 40px;
    margin-right: 0;
    margin-top: 6px;
    display: none;
  }
  .hero__content .hero__liquid-cta .label {
    font-size: 0.95rem;
  }

  /* スクロールインジケータが重なる場合は少し持ち上げ */
  .hero__scroll-indicator {
    bottom: var(--spacing-md);
  }
}
