/* ========================================
   beforeAfter archive
======================================== */

/*
 * Snow Monkey 側の一覧レイアウトを解除。
 * 投稿タイプ名が beforeAfter の場合のみ適用。
 */
.post-type-archive-beforeAfter .c-entries {
	display: block;
}

.post-type-archive-beforeAfter .c-entries__item {
	width: 100%;
	max-width: none;
	margin: 0;
}


/* 症例全体 */
.beforeAfter-item {
	margin-top: 40px;
	padding: 28px 28px 16px;
	background: #fff;
	border: 1px solid #ddd9f0;
	border-radius: 8px;
}

.beforeAfter-item:first-child {
	margin-top: 0;
}

.beforeAfter-inner {
	display: grid;
	grid-template-columns: 245px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
}


/* ========================================
   左側：顧客情報
======================================== */
.beforeAfter-info {
	text-align: center;
}

.beforeAfter-name {
	margin: 0 0 7px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	color: #555;
}

.beforeAfter-age {
	margin: 0 0 30px;
	font-family: serif;
	font-size: 64px;
	line-height: 1;
	color: #6259a4;
}

.beforeAfter-age span {
	margin-left: 3px;
	font-size: .65em;
}

.beforeAfter-meta + .beforeAfter-meta {
	margin-top: 28px;
}

.beforeAfter-meta-title {
	margin: 0;
	padding: 7px 10px;
	background: linear-gradient(
		90deg,
		#9694d2,
		#aaa9dc,
		#918dcc
	);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.beforeAfter-meta-text {
	margin: 12px 0 0;
	font-family: serif;
	font-size: 27px;
	line-height: 1.25;
	color: #6259a4;
}

.beforeAfter-area {
	font-size: 17px;
	line-height: 1.5;
}


/* ========================================
   右側：画像
======================================== */
.beforeAfter-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.beforeAfter-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

.beforeAfter-photo {
	min-width: 0;
}

.beforeAfter-photo-image {
	width: 100%;
	aspect-ratio: 2 / 4;
	overflow: hidden;
	background: #eee;
}

.beforeAfter-photo-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* After の紫枠 */
.beforeAfter-photo.after .beforeAfter-photo-image {
	border-top: 6px solid #6259a4;
	border-right: 6px solid #6259a4;
	border-left: 6px solid #6259a4;
}

/* Before / After の帯 */
.beforeAfter-label {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	margin: 0;
	font-family: serif;
	font-size: 28px;
	line-height: 1;
	color: #fff;
}

.beforeAfter-photo.before .beforeAfter-label {
	background: #c1c1c1;
}

.beforeAfter-photo.after .beforeAfter-label {
	background: #6259a4;
}


/* 注意書き */
.beforeAfter-note {
	margin: 10px 0 0;
	text-align: right;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0;
	color: #666;
}


/* ========================================
   Tablet
======================================== */
@media (max-width: 1023px) {
	.beforeAfter-inner {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 20px;
	}

	.beforeAfter-age {
		font-size: 52px;
	}

	.beforeAfter-label {
		height: 45px;
		font-size: 23px;
	}
}


/* ========================================
   Smartphone
======================================== */
@media (max-width: 781px) {
	.beforeAfter-item {
		padding: 20px 15px 14px;
	}

	.beforeAfter-inner {
		display: block;
	}

	.beforeAfter-info {
		margin-bottom: 28px;
	}

	.beforeAfter-name {
		font-size: 18px;
	}

	.beforeAfter-age {
		margin-bottom: 22px;
		font-size: 50px;
	}

	.beforeAfter-meta {
		max-width: 300px;
		margin-right: auto;
		margin-left: auto;
	}

	.beforeAfter-meta + .beforeAfter-meta {
		margin-top: 20px;
	}

	/* 正面セット → 側面セットを縦積み */
	.beforeAfter-images {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* Before と After は横並びのまま */
	.beforeAfter-set {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.beforeAfter-label {
		height: 42px;
		font-size: 22px;
	}

	.beforeAfter-photo.after .beforeAfter-photo-image {
		border-width: 4px;
	}

	.beforeAfter-note {
		font-size: 10px;
	}
}
