@charset "UTF-8";

		/* ========================================
		Magazine Cover (Hero Section) - 変更なし
		========================================
		*/
		.magazine-cover {
			position: relative; width: 100%; height: 100vh; max-height: 900px; min-height: 600px;
			overflow: hidden; background-color: #f0f0f0;
		}
		.cover-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
		.cover-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
		.cover-bg::after {
			content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
			background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.5) 100%);
		}
		.cover-content {
			position: relative; z-index: 10; width: 100%; height: 100%; max-width: 1000px; margin: 0 auto; padding: 2rem;
			display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto 1fr auto;
		}
		.mag-title {
			grid-column: 1 / -1; text-align: center; font-family: var(--font-eng); font-size: 15vw; line-height: 0.8;
			font-weight: 900; letter-spacing: -0.05em; color: #000; text-shadow: 2px 2px 0px #fff; margin-top: 1rem;
		}
		.mag-title .sub { display: block; font-size: 1rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.2em; margin-top: 0.5rem; text-transform: uppercase; }
		.mag-issue { position: absolute; top: 2rem; right: 2rem; text-align: right; font-family: var(--font-eng); line-height: 1.2; }
		.mag-issue .vol { font-size: 1.2rem; font-weight: 700; display: block; }
		.mag-issue .date { font-size: 0.9rem; border-top: 1px solid #000; padding-top: 2px; display: block; }
		.copy-left-top { position: absolute; top: 25%; left: 2rem; max-width: 200px; font-family: var(--font-serif); }
		.copy-left-top p.h3 { font-size: 1.8rem; font-weight: 800; line-height: 1.3; margin-bottom: 0.5rem; background: #fff; display: inline; box-decoration-break: clone; -webkit-box-decoration-break: clone; padding: 2px 5px; }
		.copy-left-top p { font-size: 0.9rem; font-weight: 500; margin-top: 0.5rem; background: rgba(255,255,255,0.8); padding: 4px; display: inline-block; }
		.copy-badge {
			position: absolute; top: 35%; right: 2rem; width: 140px; height: 140px; background: var(--accent-pink); border-radius: 50%;
			display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff;
			transform: rotate(10deg); box-shadow: 0 5px 15px rgba(235, 47, 91, 0.4);
		}
		.copy-badge strong { font-size: 1.1rem; font-family: var(--font-serif); line-height: 1.3; }
		.copy-badge span { font-size: 0.8rem; margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.5); padding-top: 4px; }
		.copy-bottom { grid-column: 1 / -1; grid-row: 3; text-align: center; margin-bottom: 4rem; font-family: var(--font-serif); }
		.copy-bottom p.h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.4; color: #1a1a1a; text-shadow: 0 0 20px rgba(255,255,255,0.8); }
		.copy-bottom p.h2 span { color: var(--accent-pink); }
		.cover-model-name { position: absolute; bottom: 1rem; right: 2rem; font-size: 0.8rem; font-weight: 700; text-align: right; }

		/* --- フッターテキスト (最下部) --- */
		.mag-bottom-text {
			position: absolute;
			bottom: 4%;
			width: 100%;
			text-align: center;
			font-size: clamp(1rem, 1.2vw, 1.2rem);
			font-weight: 500;
			letter-spacing: 0.1em;
			opacity: 1;
			font-family: var(--font-serif);
			z-index: 99;
		}