/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 06:06:28 */
/*  領域  */
.single-post main {
	max-width: 930px;
	margin-left: auto;
	margin-right: auto;
}

/*  前後ボタン  */
.c-pnNav__item {
	border: 1px solid #27C1B4 !important;
	border-radius: 5px;
	color: #222 !important;
	max-width: 20rem;
	padding: 0.5rem 1rem;
	display: flex;
	align-items: center;
	text-decoration: none !important;
	background: #fff;
	justify-content: space-around;
}

.c-pnNav__item:hover {
	border-color: #1aa89c;
	background-color: #98e5df;
}

.c-pnNav__arrow {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.c-pnNav__arrow.-left::before,
.c-pnNav__arrow.-left::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	left: 0;
	width: 15px;
	height: 4px;
	border-radius: 9999px;
	background-color: #27C1B4;
	transform-origin: 2px 50%;
}

.c-pnNav__arrow.-left::before {
	transform: rotate(-45deg);
}
.c-pnNav__arrow.-left::after {
	transform: rotate(45deg);
}

.c-pnNav__arrow.-right::before,
.c-pnNav__arrow.-right::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 15px;
	height: 4px;
	border-radius: 9999px;
	background-color: #27C1B4;
	transform-origin: calc(100% - 2px) 50%;
}

.c-pnNav__arrow.-right::before {
	transform: rotate(45deg);
}

.c-pnNav__arrow.-right::after {
	transform: rotate(-45deg);
}

@media (max-width: 600px) {
	.c-pnNav {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.c-pnNav__item {
		max-width: 20rem;
		width: 100%;
	}
}


/*  カテゴリ  */
.post-categories {
	display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    background-color: #0D1C3F;
    border-radius: 0;
    white-space: nowrap;
	margin-left: 10px;
}

.post-categories a {
	text-decoration: none;
	color: #fff !important;
}

.post-meta-items {
	margin: 2rem 0;
}

.entry-content {
	margin: 3rem 0 5rem;
}

