/* =========================================
   Typography
   サイト全体の見出し・本文基本設計
========================================= */


/* -----------------------------------------
   本文基本
----------------------------------------- */

.entry-content {
  line-height: 1.9;
}


/* -----------------------------------------
   H1
   ページタイトル・記事タイトル
----------------------------------------- */

.ak-page-header h1,
.entry-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: .04em;
}


/* -----------------------------------------
   H2
   記事内の大見出し
----------------------------------------- */

.entry-content h2 {
  margin: 3rem 0 1.2rem;
  padding-bottom: .45rem;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.45;
  border-bottom: 2px solid var(--wp--preset--color--caramel-amber);
}


/* -----------------------------------------
   H3
   記事内の中見出し
----------------------------------------- */

.entry-content h3 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  border-left: 4px solid var(--wp--preset--color--caramel-amber);
  padding-left: .75rem;
}


/* -----------------------------------------
   H4
   記事内の小見出し
----------------------------------------- */

.entry-content h4 {
  margin: 2rem 0 .8rem;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 700;
}


/* -----------------------------------------
   段落
----------------------------------------- */

.entry-content p {
  margin: 0 0 1.4rem;
}


/* -----------------------------------------
   リスト
----------------------------------------- */

.entry-content ul,
.entry-content ol {
  margin: 1.2rem 0 1.6rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: .45rem;
}