/*
 Theme Name: GAIA Child
 Theme URI: https://tcd-theme.com/tcd102/
 Description: Child theme for GAIA (tcd102).
 Author: 大嵩 ユウタ
 Author URI: https://tcd-theme.com/
 Template: gaia_tcd102
 Version: 1.0
 Text Domain: gaia_tcd102_child
*/

/* ここから子テーマCSSを書く */

/* 投稿ページの価格表示 */
.p-single__header-image {
	position: relative;
}

.p-single__header-price {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgba(231, 76, 60, 0.8);
	color: #fff;
	padding: 15px 20px;
	border-radius: 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.p-single__header-price__unit {
	font-size: 0.75em;
	opacity: 0.9;
	font-weight: 500;
}

.p-single__header-price__amount {
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1;
}

@media (max-width: 767px) {
	.p-single__header-image .p-single__header-category {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
		padding: 10px 15px;
	}

	.p-single__header-price {
		bottom: 0;
		right: 0;
		padding: 12px 16px;
	}

	.p-single__header-price__unit {
		font-size: 0.7em;
	}

	.p-single__header-price__amount {
		font-size: 1.5em;
	}
}

/* front page section button: 下余白を上余白と同じ値にする */
.p-fp-section__button { margin-top:0; margin-bottom:50px; }
@media (max-width: 767px) {
	.p-fp-section__button { margin-top:0; margin-bottom:40px; }
}

/* フロント（一覧）投稿のカテゴリを画像の左上に表示（背景は変更しない） */
.p-fp-posts .p-archive--post-item__image .p-archive--post-item__category {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	height: 30px;
	line-height: normal;
	padding: 4px 12px;
	z-index: 2;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
}

/* アーカイブ（/blog/ など）でもカテゴリを左上に表示（背景色は元のまま） */
.p-archive--post-item__image .p-archive--post-item__category {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	height: 30px;
	line-height: normal;
	padding: 4px 12px;
	z-index: 2;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
}

@media (max-width: 767px) {
	.p-fp-posts .p-archive--post-item__image .p-archive--post-item__category {
		padding: 6px 10px;
	}
}

/* 画像右下の価格バッジ */
.p-archive--post-item__image {
	position: relative;
}
.p-archive--post-item__image-price-badge {
	position: absolute;
	right: 8px;
	bottom: 8px;
	background: rgba(231,76,60,0.9);
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	font-weight: 700;
	z-index: 3;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
	.p-archive--post-item__image-price-badge {
		right: 6px;
		bottom: 6px;
		padding: 5px 8px;
		font-size: 0.95em;
	}
}
