@charset "UTF-8";

		/* ========================================
		Base Reset & Variables
		========================================
		*/
		:root {
			--bg-base: #f8f9fa;
			--bg-white: #ffffff;

			--text-main: #1a1a1a;
			--text-sub: #666666;

			--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;
		}

		/* ========================================
		add class
		========================================
		*/
		.margin_top_1 { margin-top:5rem !important; }
		.margin_bottom_1 { margin-bottom: 2rem; }
		.block { display: block; }


		/* ========================================
		Grobal
		========================================
		*/
		* { 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; transition: opacity 0.3s; }
		a:hover { opacity: 0.8; }
		ul { list-style: none; }
		img { max-width: 100%; height: auto; display: block; }



		/* ========================================
		Sticky Navigation - 変更なし
		========================================
		*/
		.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; }
		.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; }

		/* ========================================
		Common Layout
		========================================
		*/
		.container { width: 94%; max-width: 1000px; margin: 0 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; }

		/* ========================================
		News & Topics
		========================================
		*/
		.news-section { margin-top: 3rem; margin-bottom: 4rem; }
		.news-header { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 2px solid var(--text-main); padding-bottom: 0.5rem; margin-bottom: 1rem; }
		.news-title-eng { font-family: var(--font-eng); font-size: 1.4rem; font-weight: 900; letter-spacing: 0.05em; }
		.news-list { display: flex; flex-direction: column; }
		.news-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px dashed var(--border-color); align-items: flex-start; }
		.news-date { font-family: var(--font-eng); font-weight: 700; color: var(--accent-pink); font-size: 0.85rem; min-width: 90px; }
		.news-badge { background: var(--text-main); color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 2px; font-weight: 700; white-space: nowrap; }
		.news-badge.info { background: #888; }
		.news-text { font-size: 0.9rem; color: var(--text-sub); flex: 1; line-height: 1.5; }

		/* ========================================
		[NEW] Special Features (マネタイズ用の特集枠)
		========================================
		*/
		.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
		@media(min-width: 768px){ .feature-grid { grid-template-columns: 1fr 1fr; } }

		.feature-banner {
			position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 21/9;
			box-shadow: var(--shadow-card); transition: transform 0.3s; display: block;
		}
		.feature-banner:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
		.feature-banner img { width: 100%; height: 100%; object-fit: cover; }
		.feature-overlay {
			position: absolute; top: 0; left: 0; width: 100%; height: 100%;
			background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
			padding: 1.5rem; display: flex; flex-direction: column; justify-content: center;
		}
		.feature-label { font-family: var(--font-eng); color: var(--accent-gold); font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
		.feature-title { color: #fff; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; line-height: 1.3; margin-bottom: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
		.feature-desc { color: #eee; font-size: 0.8rem; line-height: 1.5; max-width: 80%; }

		/* ========================================
		Cards & Editor's Note (SEO Text)
		========================================
		*/
		.cast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem 1.2rem; }
		.cast-card { background: var(--bg-white); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.3s ease; display: flex; flex-direction: column; }
		.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); }
		.cast-card a { display: block; }

		.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; }

		.card-review { padding: 0 1rem 1.2rem; font-size: 0.8rem; color: var(--text-sub); background: #fafafa; border-top: 1px dashed #e0e0e0; line-height: 1.6; margin-top: auto; }
		.card-review-title { display: block; font-family: var(--font-eng); font-weight: 700; color: var(--text-main); margin-top: 0.8rem; margin-bottom: 0.3rem; font-size: 0.75rem; letter-spacing: 0.05em; }


		/* ========================================
		[NEW] User Reviews (UGC/SEO強化枠)
		========================================
		*/
		.review-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
		@media(min-width: 768px){ .review-grid { grid-template-columns: repeat(3, 1fr); } }

		/* ★ 修正: display: flex; flex-direction: column; と height: 100%; を追加 */
		.review-card {
			background: #fff;
			padding: 1.5rem;
			border-radius: 8px;
			border: 1px solid #eee;
			position: relative;
			display: flex;
			flex-direction: column;
			height: 100%;
		}
		.review-card::before { content: '“'; position: absolute; top: 10px; right: 20px; font-family: var(--font-serif); font-size: 4rem; color: #f0f0f0; line-height: 1; pointer-events: none; }
		.review-stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
		.review-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-main); }
		.review-text { font-size: 0.85rem; color: var(--text-sub); line-height: 1.6; margin-bottom: 1rem; }

		/* ★ 修正: margin-top: auto; を追加して常に一番下に押し付ける */
		.review-target {
			display: flex;
			align-items: center;
			gap: 0.8rem;
			border-top: 1px dashed #eee;
			padding-top: 1rem;
			margin-top: auto;
		}
		.review-target img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
		.review-target-info { display: flex; flex-direction: column; }
		.review-target-shop { font-size: 0.65rem; color: #888; }
		.review-target-cast { font-weight: 700; font-size: 0.9rem; color: var(--accent-pink); }
		.review_cont { margin-top: 6rem; background: #fdfdfd; padding: 3rem 2rem; border-radius: 16px; border: 1px solid #f0f0f0; }


		.rev_all_box { text-align: center; margin-top: 2rem; }
		.rev_all_a { font-weight: 700; color: var(--text-main); border-bottom: 2px solid var(--accent-pink); padding-bottom: 2px; }

		/* ========================================
		Area Guide Column
		========================================
		*/
		.area-guide-section { background: #fff; padding: 5rem 0; margin: 5rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
		.area-guide-header { text-align: center; margin-bottom: 4rem; }
		.area-guide-title { font-family: var(--font-serif); font-weight: 800; margin-bottom: 0.5rem; font-size: clamp(1rem, 5vw, 2rem); }
		.area-guide-sub { font-family: var(--font-eng); font-size: 0.85rem; color: var(--accent-pink); letter-spacing: 0.15em; text-transform: uppercase; }
		.guide_p { color:var(--text-sub); }

		.area-card { display: flex; gap: 3rem; margin-bottom: 4rem; align-items: center; }
		.area-card:nth-child(even) { flex-direction: row-reverse; }
		.area-card:last-child { margin-bottom: 0; }

		.area-img { flex: 1; aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
		.area-img img { width: 100%; height: 100%; object-fit: cover; }

		.area-content { flex: 1; padding: 0 1rem; }
		.area-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-main); border-bottom: 2px solid var(--text-main); padding-bottom: 0.5rem; display: inline-block; }
		.area-desc { font-size: 0.95rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 1.5rem; text-align: justify; }
		.area-link { font-weight: 700; color: var(--accent-pink); font-size: 0.9rem; display: flex; align-items: center; gap: 0.3rem; }
		.area-link::after { content: '→'; font-family: var(--font-sans); }

		/* ========================================
		FAQ Section
		========================================
		*/
		.faq-section { max-width: 800px; margin: 5rem auto; padding: 0 1.5rem; }
		.faq-item { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem; }
		.faq-q { font-weight: 700; font-size: 1.05rem; color: var(--text-main); margin-bottom: 0.8rem; display: flex; gap: 0.8rem; line-height: 1.5; }
		.faq-q::before { content: 'Q.'; font-family: var(--font-eng); font-size: 1.2rem; color: var(--accent-pink); }
		.faq-a { font-size: 0.95rem; color: var(--text-sub); line-height: 1.8; display: flex; gap: 0.8rem; }
		.faq-a::before { content: 'A.'; font-family: var(--font-eng); font-size: 1.2rem; font-weight: 700; color: #ccc; }

		/* ========================================
		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; }

		/* ========================================
		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; }
			.copy-bottom h2 { font-size: 1.8rem; }

			.cast-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
			.card-review { display: none; }

			.news-item { flex-wrap: wrap; gap: 0.5rem; }
			.news-text { width: 100%; }

			.area-card, .area-card:nth-child(even) { flex-direction: column; gap: 1.5rem; }
			.area-img { width: 100%; border-radius: 0; }
		}

		@media (min-width: 1025px) {
			.mag-title { font-size: 150px; }
			.cast-grid { grid-template-columns: repeat(4, 1fr); }
		}






		/* ========================================
		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;
			}


			.copy-bottom h2 {
				font-size: 1.8rem;
			}

			.cast-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 1rem 0.8rem;
			}
		}



		@media (min-width: 1025px) {
			.mag-title {
				font-size: 150px;
			}
			.cast-grid {
				grid-template-columns: repeat(4, 1fr);
			}
		}




/* ========================================
   本日の出勤セクション CSS (オシャレ版)
======================================== */

/* カード全体のリンク要素 */
.cast-card-link {
	display: block;
	background: var(--bg-white);
	border-radius: var(--radius-card);
	overflow: hidden;
	text-decoration: none;
	color: var(--text-main);
	box-shadow: var(--shadow-card);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cast-card-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 画像とアスペクト比 */
.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.5s ease;
}
.cast-card-link:hover .img-wrap img {
	transform: scale(1.05); /* ホバーで画像を少しズーム */
}

/* キャスト情報 (Gridを使ってスッキリ整頓) */
.cast-info {
	padding: 1.2rem 1rem;
	text-align: center;
	display: grid;
	gap: 0.4rem; /* 各要素の隙間を均一に */
}

/* キャスト名：サイト共通の明朝体で高級感を */
.cast-name {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.2;
}
.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;
}

/* シフト時間：アクセントカラーを使い、タグ風に目立たせる */
.cast-time {
	font-size: 0.85rem;
	color: var(--accent-pink);
	font-weight: 700;
	background: rgba(235, 47, 91, 0.05); /* 薄いピンクの背景 */
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	display: inline-block;
	margin: 0.3rem auto 0;
}

/* ステータスバッジ：角丸ピル型でスタイリッシュに */
.status-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 14px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	border-radius: 20px;
	z-index: 2;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	backdrop-filter: blur(4px); /* 背景を少しぼかす */
}

/* バッジのカラー設定 */
.status-soku {
	background: rgba(235, 47, 91, 0.95); /* var(--accent-pink)ベース */
}
.status-yotei {
	background: rgba(59, 130, 246, 0.95);
}
.status-work {
	background: rgba(16, 185, 129, 0.95);
}




/* スライダー全体の枠 */
.today-cast-swiper {
	/* ドットを置くための専用スペースを確実に確保（remではなくpxで強めに） */
	padding-bottom: 40px !important;
	/* ★Swiper v11専用：ドットの位置を一番下に指定するCSS変数 */
	--swiper-pagination-bottom: 0px;
}

/* 念のため直接指定も残し、確実に下へ固定する */
.swiper-pagination {
	bottom: 0 !important;
	position: absolute;
}




/* もっと見るボタン */
.more-btn-wrap {
	text-align: center;
	margin-top: 1rem;
	padding: 0 1rem; /* スマホで端にピッタリくっつかないよう余白を追加 */
}
.btn-more {
	display: flex;
	flex-direction: column; /* 【スマホ用】デフォルトを縦並びに設定 */
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background: #fff;
	color: #333;
	border: 2px solid #333;
	border-radius: 12px; /* 縦並びの時は角丸を少し抑える */
	text-decoration: none;
	font-weight: bold;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	box-sizing: border-box;
	gap: 8px; /* 文字とバッジの縦の隙間 */
}
.btn-more:hover {
	background: #333;
	color: #fff;
}
.badge-count {
	background: #e83e8c;
	color: #fff;
	font-size: 0.8rem;
	padding: 4px 12px;
	border-radius: 12px;
	margin-left: 0; /* 【スマホ用】横の隙間をリセット */
}

/* 画面幅が480px以上（横並びできる余裕がある）場合のレイアウト */
@media (min-width: 480px) {
	.btn-more {
		flex-direction: row; /* 横並びに戻す */
		border-radius: 50px; /* 角丸を50pxに戻す */
		gap: 0;
	}
	.badge-count {
		margin-left: 10px; /* バッジの左に隙間を作る */
	}
}

/* Swiperのドットの色を変更 */
.swiper-pagination-bullet-active {
	background: #e83e8c !important;
}




/* ========================================
   共通： View All ボタン (一覧へ遷移)
======================================== */
.view-all-wrap {
	text-align: center;
	margin-top: 3rem; /* 上のグリッドとの余白 */
}

.btn-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-main);
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 2px solid var(--accent-pink); /* ピンクのアンダーライン */
	transition: opacity 0.3s ease;
}

.btn-view-all:hover {
	opacity: 0.7;
}

/* 右側の小さな矢印 */
.btn-view-all::after {
	content: '›';
	font-size: 1.3rem;
	margin-left: 8px;
	line-height: 1;
	color: var(--accent-pink);
	transition: transform 0.3s ease;
}

/* ホバー時に矢印がスッと右へ動くアニメーション */
.btn-view-all:hover::after {
	transform: translateX(4px);
}