/* ==========================================================
   webinar.css
   ウェビナー一覧ページ専用スタイル
   PreCSS カスタムプロパティ構成
   ========================================================== */

/* ----------------------------------------------------------
   CSS カスタムプロパティ（デザイントークン）
   ---------------------------------------------------------- */
:root {
  /* メインカラー（サイト共通 --main-color: #2A64F6 の明暗バリエーション。
     納品CSSで参照されているが未定義だったため追加） */
  --main-color-light: #eaf0fe;
  --main-color-dark: #1e4fd1;

  /* サイド */
  --aside-width: 360px;
  --aside-gap: 40px;
  /* テキスト */
  --text-primary: #1a1a2e;
  --text-secondary: #555577;
  --text-muted: #888899;

  /* 背景 */
  --bg-base: #f5f7ff;
  --bg-white: #ffffff;
  --bg-card: #ffffff;

  /* ボーダー */
  --border-light: #e8ecf8;
  --border-card: #dde3f5;

  /* シャドウ */
  --shadow-card: 0 0 8px rgba(0, 0, 0, 0.15);
  --shadow-card-hover: 0 8px 32px rgba(42, 100, 246, 0.18);
  --form-panel-shadow: 0 0 8px rgba(0, 0, 0, 0.15);

  /* タグカラー */
  --tag-device: #e8f4fd;
  --tag-device-text: #0369a1;
  --tag-data: #fef3c7;
  --tag-data-text: #92400e;
  --tag-mdr: #f0fdf4;
  --tag-mdr-text: #166534;
  --tag-cloud: #faf5ff;
  --tag-cloud-text: #7c3aed;
  --tag-intel: #fff1f2;
  --tag-intel-text: #9f1239;

  /* スペーシング */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;

  /* ボーダーラジウス */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* トランジション */
  --transition-base: 0.22s ease;
  --transition-slow: 0.36s ease;

  /* フォント */
  --font-base: "Noto Sans JP", sans-serif;
}

main.wbn_body_wrap {
  background: linear-gradient(180deg, #f0f0f0, #ffffff) no-repeat;
}

.el_page-description {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 16px;
}
.bl_main-image.bl_main-image__webinar {
  font-size: 38px;
  color: var(--main-color);
  font-weight: 600;
  letter-spacing: 0.05em;
  background: url("/img/customer-webinar/header_bg_webinar.png") center no-repeat #0066ff;
  background-size: 1500px auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.bl_main-image__webinar .el_page-title {
  color: #ffffff;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .bl_main-image.bl_main-image__webinar {
    font-size: 24px;
    padding: 40px 0;
    background: url("../img/customer-webinar/header_bg_webinar_sp.png") center no-repeat #0066ff;
    background-size: 100% auto;
  }

  .bl_main-image__webinar .el_page-title {
    padding: 0 24px;
  }
  .bl_main-image__webinar .el_page-description {
    font-size: 13px;
    padding: 0 24px 16px 24px;
  }
}
/* ----------------------------------------------------------
   module
   ---------------------------------------------------------- */
.wbd_el_ic {
  width: 16px;
  height: 16px;
}
/* ----------------------------------------------------------
   ベースリセット補完
   ---------------------------------------------------------- */
.wbn_body *,
.wbn_hero * {
  box-sizing: border-box;
}

/* ----------------------------------------------------------
   ヒーローセクション
   ---------------------------------------------------------- */
.el_page-description {
}

/* ----------------------------------------------------------
   コンテンツボディ
   ---------------------------------------------------------- */
.wbn_body {
  padding: var(--space-xl) 0 80px;
}

/* ----------------------------------------------------------
   フィルタータブ
   ---------------------------------------------------------- */
.wbn_filter {
  margin-bottom: var(--space-xl);
}

.wbn_filter__inner {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.wbn_filter__btn {
  padding: 8px 22px;
  border-radius: 24px;
  border: 2px solid var(--border-card);
  background: var(--bg-white);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-base);
  line-height: 1;
}

.wbn_filter__btn:hover {
  border-color: var(--main-color);
  color: var(--main-color);
}

.wbn_filter__btn.is-active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  box-shadow: 0 2px 10px rgba(42, 100, 246, 0.3);
}

/* ----------------------------------------------------------
   セクション
   ---------------------------------------------------------- */
.wbn_section {
  overflow: visible;
}

.wbn_section__header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-light);
}

.wbn_section__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0;
}

.wbn_section__title-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.wbn_section__title-label--upcoming {
  background: var(--red);
  color: #fff;
}

.wbn_section__title-label--archive {
  background: var(--text-muted);
  color: #fff;
}

/* ----------------------------------------------------------
   カードグリッド
   ---------------------------------------------------------- */
.wbn_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .wbn_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wbn_grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   ウェビナーカード
   ---------------------------------------------------------- */
.wbn_card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.wbn_card a:hover .el_smallerbtn {
  background: white;
  color: var(--main-color);
}

.wbn_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.wbn_card a {
  height: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* サムネイル */
.wbn_card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--main-color-light);
  overflow: hidden;
}

.wbn_card--archive .wbn_card__thumb {
  background: #f4f5f8;
}

.wbn_card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wbn_card__thumb-placeholder svg {
  width: 64px;
  height: 64px;
}

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

/* バッジ */
.wbn_card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
}

.wbn_card__badge--live {
  background: var(--red);
  color: #fff;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.wbn_card__badge--archive {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

/* カード本体 */
.wbn_card__body {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: var(--space-sm);
}

/* メタ情報 */
.wbn_card__meta {
  display: flex;
  gap: var(--space-md);
}

.wbn_card__date {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  font-weight: 600;
  color: var(--main-color);
}

.wbn_card__date svg {
  flex-shrink: 0;
}

.wbn_card__date--archive {
  color: var(--text-muted);
}

/* タグ */
.wbn_card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

/* タグカラー自動設定 */
.wbn_card__tag:has-text {
  background: var(--tag-device);
  color: var(--tag-device-text);
}

/* タグ種別ごとのカラー（JS不要・テキスト内容で判定できないためdata属性代替） */
.wbn_card[data-type="upcoming"] .wbn_card__tag {
  background: var(--main-color-light);
  color: var(--main-color);
}

.wbn_card[data-type="archive"] .wbn_card__tag {
  background: #f0f0f5;
  color: var(--text-secondary);
}

/* タイトル */
.wbn_card__txt {
  margin-bottom: auto;
}
.wbn_card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  margin: 0 0 var(--space-sm) 0;
  flex: 1;
}

/* 説明文 */
.wbn_card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* 登壇者 */
.wbn_card__speaker {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--main-color-light);
  border-radius: var(--radius-md);
  margin-top: auto;
}

.wbn_card__speaker-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wbn_card__speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wbn_card__speaker-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.wbn_card__speaker-role {
  font-size: 11px;
  color: var(--text-secondary);
}

/* フッター（アーカイブ用） */
.wbn_card__footer {
  display: block;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.wbn_card__duration {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  color: var(--text-muted);
}

/* ボタン */
.wbn_card__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.wbn_card__btn--primary {
  background: var(--main-color);
  color: #fff;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(42, 100, 246, 0.25);
}

.wbn_card__btn--primary:hover {
  background: var(--main-color-dark);
  box-shadow: 0 4px 16px rgba(42, 100, 246, 0.4);
  transform: translateY(-1px);
}

.wbn_card__btn--secondary {
  background: var(--bg-white);
  color: var(--main-color);
  border: 1.5px solid var(--main-color);
  padding: 7px 16px;
  font-size: 12px;
}

.wbn_card__btn--secondary:hover {
  background: var(--main-color);
  color: #fff;
}

/* ----------------------------------------------------------
   メルマガ登録バナー
   ---------------------------------------------------------- */
.wbn_newsletter {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #0f2a7a 0%, #2a64f6 100%);
  overflow: hidden;
  position: relative;
}

.wbn_newsletter::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.wbn_newsletter__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-xl);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.wbn_newsletter__icon {
  flex-shrink: 0;
}

.wbn_newsletter__text {
  flex: 1;
  min-width: 200px;
}

.wbn_newsletter__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--space-xs);
}

.wbn_newsletter__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.wbn_newsletter__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-base);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.wbn_newsletter__btn:hover {
  background: var(--main-color-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   レスポンシブ
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .wbn_body {
    padding: var(--space-lg) var(--space-md) 80px;
  }

  .wbn_hero {
    padding: 40px var(--space-md) 36px;
  }

  .wbn_newsletter__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .wbn_newsletter__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wbn_card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .wbn_card__btn--secondary {
    width: 100%;
    text-align: center;
  }

  .wbn_filter__btn {
    font-size: 13px;
    padding: 7px 16px;
  }
}

/* ==========================================================
   詳細ページ（webinar-detail）スタイル
   ========================================================== */

/* ----------------------------------------------------------
   ベース補完
   ---------------------------------------------------------- */
.wbd_wrap *,
.wbd_breadcrumb * {
  box-sizing: border-box;
}

/* ----------------------------------------------------------
   パンくずリスト
   ---------------------------------------------------------- */
.wbd_breadcrumb {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.wbd_breadcrumb__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px var(--space-lg);
}

.wbd_breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wbd_breadcrumb__item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.wbd_breadcrumb__item + .wbd_breadcrumb__item::before {
  content: "›";
  margin: 0 6px;
  color: var(--gray);
}

.wbd_breadcrumb__item a {
  color: var(--main-color);
  text-decoration: none;
}

.wbd_breadcrumb__item a:hover {
  text-decoration: underline;
}

.wbd_breadcrumb__item--current {
  color: var(--text-secondary);
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ----------------------------------------------------------
   メインラッパー
   ---------------------------------------------------------- */
.wbd_wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--aside-gap);
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* ----------------------------------------------------------
   左カラム（動画＋説明）
   ---------------------------------------------------------- */
.wbd_main {
  flex: 1;
  min-width: 0;
}

/* タイトルエリア */
.wbd_title-area {
  margin-bottom: var(--space-lg);
}

.wbd_title-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.wbd_tag {
  font-size: 11px;
  font-weight: 500;

  padding: 3px 12px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-secondary);
}

.wbd_duration {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.wbd_title {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.wbd_info {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.wbd_info .wbd_duration {
  color: var(--text-secondary);
  font-size: 14px;
}

.wbd_info .wbd_duration svg {
  columns: var(--bg-base);
}
/* ----------------------------------------------------------
   動画エリア
   ---------------------------------------------------------- */
.wbd_video-wrap {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a18;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  isolation: isolate;
  transform: translateZ(0);
}

/* ロック状態 */
.wbd_video-locked {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wbd_video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(2px) brightness(0.55);
  transform: scale(1.04);
}

.wbd_video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 30, 0.45);
}

.wbd_video-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-lg);
}

.wbd_lock-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(42, 100, 246, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.wbd_video-overlay__text {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.wbd_video-overlay__btn {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(42, 100, 246, 0.45);
}

.wbd_video-overlay__btn:hover {
  background: var(--main-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 100, 246, 0.55);
}

@media only screen and (max-width: 767px) {
  .wbd_video-overlay__inner {
    gap: 8px;
  }

  .wbd_video-overlay__btn {
    display: inline-flex;
  }
  
    .wbd_video-locked {
    height: auto;
    width: 100%;
    /* aspect-ratioが効かない場合の保険 */
    padding-top: 56.25%; /* 16:9 */
    position: relative;
  }
  
  .wbd_video-thumb {
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* 動画プレイヤー */
.wbd_video-player__ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.wbd_video-player__ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.wbd_video-player__ratio video {
  display: block;
}

/* デモ用プレースホルダー */
.wbd_video-demo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: #0f1a3a;
}

.wbd_video-demo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* ----------------------------------------------------------
   ウェビナー概要
   ---------------------------------------------------------- */
.wbd_summary {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
}

.wbd_summary__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-light);
}

.wbd_summary__text {
  font-size: 15px;

  line-height: 1.85;
  margin: 0 0 var(--space-lg);
}

.wbd_summary__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.wbd_summary__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.wbd_summary__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.wbd_captures {
  margin-top: 40px;
  overflow: hidden;
}
.wbd_captures__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}
.wbd_captures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wbd_captures__item {
  border-radius: 4px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 16/9;
}
.wbd_captures__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: solid 1px var(--border-card);
}
@media (max-width: 600px) {
  .wbd_captures__grid {
    grid-template-columns: 1fr;
  }
}



/* ----------------------------------------------------------
   右カラム（サイドバー）
   ---------------------------------------------------------- */
.wbd_aside {
  width: var(--aside-width);
  flex-shrink: 0;
  position: sticky;
  top: 24px;
}

.wbd_aside.is-unlocked {
  position: static;
}

/* ----------------------------------------------------------
   フォームパネル
   ---------------------------------------------------------- */
.wbd_form-panel {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  box-shadow: var(--form-panel-shadow);
  overflow: hidden;
}

/* パネルヘッダー */
.wbd_form-panel__head {
  background: linear-gradient(120deg, #0f2a7a 0%, var(--main-color) 100%);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.wbd_form-panel__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wbd_form-panel__icon img {
  width: 20px;
  height: 20px;
}
.wbd_form-panel__head-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* パネル本体 */
.wbd_form-panel__body {
  padding: var(--space-lg);
}

/* ----------------------------------------------------------
   フォーム説明文
   ---------------------------------------------------------- */
.wbd_form-desc {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.wbd_form-desc__lead {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.75;
  margin: 0 0 var(--space-sm);
  font-weight: 500;
}

.wbd_form-desc__merits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wbd_form-desc__merits li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.wbd_form-desc__merits svg {
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   フォーム
   ---------------------------------------------------------- */
.wbd_form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.wbd_form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wbd_form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.wbd_form__required {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
}

.wbd_form__optional {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: #f0f0f5;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
}

.wbd_form__input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-base);
  color: var(--text-primary);
  background: var(--bg-white);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  outline: none;
}

.wbd_form__input::placeholder {
  color: var(--gray);
}

.wbd_form__input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(42, 100, 246, 0.12);
}

.wbd_form__input.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 0, 0, 0.1);
}

.wbd_form__error {
  font-size: 12px;
  color: var(--red);
  margin: 0;
}

/* プライバシー同意チェックボックス */
.wbd_form__privacy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wbd_form__checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  user-select: none;
}

.wbd_form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wbd_form__checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-card);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.wbd_form__checkbox:checked + .wbd_form__checkbox-custom {
  background: var(--main-color);
  border-color: var(--main-color);
}

.wbd_form__checkbox:checked + .wbd_form__checkbox-custom::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.wbd_form__checkbox-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wbd_form__checkbox-text a {
  color: var(--main-color);
  text-decoration: underline;
}

/* 送信ボタン */
.wbd_form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-base);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 3px 12px rgba(42, 100, 246, 0.3);
  margin-top: var(--space-xs);
}

.wbd_form__submit:hover {
  background: var(--main-color-dark);
  box-shadow: 0 6px 20px rgba(42, 100, 246, 0.45);
  transform: translateY(-1px);
}

.wbd_form__submit:active {
  transform: translateY(0);
}

/* 注記テキスト */
.wbd_form__note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

/* ----------------------------------------------------------
   完了メッセージパネル
   ---------------------------------------------------------- */
.wbd_form-panel--thanks .wbd_form-panel__body {
  padding: var(--space-xl) var(--space-lg);
}

.wbd_thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.wbd_thanks__icon {
  animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pop-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wbd_thanks__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.wbd_thanks__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.wbd_thanks__watch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-base);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 3px 12px rgba(42, 100, 246, 0.3);
  margin-top: var(--space-sm);
}

.wbd_thanks__watch-btn:hover {
  background: var(--main-color-dark);
  box-shadow: 0 6px 20px rgba(42, 100, 246, 0.45);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   詳細ページ レスポンシブ
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --aside-width: 300px;
    --aside-gap: 24px;
  }
}

@media (max-width: 768px) {
  .wbd_wrap {
    flex-direction: column;
    padding: 16px;
    gap: var(--space-xl);
  }

  .wbd_aside {
    width: 100%;
    position: static;
  }

  .wbd_title {
    font-size: 20px;
  }

  .wbd_summary {
    padding: var(--space-md) var(--space-lg);
  }

  .wbd_breadcrumb__item--current {
    max-width: 180px;
  }
  .wbd_info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .wbd_form-panel__body {
    padding: var(--space-md);
  }

  .wbd_video-overlay__text {
    font-size: 13px;
  }

  .wbd_video-overlay__btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}


/* ----------------------------------------------------------
   キャプチャスライダー
   ---------------------------------------------------------- */

.wbd_summary {
  overflow: hidden; /* はみ出し防止 */
}

.wbd_captures {

  margin-top: 40px;
  padding-top: 24px;
}

.wbd_captures .slide-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 24px 40px;
  background: #f4f4f4;
}

.sliderArea {
  width: 100%;

}

@media only screen and (max-width: 767px) {
  .wbd_captures {
    max-width: 280px;
    margin: 0 auto;
  }

  .wbd_captures .slide-wrap {
    padding: 16px;
  }
}

@media screen and (min-width: 768px) {
  .mv-slider__wrap {
    padding: 0 5px;
  }
}
.wbd_captures .slick-prev,
.wbd_captures .slick-next {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url("/img/mv-arrow.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
@media screen and (min-width: 768px) {
.wbd_captures .slick-prev,
.wbd_captures .slick-next {
    width: 24px;
    height: 24px;
  }
}
.wbd_captures .slick-prev {
  left: -12px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
.wbd_captures .slick-prev {
    left: -12px;
  }
}
.wbd_captures .slick-next {
  right: -12px;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
.wbd_captures .slick-next {
    right: -12px;
  }
}
/* ==========================================================
   フローティングCTA（各ウェビナーページ／一覧ページ共通）
   ========================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  transition: transform 0.3s ease;
}
.floating-cta__inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}
.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 10px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.2s;
}
.floating-cta__btn:hover {
  opacity: 0.85;
}
.floating-cta__btn--assessment {
  background: #2a64f6;
  color: #fff;
}
.floating-cta__btn--whitepaper {
  background: #1f4e79;
  color: #fff;
}
.floating-cta__btn--contact {
  background: #fff;
  color: #1f4e79;
  border: 2px solid #1f4e79;
}
@media (min-width: 768px) {
  .floating-cta__btn {
    font-size: 14px;
    padding: 12px 16px;
  }
}
