/* TOPセクション */

/* メインビジュアル */
.top-section {
  background-color: var(--color-700);
  display: flex;
  justify-content: center;
  padding: 32px 32px 0;
}

.top-section__picture {
  display: block;
  width: 100%;
  max-width: 1296px;
}

.top-section__picture img {
  display: block;
  width: 100%;
  height: auto;
}

/* キャッチコピーバー */
.catch-section {
  background-color: var(--color-950);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.catch-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.catch-section__title em {
  font-style: normal;
  color: #f68300;
}

/* SP: 700px以下 — 余白なし、画像フル幅 */
@media (max-width: 700px) {
  .top-section {
    padding: 0;
  }

  .top-section__picture {
    max-width: none;
  }

  .catch-section {
    padding: 12px 16px;
  }

  .catch-section__title {
    font-size: 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
  }
}
