body {
	background-color: #0D1B2A;
	color: #FFFFFF;
}

a {
	color: #6C91BF;
}

a:hover {
	color: #A3C9F5;
}

.site-title, h1, h2, h3, h4 {
	color: #F0F0F0;
}

body {
	color: #D8D8D8;
/* やさしい白グレー */
	background-color: #0c1a2b;
/* 深いインディゴブルー */
}

a {
	color: #9ad2ff;
/* 月光のような淡いブルー */
}

/* ▷ 本文テキストのフォントサイズ・行間調整 */
.entry-content p {
	font-size: 18px;
/* 通常より少し大きめ */
	line-height: 1.9;
/* 行間にゆとり */
	color: #222222;
/* 優しいダークグレー */
}

/* ▷ 見出し（h1）上下に余白を追加 */
.entry-content h1 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-size: 28px;
}

/* ▷ フッターリンク（控えめな装飾） */
footer a {
	color: #aabbe3;
/* 淡い青（幻想的） */
	text-decoration: none;
	transition: color .3s ease;
}

footer a:hover {
	color: #ffffff;
/* ホバーで白に */
	text-decoration: underline;
}

/* ▷ フッターの文字全体を少し小さめに調整 */
footer {
	font-size: 14px;
	line-height: 1.6;
}

/* Homeページだけ h1 見出しを非表示に */
.page-id-4 .entry-content h1 {
	display: none;
}

/* 全体の背景色：デフォルト白 */
body {
	background-color: #ffffff;
	color: #222222;
}

/* ホームページだけ背景を濃い青にしたい場合 */
.page-id-4 {
	background-color: #0c1a2b;
	color: #ffffff;
}

.voice-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.voice-item {
	width: 300px;
	text-align: center;
	text-decoration: none;
	color: #222;
	transition: transform .3s ease;
}

.voice-item:hover {
	transform: scale(1.05);
}

.voice-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	margin-bottom: 10px;
}

.voice-item p {
	font-size: 16px;
	font-weight: 500;
}

/* モバイル表示調整 */
@media screen and (max-width: 768px) {
	.voice-item {
		width: 100%;
		max-width: 90%;
	}
}

.voice-item img {
	width: 100%;
	max-width: 300px;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	margin-bottom: 10px;
}

.voice-item p {
	font-size: 16px;
	font-weight: 500;
	margin-top: 8px;
}

.voice-item {
	text-align: center;
	margin: 0 auto;
}

.post-navigation a {
	font-size: 18px;
	font-weight: bold;
	color: #444 !important;
	text-decoration: underline;
}

.post-navigation {
	margin-top: 40px;
	text-align: center;
}

.post-navigation a {
	font-size: 18px;
	font-weight: bold;
	color: #222 !important;
/* 少し濃いグレー */
	text-decoration: underline;
	opacity: 1 !important;
/* 透明度を100%にする */
}

.post-navigation {
	margin-top: 40px;
	text-align: center;
}

.post-navigation a,
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	font-size: 18px;
	font-weight: bold;
	color: #222 !important;
	text-decoration: underline;
	opacity: 1 !important;
}

.post-navigation a,
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	font-size: 18px;
	font-weight: bold;
	color: #222222 !important;
/* 完全な濃いグレーに */
	text-decoration: underline;
	opacity: 1 !important;
	filter: none !important;
}