@charset "UTF-8";
/*
	nl2brの影響でUL・OL・LIに改行が入ってしまう。
	画像のキャプションの入力を「html」モードでやらないとソースが出る get_the_contentが原因 apply_filtersで対処可能
	read moreのテキスト変更はthe_contentのパラメータでやる the_content('続きを読む')

 */

/* H3～H6部分 -----------------------------------------------------------------------------------*/
.singleContent h3 {
  font-size: 2.2rem;
  line-hegiht: 3.2rem;
}

.singleContent h4 {
  font-size: 2rem;
  line-hegiht: 3rem;
}

.singleContent h5 {
  font-size: 1.8rem;
  line-hegiht: 2.8rem;
}

.singleContent h6 {
  font-size: 1.6rem;
  line-hegiht: 2.6rem;
}

/* PRE部分 -----------------------------------------------------------------------------------*/
.singleContent pre {
  padding: 5px;
}

/* UL・OL部分 -----------------------------------------------------------------------------------*/
.singleContent ul {
  padding: 0 0 0 0px;
}
.singleContent ul li {
  position: relative;
  padding: 0 0 0 15px;
}
.singleContent ul li::before {
  content: "・";
  font-size: 1.8rem;
  line-height: 0;
  position: absolute;
  top: 53%;
  left: -2px;
}

.singleContent ol {
  counter-reset: number;
}
.singleContent ol li::before {
  counter-increment: number;
  content: counter(number) ".";
}

/* aタグ部分 -----------------------------------------------------------------------------------*/
.singleContent a {
  color: #d7bfaf;
  font-weight: bold;
}
.singleContent a:hover {
  opacity: 0.7;
}

/* エディター 画像キャプション部分 -----------------------------------------------------------------------------------*/
.singleContent .wp-caption {
  display: inline-block;
  width: 100% !important;
}

.singleContent .wp-caption-text {
  font-size: 1.4rem;
}

figure.wp-block-image {
  width: 100%;
  display: inline-block;
  margin: 0 0 20px;
}

figure.wp-block-image figcaption {
  font-size: 1.6rem;
}

/* 画像リンク部分 -----------------------------------------------------------------------------------*/
.singleContent a img {
  opacity: 0.7;
}

/* テキスト打消し部分 -----------------------------------------------------------------------------------*/
.singleContent del {
  color: #f00;
}

/* hr部分 -----------------------------------------------------------------------------------*/
.singleContent hr {
  border-top: 1px solid #f00;
}

figure.image {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 2em;
}
