@charset "UTF-8";

		/* ========================================
		Base Reset & Variables
		========================================
		*/
		:root {
			--bg-base: #f8f9fa;
			--bg-white: #ffffff;

			--text-main: #1a1a1a;
			--text-sub: #666666;

			/* Magazine Colors from reference image */
			--accent-pink: #eb2f5b; /* 鮮やかなピンク */
			--accent-gold: #c5a059; /* 上品なゴールド */

			--font-sans: 'Noto Sans JP', sans-serif;
			--font-serif: 'Shippori Mincho', serif;
			--font-eng: 'Playfair Display', serif;

			--shadow-card: 0 10px 30px rgba(0,0,0,0.05);
			--radius-card: 12px;

			--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: 1.6;
			-webkit-font-smoothing: antialiased;
			/*padding-bottom: 60px; */
		}

		a {
			text-decoration: none;
			color: inherit;
			transition: opacity 0.3s;
		}

		ul {
			list-style: none;
		}

		img {
			max-width: 100%;
			height: auto;
			display: block;
		}

		/* ========================================
		Magazine Cover (Hero Section)
		========================================
		*/
		.magazine-cover {
			position: relative;
			width: 100%;
			/* スマホで全画面、PCでも適度な高さ */
			height: 100vh; 
			max-height: 900px;
			min-height: 600px;
			overflow: hidden;
			background-color: #f0f0f0;
		}

		/* Background Image */
		.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%;
		}

		/* Overlay Gradient for Text readability */
		.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 Grid */
		.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;
		}

		/* 1. Magazine Title (Top Center) */
		.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;
		}

		/* 2. Catch Copies (Scattered) */

		/* Left Top Text */
		.copy-left-top {
			position: absolute;
			top: 25%;
			left: 2rem;
			max-width: 200px;
			font-family: var(--font-serif);
		}

		.copy-left-top 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;
		}

		/* Right Circle Badge */
		.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;
		}

		/* Bottom Main Catch */
		.copy-bottom {
			grid-column: 1 / -1;
			grid-row: 3;
			text-align: center;
			margin-bottom: 3rem;
			font-family: var(--font-serif);
		}

		.copy-bottom 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 h2 span {
			color: var(--accent-pink);
		}

		.cover-model-name {
			position: absolute;
			bottom: 9rem;
			right: 2rem;
			font-size: 0.8rem;
			font-weight: 700;
			text-align: right;
		}

		/* ========================================
		Sticky Navigation (Below Cover)
		========================================
		*/
		.sticky-nav-wrapper {
			position: sticky;
			top: 0;
			z-index: 100;
			background: rgba(255,255,255,0.95);
			backdrop-filter: blur(10px);
			border-bottom: 1px solid #eee;
			box-shadow: 0 4px 10px rgba(0,0,0,0.05);
		}

		.nav-inner {
			max-width: 1000px;
			margin: 0 auto;
			padding: 0 1rem;
			display: flex;
			align-items: center;
			justify-content: space-between;
			height: var(--header-height);
		}

		.nav-logo {
			font-family: var(--font-eng);
			font-weight: 900;
			font-size: 1.2rem;
		}

		/* Scrollable Area Nav */
		.nav-scroll {
			flex: 1;
			overflow-x: auto;
			margin-left: 1.5rem;
			white-space: nowrap;
			-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
		}

		.nav-scroll::-webkit-scrollbar {
			display: none;
		}

		.nav-scroll ul {
			display: inline-flex;
			gap: 0.5rem;
			padding-right: 1rem;
		}

		.nav-tag {
			display: block;
			padding: 0.4rem 1rem;
			border-radius: 50px;
			font-size: 0.8rem;
			font-weight: 700;
			color: var(--text-sub);
			background: #f0f0f0;
			transition: all 0.2s;
		}

		.nav-tag:hover, .nav-tag.active {
			background: #000;
			color: #fff;
		}

		.nav-tag.ranking {
			background: var(--accent-pink);
			color: #fff;
		}

		/* ========================================
		Main Layout & Cards
		========================================
		*/
		.container {
			width: 94%;
			max-width: 1000px;
			margin: 30px auto;
		}

		section {
			margin-top: 4rem;
			margin-bottom: 5rem;
		}

		.section-header {
			text-align: center;
			margin-bottom: 2.5rem;
			position: relative;
		}

		.section-title {
			font-family: var(--font-serif);
			font-size: 1.8rem;
			font-weight: 800;
			display: inline-block;
			position: relative;
			z-index: 1;
		}

		.section-title::after {
			content: '';
			display: block;
			width: 100%;
			height: 8px;
			background: rgba(235, 47, 91, 0.15);
			position: absolute;
			bottom: 3px;
			left: 0;
			z-index: -1;
		}

		.section-subtitle {
			display: block;
			font-family: var(--font-eng);
			font-size: 0.8rem;
			color: var(--text-sub);
			letter-spacing: 0.1em;
			margin-top: 0.5rem;
		}

		/* Grid System */
		.cast-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
			gap: 1.5rem 1rem;
		}

		/* Cast Card Design */
		.cast-card {
			background: var(--bg-white);
			border-radius: var(--radius-card); /* 少し角丸を小さくして大人っぽく */
			overflow: hidden;
			box-shadow: var(--shadow-card);
			transition: transform 0.3s ease;
		}

		.cast-card:hover {
			transform: translateY(-5px);
		}

		.card-img-box {
			position: relative;
			aspect-ratio: 4 / 5;
			overflow: hidden;
		}

		.work-img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.cast-card:hover .work-img {
			transform: scale(1.05);
		}

		.card-badge {
			position: absolute;
			top: 0;
			left: 0;
			background: #000;
			color: #fff;
			font-size: 0.7rem;
			font-weight: 700;
			padding: 4px 10px;
			border-bottom-right-radius: 8px;
		}

		.card-badge.pink {
			background: var(--accent-pink);
		}

		.card-info {
			padding: 1rem;
		}

		.shop-name {
			font-size: 0.7rem;
			color: #888;
			display: block;
			margin-bottom: 2px;
		}

		.cast-name {
			font-family: var(--font-serif);
			font-size: 1.1rem;
			font-weight: 700;
			margin-bottom: 0.5rem;
		}

		.cast-age {
			font-family: var(--font-sans);
			font-size: 0.85rem;
			font-weight: normal;
			margin-left: 4px;
		}

		.cast-spec {
			font-family: var(--font-eng);
			font-size: 0.75rem;
			color: var(--text-sub);
			border-top: 1px solid #eee;
			padding-top: 0.5rem;
			display: flex;
			gap: 0.5rem;
		}

		/* ========================================
		SEO Footer
		========================================
		*/
		.seo-area {
			background: #fff;
			padding: 4rem 0;
			border-top: 1px solid #eee;
		}

		.seo-text h2 {
			font-size: 1.2rem;
			border-bottom: 2px solid var(--text-main);
			padding-bottom: 0.5rem;
			margin-bottom: 1.5rem;
		}

		.seo-text p {
			font-size: 0.9rem;
			color: #555;
			margin-bottom: 1rem;
		}

		.site-footer {
			background: #111;
			color: #fff;
			text-align: center;
			padding: 2rem 0;
			font-size: 0.8rem;
		}

		/* ========================================
		Age Verification (Overlay)
		========================================
		*/
		#age-verification {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(255, 255, 255, 0.98);
			z-index: 9999;
			display: flex;
			justify-content: center;
			align-items: center;
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.4s;
		}

		#age-verification.is-visible {
			opacity: 1;
			visibility: visible;
		}

		.modal-content {
			text-align: center;
			padding: 2rem;
			max-width: 400px;
		}

		.modal-title {
			font-family: var(--font-serif);
			font-size: 1.8rem;
			margin-bottom: 1rem;
		}

		.btn-group {
			display: flex;
			gap: 1rem;
			justify-content: center;
			margin-top: 2rem;
		}

		.btn {
			padding: 0.8rem 2rem;
			border-radius: 50px;
			border: 2px solid #000;
			font-weight: 700;
			cursor: pointer;
			background: transparent;
			transition: all 0.2s;
		}

		.btn-enter {
			background: #000;
			color: #fff;
		}

		.btn-enter:hover {
			background: var(--accent-pink);
			border-color: var(--accent-pink);
		}

		/* ========================================
		Media Queries
		========================================
		*/
		@media (max-width: 768px) {
			.mag-title {
				font-size: 22vw; /* スマホではさらに大きく */
			}

			.copy-left-top {
				top: 22%;
				left: 1rem;
			}
			.copy-left-top h3 {
				font-size: 1.4rem;
			}

			.copy-badge {
				top: 30%;
				right: 1rem;
				width: 100px;
				height: 100px;
			}
			.copy-badge strong {
				font-size: 0.9rem;
			}

			.cover-model-name {
				bottom: 9rem;
			}

			.copy-bottom h2 {
				font-size: 1.8rem;
			}

			.cast-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 1rem 0.8rem;
			}
		}

		/* PC用調整 */
		@media (min-width: 1025px) {
			.mag-title {
				font-size: 150px;
			}
			.cast-grid {
				grid-template-columns: repeat(4, 1fr);
			}
		}