/* =========================================================
   essay.css
   堀剛研究室　エッセイ専用追加CSS
   ※ user.css を土台にし、ここでは上書きを最小限にする
   ========================================================= */


/* ===== エッセイ全体 ===== */

.essay{
  max-width: 760px;
  margin: 0 auto;
}


/* ===== タイトルまわり ===== */
/* user.css の中央寄せ・幅指定を活かしつつ微調整だけ行う */

.essay-title{
  word-break: keep-all;
}

.essay-title .essay-name{
  display: block;
  margin-top: 0.8em;
  margin-left: 0;
  text-align: center;
}


/* ===== 本文 ===== */
/* user.css の本文幅を使い、禁則・折返しだけ補助 */

.essay-body{
  word-break: normal;
  overflow-wrap: break-word;
}

.essay-body p{
  text-align: justify;
}


/* ===== 引用・注記などが入る場合の予備 ===== */

.essay-source:empty{
  display: none;
}


/* ===== ページャー ===== */

.essay-pager{
  align-items: center;
}

.essay-pager a{
  white-space: nowrap;
}


/* ===== パンくず ===== */

.breadcrumb span{
  color: #666;
}


/* ===== 小画面調整 ===== */

@media (max-width: 640px){

  .essay-title{
    font-size: 1.15em;
    line-height: 1.6;
  }

  .essay-title .essay-name{
    font-size: 0.9em;
  }

  .essay-body p{
    line-height: 1.85;
  }

  .essay-pager{
    gap: 12px;
  }


/* =========================================
   エッセイ目次 見出し（他ページと統一）
   ========================================= */

.essay-index-title{
  margin: 0 0 22px 0;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
}

