@charset "UTF-8";


.webinar-lp {
  --navy: #1a1a2e;
  --navy-mid: #1f2674;
  --crimson: #c8102e;
  --orange: #f28c28;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gray: #888;
  --text: #2a2a2a;
  --border: #e0e0e0;
  --section-bg: #f4f5fa;

  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
}

.webinar-lp,
.webinar-lp *,
.webinar-lp *::before,
.webinar-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ──────────────────────────────
   1. MAIN VISUAL
────────────────────────────── */
.webinar-lp .mv {
  position: relative;
  overflow: hidden;
}

.webinar-lp .mv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

.webinar-lp .mv-datebar {
  position: relative;
  z-index: 2;
  background: var(--orange);
  text-align: center;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.webinar-lp .mv-datebar span {
  display: inline-block;
  margin: 0 16px;
  opacity: 0.6;
  font-weight: 400;
}

/* ──────────────────────────────
   2. WEBINAR OVERVIEW
────────────────────────────── */
.webinar-lp .overview {
  background: var(--white);
}

.webinar-lp .overview-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px 56px;
}

.webinar-lp .sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
}

.webinar-lp .sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 28px;
}

.webinar-lp .overview-text {
  font-size: 14.5px;
  line-height: 2.05;
  color: #3a3a3a;
}

.webinar-lp .overview-text p + p {
  margin-top: 18px;
}

.webinar-lp .overview-text strong {
  color: var(--navy-mid);
}

/* ──────────────────────────────
   CTA BUTTON (inline)
────────────────────────────── */
.webinar-lp .cta-inline {
  text-align: center;
  padding: 0 20px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.webinar-lp .cta-inline p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

.webinar-lp .btn-primary {
  display: inline-block !important;
  background: var(--orange) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 16px 48px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  line-height: inherit;
  border: none;
  box-shadow: none;
}

.webinar-lp .btn-primary:hover {
  background: #d97a18 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.webinar-lp .btn-note {
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 12px;
}

/* ──────────────────────────────
   3. EVENT DETAILS
────────────────────────────── */
.webinar-lp .event-details {
  background: var(--section-bg);
}

.webinar-lp .event-details-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px 56px;
}

.webinar-lp .detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.webinar-lp .detail-table tr {
  border-bottom: 1px solid var(--border);
}

.webinar-lp .detail-table tr:last-child {
  border-bottom: none;
}

.webinar-lp .detail-table td {
  padding: 15px 20px;
  vertical-align: top;
  line-height: 1.7;
  background: var(--white);
}

.webinar-lp .detail-table td:first-child {
  width: 80px;
  background: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.06em;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.webinar-lp .detail-table td small {
  display: block;
  font-size: 11.5px;
  color: #aaa;
  margin-top: 4px;
}

/* ──────────────────────────────
   4. SPEAKERS
────────────────────────────── */
.webinar-lp .speakers {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.webinar-lp .speakers-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px;
}

.webinar-lp .speaker-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.webinar-lp .speaker-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}

.webinar-lp .speaker-photo {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.webinar-lp .speaker-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

.webinar-lp .speaker-photo svg {
  width: 52px;
  height: 52px;
  opacity: 0.35;
}

.webinar-lp .speaker-card-body {
  padding: 24px 26px;
}

.webinar-lp .speaker-org {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 2px;
}

.webinar-lp .speaker-role {
  font-size: 12px;
  color: var(--navy-mid);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
}

.webinar-lp .speaker-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.webinar-lp .speaker-bio {
  font-size: 12px;
  line-height: 1.9;
  color: #555;
}

/* ──────────────────────────────
   CTA (bottom, dark)
────────────────────────────── */
.webinar-lp .cta-dark {
  background: var(--section-bg);
  position: relative;
  overflow: hidden;
}

.webinar-lp .cta-dark::before {
  content: none;
}

.webinar-lp .cta-dark-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
}

.webinar-lp .cta-dark-badge {
  display: inline-block;
  border: 1px solid rgba(242, 140, 40, 0.5);
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.webinar-lp .cta-dark-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 18px;
}

.webinar-lp .cta-dark-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  line-height: 1.9;
}

.webinar-lp .cta-dark-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 14px;
}

.webinar-lp .cta-dark-contact {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.webinar-lp .cta-dark-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

/* ──────────────────────────────
   5. TOPICS
────────────────────────────── */
.webinar-lp .topics {
  background: var(--section-bg);
}

.webinar-lp .topics-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px;
}

.webinar-lp .topics-list {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.webinar-lp .topics-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
}

.webinar-lp .topics-list li:last-child {
  border-bottom: none;
}

.webinar-lp .topics-list li:hover {
  background: #f2f4fb;
}

.webinar-lp .topic-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy-mid);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.webinar-lp .topic-num.qa {
  background: var(--crimson);
  font-size: 9px;
  letter-spacing: 0;
}

/* ──────────────────────────────
   RESPONSIVE
────────────────────────────── */
@media (max-width: 600px) {
  .webinar-lp .overview-inner,
  .webinar-lp .event-details-inner,
  .webinar-lp .speakers-inner,
  .webinar-lp .topics-inner,
  .webinar-lp .cta-dark-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .webinar-lp .speaker-card {
    grid-template-columns: 1fr;
  }

  .webinar-lp .speaker-photo {
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .webinar-lp .mv-datebar {
    font-size: 13px;
  }

  .webinar-lp .mv-datebar span {
    display: block;
    margin: 4px 0;
    opacity: 0;
    height: 0;
  }
}
