@charset "UTF-8";

/* ========================================
		Variables (Standalone用に追加)
		======================================== */
		:root {
			--bg-base: #f8f9fa;
			--bg-white: #ffffff;
			--text-main: #1a1a1a;
			--text-sub: #666666;
			--accent-pink: #eb2f5b;
			--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;
			--border-color: #eaeaea;
		}



		/* ========================================
		Base & Layout
		======================================== */
		* { 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;
		}
		a { text-decoration: none; color: inherit; }
		img { max-width: 100%; height: auto; display: block; }

		/* コンテナ幅を1400pxに広げて6列のゆとりを持たせる */
		.container {
			width: 96%;
			max-width: 1400px;
			margin: 0 auto 5rem;
		}



		/* ========================================
		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 (雑誌特集風)
		======================================== */
		.page-header {
			background: var(--bg-white);
			/* ★ 固定ヘッダーの高さ分だけ上に余白を追加して隠れないようにする */
			margin-top: var(--header-height);
			padding: 4rem 1rem;
			text-align: center;
			margin-bottom: 3rem;
			border-bottom: 1px solid var(--border-color);
		}



		.page-title-eng {
			font-family: var(--font-eng);
			font-size: clamp(2.5rem, 8vw, 4rem);
			font-weight: 900;
			letter-spacing: 0.05em;
			line-height: 1;
			margin-bottom: 0.5rem;
		}
		.page-title-sub {
			font-family: var(--font-serif);
			font-size: 1.1rem;
			font-weight: 700;
			color: var(--accent-pink);
			letter-spacing: 0.2em;
			margin-bottom: 1.5rem;
		}
		.page-desc {
			font-size: 0.9rem;
			color: var(--text-sub);
			line-height: 1.8;
			max-width: 600px;
			margin: 0 auto;
		}

		/* ========================================
		Grid Layout (デバイスごとに列数を固定指定)
		======================================== */
		.cast-grid-all {
			display: grid;
			gap: 1.5rem 1rem;
			/* デフォルト(モバイル): 2列 */
			grid-template-columns: repeat(2, 1fr);
		}

		/* タブレット: 4列 */
		@media (min-width: 768px) {
			.cast-grid-all {
				grid-template-columns: repeat(4, 1fr);
				gap: 2rem 1.2rem;
			}
		}

		/* PC: 6列 */
		@media (min-width: 1024px) {
			.cast-grid-all {
				grid-template-columns: repeat(6, 1fr);
				gap: 2.5rem 1.5rem;
			}
		}

		/* ========================================
		Cast Card Design
		======================================== */
		.cast-card-all {
			display: flex;
			flex-direction: column;
		}
		.cast-card-link {
			display: flex;
			flex-direction: column;
			background: var(--bg-white);
			border-radius: var(--radius-card);
			overflow: hidden;
			box-shadow: var(--shadow-card);
			position: relative;
			transition: transform 0.3s ease, box-shadow 0.3s ease;
			height: 100%;
		}
		.cast-card-link:hover {
			transform: translateY(-8px);
			box-shadow: 0 20px 40px rgba(0,0,0,0.08);
		}

		/* Image Section */
		.img-wrap {
			width: 100%;
			aspect-ratio: 3 / 4;
			background: #eee;
			overflow: hidden;
		}
		.img-wrap img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		}
		.cast-card-link:hover .img-wrap img {
			transform: scale(1.08);
		}

		/* Info Section */
		.cast-info {
			padding: 1.2rem 1rem;
			display: flex;
			flex-direction: column;
			flex-grow: 1;
			align-items: center;
			text-align: center;
		}

		/* ★ Catch Copy (雑誌のプルクオート風) */
		.cast-catch {
			font-family: var(--font-serif);
			font-size: 0.95rem;
			font-weight: 800;
			color: var(--text-main);
			line-height: 1.5;
			margin-bottom: 0.8rem;
			/* 長い文章は2行で美しい「...」にする */
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
		}

		.cast-name {
			font-family: var(--font-serif);
			font-size: 1.2rem;
			font-weight: 700;
			margin-bottom: 0.3rem;
			margin-top: auto;
		}
		.cast-age {
			font-family: var(--font-sans);
			font-size: 0.85rem;
			color: var(--text-sub);
			font-weight: normal;
		}

		.shop-name {
			font-size: 0.75rem;
			color: #888;
			font-weight: 500;
			letter-spacing: 0.05em;
			margin-bottom: 0.8rem;
		}

		.cast-time {
			font-size: 0.85rem;
			color: var(--accent-pink);
			font-weight: 700;
			background: rgba(235, 47, 91, 0.05);
			padding: 0.3rem 0.8rem;
			border-radius: 4px;
			display: inline-block;
			border: 1px solid rgba(235, 47, 91, 0.1);
		}

		/* Status Badge */
		.status-badge {
			position: absolute;
			top: 10px;
			left: 10px;
			padding: 5px 12px;
			font-size: 0.7rem;
			font-weight: 700;
			color: #fff;
			border-radius: 30px;
			z-index: 2;
			box-shadow: 0 4px 10px rgba(0,0,0,0.15);
			backdrop-filter: blur(4px);
			letter-spacing: 0.05em;
		}
		.status-soku { background: rgba(235, 47, 91, 0.95); }
		.status-yotei { background: rgba(59, 130, 246, 0.95); }
		.status-work { background: rgba(16, 185, 129, 0.95); }

		/* ========================================
		Empty Message
		======================================== */
		.no-cast-msg {
			grid-column: 1 / -1;
			text-align: center;
			padding: 4rem 1rem;
			color: var(--text-sub);
			background: var(--bg-white);
			border-radius: var(--radius-card);
		}

		/* ========================================
		Media Queries (スマホ等での微調整)
		======================================== */
		@media (max-width: 600px) {
			.page-header {
				padding: 3rem 1rem;
			}
			.cast-info {
				padding: 1rem 0.6rem;
			}
			.cast-catch {
				font-size: 0.85rem;
			}
			.cast-name {
				font-size: 1.1rem;
			}
			.cast-time {
				font-size: 0.75rem;
				padding: 0.3rem 0.5rem;
			}
			.status-badge {
				top: 8px;
				left: 8px;
				padding: 4px 10px;
			}
		}




		/* ========================================
		Footer Elements
		========================================
		*/
		.seo-area { background: #fdfdfd; padding: 4rem 0; border-top: 1px solid #eee; }
		.seo-text h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; 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; line-height: 1.8; text-align: justify; }

		.contact-action-area { background: var(--bg-base); padding: 4rem 1rem; text-align: center; }
		.contact-action-box { max-width: 600px; margin: 0 auto; background: var(--bg-white); padding: 3rem 2rem; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
		.contact-action-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
		.contact-action-desc { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 2rem; line-height: 1.6; }
		.btn-contact-solid { display: inline-block; padding: 1rem 3rem; background: var(--text-main); color: #fff; font-weight: 700; border-radius: 50px; letter-spacing: 0.1em; transition: all 0.3s; }
		.btn-contact-solid:hover { background: var(--accent-pink); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(235, 47, 91, 0.3); }
		.plan_list { width:200px; margin:30px auto 0 auto; padding:15px; border-bottom:1px #000 solid; font-size:1rem; color:#000; cursor: pointer; font-family: var(--font-serif); }
		.plan_list:hover { width:200px; margin:30px auto 0 auto; padding:15px; border-bottom:1px #000 solid; font-size:1rem; color:#2D65A5; cursor: pointer; font-family: var(--font-serif); }

		.site-footer { background: #111; color: #fff; text-align: center; padding: 3rem 0; font-size: 0.8rem; }
		.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
		.footer-links a { color: #aaa; transition: color 0.2s; }
		.footer-links a:hover { color: #fff; text-decoration: underline; }