@charset "UTF-8";

/* ========================================
   Reviews Page Header
======================================== */
.reviews-main {
	padding-top: var(--header-height);
}
.reviews-page-header {
	text-align: center;
	margin-bottom: 3.5rem;
}
.page-title {
	font-family: var(--font-eng);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	letter-spacing: 0.05em;
	color: var(--text-main);
	line-height: 1.1;
}
.page-subtitle {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--accent-pink);
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}
.page-desc {
	font-size: 0.95rem;
	color: var(--text-sub);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ========================================
   Reviews List (案3: キャスト・フォーカス型)
======================================== */
.reviews-list-wrap {
	max-width: 800px; /* 口コミは文字が多いため、幅を広げすぎないのが読みやすさのコツ */
	margin: 0 auto;
}

.s3-item {
	background: #fff;
	margin-bottom: 2rem;
	border-radius: 12px;
	border: 1px solid #eee;
	padding: 1.5rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* PC時のホバーアクション */
@media (min-width: 768px) {
	.s3-item {
		padding: 2rem;
	}
	.s3-item:hover {
		transform: translateY(-3px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.06);
	}
}

/* 女性ページへのリンク全体（強力な導線） */
.s3-cast-link {
	display: block;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px dashed #eee;
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
	position: relative;
	transition: opacity 0.2s;
}
.s3-cast-link:hover {
	opacity: 0.85;
}

/* ヘッダーレイアウト（画像＋情報＋ボタン） */
.s3-header {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* キャスト画像 */
.s3-img {
	width: 75px;
	height: 75px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
	.s3-img {
		width: 90px;
		height: 90px;
		border-radius: 16px;
	}
}

/* 情報テキスト */
.s3-target-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.s3-shop {
	font-size: 0.75rem;
	color: #888;
	margin-bottom: 0.2rem;
}
.s3-cast {
	font-family: var(--font-serif);
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 0.3rem;
	color: var(--text-main);
}
.s3-stars {
	color: #fbbf24;
	font-size: 0.95rem;
	letter-spacing: 2px;
}

/* ★アクションを促す「詳細を見る」ボタン */
.s3-action {
	background: #fff;
	color: var(--accent-pink);
	border: 1px solid var(--accent-pink);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: all 0.3s;
	white-space: nowrap;
}
.s3-cast-link:hover .s3-action {
	background: var(--accent-pink);
	color: #fff;
}

/* スマホ表示の時のボタン配置調整 */
@media (max-width: 480px) {
	.s3-header {
		flex-wrap: wrap; /* 画面が狭いときはボタンを下に落とす */
	}
	.s3-action {
		width: 100%;
		justify-content: center;
		padding: 10px;
		margin-top: 0.5rem;
	}
}

/* 口コミ本文の吹き出しボックス */
.s3-review-box {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	position: relative;
}
/* 吹き出しの尻尾（上向きの三角形） */
.s3-review-box::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 30px;
	border-bottom: 10px solid #f8f9fa;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.s3-title {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 0.8rem;
	color: var(--text-main);
	line-height: 1.4;
	border-left: 3px solid var(--accent-gold);
	padding-left: 8px;
}
.s3-text {
	font-size: 0.9rem;
	color: var(--text-sub);
	line-height: 1.8;
}
.s3-date {
	display: block;
	text-align: right;
	margin-top: 1rem;
	font-size: 0.75rem;
	color: #aaa;
	font-family: var(--font-eng);
}

/* ========================================
   Pagination (ページ送り)
======================================== */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
}
.pagination span, .pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-family: var(--font-eng);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s;
}
.page-current {
	background: var(--text-main);
	color: #fff;
}
.page-link {
	background: #fff;
	color: var(--text-sub);
	border: 1px solid #e0e0e0;
}
.page-link:hover {
	background: #f0f0f0;
	color: var(--text-main);
}
.page-next {
	background: #fff;
	color: var(--accent-pink);
	border: 1px solid var(--accent-pink);
	font-family: var(--font-sans);
}
.page-next:hover {
	background: var(--accent-pink);
	color: #fff;
}