/* 投稿ページ用 CSS */

.page-content {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: disc;
}

/* タイトル */
.page-title-container {
	position: sticky;
	top: 140px; /* ヘッダー高さと一致させる */
	background-color: white;
	z-index: 40;
}
.page-title-container h1 {
	text-align: center;
	padding: 20px;
	font-size: 28px;
	font-weight: normal;
}

.single-article{
    max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	list-style: disc;
}

/* 投稿日・カテゴリの表示 */
.single-article .meta-info {
	color: #666;
	font-size: 14px;
	text-align: right;
	margin-bottom: 32px;
}

/* 本文全体のスタイル（ブロックエディタに合わせる） */
.single-article .entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.single-article .entry-content p {
	margin-bottom: 1.5em;
	font-size: 1rem;
	line-height: 1.8;
}

.single-article .entry-content h2 {
	font-size: 1.5rem;
	margin: 2em 0 1em;
	padding-bottom: 0.3em;
}

.single-article .entry-content h3 {
	font-size: 1.25rem;
	margin: 1.5em 0 1em;
}

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

.single-article .entry-content li {
	margin-bottom: 0.5em;
}

.single-article .entry-content blockquote {
	border-left: 4px solid #ccc;
	padding-left: 1em;
	color: #555;
	margin: 1.5em 0;
	font-style: italic;
	background: #f9f9f9;
}

.single-article .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	display: block;
	margin: 1.5em auto;
}

.single-article .entry-content a {
	color: #2563eb;
	text-decoration: underline;
}

.single-article .entry-content a:hover {
	color: #1e40af;
}


/* モバイル対応 */
@media (max-width: 767px) {
	.page-title-container h1 {
		font-size: 20px;
	}
	.single-article {
		padding: 0 12px;
	}
	.single-article .entry-content {
		font-size: 15px;
	}
}