@charset "UTF-8";
/*****************************************************
　ニュース詳細ページ専用スタイル
　common.css の変数・命名規則を踏襲
　本文（.post-content）は the_content() で出力される
　自由入力コンテンツのため、タグ単位で汎用的にスタイリング
*****************************************************/

.post-single{
	max-width:1250px;
	margin:0 auto;
	padding:110px 60px 120px;
	width:100%;
}

.post-date-bar{
	text-align:right;
	font-size:14px;font-size:1.4rem;
	color:var(--text-basic);
	margin:0 0 20px;
}

.post-title{
	font-size:30px;font-size:3.0rem;
	font-weight:700;
	line-height:1.5;
	margin:0 0 40px;
}

/* ===== 本文（the_content） ===== */
.post-content{
	font-size:15px;font-size:1.5rem;
	color:var(--text-basic);
	line-height:1.9;
}
.post-content > *:first-child{margin-top:0;}
.post-content p{
	margin:0 0 26px;
}
.post-content h2{
	font-size:22px;font-size:2.2rem;
	font-weight:700;
	margin:56px 0 22px;
}
.post-content h3,
.post-content h4{
	font-size:17px;font-size:1.7rem;
	font-weight:700;
	margin:40px 0 16px;
}
.post-content ul,
.post-content ol{
	margin:0 0 26px;
	padding-left:1.4em;
}
.post-content ul{list-style:disc;}
.post-content ol{list-style:decimal;}
.post-content li{
	margin-bottom:10px;
	padding-left:2px;
}
.post-content li:last-child{margin-bottom:0;}
.post-content ul ul,
.post-content ul ol,
.post-content ol ul,
.post-content ol ol{
	margin:10px 0 0;
}
.post-content a{
	color:var(--accent-lightblue);
	text-decoration:underline;
}
.post-content strong{font-weight:700;}
.post-content img{
	border-radius:var(--radius-lg);
	margin:30px 0;
}
.post-content blockquote{
	margin:26px 0;
	padding:18px 24px;
	border-left:3px solid var(--accent-lightblue);
	background:var(--card-bg);
	color:var(--text-secondary);
}

/* ===== Gutenberg ボタンブロック（例：「講演会に申し込む」） ===== */
.post-content .wp-block-button{
	margin:36px 0;
}
.post-content .wp-block-button__link{
	display:inline-flex;
	align-items:center;
	background:#214b73;
	color:#fff;
	font-size:15px;font-size:1.5rem;
	font-weight:700;
	padding:16px 30px;
	border-radius:8px;
	text-decoration:none;
	transition:opacity .15s ease;
}
.post-content .wp-block-button__link:hover{opacity:.85;}

/* ===== 一覧に戻る ===== */
.post-back-link{
	text-align:center;
	margin-top:70px;
}
.post-back-link .back-btn{
	display:inline-flex;
	align-items:center;
	gap:10px;
	background:var(--accent-lightblue);
	color:#fff;
	font-size:16px;font-size:1.6rem;
	font-weight:700;
	padding:18px 40px;
	border-radius:var(--radius-full);
	transition:opacity .15s ease;
}
.post-back-link .back-btn:hover{opacity:.85;}

/* ===================================================
	 Responsive: <=1024px
=================================================== */
@media (max-width:1024px){
	.post-single{padding-top:70px;padding-bottom:80px;}
	.post-title{font-size:24px;}
	.post-content h2{font-size:19px;margin-top:44px;}
	.post-content h3,
	.post-content h4{font-size:16px;margin-top:32px;}
}

@media (max-width:520px){
	.post-single{padding-top:56px;}
	.post-back-link .back-btn{width:100%;justify-content:center;padding:16px;}
}
