/* policy.css */

/* メインセクション全体 */
.policy-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 20px;
	background: #fff;
	color: #333;
	line-height: 1.8;
	font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

/* コンテンツラッパー */
.policy-content {
	background: #fafafa;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	animation: fadeIn 0.8s ease-in-out;
}

/* 見出し */
.policy-content h1 {
	font-size: 28px;
	margin-bottom: 24px;
	text-align: center;
	font-weight: 700;
	color: #222;
	border-bottom: 3px solid #ff69b4;
	/* ブランドカラーに変更可 */
	display: inline-block;
	padding-bottom: 6px;
}

.policy-content h2 {
	font-size: 20px;
	margin-top: 36px;
	margin-bottom: 12px;
	color: #444;
	font-weight: 600;
	border-left: 4px solid #ff69b4;
	padding-left: 10px;
}

/* テキスト */
.policy-content p {
	margin: 12px 0;
	font-size: 15px;
	color: #555;
}

/* 箇条書き */
.policy-content ul {
	margin: 12px 0 20px 20px;
	padding-left: 20px;
}

.policy-content ul li {
	list-style-type: disc;
	margin-bottom: 6px;
	font-size: 15px;
}

/* スクロール時のアニメーション */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* フッター */
.footer-section {
	background: #111;
	color: #fff;
	padding: 30px 20px;
	text-align: center;
}

.footer-inner {
	max-width: 900px;
	margin: 0 auto;
}

.footer-nav {
	margin-bottom: 10px;
}

.footer-nav a {
	color: #fff;
	margin: 0 12px;
	font-size: 14px;
	text-decoration: none;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-bottom small {
	font-size: 12px;
	color: #aaa;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.policy-page {
		padding: 40px 16px;
	}

	.policy-content {
		padding: 28px 20px;
	}

	.policy-content h1 {
		font-size: 22px;
	}

	.policy-content h2 {
		font-size: 18px;
	}

	.policy-content p,
	.policy-content ul li {
		font-size: 14px;
	}
}