@charset "UTF-8";
/*------------------------
見出し・段落など
------------------------*/
.wp-content .content h2 {
	position: relative;
	letter-spacing: 0.04em;
}
.wp-content .content h2:after {
	content: '';
	background: var(--blue);
	position: relative;
	display: block;
}
.wp-content p {
	line-height: 1.75;
}
.wp-content .content h3 {
	position: relative;
	border-bottom: 2px solid var(--blue);
	letter-spacing: 0.04em;
}
.wp-content p,
.wp-content li {
	margin-bottom: 1em;
}
.wp-content .mb.em2 {
	margin-bottom: 2em;
}
.wp-content .mb.em3 {
	margin-bottom: 3em;
}
.wp-content .mb.em4 {
	margin-bottom: 4em;
}
.wp-content .mb.em5 {
	margin-bottom: 5em;
}
/*------------------------
リストマーク
------------------------*/
ul.circle li {
	position: relative;
	padding-left: 1em;
	/* リストマーク分の余白を左に確保 */
	margin-bottom: 0.25em;
}

ul.circle li::before {
	content: '';
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 0.3em;
	height: 0.3em;
	background-color:var(--blue);
	border-radius: 50%;
}


/*------------------------
テーブル
------------------------*/
.wp-content table:not(form table) {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--gray);
}
.wp-content table:not(form table) th,
.wp-content table:not(form table) td {
	border-bottom: 1px solid var(--gray);
}
.wp-content table:not(form table) th{
	background: #f0f0f0;
}
/* -----PC----- */
@media screen and (min-width:768px) {
	.wp-content .content h2 {
		font-size: 26px;
		margin-bottom: 25px;
	}
	.wp-content .content h2:after {
		background: var(--blue);
		width: 30px;
		height: 6px;
		border-radius: 10px;
		margin: 8px 0 20px;
	}
	.wp-content .content h3 {
		font-size: 20px;
		border-width: 2px;
		padding-bottom: 3px;
		margin-bottom: 12px;
	}
	.wp-content .content{
		margin-bottom: 60px;
	}
	.wp-content table:not(form table) table{
		margin-bottom: 20px;
	}
	.wp-content table:not(form table) th,
	.wp-content table:not(form table) td{
		padding: 15px;
	}
}
/* -----SP----- */
@media screen and (max-width:767px) {
	.wp-content .content h2 {
		font-size: 5.86vw;
		margin-bottom: 6.66vw;
	}
	.wp-content .content h2:after {
		background: var(--blue);
		width: 8vw;
		height: 1.6vw;
		border-radius: 10px;
		margin: 8px 0 20px;
	}
	.wp-content .content h3 {
		font-size: 4.8vw;
		border-width: .8vw;
		padding-bottom: .53vw;
		margin-bottom: 3.2vw;
	}
	.wp-content .content {
		margin-bottom:13.333vw;
	}
	.wp-content table:not(form table) {
		margin-bottom:5.33vw;
		border-bottom: none!important;
	}

	.wp-content table:not(form table) th,
	.wp-content table:not(form table) td {
		padding:2.66vw;
		display: block;
	}

}
