/* ul > liのスタイルを変更*/
.content ul>li::before {
  content: "\25cf";
}

.content ol li, .content ul li {
  padding-left: 2.5rem;
}

/* ol > liのスタイルをシンプルなものに変更 */
.content ol {
	position: relative;
}
.content ol > li::before {
    content: counter(number) ".";
    width: 2.2rem;
    height: 2.2rem;
	line-height: normal;
    font-size: initial;
	font-weight: initial;
    text-align: center;
	border: none;
    border-image: initial;
    border-radius: unset;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
   
}


/*ここから桝谷  */
/************************************
** ■記事ページのアイキャッチ エフェクト無効のカスタマイズ
************************************/
.eyecatch.eyecatch-main:hover img {
	transform: none;
}

