/* ==========================================================================
   プライバシーポリシーページ
   ========================================================================== */

.pp-main {
	padding-bottom: 80px;
}

.pp-body {
	padding: 64px 0 0;
}

.pp-body__inner {
	max-width: 760px;
}

.pp-lead {
	font-size: clamp(0.9rem, 1.8vw, 1rem);
	line-height: 1.9;
	color: var(--text-secondary);
	margin-bottom: 56px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border, #e0e0dc);
}

/* セクション */
.pp-section {
	margin-bottom: 48px;
}

.pp-section__title {
	font-family: var(--font-sans);
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: 0.03em;
	margin-bottom: 14px;
	padding-left: 14px;
	border-left: 3px solid var(--accent);
}

.pp-section__text {
	font-size: clamp(0.88rem, 1.8vw, 0.95rem);
	line-height: 1.9;
	color: var(--text-secondary);
	margin-bottom: 12px;
}

.pp-section__text:last-child {
	margin-bottom: 0;
}

.pp-section__list {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}

.pp-section__list li {
	font-size: clamp(0.88rem, 1.8vw, 0.95rem);
	line-height: 1.8;
	color: var(--text-secondary);
	padding-left: 1.2em;
	position: relative;
}

.pp-section__list li::before {
	content: '–';
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* リンク */
.pp-link {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.2s;
}

.pp-link:hover {
	opacity: 0.7;
}

/* 運営者情報 */
.pp-info {
	background: var(--bg-secondary);
	border-radius: 4px;
	padding: 24px 28px;
	margin-top: 16px;
}

.pp-info__row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 6px 16px;
	align-items: baseline;
	padding: 10px 0;
	border-bottom: 1px solid var(--border, #e0e0dc);
}

.pp-info__row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pp-info__row:first-child {
	padding-top: 0;
}

.pp-info dt {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: 0.04em;
}

.pp-info dd {
	font-size: 0.9rem;
	color: var(--text-primary);
	margin: 0;
}

/* 制定日 */
.pp-date {
	margin-top: 56px;
	padding-top: 24px;
	border-top: 1px solid var(--border, #e0e0dc);
	font-size: 0.82rem;
	color: var(--text-secondary);
	text-align: right;
}

@media (max-width: 600px) {
	.pp-body {
		padding-top: 48px;
	}

	.pp-info {
		padding: 20px;
	}

	.pp-info__row {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}
