@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap');


h1.entry-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin: 4rem auto 2rem;
}


h1.entry-title a {
	text-decoration: none;
	color: #333;
}

.container {
	margin: 50px auto 0;
}

.entry-content {
	width: min(92%, 1024px);
	margin: 0 auto;
}

.entry-content p {
	font-size: 1.1em;
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin: 0 auto 18px;

}

.entry-content strong {
	font-weight: 600;
}

/*
.entry-content h1,
.entry-content h2{
	font-size: 1.3em;
    font-weight: normal;
	background: #fff;
	border-bottom: 1px solid #999;
	color: #333;
	line-height: 1.5;
	margin: 38px auto 16px;
	padding: 8px 0 2px 3px;
}
	*/

.entry-content h1,
.entry-content h2 {
	border-bottom: solid 3px var(--main-color);
	position: relative;
	margin: 1rem auto;
}

.entry-content h1:after,
.entry-content h2:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px red;
	bottom: -3px;
	width: 30%;
}

/*
.entry-content h3{
	font-size: 1.2em;
	text-indent: 0.3em;
	font-weight: normal;
	margin: 1rem auto .75rem;
	}
	*/
/*
.entry-content h3 {
	position: relative;
	color: #333;
	text-shadow: 0 0 2px white;
	z-index: 0;
	margin: 1rem auto;
}

.entry-content h3:before{
	content: "";
	position: absolute;
	background: #76cff0;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	top: 50%;
	left: -10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -1;
}
*/

.entry-content h3 {
	color: #333;
	/*文字色*/
	font-size: 1.5rem;
	/*文字サイズ*/
	padding: 0px 20px;
	/*文字回りの余白（上下 左右）*/
	display: block;
	border-left: 6px solid var(--main-color);
	/*二重線左側（太さ 実線 色）*/
	position: relative;
	margin: 1rem auto;
}

.entry-content h3:before {
	content: "";
	display: block;
	position: absolute;
	left: 3px;
	top: 0;
	width: 2px;
	/*二重線右側の太さ（幅）*/
	height: 100%;
	background: var(--main-color);
	/*二重線右側の色*/
}



.entry-content h4 {
	position: relative;
	display: inline-block;
	color: var(--main-color);
	font-size: 1.1rem;
	padding: 0 45px;
	margin: 2rem auto 1.5rem;
}

.entry-content h4:before,
.entry-content h4:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 32px;
	height: 2px;
	background-color: var(--main-color);
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

.entry-content h4:before {
	left: 0;
}

.entry-content h4:after {
	right: 0;
}

/*リスト*/
.entry-content ul {
	padding: 0.5em;
	list-style-type: none;
}

.entry-content ul li {
	font-size: 1.1rem;
	line-height: 1.5;
	position: relative;
	padding: 0em 0.3em 0.3em 1.3em;
}

.entry-content ul li:before {
	position: absolute;
	content: '';
	top: .5rem;
	left: 0;
	height: 0;
	width: 0;
	border-style: solid;
	border-width: 6px 0 6px 9px;
	border-color: transparent transparent transparent var(--main-color);
}



/*数字リスト*/

.entry-content ol {
	counter-reset: number;
	/*数字をリセット*/
	list-style-type: none !important;
	/*数字を一旦消す*/
	padding: 0.5em;
	background: #f5faff;
}

.entry-content ol li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 30px;
}

.entry-content ol li:before {
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display: inline-block;
	background: var(--main-color);
	color: white;
	font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
	font-weight: bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	/*以下 上下中央寄せのため*/
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}


.entry-content p a {
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px dotted #1e90ff;
	color: #1583f0;
}

/*wpのボタン（ブロックメニュー）*/
.entry-content .wp-block-buttons {
	margin: 2rem auto;
}

.entry-content .wp-block-button__link {
	background-color: var(--main-color);
}

.entry-content .wp-block-button__link:hover {
	color: yellow;
}

.entry-content .wp-caption-text {
	width: 98%;
	font-size: 0.8em;
	color: #666;
	line-height: 1.3;
	margin: 0 auto;
}

.entry-content a {
	font-weight: 500;
}



.entry-meta {
	font-size: 12px;
	text-align: right;
	margin-right: 24px;
}

.entry-meta span {
	color: #555;
}

.entry-meta a {
	text-decoration: none;
	color: #555;
}



.entry-content table {
	margin: 1rem auto;
}

.entry-content table td {
	padding: 12px;
}

@media only screen and (max-width: 736px) {
	/*スマホ*/



	h1.entry-title {
		font-size: 1.5em;
		line-height: 1.5;
	}

	.pagenav {
		width: 96%;
		margin: 20px auto 15px;
	}

	.pagenav .old {
		width: 100%;
		float: none;
	}

	.pagenav .old {
		border-right: 1px solid #999;
	}

	.pagenav .new {
		width: 100%;
		float: none;
		margin: 15px auto 0;
	}


	.entry-content p {
		width: 98%;
		font-size: 1.1em;
		line-height: 1.7;
		letter-spacing: 0.1em;
		margin: 0 auto 18px;

	}

	.entry-content br {
		line-height: 2;
	}

	.entry-content .wp-caption {
		max-width: 100%;
	}






}

/*スマホ*/


@media only screen and (min-width: 737px) and (max-width: 1024px) {}