/* =========================================================
   Webinar LP — SSC Quiet Confidence
   DESIGN.md のトークンに準拠（紫はアクセントとして点的に使用）
   ========================================================= */

:root {
  /* colors */
  --c-primary: #7B5FD9;
  --c-primary-soft: #9F88E8;
  --c-primary-deep: #2D1F5C;
  --c-bg-base: #FAFAFA;
  --c-bg-dark: #15131F;
  --c-bg-deep: #0B0918;
  --c-text: #15131F;
  --c-text-sub: #6B6B78;
  --c-text-muted: #A0A0AC;
  --c-on-dark: #F5F2FA;

  /* derived (hairlines / surfaces) */
  --c-surface: #FFFFFF;            /* bg-base 上の微細コントラスト面 */
  --c-line: rgba(21, 19, 31, 0.08);
  --c-line-strong: rgba(21, 19, 31, 0.14);
  --c-line-on-dark: rgba(245, 242, 250, 0.14);
  --c-field-dark: rgba(245, 242, 250, 0.04);

  /* type */
  --f-sans: 'Inter', 'Noto Sans JP', sans-serif;
  --f-mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;

  /* radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* spacing */
  --s-xs: 8px;
  --s-sm: 16px;
  --s-md: 24px;
  --s-lg: 40px;
  --s-xl: 64px;
  --s-2xl: 96px;

  /* layout */
  --container: 1120px;
  --header-h: 64px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; }
img { max-width: 100%; }

a { color: inherit; }

/* スクリーンリーダー・クローラー向けに保持しつつ視覚的に隠す */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-lg);
}

/* セクション見出し: 紫の短いアクセントマークを添える */
.section-title {
  font-size: 1.375rem;        /* 22px（少し縮小） */
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-md);
  padding-left: var(--s-sm);
  border-left: 2px solid var(--c-primary);
}

/* =========================================================
   Header（ロゴ中央 / 半透明追従）
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo img {
  display: block;
  height: 26px;
  width: auto;
  flex: 0 0 auto;   /* flexアイテムとして潰れないように（SVGロゴ対策） */
}

/* =========================================================
   本体レイアウト：左コンテンツ / 右追従フォーム
   ========================================================= */
.layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s-xl);
  align-items: stretch;            /* レールを行高に伸ばし sticky 可動域を確保 */
  padding-block: var(--s-2xl);
}
.layout__main > * + * { margin-top: var(--s-2xl); }

/* MV：メインビジュアル（完成バナーを全体表示・トリミングしない） */
.hero-banner { margin: 0; }
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}

/* イベント概要（タイトル・キャッチ・メタ） */
.intro__title {
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);   /* display-md 相当 */
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-md);
}
.intro__catch {
  font-size: 1.1875rem;            /* body-lg */
  line-height: 1.7;
  color: var(--c-text-sub);
  max-width: 38em;
}
.meta {
  list-style: none;
  padding: 0;
  margin-top: var(--s-lg);
  display: grid;
  gap: 0;
}
.meta li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: var(--s-md);
  padding-block: var(--s-sm);
  border-bottom: 1px solid var(--c-line);
}
.meta li:first-child { border-top: 1px solid var(--c-line); }
.meta .label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text-sub);
  letter-spacing: 0.02em;
}

.target {
  margin-top: var(--s-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
}
.target h4 { font-size: 1.125rem; margin-bottom: var(--s-sm); }
.target ul { padding-left: 1.1em; color: var(--c-text-sub); }
.target li { margin-block: 0.25em; }
.target li::marker { color: var(--c-primary); }

/* =========================================================
   ② 開催概要（table）
   ========================================================= */
.overview-table {
  width: 100%;
  border-collapse: collapse;
}
.overview-table th,
.overview-table td {
  text-align: left;
  padding: var(--s-md) var(--s-sm);
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.overview-table th {
  width: 9rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--c-text-sub);
  letter-spacing: 0.02em;
}

/* 参加特典コールアウト（開催概要内・アクセント付きで目立たせる） */
.perk {
  margin-top: var(--s-md);
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-md) var(--s-md) var(--s-md) var(--s-sm);
  background: rgba(123, 95, 217, 0.07);
  border: 1px solid var(--c-primary-soft);
  border-left: 3px solid var(--c-primary);
  border-radius: var(--r-md);
}
.perk__label {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-on-dark);
  background: var(--c-primary);
  border-radius: var(--r-sm);
  padding: 5px 12px;
}
.perk__text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text);
}
.perk__text strong { font-weight: 600; }
@media (max-width: 480px) {
  .perk { flex-direction: column; align-items: flex-start; gap: var(--s-xs); }
}

/* =========================================================
   ③ テーマ別詳細
   ========================================================= */
.themes { display: grid; gap: var(--s-lg); }
.theme {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  transition: border-color 0.3s var(--ease);
}
.theme:hover { border-color: var(--c-line-strong); }
.theme__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-primary-deep);
  background: var(--c-primary-soft);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  margin-bottom: var(--s-sm);
}
.theme__title { font-size: 1.25rem; line-height: 1.4; margin-bottom: var(--s-sm); }
.theme p { color: var(--c-text-sub); }
.theme h4 {
  font-size: 0.95rem;
  margin-top: var(--s-md);
  margin-bottom: var(--s-xs);
}
.theme__points {
  list-style: none;
  padding: 0;
  color: var(--c-text-sub);
}
.theme__points li {
  position: relative;
  padding-left: 1.25em;
  margin-block: 0.3em;
}
.theme__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: var(--c-primary);
}
.theme__speaker {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-top: var(--s-md);
  padding-top: var(--s-md);
  border-top: 1px solid var(--c-line);
}
.theme__speaker .avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--r-pill);
  background: var(--c-surface);
  object-fit: cover;
  flex: 0 0 auto;
}
.theme__speaker .avatar--ph {
  background: linear-gradient(135deg, var(--c-primary-soft), var(--c-primary-deep));
}
.theme__speaker .name { font-weight: 600; }
.theme__speaker .role { font-size: 0.875rem; color: var(--c-text-sub); }

/* =========================================================
   申込フォーム（HubSpot埋め込み枠・追従）
   ※ 本番は HubSpot 埋め込みに差し替わり個別デザインは効かないため、
     器は中立・最小限の装飾にとどめる
   ========================================================= */
.layout__rail .form-card {
  position: sticky;
  top: calc(var(--header-h) + var(--s-md));
  /* 縦幅が狭くても submit に届くよう自然位置でも収め、内部スクロールさせる */
  max-height: calc(100vh - var(--header-h) - var(--s-2xl));
  overflow-y: auto;
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  /* padding はヘッダー部のみ。HubSpot埋め込み部はフラッシュにして余白を詰める */
  padding: 0;
}
/* タイトル＋リード文（ここだけ内側余白を持たせる） */
.form-card__head { padding: var(--s-lg) var(--s-lg) 0; }
.form-card__title { font-size: 1.25rem; margin-bottom: var(--s-xs); }
.form-card .form-note {
  font-size: 0.875rem;
  color: var(--c-text-sub);
  margin-bottom: var(--s-md);
}

/* HubSpot 埋め込み部：余白ゼロ（フォーム側の余白に任せる） */
.hs-form-embed { padding: 0; }

/* HubSpot 埋め込み枠（本番は埋め込みコードに差し替え） */
.hs-form-placeholder {
  border: 1px dashed var(--c-line-strong);
  border-radius: var(--r-md);
  padding: var(--s-md);
}
.hs-embed-hint {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: var(--s-md);
}

.field { margin-bottom: var(--s-sm); }
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-sub);
  margin-bottom: var(--s-xs);
}
.field .req { color: var(--c-text-sub); margin-left: 4px; }
.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-bg-base);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}
.field input::placeholder { color: var(--c-text-muted); }
.field input:focus,
.field select:focus {
  outline: 2px solid var(--c-primary);
  outline-offset: 1px;
  border-color: transparent;
}
.field select { appearance: none; cursor: pointer; }

.btn-primary {
  display: block;
  width: 100%;
  margin-top: var(--s-md);
  text-align: center;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-on-dark);
  background: var(--c-text);
  border: 0;
  border-radius: var(--r-sm);
  padding: 13px 24px;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.btn-primary:hover { opacity: 0.88; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-bg-deep);
  color: var(--c-text-muted);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  font-size: 0.875rem;
}

/* =========================================================
   SP用 固定CTA（デスクトップは非表示）
   ========================================================= */
.sp-cta { display: none; }

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
    padding-block: var(--s-xl);
    padding-bottom: calc(var(--s-xl) + 4.5rem);   /* 固定CTAバーぶん */
  }
  .layout__rail .form-card {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .intro__title { letter-spacing: -0.02em; }

  /* 下部固定の申し込みCTA */
  .sp-cta {
    display: block;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 50;
    text-align: center;
    background: var(--c-text);
    color: var(--c-on-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--s-sm);
    border-top: 1px solid var(--c-primary-deep);
    transition: transform 0.3s var(--ease);
  }
  .sp-cta.is-hidden { transform: translateY(100%); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--s-md); }
}

/* アクセシビリティ：モーション抑制 */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   一覧ページ（キャンペーンLP）専用コンポーネント
   ※ 詳細ページでは .breadcrumb / .related のみ使用
   ========================================================= */

/* アンカー着地が追従ヘッダーに潜らないように（一覧・詳細共通） */
[id] { scroll-margin-top: calc(var(--header-h) + var(--s-md)); }

/* ----- 1カラムのページ本体（詳細ページの .layout とは別物） ----- */
.lp-main > section { padding-block: var(--s-2xl); }
.lp-main > section + section { padding-top: 0; }

/* ----- ヒーロー ----- */
.lp-hero { text-align: center; }
.lp-hero__title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-md);
}
.lp-hero__catch {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--c-text-sub);
  max-width: 40em;
  margin-inline: auto;
}
.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-xs);
  margin-top: var(--s-lg);
  padding: 0;
  list-style: none;
}
.lp-hero__badges li {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-primary-deep);
  background: var(--c-primary-soft);
  border-radius: var(--r-sm);
  padding: 5px 12px;
}

/* ----- ピックアップ（今ホットな1回） ----- */
.pickup {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-lg);
  align-items: center;
  background: rgba(123, 95, 217, 0.07);
  border: 1px solid var(--c-primary-soft);
  border-left: 3px solid var(--c-primary);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.pickup:hover { transform: translateY(-2px); }
.pickup__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
.pickup__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-on-dark);
  background: var(--c-primary);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  margin-bottom: var(--s-sm);
}
.pickup__date {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-sub);
  margin-bottom: var(--s-xs);
}
.pickup__title {
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-sm);
}
.pickup__themes {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s-md);
  font-size: 0.9375rem;
  color: var(--c-text-sub);
}
.pickup__themes li {
  position: relative;
  padding-left: 1.25em;
  margin-block: 0.3em;
}
.pickup__themes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: var(--c-primary);
}

/* 擬似ボタン（カード全体がリンクのため span で表現） */
.cta-pseudo {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-on-dark);
  background: var(--c-text);
  border-radius: var(--r-sm);
  padding: 11px 22px;
  transition: opacity 0.2s var(--ease);
}
.pickup:hover .cta-pseudo,
.event-card__link:hover .cta-pseudo { opacity: 0.88; }

/* ----- 扱うテーマの俯瞰 ----- */
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  list-style: none;
  padding: 0;
  margin-top: var(--s-lg);
}
.topic {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-md);
}
.topic__name {
  font-size: 1rem;
  margin-bottom: var(--s-xs);
  padding-left: var(--s-sm);
  border-left: 2px solid var(--c-primary);
}
.topic p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}

/* ----- テーマ絞り込み ----- */
.filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-xs);
  margin-bottom: var(--s-lg);
}
.filter__btn {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-sub);
  background: transparent;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.filter__btn:hover { border-color: var(--c-primary); color: var(--c-text); }
.filter__btn[aria-pressed="true"] {
  color: var(--c-on-dark);
  background: var(--c-text);
  border-color: var(--c-text);
}
.filter__empty {
  color: var(--c-text-sub);
  font-size: 0.9375rem;
}

/* ----- テーマタグ ----- */
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-primary-deep);
  background: var(--c-primary-soft);
  border-radius: var(--r-sm);
  padding: 4px 10px;
}

/* ----- セミナーカード（1カラム横長・サムネイル付き） ----- */
.program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-md);
  list-style: none;
  padding: 0;
}
.program-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.program-card:hover {
  border-color: var(--c-line-strong);
  transform: translateY(-2px);
}
.program-card[hidden] { display: none; }

.program-card__link {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--s-lg);
  align-items: center;
  padding: var(--s-md);
  text-decoration: none;
}
.program-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
.program-card__body { min-width: 0; }

/* 共催セミナーの日時・ラベル行 */
.program-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-xs);
  margin-bottom: var(--s-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-sub);
}
.badge-joint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-on-dark);
  background: var(--c-primary);
  border-radius: var(--r-sm);
  padding: 4px 10px;
}

.program-card__combo {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-sm);
}
.program-card__combo .x {
  color: var(--c-primary);
  margin-inline: 0.35em;
  font-weight: 500;
}
.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-xs);
  margin-bottom: var(--s-sm);
}
.program-card__lead {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-text-sub);
  margin-bottom: var(--s-sm);
}
.program-card__for {
  background: var(--c-bg-base);
  border-radius: var(--r-md);
  padding: var(--s-sm) var(--s-md);
  margin-bottom: var(--s-md);
}
.program-card__for dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  margin-bottom: 2px;
}
.program-card__for dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}
.program-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-sm);
  flex-wrap: wrap;
}
.program-card__cadence {
  font-size: 0.8125rem;
  color: var(--c-text-sub);
}

/* カード内：リードマグネット（参加特典）を目立たせる */
.lead-magnet {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  background: rgba(123, 95, 217, 0.07);
  border: 1px solid var(--c-primary-soft);
  border-left: 3px solid var(--c-primary);
  border-radius: var(--r-md);
  padding: var(--s-sm) var(--s-md);
  margin-bottom: var(--s-md);
}
.lead-magnet__label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-on-dark);
  background: var(--c-primary);
  border-radius: var(--r-sm);
  padding: 4px 10px;
}
.lead-magnet__text {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--c-text);
}

/* 共催カード：開催日時を大きく見せる */
.event-date {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 var(--s-sm);
  margin-bottom: var(--s-sm);
  padding-left: var(--s-sm);
  border-left: 3px solid var(--c-primary);
}
.event-date__day {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.event-date__time {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-primary-deep);
}

/* 詳細ページ：共催の冠（バッジ＋両社名） */
.event-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-sub);
  margin-bottom: var(--s-md);
}
/* 詳細ページ：登壇者ブロック（対談形式など、テーマと分けて出す場合） */
.speakers { margin-top: var(--s-lg); }
.speakers .theme__speaker + .theme__speaker { margin-top: var(--s-sm); }

/* グループ見出し（共催 / 定期開催） */
.program-group + .program-group { margin-top: var(--s-xl); }
.group-title {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: 1.0625rem;
  margin-bottom: var(--s-xs);
}
.group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}
.group-note {
  font-size: 0.875rem;
  color: var(--c-text-sub);
  margin-bottom: var(--s-md);
}

/* ----- 特徴・価値 ----- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  list-style: none;
  padding: 0;
}
.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-md);
}
.feature__title {
  font-size: 1.0625rem;
  margin-bottom: var(--s-xs);
}
.feature p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}

/* =========================================================
   詳細ページ：パンくず / 他の開催回
   ========================================================= */
/* --- 一時非表示：一部ページを先行リリースするため、一覧への導線を隠している。
       一覧を公開したら、この display:none の1行を消せば元に戻る（マークアップは残してある） --- */
.breadcrumb { display: none; }

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--c-text-sub);
  margin-bottom: var(--s-md);
}
/* パンくずの直後は .layout__main > * + * の大きな余白を打ち消す */
.layout__main > .breadcrumb + * { margin-top: 0; }
.breadcrumb a { color: var(--c-text-sub); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb span[aria-hidden] { margin-inline: 0.5em; color: var(--c-text-muted); }

.related__list {
  list-style: none;
  padding: 0;
}
.related__list li + li { border-top: 1px solid var(--c-line); }
.related__list a {
  display: block;
  padding: var(--s-sm) 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.related__list a:hover { color: var(--c-primary); }
.related__list .date {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text-sub);
}
.related__back {
  display: inline-block;
  margin-top: var(--s-md);
  font-size: 0.875rem;
  color: var(--c-primary);
}

/* =========================================================
   一覧ページ responsive
   ========================================================= */
@media (max-width: 860px) {
  .lp-main > section { padding-block: var(--s-xl); }
  .lp-main > section:last-of-type { padding-bottom: calc(var(--s-xl) + 4.5rem); }
  .pickup { grid-template-columns: 1fr; }
  .topics { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .program-card__link { grid-template-columns: 1fr; gap: var(--s-md); }
}
