/* ============================================================
   ムジン株式会社 セミナー集客LP テンプレート
   カラー・フォントは :root の変数だけ差し替えれば全体に反映されます

   レイアウト概要：
   ヘッダー（固定）
   └ .layout（2カラムグリッド）
      ├ .hero-block   … FV画像＋タイトル＋リード文
      ├ .content-block … セッション詳細＋開催概要
      └ .form-sidebar … 申込みフォーム（右側に常駐・sticky）
   フッター
   ============================================================ */

/* 配色はFV（Altego Fit版）から採色。ラベンダー #ab8edc → アクア #6cc2d5 と、
   日付まわりのネイビー #062d4b が基準色。ムジン標準の赤(#ab2324)はこの回だけ使わない。
   view-style.css と同じ値をそのまま使うこと（2ページで見え方をそろえるため）。 */
:root {
  --color-primary: #0f5f80;
  --color-primary-dark: #062d4b;
  --color-primary-light: #dff1f7;
  --color-primary-tint: #f1f8fc;
  --color-accent: #3fb4cf;
  --color-accent-dark: #35a8c2;
  --color-text: #0d2b45;
  /* 色面の一番濃い隅に乗っても4.5:1を切らない濃さ。白地では8.3:1 */
  --color-text-sub: #3b5068;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f8fc;
  --color-border: #dde6f0;
  --color-white: #ffffff;

  --color-gradient: linear-gradient(90deg, #ab8edc 0%, #92cee7 52%, #6cc2d5 100%);
  /* 上に白文字を置くグラデーションは、淡い側だとコントラストが足りないので
     濃いパープル〜ディープブルーの範囲だけを使う */
  --color-gradient-deep: linear-gradient(100deg, #7358ad 0%, #0f5f80 100%);

  /* 白地の上に置く「色の面」。文字は濃色のままなので可読性は変わらない */
  --surface-tint:
    radial-gradient(720px 420px at 6% 0%, rgba(171, 142, 220, 0.2), transparent 62%),
    radial-gradient(760px 520px at 100% 34%, rgba(108, 194, 213, 0.22), transparent 64%),
    linear-gradient(150deg, #f8f5fd 0%, #eff9fc 100%);
  --surface-tint-strong:
    radial-gradient(620px 360px at 0% 0%, rgba(171, 142, 220, 0.3), transparent 60%),
    radial-gradient(680px 460px at 100% 100%, rgba(108, 194, 213, 0.32), transparent 62%),
    linear-gradient(150deg, #f3ecfc 0%, #e6f7fb 100%);
  --surface-card: linear-gradient(160deg, #ffffff 0%, #f7fafd 100%);

  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --header-height: 64px;
  --sidebar-width: 340px;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(6, 45, 75, 0.05), 0 14px 34px -14px rgba(6, 45, 75, 0.2);
  --shadow-hover: 0 2px 4px rgba(6, 45, 75, 0.06), 0 22px 44px -16px rgba(6, 45, 75, 0.28);

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* 天面のブランドバー。ページのどこにいても差し色が視界に残る */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--color-gradient);
  z-index: 100;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  /* 地は白。バナーの緑と青をごく薄い光として四隅に置き、
     ビューポートに固定することでスクロールしても質感が動かないようにする */
  background-color: var(--color-bg);
  background-image:
    radial-gradient(900px 600px at 10% -6%, rgba(171, 142, 220, 0.28), transparent 60%),
    radial-gradient(1000px 700px at 94% 0%, rgba(108, 194, 213, 0.28), transparent 62%),
    radial-gradient(820px 620px at 0% 52%, rgba(171, 142, 220, 0.16), transparent 62%),
    radial-gradient(1100px 800px at 60% 104%, rgba(108, 194, 213, 0.2), transparent 65%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  line-height: 1.8;
  font-size: 16px;
  padding-top: var(--header-height);
}

/* ヘッダーを置かない回。上の余白だけ詰める */
body.no-header {
  padding-top: 32px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.block-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  /* 落ち影＋外側のにじみで、ボタンそのものが光っているように見せる */
  box-shadow:
    0 6px 18px rgba(63, 180, 207, 0.4),
    0 0 22px rgba(63, 180, 207, 0.38);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(63, 180, 207, 0.46),
    0 0 30px rgba(63, 180, 207, 0.5);
}

/* スマホの常駐申込ボタンだけ、外側に光の輪を広げ続ける */
@keyframes cta-halo {
  0% {
    box-shadow:
      0 6px 18px rgba(63, 180, 207, 0.4),
      0 0 22px rgba(63, 180, 207, 0.38),
      0 0 0 0 rgba(63, 180, 207, 0.5);
  }
  70% {
    box-shadow:
      0 6px 18px rgba(63, 180, 207, 0.4),
      0 0 22px rgba(63, 180, 207, 0.38),
      0 0 0 14px rgba(63, 180, 207, 0);
  }
  100% {
    box-shadow:
      0 6px 18px rgba(63, 180, 207, 0.4),
      0 0 22px rgba(63, 180, 207, 0.38),
      0 0 0 0 rgba(63, 180, 207, 0);
  }
}

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ---------- 全体レイアウト（2カラム＋常駐フォーム） ---------- */
.layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  column-gap: 32px;
  grid-template-areas:
    "hero   aside"
    "content aside";
  align-items: start;
}

.hero-block {
  grid-area: hero;
}

.content-block {
  grid-area: content;
  padding-bottom: 80px;
}

/* ---------- FV画像 ---------- */
.fv-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.fv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  color: var(--color-text-sub);
  font-weight: 700;
  text-align: center;
}

.fv-placeholder small {
  font-weight: 400;
  font-size: 12px;
}

/* ---------- タイトル・リード文 ---------- */
.title-block {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}

.seminar-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 15px;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}

.meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-badges li {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- SESSIONS（登壇者カード） ---------- */
.sessions {
  margin-bottom: 64px;
}

.session-list {
  display: grid;
  /* メインカラムが狭まったら自動で1列になる */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* 2列に並べるので、登壇者画像を上・情報を下に積む */
.session-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.session-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(63, 180, 207, 0.55);
}

.session-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 登壇者画像。切り抜きPNGでも通常の顔写真でも収まるよう、
   淡い色面を敷いたうえで cover で流し込む */
.speaker-photo-frame {
  /* カード幅いっぱいだと画像が主役になりすぎるので、固定幅で小さく置く */
  width: 200px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  background:
    radial-gradient(420px 300px at 20% 0%, rgba(171, 142, 220, 0.18), transparent 64%),
    linear-gradient(150deg, #f6f1fd 0%, #e9f5fb 100%);
  border: 1px solid var(--color-border);
}

.speaker-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 背景を抜いたモノトーン写真。白い服が色面に溶けないよう輪郭に薄く影を落とす */
  filter: drop-shadow(0 2px 6px rgba(6, 45, 75, 0.24));
}

.speaker-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  color: var(--color-text-sub);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.session-card-meta {
  margin-bottom: 4px;
}


.session-time-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: var(--color-gradient-deep);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.session-card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 8px;
}

.speaker-line {
  font-size: 13px;
  color: var(--color-text-sub);
}

.speaker-line strong {
  color: var(--color-text);
  font-size: 14px;
}

/* ---------- アコーディオン（セッション内容／登壇者紹介） ---------- */
.accordion {
  border-top: 1px solid var(--color-border);
}

.accordion-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-primary-dark);
}

.accordion-q::after {
  content: "+";
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.accordion.is-open .accordion-q::after {
  content: "－";
}

.accordion-a {
  display: none;
  padding: 0 4px 20px;
  font-size: 14px;
  color: var(--color-text-sub);
}

.accordion-a p + p {
  margin-top: 10px;
}

.accordion.is-open .accordion-a {
  display: block;
}

/* ---------- OUTLINE ---------- */
.outline-table {
  width: 100%;
  border-collapse: collapse;
}

.outline-table th,
.outline-table td {
  text-align: left;
  padding: 20px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  vertical-align: top;
}

.outline-table th {
  width: 160px;
  color: var(--color-primary-dark);
  font-weight: 700;
  background: var(--color-bg-alt);
}

.outline-table ul {
  padding-left: 4px;
}

.outline-table li {
  position: relative;
  padding-left: 14px;
  color: var(--color-text-sub);
  font-size: 13px;
}

.outline-table li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ---------- 申込みフォーム（右側常駐） ---------- */
.form-sidebar {
  grid-area: aside;
  align-self: start;
  position: sticky;
  /* このページは固定ヘッダーを出していないので、画面上端から少し空ける程度でよい。
     下の padding のぶんを引いて、カード自体は上から24pxの位置に来るようにしている */
  top: 12px;
  /* フォームは画面の高さより縦に長い。上限を切ってこの中だけでスクロールさせないと、
     sticky で貼り付いたまま下部の送信ボタンまでたどり着けなくなる */
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  /* スクロール領域の縁でカードの影が切れるので、内側に余白を取って外へ戻す */
  padding: 12px;
  margin: -12px;
  /* 下端まで送ったあとに背面のページが動き出さないようにする */
  overscroll-behavior: contain;
}

.form-sidebar-inner {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

.form-sidebar-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-sidebar-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-sidebar-meta {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.form-sidebar-meta li {
  font-size: 13px;
  color: var(--color-text-sub);
  padding-left: 16px;
  position: relative;
}

.form-sidebar-meta li + li {
  margin-top: 6px;
}

.form-sidebar-meta li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.hubspot-form-target {
  min-height: 200px;
}

.hubspot-placeholder {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  color: var(--color-text-sub);
  font-size: 13px;
  text-align: center;
  padding: 40px 16px;
}

/* ---------- フッター ---------- */
.footer {
  background: #1a1414;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 40px 24px;
  font-size: 12px;
  margin-top: 40px;
}

.footer .logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- レスポンシブ ---------- */
/* フォームは右に置き続けたいので、1カラムへ落とす幅を下げている。
   本文側の各グリッドは auto-fit で自動的に1列になるため、ここで面倒を見なくてよい */
@media (max-width: 820px) {
  /* 1カラムに落ちるSPでは、講演内容を読み切ってから申し込めるよう
     フォームをページ最下部へ回す（上部からの申込は追従CTAが担う） */
  .layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "content"
      "aside";
    padding-top: 24px;
  }

  .form-sidebar {
    position: static;
    /* 1カラムでは本文と一緒に流れるので、独立スクロールの指定はすべて戻す */
    max-height: none;
    overflow: visible;
    padding: 0;
    margin: 0 0 40px;
  }

  .content-block {
    padding-bottom: 8px;
  }

  .outline-table th {
    width: 110px;
  }
}

@media (max-width: 560px) {
  .layout {
    padding: 20px 16px 0;
  }

  .form-sidebar-inner {
    padding: 20px 16px;
  }

  .session-card {
    padding: 20px;
  }

  .header-inner {
    padding: 0 16px;
  }
}

/* ============================================================
   ここから下は 20261005 回の追加分
   ============================================================ */

/* ---------- セクション見出しのラベル ---------- */
.sec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.sec-label + .block-title {
  margin-top: 2px;
}

.block-title {
  border-bottom: 3px solid transparent;
  border-image: var(--color-gradient) 1;
  font-weight: 900;
}

.sub-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}

.seminar-title {
  font-weight: 900;
}

/* 未確定であることを画面上でも分かるようにする。
   初稿レビューで「ここはまだ」が一目で伝わるほうが事故が少ない */
.tbd {
  color: var(--color-text-sub);
  background: repeating-linear-gradient(
    -45deg,
    rgba(171, 142, 220, 0.06) 0 6px,
    rgba(171, 142, 220, 0.12) 6px 12px
  );
  border-radius: 3px;
  padding: 0 4px;
}

/* ---------- バンドル説明ブロック ---------- */
.bundle-block {
  margin-bottom: 64px;
  background: var(--surface-tint);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 44px;
}

.bundle-grid {
  display: grid;
  /* メインカラムが狭まったら自動で1列になる */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.bundle-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.bundle-num {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .bundle-num {
    background: var(--color-gradient-deep);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
  }
}

.bundle-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  margin: 6px 0 12px;
}

/* 見出し下に置く、01=調査レポート／02=登壇者10名の実物画像。
   横幅いっぱいか高さ上限のどちらか先に当たった方で止め、2枚の高さを揃える */
.bundle-icon {
  height: 124px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 18px;
}

.bundle-icon-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  /* 背景を抜いた画像なので、影は被写体の形に沿わせる */
  filter: drop-shadow(0 6px 14px rgba(6, 45, 75, 0.22));
}

.bundle-body {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}

.bundle-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}

.bundle-points li {
  position: relative;
  padding-left: 18px;
}

.bundle-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--color-accent);
}

.bundle-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
}

.bundle-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-text-sub);
}

/* ---------- 調査レポート詳細 ---------- */
.report-block {
  margin-bottom: 64px;
  background: var(--surface-tint-strong);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 44px;
}

.report-lead {
  max-width: 780px;
  margin-bottom: 20px;
}

.report-sub {
  margin-top: 44px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ---------- レポート表紙（セクションの一番上・中央） ---------- */
.report-cover {
  max-width: 420px;
  margin: 0 auto 32px;
}

.report-cover img {
  width: 100%;
  height: auto;
  /* 表紙は背景を抜いてあるので、影は画像の形に沿わせる */
  filter: drop-shadow(0 20px 36px rgba(6, 45, 75, 0.3));
}

/* ---------- 目次（全8章） ---------- */
.toc-grid {
  display: grid;
  /* 親カラムが狭まったら自動で1列になる */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.toc-item {
  display: flex;
  gap: 14px;
  background: var(--surface-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.toc-num {
  flex: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gradient-deep);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.toc-item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}

.toc-item-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.toc-item-page {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  margin-top: 8px;
}

/* ---------- スマホ用の常駐申込ボタン ---------- */
.floating-apply-btn {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  animation: cta-halo 2.8s ease-out infinite;
}

/* ---------- スクロールに合わせた表示 ---------- */
.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* ---------- レスポンシブ（追加分） ---------- */
@media (max-width: 960px) {
  /* 常駐フォームが縦積みになるので、スマホでは申込ボタンを出す */
  .floating-apply-btn {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (max-width: 560px) {
  .bundle-block,
  .report-block {
    padding: 24px 20px;
  }

  .toc-item,
  .bundle-card {
    padding: 20px;
  }

  .speaker-photo-frame {
    width: 160px;
  }
}

/* ---------- モーション設定の尊重 ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal-on [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .session-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}

/* ---------- セッションカード（2列時の調整） ---------- */
.session-card-title {
  font-size: 17px;
  line-height: 1.55;
}

.session-card .accordion:last-child {
  margin-bottom: 0;
}

/* ---------- 講演カードの企業ロゴ（任意） ----------
   assets/logo_<会社スラッグ>.png を置くと表示される。スラッグは登壇者画像と同じ。
   ロゴが無い会社は要素ごと出さないので、空枠にはならない。
   画像は assets/_src/normalize_logos.py で 640x160（4:1）に揃えてから置く。
   見た目の大きさはその時点で揃っているので、ここでは全社共通の枠を置くだけ。 */
.company-logo {
  margin: 0;
}

.company-logo img {
  display: block;
  width: 200px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

/* ---------- 登壇者写真の横に企業ロゴを並べる ---------- */
.speaker-row {
  display: flex;
  align-items: center;
  /* gap は置かない。ロゴ枠を空きスペースと同じ幅にしておかないと、
     ロゴの中心が gap の半分だけ写真寄りになる。余白は画像側が持っている */
  margin-bottom: 20px;
}

.speaker-row .speaker-photo-frame {
  /* ロゴを大きく見せるため、写真側を小さくして横幅を譲る。
     ロゴは残り幅に contain で入るので、ここが狭いとそのままロゴも小さくなる */
  width: 150px;
  max-width: 45%;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.speaker-row .company-logo {
  /* 基準を 0 にして残り幅をそのまま受け取る。auto だと画像の実寸（1000px）を
     基準にして縮まず、カードの横へはみ出す */
  flex: 1 1 0;
  min-width: 0;
}

/* 横幅が足りないときは全ロゴが同じ比率で縮むので、大きさの揃いは崩れない */
.speaker-row .company-logo img {
  width: 100%;
  max-width: 200px;
  /* カードが広いとロゴ枠だけが伸びて画像は200pxで止まるので、
     これが無いと画像が枠の左端（写真側）に寄る */
  margin: 0 auto;
}
