/* ===== seminar-video-page.css — セミナー動画視聴ページ ===== */

.seminar-video-page {
  width: 100%;
}

.seminar-video-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.seminar-video-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color-1);
  margin: 0;
}

@media (max-width: 860px) {
  .seminar-video-title {
    font-size: 22px;
  }
}

/* 動画プレイヤー（レスポンシブ 16:9） */
.seminar-video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.seminar-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* アンケート／資料DL 導線 */
.seminar-video-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--color-gray, #F2F2F2);
  border-radius: 12px;
  padding: 20px 24px;
}

.seminar-video-cta__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color-1);
  margin: 0;
}

.seminar-video-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 99px;
  background: var(--color-primary, #FC599B);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.seminar-video-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color-1);
}

.seminar-video-body p {
  margin: 0 0 1em;
}

/* フッター直上：Flowsサービス紹介への必須CTA */
.seminar-video-footer-cta {
  text-align: center;
  border-top: 1px solid #E8E8E8;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.seminar-video-footer-cta__text {
  font-size: 15px;
  color: var(--text-color-1);
  margin: 0;
}

.seminar-video-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 99px;
  background: var(--color-primary, #FC599B);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
