@charset "UTF-8";

@font-face {
	font-family: noto-sans-jp;
	font-weight: normal;
	src: url("../fonts/Noto-Sans-JP/NotoSansJP-Regular.woff") format("woff");
	font-display: swap;
}
@font-face {
	font-family: noto-sans-jp;
	font-weight: bold;
	src: url("../fonts/Noto-Sans-JP/NotoSansJP-Bold.woff") format("woff");
	font-display: swap;
}
/* ビジュアルエディタのフォント変更 */
#tinymce {
	font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* 記事内見出し */
.el-post-h2 {
	padding: 0.375rem 1.5rem;
	margin-top: 1.4em;
	font-size: 1.5rem;
	font-weight: 700;
	background: #204988;
	color: #fff;
	border-radius: 0.625rem;
}
/* 記事内小見出し */
.el-post-h3 {
	position: relative;
	padding: 0 0 0.5rem;
	margin-top: 1em;
	font-size: 1.375rem;
	font-weight: bold;
	line-height: calc(29/20);
}
.el-post-h3::before {
	content: '';
	position: absolute;
	background-image: radial-gradient(circle, #204988 0.125rem, transparent 0.125rem);
	background-size: 0.5625rem 0.25rem;
	background-repeat: repeat-x;
	width: 100%;
	height: 0.25rem;
	left: 0;
	bottom: 0;
}
/* テキスト */
.el-post-txt--s {
	font-size: 0.8em;
}
.el-post-txt--l {
	font-size: 1.2em;
}
.el-post-txt--ll {
	font-size: 1.4em;
}
.el-post-txt--xl {
	font-size: 1.8em;
}
/* キャプション */
.wp-caption {
	width: auto !important;
	margin-top: 1em;
}
.wp-caption .wp-caption-text {
	margin-top: 0.25em;
}
/* リンクタグ */
#tinymce a,
.bl-post-cont a {
	color: #e25e31;
	text-decoration: underline;
}
/* イタリック文字 */
#tinymce em,
.bl-post-cont em {
	font-family: "游ゴシック", "游ゴシック体";
	font-style: italic;
	font-weight: 500;
}
#tinymce p,
.bl-post-cont p {
	margin-top: 1em;
	line-height: 1.86;
}
/* 蛍光マーカー */
.underline--red {
	background: linear-gradient(transparent 60%, #ff7f7f 60%);
}
.underline--blue {
	background: linear-gradient(transparent 60%, #6cf 60%);
}
.underline--green {
	background: linear-gradient(transparent 60%, #6fc 60%);
}
.underline--yellow {
	background: linear-gradient(transparent 60%, #ff6 60%);
}
/* マージン */
.m-20 {
	margin-bottom: 1.25rem !important;
}
.m-30 {
	margin-bottom: 1.875rem !important;
}
.m-40 {
	margin-bottom: 2.5rem !important;
}
/* 画像 */
#tinymce img,
.bl-post img {
	display: block;
	float: none !important;
	width: auto;
	max-width: 100%;
	height: auto;
}
#tinymce img.alignright,
.bl-post img.alignright {
	margin: 0 0 0 auto;
}
#tinymce img.alignleft,
.bl-post img.alignleft {
	margin: 0 auto 0 0;
}
#tinymce img.aligncente,
.bl-post img.aligncenter {
	margin: 0 auto;
}
/* テーブル */
#tinymce table,
.bl-post table {
	border: 0.0625rem solid #000 !important;
}
#tinymce table th,
#tinymce table td,
.bl-post table th,
.bl-post table td {
	padding: 0.625rem !important;
	background: #fff !important;
	border: 0.0625rem solid #000 !important;
}
/* リスト */
.bl-post ul > li{
	padding-left: 1em;
	position: relative;
}
.bl-post ul > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 750px) {
	/* 記事内見出し */
	.el-post-h2 {
		padding: 0.5rem 1.5rem;
		font-size: 2rem;
	}
	/* 記事内小見出し */
	.el-post-h3 {
		padding: 0 0 1rem 0;
		font-size: 1.875rem;
		border-width: 0.125rem;
	}
	.el-post-h3::before {
	}
}