/* ============================================================
   home.css — トップページ専用
   （owned-media/ の編集書体トーンと呼応させるための見出し明朝化。
     他ページの style.css には手を入れず、ID指定でこのページだけに限定）
   ============================================================ */

#hero .hero-title,
#service-summary .section-title,
#pain .section-title,
#features .section-title,
#interviewer .section-title,
#results .results-title,
#price .section-title,
#flow .section-title,
#faq .section-title {
  font-family: 'Shippori Mincho', serif;
}

/* ============================================================
   #interviewer — 担当インタビュアーの発言を「引用」として見せる
   ============================================================ */
#interviewer .interviewer-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  position: relative;
  padding-left: 34px;
}
#interviewer .interviewer-tagline::before {
  content: '\201C';
  position: absolute;
  left: -4px;
  top: -14px;
  font-family: 'Shippori Mincho', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
}
