@charset "utf-8";

.conditions-search__content {
	width: 435px;
	padding: 20px 30px 30px;
	backdrop-filter: blur(4px) brightness(1.4);
	background: rgba(255, 255, 255, .5);
	position: relative;
    z-index: 2;
}
.search-ttl {
	font-size: 24px;
	font-weight: 500;
	color: #1A1819;
	text-align: center;
	margin-bottom: 14px;
}
.search-top,
.search-bottom {
	display: flex;
	align-items: center;
}
.search-top {
	gap: 15px;
	margin-bottom: 15px;
}
#check_items {
	font-size: 18px;
	margin-bottom: 30px;
	color: #1A1819;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.search-bottom {
	gap: 5px;
	margin-bottom: 15px;
}
.price-between {
	font-size: 14px;
	font-weight: 700;
	color: #1A1819;
}
.search-btflex {
	display: flex;
	gap: 15px;
    margin-top: 15px;
}
.search-btflex .search-bt {
    display: block;
	width: 210px;
	height: 50px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	background: #C53733;
	position: relative;
}

.search-bt::after {
	content: "";
	width: 7px;
	height: 12px;
	background: url(/images/top/bt-arrow.png) no-repeat center / cover;
	position: absolute;
	top: 19px;
	right: 20px;
}

.search-btflex .mv_search_last {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 50px;
	background: #747474;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #fff;
}

/* フォームタイプ：チェックボックス */
.form__type--checkbox {
	position: relative;
}
	.form__type--checkbox dl {
		width: 180px;
		height: 60px;
		border: 1px solid #1A1819;
		background: #FFFFFF;
		position: relative;
	}
	.form__type--checkbox dl:hover {
		cursor: pointer;
	}
	.conditions-search__item--station dl {
		padding-left: 68px;
		position: relative;
	}
	.conditions-search__item--station dl::before  {
		content: "";
		width: 30px;
		height: 30px;
		background: url(/images/top/station_icn.png) no-repeat center / cover;
		position: absolute;
		top: 14px;
    	left: 33px;
	}
	.conditions-search__item--area dl {
		padding-left: 75px;
		position: relative;
	}
	.conditions-search__item--area dl::before  {
		content: "";
		width: 30px;
		height: 30px;
		background: url(/images/top/search_area_icn.png) no-repeat center / cover;
		position: absolute;
		top: 14px;
    	left: 39px;
	}
	.conditions-search__item--madori dl {
		width: 375px;
		height: 50px;
		padding-right: 32px;
		padding-left: 14px;
		position: relative;
	}
	.conditions-search__item--madori dl::before  {
		content: "";
		width: 12px;
		height: 7px;
		background: url(/images/top/search_arrow.png) no-repeat center / cover;
		position: absolute;
		top: 20px;
    	right: 17px;
	}
	.conditions-search__item--price-floor select,
	.conditions-search__item--price-ceil select {
		width: 175px;
		height: 50px;
		background: #FFFFFF;
		padding-left: 14px;
    	padding-right: 31px;
		border: 1px solid #1A1819;
		border-radius: 0;
		font-size: 14px;
		letter-spacing: 0.05em;
		font-weight: 400;
		color: #1A1819;
		overflow: hidden !important;
    	text-overflow: ellipsis;
		white-space: nowrap;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
	}
	.conditions-search__item--price-floor,
	.conditions-search__item--price-ceil {
		position: relative;
	}
	.conditions-search__item--price-floor select:hover,
	.conditions-search__item--price-ceil select:hover {
		cursor: pointer;
	}
	.conditions-search__item--price-floor::before,
	.conditions-search__item--price-ceil::before {
		content: "";
		width: 12px;
		height: 7px;
		background: url(/images/top/search_arrow.png) no-repeat center / cover;
		position: absolute;
		top: 22px;
    	right: 17px;
		pointer-events: none;
	}
		.form__type--checkbox dt {
			display: block;
			width: 100%;
			height: 100%;
			padding: 15px 0;
			text-align: left;
			font-size: 18px;
			font-weight: 400;
			color: #1A1819;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
		}
		.form__type--checkbox dd {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			width: max-content;
			background-color: #fff;
			border: 1px solid #ddd;
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
			max-height: 80vw;
			overflow-y: auto;
			box-sizing: border-box;
			padding: 10px;
			z-index: 1;
		}
		.form__type--checkbox dd.is-open {
			display: block;
		}
			.form__type--checkbox dd.is-open li label {
				display: block;
				width: 100%;
			}
		.conditions-search__item--madori dt {
			font-size: 14px;
			letter-spacing: 0.05em;
		}