@charset "utf-8";


#contents {
	width: 100%;
	margin: 0;
	background: var(--white);
	padding-bottom: 85px;
}

.org-page * {
	font-size: 14px;
    font-weight: 400;
    color: var(--txt-color);
    font-family: var(--default-font);
}
.org-page {
	background: #FFF;
	padding-bottom: 70px;
}
.breadcrumbs {
	width: fit-content;
	padding: 0;
}

.page__inner {
	width: 1000px;
	margin: 0 auto;
}
	.contents__title-wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
	}
		.contents__title {
			display: flex;
			align-items: center;
			gap: 12px;
			font-size: 24px;
			font-weight: 700;
			margin-bottom: 12px;
		}
			.contents__title::before {
				content: '';
				display: block;
				background: var(--main-color);
				width: 10px;
				height: 10px;
			}
	.path__contents {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
		.page__title {
			display: flex;
			align-items: center;
			gap: 7px;
			font-size: 18px;
			font-weight: 700;
			letter-spacing: 0.05em;
		}
			.page__title::before {
				content: '';
				background: url(/images/librarysearch/icon_path-mansion.webp) no-repeat center / cover;
				display: block;
				width: 26px;
				height: 25px;
			}
		.path__wrap {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			gap: 10px;
			padding: 16px 0 14px;
		}
			.path__member a {
				display: flex;
				align-items: center;
				gap: 4px;
				color: #1879A7;
				text-decoration: underline;
			}
			.path__member svg {
				width: 7px;
				height: 11px;
				fill: none;
				stroke: #008cce;
			}

	.page__main {
		position: relative;
		z-index: 1;
	}

	.page__head-title {
		font-size: 30px;
		font-weight: 700;
		letter-spacing: 0.05em;
		color: var(--main-color);
		text-align: center;
		background: #D9EEF8;
		padding: 53px;
		margin-bottom: 40px;
	}
	.prefectures__search {
		margin-bottom: 45px;
	}
		.prefectures__area {
			padding: 12px 20px;
			background: #F7F7F7;
		}
			.prefecture__checkbox {
				display: flex;
				align-items: center;
			}
				.prefecture__name {
					font-size: 16px;
					font-weight: 700;
					margin-right: 6px;
				}
				.prefectures__wrap input[type="checkbox"] {
					width: 16px;
					height: 16px;
					border: 1px solid #000000;
					margin-right: 6px;
					background-image: none;
					appearance: auto;
				}
				.prefectures__wrap .prefectures__area-item input[type="checkbox"] {
					margin: 0;
				} 
				.prefecture__checkbox a {
					font-size: 16px;
					font-weight: 500;
					color: #1879A7;
					text-decoration: underline;
					margin: 0 6px;
				}
				.prefecture__checkbox .count {
					font-size: 16px;
					font-weight: 500;
				}
				.prefectures__area-list {
					display: grid;
					grid-template-columns: 1fr 1fr 1fr 1fr;
					gap: 11px 40px;
					padding: 15px 20px 20px;
				}
				.prefectures__submit {
					text-align: center;
					padding: 13px 0;
					background: #F7F7F7;
				}
					.prefectures__button {
						display: flex;
						justify-content: center;
						align-items: flex-end;
						width: 350px;
						height: 63px;
						margin: 0 auto;
						background-image: linear-gradient(180deg, rgba(1, 139, 206, 1), rgba(0, 103, 186, 1));
						border-bottom: 3px solid #004C88;
						border-radius: 8px;
						font-size: 18px;
						font-weight: 700;
						color: #FFF;
						padding-bottom: 14px;
						cursor: pointer;
					}
						.prefectures__button span {
							display: flex;
							align-items: center;
							gap: 5px;
							font-size: 30px;
							font-weight: 700;
							color: #FFF;
							margin-bottom: -6px;
							position: relative;
						}
						.prefectures__button span::before {
							content: '';
							background: url(/images/librarysearch/icon_search.webp) no-repeat center / cover;
							display: block;
							width: 24px;
							height: 24px;
						}

	.mansion__contents--new {
		margin-bottom: 45px;
	}
		.mansion__list {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 30px;
		}
			.mansion__card {
				display: flex;
				align-items: center;
				gap: 15px;
			}
				.mansion__image {
					min-width: 140px;
					width: 140px;
					height: 130px;
				}
					.mansion__image img {
						width: 100%;
						height: 100%;
						object-fit: cover;
					}
				.mansion__name {
					margin-bottom: 9px;
				}
					.mansion__name a {
						font-size: 16px;
						font-weight: 700;
						color: #1879A7;
						text-decoration: underline;
					}
				.mansion__detail {
					display: flex;
					align-items: center;
					gap: 18px;
					margin-bottom: 12px;
				}
					[class*="mansion__text"] {
						font-weight: 500;
						position: relative;
					}
					.mansion__text--price span {
						font-weight: 500;
						color: #E00001;
					}
					.mansion__text--price::after,
					.mansion__text--chikunen::after {
						content: '';
						display: block;
						background: #DBDBDB;
						width: 1px;
						height: 15px;
						position: absolute;
						top: 3px;
						right: -10px;
					}