/*章見出し。*/
.wdchap{
  font-weight: bold;
  font-size: 110%;
  margin-bottom: 1em;
}
/*エピグラフ。最初の「分だけ左に突き出る。*/
.wdepig {
  text-indent: -1em;
  margin-left: 3rem;
  margin-right: 3rem;
}
/*エピグラフに子がある場合、初段落以外はインデントしない。*/
.wdepig :not(:first-child) {
  text-indent: 0;
}
/*エピグラフ出典。*/
.wdepigsource {
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: 3rem;
  margin-bottom: 1.6rem;
}
/*
原注と訳注のインデント。exは解説部分で使用。
なお、idのwdrefnumは、将校リスト中の訳注で設定がかち合ってしまう箇所があるため、classよりも詳細度（優先順位）を上げるために同じ設定のidを作成した。
*/
.wdorgnote, 
.wdtransnote, 
.wdexorgnote, 
.wdextransnote,
#wdrefnum {
  font-size: 90%;
  text-indent: -2em;
  margin-left: 4em;
}
/*原注追加設定。色。*/
.wdorgnote, 
.wdexorgnote {
  color: crimson;
}
/*訳注追加設定。色。*/
.wdtransnote,
.wdextransnote,
#wdrefnum {
  color: blue;
}
/*
解説部分の原注訳注のフォントサイズ。
包括した90％指定の内部なので、それを反映させる。
*/
.wdexorgnote, 
.wdextransnote {
  font-size: 1em;
}
/*以下引用。*/
/*
手紙の日付。ごく短いのでブロックにしなくてよい。
地名など長いものが入る場合はブロックを用いる↓。
例：<div class="txtbkr rightrem2">
*/
.wdquotright {
  text-align: right;
  margin-left: auto;
  margin-right: 2rem;
}
/*手紙などの本文。*/
.wdquot {
  text-indent: 1rem;
  margin-left: 2rem;
}
.wdquot > div:first-child {
  text-indent: 0;
}
/*手紙文の中での引用など。*/
.wdquotofquot {
  margin-left: 2rem;
  margin-bottom: 1.6rem;
}
/*手紙の結語など。*/
.wdquotclose {
  display: block;
  text-indent: 0;
  width: fit-content;
  margin: 0 2rem 1.6rem auto;
}
/*左右に離れるflexbox。著者が質問した音楽関係者たち。*/
.wdbothends {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.wdbothends div:first-child {
  text-indent: 0;
  padding-right: 1rem;
}
.wdbothends div:last-child {
  text-indent: 0;
}
/*その内容部分。*/
.wdbothendscont {
  margin-bottom: 1.6rem;
}
.wdbothendscont div:first-child {
  text-indent: 0.5rem;
}
/*将校リスト1。大画面用テーブル。*/
.wdoffcertable {
  margin-bottom: 1rem;
}
.wdoffcertable td {
  padding: 1rem;
}
/*将校リスト2。少人数および小画面用。*/
.wdoffcerlist > div {
  text-indent: 0;
  margin: 0 auto 1rem 1rem;
}
.wdoffcerlist > div:last-child {
  margin-bottom: 1.6rem;
}
/*解説部分の見出し。*/
.wdexcap {
  color: navy;
  font-weight : bolder;
  margin: 2em 0em 0.5em;
}
/*解説本文。*/
.wdex {
  text-indent: 1em;
  margin-bottom: 1.6em;
  margin-left: 1em;
}
/*解説内でのインデント段落。consはconsideration（考察）の略。*/
.wdex .wdexcons {
  text-indent: 0;
  margin-bottom: 1.6em;
  margin-left: 2em;
}
/*注釈欄、注釈項目内の囲み設定。*/
.wdexborder {
  border: solid;
  border-color: limegreen;
  border-width: 0.1em;
  margin: 0em 1em 3.2em;
  padding: 2em;
}
/*国内の参考文献。*/
.wdreference {
  text-indent: -1em;
  margin-left: 1em;
}

