/* ============================================================
   汎用固定ページ（プライバシーポリシーなど、テキスト中心のページ）
   ============================================================ */
.page-content {
	padding-block: clamp(80px, 14vh, 140px);
	padding-top: calc(var(--header-height) + clamp(60px, 10vh, 100px));
}

.page-content__inner {
	width: min(760px, 100% - 3rem);
	margin-inline: auto;
}

.page-content__header {
	margin-bottom: clamp(32px, 5vw, 56px);
}

.page-content__title {
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-weight: 700;
	font-size: clamp(24px, 3.4vw, 36px);
	letter-spacing: 0.06em;
	color: #1a1a1a;
}

/* 本文（WordPressブロックエディタの出力） */
.page-content__body {
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 2;
	color: #333;
}

.page-content__body > * + * {
	margin-top: 1.4em;
}

.page-content__body h2 {
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 2vw, 22px);
	letter-spacing: 0.04em;
	color: #1a1a1a;
	margin-top: 2.4em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #e8e8e8;
}

.page-content__body h2:first-child {
	margin-top: 0;
}

.page-content__body h3 {
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 1.8vw, 18px);
	color: #1a1a1a;
	margin-top: 1.8em;
}

.page-content__body p {
	margin: 0;
}

.page-content__body ul,
.page-content__body ol {
	padding-left: 1.4em;
}

.page-content__body ul {
	list-style: disc;
}

.page-content__body ol {
	list-style: decimal;
}

.page-content__body li + li {
	margin-top: 0.4em;
}

.page-content__body a {
	color: #e07a5f;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.page-content__body a:hover {
	opacity: 0.8;
}

.page-content__body strong {
	font-weight: 700;
}

.page-content__back-to-top {
	margin-top: clamp(56px, 8vw, 88px);
	text-align: center;
}

.page-content__back-to-top a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	padding: 18px 48px;
	font-size: 14px;
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-weight: 700;
	letter-spacing: 0.19em;
	color: #fff;
	background: #e07a5f;
	border-radius: 80px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-content__back-to-top a:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.page-content__back-to-top a {
		width: 100%;
		min-width: unset;
	}
}
