@charset "UTF-8";
/* Zene Best Select ウェビナーレポート記事用スタイル */
/* ※ default.css のリセットにより html/body は 16px（1rem=16px）。
   サイズの取り違えを避けるため本ファイルは px 指定で統一する。 */

.webinar_container_in {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 48px;
  color: #333;
}

/*==================================================
  ヒーロー / タイトル
===================================*/

.webinar_hero {
  text-align: center;
  padding: 24px 0 40px;
  border-bottom: 1px solid #e5ece9;
  margin-bottom: 40px;
}

.webinar_container_in .webinar_catch {
  display: inline-block;
  color: #559881;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 6px 20px;
  border: 1px solid #a6c9c6;
  border-radius: 50vh;
  margin-bottom: 24px;
}

.webinar_meta {
  color: #7a8a85;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.webinar_container_in h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #2f4a42;
}

.webinar_container_in .webinar_subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #559881;
  margin-top: 16px;
  margin-bottom: 0;
}

/*==================================================
  本文
===================================*/

.webinar_container_in p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.9;
  margin-bottom: 20px;
}

.webinar_lead p {
  font-size: 17px;
}

.webinar_container_in h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #2f4a42;
  margin: 56px 0 24px;
  padding-left: 16px;
  border-left: 6px solid #559881;
}

.webinar_container_in strong {
  font-weight: 700;
  color: #2f4a42;
}

.webinar_container_in p a {
  color: #559881;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.webinar_container_in p a:hover {
  opacity: 0.75;
}

/*==================================================
  引用（プルクオート）
===================================*/

.webinar_quote {
  background: #f2f8f5;
  border-radius: 12px;
  padding: 28px 28px;
  margin: 32px 0;
  text-align: center;
}

.webinar_quote p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  color: #559881;
  margin: 0;
}

/*==================================================
  リスト（疾患・数値）
===================================*/

.webinar_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 28px;
}

.webinar_list li {
  background: #eef5f2;
  color: #2f4a42;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50vh;
}

.webinar_stats {
  margin: 8px 0 28px;
}

.webinar_stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px dashed #cfe0da;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}

.webinar_stats li:first-child {
  border-top: 1px dashed #cfe0da;
}

.webinar_stats .stats_label {
  flex: 1;
}

.webinar_stats .stats_value {
  font-size: 21px;
  font-weight: 700;
  color: #d9534f;
  white-space: nowrap;
}

/*==================================================
  図版
===================================*/

/* 情報密度の高い図版は本文幅を超えてページ幅いっぱいに大きく見せる（中央寄せ） */
.webinar_figure {
  width: min(1160px, 92vw);
  max-width: 92vw;
  margin: 40px 50%;
  transform: translateX(-50%);
}

.webinar_figure img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 1px solid #e5ece9;
  border-radius: 8px;
}

.webinar_figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #7a8a85;
  text-align: right;
}

/*==================================================
  まとめ
===================================*/

.webinar_summary {
  background: #f7faf9;
  border-radius: 12px;
  padding: 8px 32px 24px;
  margin-top: 8px;
}

.webinar_container_in .webinar_closing {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #559881;
  line-height: 1.9;
  margin: 48px 0 8px;
}

/*==================================================
  CTA
===================================*/

.webinar_cta {
  text-align: center;
  margin: 48px 0 8px;
}

/*==================================================
  レスポンシブ
===================================*/

@media (max-width: 767px) {
  /* 狭幅では図版のはみ出しを無効化し本文幅に収める */
  .webinar_figure {
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    transform: none;
  }

  .webinar_container_in h1 {
    font-size: 23px;
  }

  .webinar_container_in h2 {
    font-size: 20px;
  }

  .webinar_container_in p,
  .webinar_lead p {
    font-size: 15px;
  }

  .webinar_quote p {
    font-size: 17px;
  }

  .webinar_stats li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
