/* 物件スライダー（[post_slider] / [post_slider_pickup]）のスタイル */

.custom-swiper-container {
	width: 100%;
	padding: 40px 0;
}

/* スライドの外枠を統一 */
.swiper-slide {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 0;
	display: flex;
	flex-direction: column;
	height: auto;
	border: 1px solid #ddd;
	text-decoration: none;
	color: inherit;
}

/* 画像の調整 */
.slide-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* テキスト部分 */
.slide-text {
	padding: 15px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* カテゴリー（リンクなし） */
.slide-category {
	font-size: 14px;
	font-weight: bold;
	color: #d93025;
	margin-bottom: 4px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

/* タイトル */
.slide-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	color: #000;
	margin-bottom: 8px;
}

/* ステータスバッジのラッパー */
.slide-status-wrapper {
	display: flex;
	gap: 5px;
	/* バッジ間の余白 */
	margin-bottom: 8px;
	flex-wrap: wrap;
}

/* バッジデザイン */
.slide-status {
	display: inline-block;
	padding: 3px 8px;
	font-size: 15px;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
	white-space: nowrap;
}

/* 売物件（青色） */
.badge-blue {
	background-color: #2e3192;
	color: #fff;
}

/* 売土地（緑色） */
.badge-green {
	background-color: #28a745;
	color: #fff;
}

/* 賃貸（オレンジ色） */
.badge-orange {
	background-color: #ff9900;
	color: #fff;
}

/* 成約済（赤色） */
.badge-red {
	background-color: #dc3545;
	color: #fff;
}


/* 説明文 */
.slide-description {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
}

/* 価格のデザイン（修正） */
.slide-price {
	font-size: 16px;
	/* 標準の価格フォントサイズ */
	font-weight: normal;
	color: #666; /* グレー */
	margin-bottom: 0px;
	display: flex;
	align-items: baseline;
}

/* 「税前」のデザイン */
.price-label {
	font-size: 14px;
	/* 「税前」のフォントを小さめに */
	font-weight: normal;
	color: #666;
	/* グレー */
	margin-right: 5px;
}

/* 価格未設定時のデザイン（フォントサイズを小さく） */
.price-contact {
	font-size: 16px;
	/* 通常の価格表示より小さく */
	font-weight: bold;
	color: #2F3192;
	display: block;
	margin-top: 5px;
}

/* 「週6」のデザイン */
.price-amount {
	font-size: 32px;
	/* 価格の数値を大きく */
	font-weight: bold;
	color: #2F3192;
	margin-right: 3px;
}

/* 「万円から」のデザイン */
.price-unit {
	font-size: 14px;
	/* 単位のフォントを小さめに */
	color: #666;
	/* グレー */
	font-weight: normal;
}


/* ナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid #000;
	position: absolute;
	z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

.swiper-button-next {
	right: -15px;
}

.swiper-button-prev {
	left: -15px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(255, 255, 255, 1);
}

.swiper-pagination {
	margin-top: 10px;
}
