@charset "UTF-8";
/* ==========================================================================
   Quid Monitor ウェビナーLP
   「SNS炎上リスクの早期検知とブランド毀損の最小化」
   ブレークポイント：max-width 1439px / max-width 767px
   ========================================================================== */



/* --------------------------------------------------------------------------
   1. design tokens（既存サイト common.css より実測）
   -------------------------------------------------------------------------- */
:root {
  /* color */
  --c-red:        #C92D26;  /* ブランドレッド */
  --c-red-dark:   #C11111;
  --c-red-light:  #F55656;
  --c-red-deep:   #A8130F;  /* 特典セクション背景 */
  --c-red-tint:   #FDF7F7;  /* 淡いレッド面 */
  --c-safe:       #0F7A5F;  /* 「対応可能」を示すグリーン（白背景でAA） */
  --c-safe-tint:  rgba(15, 122, 95, .08);
  --c-grad-red:   linear-gradient(to right, var(--c-red-light), var(--c-red-dark));

  --c-ink:        #333;
  --c-ink-strong: #1F1D1D;
  --c-ink-mute:   #666;
  --c-ink-weak:   #6F6F6F;  /* 小サイズ文字でもAA（5.0:1）を満たす最も薄いグレー */

  --c-bg:         #FFF;
  --c-bg-gray:    #F7F7F7;
  --c-line:       #DDD;
  --c-line-light: #EAEAEA;

  /* type */
  --f-base: "Noto Sans JP", "Roboto", sans-serif;
  --f-num:  "Roboto", "Noto Sans JP", sans-serif;

  /* layout */
  --w-inner: 1200px;
  --h-header: 80px;

  /* effect */
  --shadow-card: 0 2px 16px rgba(31, 29, 29, .06);
  --shadow-pop:  0 8px 32px rgba(31, 29, 29, .12);
  --ease: .3s cubic-bezier(.25, .46, .45, .94);
}



/* --------------------------------------------------------------------------
   2. base / reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  padding-top: var(--h-header);
  overflow-x: hidden;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .01em;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-nav-open { overflow: hidden; }

h1, h2, h3, h4, p, dl, dd, dt, figure, ul, ol, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; }
img { height: auto; border: 0; vertical-align: middle; }
b, strong { font-weight: 700; }
table { border-collapse: collapse; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease), background var(--ease), border-color var(--ease);
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--c-red);
  outline-offset: 3px;
}
/* 赤／ダーク面上は白フォーカスリング（非テキストコントラスト3:1確保） */
.p-bonus :focus-visible,
.p-entry :focus-visible,
.l-footer :focus-visible { outline-color: #fff; }

/* utility */
.l-inner { width: 100%; max-width: var(--w-inner); margin-inline: auto; padding-inline: 30px; }
.p-bonus__title .u-nowrap { white-space: nowrap; }
.u-ib { display: inline-block; }
.u-pc { display: inline; }
.u-sp { display: none; }
.u-visually-hidden,
.u-skip {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.u-skip:focus {
  position: fixed; z-index: 200; top: 8px; left: 8px;
  width: auto; height: auto; margin: 0; padding: 10px 18px; clip: auto;
  background: #fff; color: var(--c-red); font-weight: 700;
  box-shadow: var(--shadow-pop);
}
#webiner section{
  width: unset;
}
/* --------------------------------------------------------------------------
   4. 共通パーツ
   -------------------------------------------------------------------------- */
/* CTAボタン */
.c-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  padding: 14px 62px 14px 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.c-btn::after {
  position: absolute;
  right: 30px; top: 50%;
  content: "";
  width: 9px; height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: var(--ease);
}
.c-btn:hover::after { right: 24px; }

.c-btn--primary {
  background: var(--c-grad-red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 45, 38, .28);
}
.c-btn--primary:hover { box-shadow: 0 10px 28px rgba(201, 45, 38, .38); transform: translateY(-1px); }

.c-btn--lg { min-width: 380px; font-size: 18px; }

.c-btn--ghost {
  background: #fff;
  color: var(--c-red-dark);
  min-width: 340px;
}
.c-btn--ghost:hover { background: var(--c-ink-strong); color: #fff; }

/* セクション見出し */
.c-sec-head { text-align: center; margin-bottom: 56px; }
.c-sec-head--sm { margin-bottom: 40px; }
.c-sec-head__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .02em;
  color: var(--c-ink-strong);
}
.c-sec-head__lead {
  margin-top: 22px;
  font-size: 16px;
  line-height: 2;
  color: var(--c-ink-mute);
}
.c-mark { color: var(--c-red); font-weight: 700}
.c-num {
  font-family: var(--f-num);
  font-size: 1.24em;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: .01em;
}

/* ラベル（帯タイトル） */
.c-label {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 9px 34px;
  border-radius: 999px;
  background: var(--c-ink-strong);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
}

.c-note {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--c-ink-weak);
}
.c-sup { font-size: .75em; vertical-align: super; line-height: 0; }


/* --------------------------------------------------------------------------
   5. hero
   -------------------------------------------------------------------------- */
.p-hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-gray);
}
.p-hero::before {
  position: absolute;
  z-index: 0;
  top: -180px; right: -160px;
  content: "";
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 45, 38, .09) 0%, rgba(201, 45, 38, 0) 70%);
}
.p-hero::after {
  position: absolute;
  z-index: 0;
  bottom: 0; left: 0;
  content: "";
  width: 100%; height: 1px;
  background: var(--c-line-light);
}
.p-hero .p-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  align-items: center;
  gap: 64px;
  width: 100%; max-width: var(--w-inner);
  margin-inline: auto;
  padding: 40px 30px 86px;
}

.p-hero__badge {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid var(--c-red);
  border-radius: 3px;
  color: var(--c-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.6;
}
.p-hero__title {
  margin-top: 26px;
  color: var(--c-ink-strong);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: .01em;
  /* white-space: nowrap; */
}
.p-hero__title b {
  color: var(--c-red);
}
.p-hero__lead {
  margin-top: 28px;
  font-size: 16.5px;
  line-height: 2;
  color: var(--c-ink);
}
.p-hero__lead b {
  color: var(--c-red);
  font-family: var(--f-num);
  font-size: 1.14em;
}

.p-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  padding: 20px 26px;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.p-hero__meta-item + .p-hero__meta-item {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid var(--c-line-light);
}
.p-hero__meta-item { display: flex; flex-direction: column; }
.p-hero__meta-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-ink-weak);
  line-height: 1.6;
}
.p-hero__meta-value {
  margin-top: 2px;
  font-family: var(--f-num);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-ink-strong);
}
.p-hero__meta-sub { font-size: 14px; }

.p-hero__cta {
  margin-top: 34px;
  display: inline-block;
}
.p-hero__note {
  /* margin-top: 12px; */
  display: block;
  color: var(--c-red);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* hero visual */
.p-hero__visual { margin: 0; }
.c-chart {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-pop);
}

/* chart head：図の主旨をテキストで明示する */
.c-chart__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 13px 5px;
  border-radius: 999px;
  background: var(--c-safe-tint);
  color: var(--c-safe);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.6;
}
.c-chart__eyebrow-dot {
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-safe);
  animation: chartPulse 2s ease-out infinite;
}
@keyframes chartPulse {
  0%   { box-shadow: 0 0 0 0 rgba(15, 122, 95, .38); }
  70%  { box-shadow: 0 0 0 7px rgba(15, 122, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 122, 95, 0); }
}
.c-chart__title {
  margin-top: 12px;
  color: var(--c-ink-strong);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .01em;
}
.c-chart__num {
  margin-right: 2px;
  color: var(--c-safe);
  font-family: var(--f-num);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
}
.c-chart__num small { font-size: 20px; margin-left: 1px; }
.c-chart__sub {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-ink-mute);
}
/* .c-chart__sub b { color: var(--c-ink-strong); } */
.c-chart__sub b { color: var(--c-red); }

.c-chart__figure { position: relative; margin-top: 14px; }
.c-chart__svg { display: block; width: 100%; height: auto; }

/* アラート通知のトースト */
.c-chart__alert {
  position: absolute;
  top: 21%; left: 6.5%;
  display: flex;
  align-items: center;
  gap: 10px;
  /* width: 60%; */
  max-width: 290px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(201, 45, 38, .18);
  background: rgba(255, 255, 255, .6);
  box-shadow: var(--shadow-card);
}
.c-chart__alert-dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 5px rgba(201, 45, 38, .14);
}
.c-chart__alert-text { display: flex; flex-direction: column; line-height: 1.5; }
.c-chart__alert-text b { font-size: 13px; color: var(--c-red-dark); }
.c-chart__alert-meta { font-size: 11.5px; color: var(--c-ink-weak); }
.c-chart__alert-meta em { font-style: normal; font-weight: 700; color: var(--c-safe); }

/* 図の下の2ステップ要約 */
.c-chart__steps {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.c-chart__step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-ink);
}
.c-chart__step-time {
  flex: none;
  min-width: 62px;
  font-family: var(--f-num);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.c-chart__step--safe {
  background: var(--c-safe-tint);
  border-left: 3px solid var(--c-safe);
}
.c-chart__step--safe .c-chart__step-time { color: var(--c-safe); }
.c-chart__step--safe b { color: var(--c-safe); }
.c-chart__step--risk {
  background: var(--c-red-tint);
  border-left: 3px solid var(--c-red);
}
.c-chart__step--risk .c-chart__step-time { color: var(--c-red-dark); }
.c-chart__step--risk b { color: var(--c-red-dark); }

.p-hero__visual-caption {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--c-ink-mute);
}
.p-hero__visual-caption b { color: var(--c-red); }

/* --------------------------------------------------------------------------
   6. 課題提起
   -------------------------------------------------------------------------- */
.p-problem { padding: 96px 0 104px; }
.p-problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-problem__item {
  padding: 34px 30px 36px;
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-red);
  border-radius: 4px;
  background: #fff;
}
.p-problem__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-red-tint);
  color: var(--c-red);
}
.p-problem__icon svg { width: 24px; height: 24px; }
.p-problem__title {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-ink-strong);
}
.p-problem__text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--c-ink-mute);
}

.p-problem__alert {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  padding: 30px 34px;
  border-radius: 4px;
  background: var(--c-red-tint);
  border-left: 4px solid var(--c-red);
}
.p-problem__alert-icon {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px; height: 30px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-num);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}
.p-problem__alert-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--c-red-dark);
}
.p-problem__alert-text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--c-ink);
}
.p-problem__alert-text b { color: var(--c-red-dark); }

/* --------------------------------------------------------------------------
   7. 見どころ
   -------------------------------------------------------------------------- */
.p-value { padding: 96px 0 104px; background: var(--c-bg-gray); }
.p-value__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-value__item {
  display: flex;
  flex-direction: column;
  padding: 34px 30px 34px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.p-value__num { line-height: 1; }
.p-value__num span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-red);
  font-family: var(--f-num);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: .02em;
}
.p-value__title {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-ink-strong);
}
.p-value__text {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--c-ink-mute);
}

/* 初動4ステップ */
.c-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: auto;
  padding-top: 26px;
}
.c-flow__step {
  position: relative;
  padding: 7px 14px;
  border-radius: 3px;
  background: var(--c-bg-gray);
  border: 1px solid var(--c-line);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-ink);
}
.c-flow__step::after {
  position: absolute;
  right: -11px; top: 50%;
  content: "";
  width: 5px; height: 5px;
  border-top: 1.5px solid var(--c-red);
  border-right: 1.5px solid var(--c-red);
  transform: translateY(-50%) rotate(45deg);
}
.c-flow__step--last { background: var(--c-red-tint); border-color: rgba(201, 45, 38, .3); color: var(--c-red-dark); font-weight: 700; }
.c-flow__step--last::after { content: none; }

/* ノイズ除去ファネル */
.c-funnel { margin-top: auto; padding-top: 26px; display: grid; gap: 10px; }
.c-funnel__row { display: flex; align-items: center; gap: 12px; }
.c-funnel__bar {
  flex: none;
  width: var(--w);
  height: 12px;
  border-radius: 2px;
  background: #DCDCDC;
}
.c-funnel__bar--mid { background: rgba(201, 45, 38, .35); }
.c-funnel__bar--out { background: var(--c-red); }
.c-funnel__label { font-size: 12px; line-height: 1.5; color: var(--c-ink-weak); white-space: nowrap; }
.c-funnel__label--out { color: var(--c-red-dark); font-weight: 700; }

/* 外注vs内製 比較表 */
.c-compare {
  width: 100%;
  margin-top: auto;
  table-layout: fixed;
}
.c-compare th, .c-compare td {
  padding: 9px 6px;
  border-bottom: 1px solid var(--c-line-light);
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}
.c-compare thead th { padding-top: 26px; font-size: 12px; font-weight: 700; color: var(--c-ink-weak); }
.c-compare tbody th { text-align: left; font-weight: 500; color: var(--c-ink); white-space: nowrap; }
.c-compare td { color: var(--c-ink-mute); }
.c-compare .c-compare__hl { background: var(--c-red-tint); color: var(--c-red-dark); font-weight: 700; }
.c-compare thead .c-compare__hl { color: var(--c-red); }

/* --------------------------------------------------------------------------
   8. こんな方におすすめ
   -------------------------------------------------------------------------- */
.p-target { padding: 96px 0 100px; }
.p-target__list {
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 640px;
  margin-inline: auto;
  gap: 16px;
}
.p-target__item {
  display: flex;
  align-items: center;
  gap: 16px;
  /* min-height: 104px; */
  /* padding: 24px 30px; */
  /* border-radius: 4px; */
  /* background: var(--c-red-tint); */
  /* border: 1px solid rgba(201, 45, 38, .16); */
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--c-ink-strong);
}
.p-target__item::before {
  flex: none;
  content: "";
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-red)
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E")
    center / 15px no-repeat;
}

/* --------------------------------------------------------------------------
   9. プログラム
   -------------------------------------------------------------------------- */
.p-program { padding: 96px 0 104px; background: var(--c-bg-gray); }
.p-program__list { 
  display: grid; 
  /* gap: 18px;  */
  max-width: 720px; 
  margin-inline: auto; 
  background-color: #fff;
  padding: 36px 0 0;
}
  .p-program__list .p-program__item {
    display: flex;
    /* align-items: center; */
    gap: 18px;
    padding: 0 34px 36px;
    /* border-radius: 4px; */
    /* background: #fff; */
    /* border: 1px solid var(--c-line-light); */
    position: relative;
  }
  .p-program__list .p-program__item:not(:last-child)::before {
  position: absolute;
  top: 0;
  left: 50px;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #e5e9f0;
  }
  .p-program__list + .c-note{ 
  max-width: 720px; 
  margin-inline: auto;
  margin-bottom: 40px;
  }
.p-program__num {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px; height: 34px;
  margin-top: 2px;
  border-radius: 4px;
  background: #333 ;
  color: #fff;
  font-family: var(--f-num);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  z-index: 10;
}
.p-program__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--c-ink-strong);
}
.p-program__text {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--c-ink-mute);
}

/* --------------------------------------------------------------------------
   10. 特典
   -------------------------------------------------------------------------- */
.p-bonus {
  padding: 84px 0 88px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, var(--c-red-dark) 0%, var(--c-red-deep) 100%);
  color: #fff;
  text-align: center;
}
.p-bonus .l-inner { max-width: 900px; }
.p-bonus__call{
  color: #fff;
  font-size: 17px;
}
.p-bonus__label {
  display: inline-block;
  padding: 6px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-red-dark);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.p-bonus__title {
  margin-top: 4px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .02em;
}
.p-bonus__title-strong { font-size: 1.06em; }
.p-bonus__text {
  margin-top: 24px;
  font-size: 15.5px;
  line-height: 2.05;
  text-align: left;
}
.p-bonus__body{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
.p-bonus__sample-report{
  height: 240px;
  width: 172px;
  rotate: -2deg;
}
.p-bonus__list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.p-bonus__list-item{
  font-size: 20px;
  font-weight: 500;

}
.p-bonus__note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
}
.p-bonus__note::before { content: "※ "; }
.p-bonus__cta { margin-top: 34px; }

/* --------------------------------------------------------------------------
   11. 登壇者・開催概要
   -------------------------------------------------------------------------- */
.p-detail { padding: 96px 0 100px; }
/* .p-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
} */
.p-detail__head {
  padding-bottom: 14px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--c-line);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-ink-strong);
}
.p-detail__head::before {
  display: inline-block;
  content: "";
  width: 4px; height: 18px;
  margin-right: 12px;
  background: var(--c-red);
  vertical-align: -2px;
}
.p-detail__col{
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 8px;
}
.p-speaker {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 0 26px;
  align-items: start;
}
.p-speaker__figure {
  grid-row: 1 / span 2;
  position: relative;
  margin: 0;
  width: 168px; height: 168px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-bg-gray);
}
.p-speaker__figure::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "PHOTO";
  color: #B9B9B9;
  font-family: var(--f-num);
  font-size: 11px;
  letter-spacing: .12em;
}
.p-speaker__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.p-speaker__role {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--c-red);
}
.p-speaker__name {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-ink-strong);
}
.p-speaker__profile {
  grid-column: 2;
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--c-ink-mute);
}

.p-outline { width: 100%; }
.p-outline th, .p-outline td {
  padding: 16px 4px;
  border-bottom: 1px solid var(--c-line-light);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
.p-outline th {
  width: 116px;
  font-weight: 700;
  color: var(--c-ink-strong);
  white-space: nowrap;
}
.p-outline tr:first-child th, .p-outline tr:first-child td { border-top: 1px solid var(--c-line-light); }
.p-outline td { color: var(--c-ink-mute); }
.p-outline__date {
  font-family: var(--f-num);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink-strong);
  letter-spacing: .01em;
}
.p-outline__free {
  display: inline-block;
  padding: 2px 14px;
  border-radius: 3px;
  background: var(--c-red-tint);
  color: var(--c-red-dark);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. 申込フォーム
   -------------------------------------------------------------------------- */
.p-entry {
  padding: 84px 0 92px;
  background: linear-gradient(180deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: #fff;
  scroll-margin-top: calc(var(--h-header) + 8px);
}
.p-entry .l-inner { max-width: 900px; }
.p-entry__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  text-align: center;
}
.p-entry__lead {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.95;
  text-align: center;
  color: rgba(255, 255, 255, .92);
}
.p-entry__form {
  max-width: 700px;
  margin-top: 34px;
  padding: 34px 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .16);
  margin-inline: auto;
}
.p-entry__iframe { display: block; width: 100%; border: 0; }
.p-entry__privacy {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.85;
  text-align: center;
  color: rgba(255, 255, 255, .88);
}
.p-entry__privacy a { text-decoration: underline; }
.p-entry__privacy a:hover { opacity: .75; }

section#entry .l-inner .p-entry__form .field-label{
  color: #333 !important;
}

/* --------------------------------------------------------------------------
   14. 固定CTA
   -------------------------------------------------------------------------- */
.p-fixed-cta {
  position: fixed;
  z-index: 90;
  bottom: 0; left: 0;
  width: 100%;
  padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -2px 14px rgba(31, 29, 29, .12);
  text-align: center;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--ease), opacity var(--ease);
}
.p-fixed-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.p-fixed-cta .c-btn { width: 100%; max-width: 480px; min-height: 56px; font-size: 16px; }



/* ==========================================================================
   16. @media screen and (max-width: 767px)
   ========================================================================== */
@media screen and (max-width: 767px) {
  :root { --h-header: 50px; }

  body { font-size: 15px; }
  .u-pc { display: none; }
  .u-sp { display: inline; }
  .l-inner { padding-inline: 16px; }

  /* hero */
  .p-hero .p-hero__inner {
    grid-template-columns: 100%;
    gap: 30px;
    padding: 36px 16px 48px;
  }
  .p-hero::before { top: -120px; right: -180px; width: 380px; height: 380px; }
  .p-hero__badge { font-size: 12px; padding: 6px 14px; }
  .p-hero__title { margin-top: 18px; font-size: 29px; line-height: 1.45; }
  .p-hero__lead { margin-top: 20px; font-size: 14.5px; line-height: 1.95; }
  .p-hero__meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
    padding: 6px 18px;
  }
  .p-hero__meta-item {
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
    padding: 12px 0;
  }
  .p-hero__meta-item + .p-hero__meta-item {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--c-line-light);
  }
  .p-hero__meta-label { flex: none; width: 58px; }
  .p-hero__meta-value { margin-top: 0; font-size: 16px; }
  .p-hero__cta { margin-top: 26px; }
  .c-btn { min-height: 58px; padding: 12px 46px 12px 24px; font-size: 15px; }
  .c-btn::after { right: 20px; }
  .c-btn--lg { font-size: 16px; }
  .c-btn--ghost { min-width: 0; width: 100%; }
  .c-chart { padding: 20px 12px 16px; }
  .c-chart__eyebrow { font-size: 11px; padding: 3px 11px 4px; }
  .c-chart__title { margin-top: 10px; font-size: 17px; line-height: 1.65; }
  .c-chart__num { font-size: 36px; }
  .c-chart__num small { font-size: 18px; }
  .c-chart__sub { font-size: 13px; }
  .c-chart__alert { top: 21%; left: 2%; width: fit-content; padding: 7px 11px; gap: 8px; }
  .c-chart__alert-text b { font-size: 12px; }
  .c-chart__alert-meta { font-size: 10.5px; }
  .c-chart__step { gap: 9px; padding: 8px 11px; font-size: 12.5px; }
  .c-chart__step-time { min-width: 54px; font-size: 13px; }
  .p-hero__visual-caption { font-size: 13px; }

  /* 共通 */
  .c-sec-head { margin-bottom: 34px; }
  .c-sec-head__title { font-size: 22px; line-height: 1.6; }
  .c-sec-head__lead { margin-top: 16px; font-size: 14px; line-height: 1.9; }
  .c-label { margin-bottom: 22px; padding: 7px 22px; font-size: 13px; }

  .p-problem, .p-value, .p-target, .p-program, .p-detail { padding: 56px 0 62px; }

  /* 課題 */
  .p-problem__list { grid-template-columns: 100%; gap: 16px; }
  .p-problem__item { padding: 26px 22px 28px; }
  .p-problem__title { font-size: 18px; margin-top: 14px; }
  .p-problem__text { font-size: 14px; }
  .p-problem__alert { flex-direction: column; gap: 12px; margin-top: 24px; padding: 24px 20px; }
  .p-problem__alert-title { font-size: 16px; }
  .p-problem__alert-text { font-size: 14px; }

  /* 見どころ */
  .p-value__list { grid-template-columns: 100%; gap: 16px; }
  .p-value__num span { font-size: 28px; }
  .p-value__title { font-size: 19px; }
  .p-value__text { font-size: 14px; }
  .c-flow, .c-funnel, .c-compare { margin-top: 24px; }
  .c-flow { padding-top: 0; }
  .c-funnel { padding-top: 0; }
  .c-compare thead th { padding-top: 0; }

  /* 対象者 */
  .p-target__list { grid-template-columns: 100%; gap: 12px; }
  .p-target__item { min-height: 0; padding: 0px 20px; font-size: 14.5px; gap: 12px; }

  /* プログラム */
  .p-program__list { gap: 0px; }
  .p-program__item { gap: 14px; padding: 22px 20px; }
  .p-program__num { width: 28px; height: 28px; font-size: 14px; }
  .p-program__title { font-size: 16.5px; }
  .p-program__text { font-size: 14px; }

  /* 特典 */
  .p-bonus { padding: 56px 0 62px; }
  .p-bonus__call{ font-size: 11px; }
  .p-bonus__label { font-size: 14px; padding: 6px 16px; }
  .p-bonus__title { margin-top: 8px; font-size: 20px; line-height: 1.6; }
  .p-bonus__body{ flex-direction: column; gap: 50px; align-items: center;}
  .p-bonus__sample-report{ font-size: 14px; rotate: 0deg; }
  .p-bonus__list{ gap: 8px;}
  .p-bonus__list-item{ font-size: 16px; }
  .p-bonus__text { margin-top: 18px; font-size: 14px; line-height: 1.95; }
  .p-bonus__cta { margin-top: 26px; }

  /* 登壇者・概要 */
  /* .p-detail__grid { grid-template-columns: 100%; gap: 46px; } */
  .p-detail__head { font-size: 19px; margin-bottom: 22px; }
  .p-speaker { grid-template-columns: 108px minmax(0, 1fr); gap: 0 16px; }
  .p-speaker__figure { grid-row: 1; width: 108px; height: 108px; }
  .p-speaker__role { font-size: 11.5px; }
  .p-speaker__name { font-size: 21px; }
  .p-speaker__profile { grid-column: 1 / 3; margin-top: 18px; font-size: 13px; }
  .p-outline th, .p-outline td { display: block; }
  .p-outline th { width: auto; padding: 14px 0 0; border-bottom: none; font-size: 13px; }
  .p-outline td { padding: 4px 0 14px; font-size: 14.5px; }
  .p-outline tr:first-child td { border-top: none; }
  .p-outline tr:first-child th { border-top: 1px solid var(--c-line-light); }
  .p-outline__date { font-size: 16px; }

  /* フォーム */
  .p-entry { padding: 56px 0 68px; }
  .p-entry__title { font-size: 22px; }
  .p-entry__lead { margin-top: 14px; font-size: 14px; }
  .p-entry__form { margin-top: 24px; padding: 16px 12px; border-radius: 4px; }

  /* 固定CTA */
  .p-fixed-cta { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); }
  .p-fixed-cta .c-btn { min-height: 52px; font-size: 15px; }
}

/* ==========================================================================
   17. print
   ========================================================================== */
@media print {
  body { padding-top: 0; }
  .l-header, .p-fixed-cta { display: none; }
  .p-bonus, .p-entry { background: #fff !important; color: #000 !important; }
}
