.c-head {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

.c-head__heading {
	font-size: 32px;
	font-weight: 700;
	color: #1a1b1d;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.c-head__heading {
		font-size: 24px;
	}
}

.c-body {
	display: flex;
	flex-direction: column;
	row-gap: calc(1em* 1.5);
	width: 100%;
	line-height: 2;
}

.c-body h2,
.c-body h3,
.c-body h4,
.c-body h5,
.c-body h6 {
	margin-top: 1em;
	font-weight: 700;
	line-height: 1.2;
	color: #1a1b1d;
}

.c-body h2 {
	font-size: calc(1em * 1.25);
}

.c-body h3 {
	font-size: calc(1em* 1.2);
}

.c-body h4 {
	font-size: calc(1em* 1.15);
}

.c-body h5 {
	font-size: calc(1em* 1.1);
}

.c-body h6 {
	font-size: calc(1em* 1.05);
}

.c-body h2+h3,
.c-body h3+h4,
.c-body h4+h5,
.c-body h5+h6 {
	margin-top: 0;
}

.c-body h2:first-child,
.c-body h3:first-child,
.c-body h4:first-child,
.c-body h5:first-child,
.c-body h6:first-child {
	margin-top: 0;
}

.c-body figcaption {
	margin-top: 10px;
}

.c-body ul,
.c-body ol {
	display: flex;
	flex-direction: column;
	row-gap: 0.25em;
	padding-left: 1.5em;
}

.c-body ul {
	list-style: disc;
}

.c-body ol {
	list-style: decimal;
}

.c-body table,
.c-body .wp-block-table table {
	width: 100%;
	max-width: 100%;
	background-color: #fff;
	border-collapse: collapse;
	border-spacing: 0;
}

.c-body th,
.c-body td,
.c-body .wp-block-table th,
.c-body .wp-block-table td {
	padding: 1em;
	background-color: inherit;
	border: 1px solid #1a1b1d;
}

.c-body th,
.c-body .wp-block-table th {
	background-color: #f1f1f1;
	font-weight: 700;
}

.c-body thead,
.c-body .wp-block-table thead {
	border-bottom: none;
}

.c-body thead tr,
.c-body .wp-block-table thead tr {
	background-color: #f1f1f1;
}

.c-body tfoot,
.c-body .wp-block-table tfoot {
	border-top: none;
}

.c-body tfoot tr,
.c-body .wp-block-table tfoot tr {
	background-color: #f1f1f1;
}

.c-body .wp-block-table.is-style-stripes {
	border-bottom: none;
}

.c-body .wp-block-table.is-style-stripes th {
	background-color: #e1e1e1;
}

.c-body .wp-block-table.is-style-stripes thead tr {
	background-color: #e1e1e1;
}

.c-body .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #f1f1f1;
}

.c-body .wp-block-table.is-style-stripes tbody th {
	background-color: #fff;
}

.c-body .wp-block-table.is-style-stripes tbody tr:nth-child(odd) th {
	background-color: #f1f1f1;
}

.c-body .wp-block-table.is-style-stripes tfoot tr {
	background-color: #e1e1e1;
}

.c-body table+figcaption {
	text-align: center;
}

.c-body blockquote {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 1em;
	padding: 1.8em 1em;
	background-color: #f1f1f1;
	border: 1px solid #1a1b1d;
	border-radius: 4px;
}

.c-body blockquote::before,
.c-body blockquote::after {
	position: absolute;
	font-size: 200%;
	color: #1a1b1d;
}

.c-body blockquote::before {
	content: "“";
	top: 0;
	left: 10px;
	line-height: 1.1;
}

.c-body blockquote::after {
	content: "”";
	right: 10px;
	bottom: 0;
	line-height: 0;
}

.c-body blockquote cite {
	display: inline-block;
	font-size: 0.8em;
}

.c-body code {
	margin: 0 0.5em;
	padding: 0.5em 1em;
	background-color: #333;
	border-radius: 4px;
	color: #fff;
}

.c-body pre {
	overflow: auto hidden;
	padding: 1em;
	background-color: #333;
	border-radius: 4px;
	color: #fff;
	white-space: pre;
}

.c-body pre>code {
	padding: 0;
	border-radius: 0;
}

.c-body a {
	text-decoration: underline;
}

@media (any-hover: hover) {
	.c-body a:hover {
		text-decoration: none;
	}
}