@charset "UTF-8";

		/* ========================================
		Base Reset & Variables
		========================================
		*/
		:root {
			--accent-pink: #eb2f5b;
			--bg-base: #fdfdfd;
			--bg-card: #ffffff;
			--text-main: #1a1a1a;
			--text-sub: #555555;
			--border-color: #eaeaea;

			--font-sans: 'Noto Sans JP', sans-serif;
			--font-serif: 'Shippori Mincho', serif;
			--font-eng: 'Playfair Display', serif;

			--header-height: 60px;
		}

		* { box-sizing: border-box; margin: 0; padding: 0; }
		body {
			font-family: var(--font-sans);
			background-color: var(--bg-base);
			color: var(--text-main);
			line-height: 2;
			-webkit-font-smoothing: antialiased;
		}
		a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
		a:hover { opacity: 0.7; }

		/* ========================================
		Header
		========================================
		*/
		.simple-header {
			position: fixed;
			top: 0; left: 0; width: 100%;
			height: var(--header-height);
			background: rgba(253, 253, 253, 0.95);
			backdrop-filter: blur(10px);
			z-index: 100;
			border-bottom: 1px solid var(--border-color);
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 0 1.5rem;
		}
		.btn-back { font-family: var(--font-eng); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; }
		.header-logo { font-family: var(--font-eng); font-weight: 900; font-size: 1.2rem; }

		/* ========================================
		Page Header (Editorial)
		========================================
		*/
		.page-hero {
			padding-top: calc(var(--header-height) + 5rem);
			padding-bottom: 3rem;
			text-align: center;
			border-bottom: 1px solid var(--border-color);
			background: var(--bg-card);
		}

		.hero-tag {
			font-family: var(--font-eng);
			font-size: 0.85rem;
			letter-spacing: 0.2em;
			color: var(--text-sub);
			margin-bottom: 1rem;
			display: block;
			text-transform: uppercase;
		}

		.hero-title {
			font-family: var(--font-serif);
			font-size: clamp(2rem, 5vw, 3rem);
			font-weight: 800;
			line-height: 1.2;
			letter-spacing: 0.05em;
			color: var(--text-main);
		}

		/* ========================================
		Document Content (Magazine Column)
		========================================
		*/
		.document-container {
			max-width: 800px;
			margin: 0 auto;
			padding: 4rem 1.5rem 6rem;
		}

		.doc-preamble {
			font-size: 0.95rem;
			color: var(--text-sub);
			margin-bottom: 4rem;
			text-align: justify;
		}

		.doc-section {
			margin-bottom: 3rem;
		}

		.doc-section h2 {
			font-family: var(--font-serif);
			font-size: 1.4rem;
			font-weight: 800;
			margin-bottom: 1.5rem;
			padding-bottom: 0.5rem;
			border-bottom: 2px solid var(--text-main);
			display: flex;
			align-items: baseline;
			gap: 0.5rem;
		}

		.doc-section h2 .sec-num {
			font-family: var(--font-eng);
			font-size: 1.2rem;
			color: var(--accent-pink);
		}

		.doc-section p, .doc-section li {
			font-size: 0.95rem;
			color: var(--text-sub);
			margin-bottom: 1rem;
			text-align: justify;
		}

		.doc-section ol {
			padding-left: 1.5rem;
			margin-bottom: 1.5rem;
		}

		.doc-section ol li {
			margin-bottom: 0.5rem;
		}

		.doc-section ul {
			list-style-type: disc;
			padding-left: 1.5rem;
			margin-bottom: 1.5rem;
		}

		/* ========================================
		Footer
		========================================
		*/
		.site-footer {
			background: #111; color: #fff; text-align: center; padding: 2rem 0; font-size: 0.8rem;
		}