@charset "UTF-8";

/* =========================================
   共通変数設定 (CTI SYSTEM)
========================================= */
:root {
	--bg-dark: #121213;
	--card-bg: rgba(26, 26, 28, 0.7);
	--border-color: #38383b;
	--text-main: #ffffff;
	--text-muted: #a0a0a0;
	--gold: #c5a059;
	--gold-hover: #dfbc77;
	--font-sans: 'Noto Sans JP', sans-serif;
	--font-serif: 'Playfair Display', 'Shippori Mincho', serif;
}

/* =========================================
   基本設定・背景
========================================= */
body {
	margin: 0;
	padding: 0;
	background-color: var(--bg-dark);
	color: var(--text-main);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* ========================================
   背景 & オーバーレイ (すりガラス)
======================================== */
.bg-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: -2;
	background-image: url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.blur-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

/* =========================================
   ヘッダー・フッター
========================================= */
.site-header {
	text-align: center;
	padding: 3rem 0 1.5rem;
}
.site-logo {
	font-family: var(--font-serif);
	font-size: 2.2rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	letter-spacing: 0.15em;
	color: #ffffff;
}
.site-subtitle {
	font-family: var(--font-serif);
	font-size: 0.85rem;
	color: var(--gold);
	letter-spacing: 0.2em;
	margin: 0;
}

.site-footer {
	text-align: center;
	padding: 2rem 0;
	font-size: 0.75rem;
	color: #555;
	font-family: var(--font-sans);
	letter-spacing: 0.1em;
	margin-top: auto;
}

/* =========================================
   メインコンテンツ（ドキュメント）
========================================= */
.main-panel {
	flex: 1;
	display: flex;
	justify-content: center;
	padding: 0 1.5rem;
}

.document-container {
	width: 100%;
	max-width: 800px; /* 読みやすいように少し広め */
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	padding: 3rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	margin-bottom: 3rem;
}

/* タイトル部分 */
.document-header {
	text-align: center;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 1.5rem;
	margin-bottom: 2.5rem;
}
.document-header h1 {
	font-family: var(--font-sans);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--text-main);
	letter-spacing: 0.05em;
	margin: 0 0 0.8rem 0;
}
.last-updated {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
}

/* 本文エリア */
.document-content {
	font-size: 0.95rem;
	line-height: 1.9;
	color: #c8c8cb;
}
.document-content p {
	margin-bottom: 1.5rem;
}

/* 各セクション */
.policy-section {
	margin-top: 3rem;
	margin-bottom: 2rem;
}
.policy-section h2 {
	font-size: 1.1rem;
	color: var(--gold);
	border-left: 3px solid var(--gold);
	padding-left: 0.8rem;
	margin-bottom: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

/* リストの装飾 */
.policy-section ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}
.policy-section ul li {
	position: relative;
	padding-left: 1.2rem;
	margin-bottom: 0.8rem;
}
.policy-section ul li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: var(--gold);
}
.policy-section ul li strong {
	color: var(--text-main);
	font-weight: 500;
}

/* お問い合わせボックス */
.contact-box {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
	padding: 1.5rem;
	border-radius: 0.25rem;
	margin-top: 1rem;
}
.contact-box p {
	margin: 0 0 0.5rem 0;
}
.contact-box p:last-child {
	margin: 0;
}

/* =========================================
   フッター（戻るボタン）
========================================= */
.document-footer {
	text-align: center;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.btn-back {
	display: inline-block;
	color: var(--text-muted);
	font-size: 0.9rem;
	text-decoration: none;
	border-bottom: 1px solid #444;
	padding-bottom: 3px;
	transition: all 0.3s ease;
}
.btn-back:hover {
	color: var(--text-main);
	border-bottom-color: var(--text-main);
}

/* =========================================
   レスポンシブ (スマホ対応)
========================================= */
@media screen and (max-width: 600px) {
	.site-header { padding: 2rem 0 1rem; }
	.site-logo { font-size: 1.8rem; }
	
	.document-container {
		padding: 2rem 1.5rem;
	}
	.document-header h1 {
		font-size: 1.3rem;
	}
	.document-content {
		font-size: 0.9rem;
	}
}