/* ========================================
   Single Base
======================================== */
.single-main {
	background: #fff;
}

.single-content {
	padding: 60px 0;
}

.single-content__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   Meta
======================================== */
.single-meta {
	margin-bottom: 24px;
}

.single-meta__date {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #052156;
}

/* ========================================
   Thumbnail
======================================== */
.single-thumbnail {
	margin: 0 0 40px;
}

.single-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 27px;
}

/* ========================================
   Entry
======================================== */
.single-entry {
	line-height: 1.8;
	color: #222;
}

.single-entry > *:first-child {
	margin-top: 0;
}

.single-entry p {
	line-height: 1.8;
	margin-bottom: 20px;
}

.single-entry h2 {
	font-size: 24px;
	font-weight: 700;
	padding-left: 25px;
	position: relative;
	color: #052156;
	letter-spacing: 0.2em;
	scroll-margin-top: 100px;
	margin-top: 60px;
}

.single-entry h2:first-of-type {
	margin-top: 0;
}

.single-entry h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 55%;
	transform: translateY(-50%);
	width: 14px;
	height: 36px;
	background: #d6001c;
}

.single-entry h2::after {
	content: "";
	position: absolute;
	left: 10px;
	bottom: 1px;
	width: 101%;
	height: 1px;
	background: #E62228;
}

.single-entry h3 {
	margin: 40px 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: #052156;
}

.single-entry ul,
.single-entry ol {
	margin: 0 0 1em;
	padding-left: 1.5em;
}

.single-entry li {
	margin-bottom: 0.4em;
	list-style-position: outside;
}

.single-entry img {
	max-width: 100%;
	height: auto;
	border-radius: 27px;
}

.single-entry .wp-block-image {
	margin-bottom: 30px;
}

.single-entry .wp-block-image img {
	border-radius: 27px;
}

.single-entry a {
	color: #052156;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

/* ========================================
   SP
======================================== */
@media (max-width: 768px) {
	.single-content {
		padding: 10px 0;
	}

	.single-content__inner {
		padding: 0 16px;
	}

	.single-meta {
		margin-bottom: 16px;
	}

	.single-meta__date {
		font-size: 14px;
	}

	.single-thumbnail {
		margin-bottom: 24px;
	}

	.single-entry h2 {
		font-size: 18px;
		margin: 60px 0 20px;
		background: none;
	}

	.single-entry h2::before {
		content: "";
		position: absolute;
		left: 0;
		top: 55%;
		transform: translateY(-50%);
		width: 14px;
		height: 36px;
		background: #d6001c;
	}

	.single-entry h2::after {
		content: "";
		position: absolute;
		left: 10px;
		bottom: -4px;
		width: 100%;
		height: 1px;
		background: #E62228;
	}

	.single-entry h2:first-of-type {
		margin-top: 0;
	}

	.single-entry h3 {
		font-size: 17px;
		margin: 28px 0 12px;
	}

	.single-entry p {
		margin-bottom: 16px;
	}
}

/* ========================================
   Pagination
======================================== */
.single-pagination {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid #ddd;

	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}



.single-pagination__archive {
	text-align: center;
}

.single-pagination__archive a {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #052156;
	color: #052156;
	font-size: 14px;
	text-decoration: none;
}

.single-pagination a:hover {
	opacity: 0.7;
}

.single-pagination {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid #ddd;

	display: flex;
	align-items: center;
	gap: 20px;
}

.single-pagination__prev {
	margin-right: auto;
}

.single-pagination__archive {
	text-align: center;
}

.single-pagination__next {
	margin-left: auto;
}

/* SP */
@media (max-width: 768px) {
	.single-pagination {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.single-pagination__prev,
	.single-pagination__next {
		width: 100%;
	}
}

