@charset "utf-8";

/*-------------------------------
	検索パネル
-------------------------------*/

.Panel__inner{
	max-width: calc(94.4rem + (var(--padding-leftright) * 2));
	padding-left: var(--padding-leftright);
	padding-right: var(--padding-leftright);
	margin-left: auto;
	margin-right: auto;
}
.Panel-block:not(:last-child){
	margin-bottom: 3.8rem;
}
.Panel-block__title{
	font-size: 1.8rem;
	margin-bottom: 1.8rem;
	line-height: 1;
	font-weight: 700;
}
.Panel-block__body{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.Panel-form__text{
	width: calc(100% - 10.3rem);
	padding-right: 1rem;
}
.Panel-form__text input[type="text"]{
	border: 2px solid var(--subcolor);
	width: 100%;
	height: 4.6rem;
	border-radius: .7rem;
	padding: .5rem 1rem;
}
.Panel-form__submit{
	width: 10.3rem;
	height: 4.6rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Panel-form__submit input[type="submit"]{
	transition: var(--transition);
	background: var(--subcolor);
	width: 100%;
	height: 100%;
	border-radius: .9rem;
	text-align: center;
}
.Panel-form__submit:hover input[type="submit"]{
	background: var(--maincolor);
	color: var(--subcolor);
}

.Panel-category .Panel-block__body{
	gap: 2rem 1rem;
}
.Panel-category__item{
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}
.Panel-category__item:not(:last-child){
	padding-right: 1rem;
}
.Panel-category__item:not(:last-child)::after{
	background: var(--blackcolor);
	content: "";
	line-height: 1;
	width: 1px;
	height: 100%;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}
.Panel-category__item a{
	line-height: 1;
	display: block;
}
.Panel-category__item.-current a{
	opacity: var(--opacity);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Panel__inner{
		max-width: 100%;
	}
	.Panel-block:not(:last-child){
		margin-bottom: 2.6rem;
	}
	.Panel-block__title{
		font-size: 1.4rem;
		margin-bottom: 1.1rem;
	}
	.Panel-block__body{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.Panel-form__text{
		width: calc(100% - 4.5rem);
		padding-right: .5rem;
	}
	.Panel-form__text input[type="text"]{
		height: 4.2rem;
		border-radius: .7rem;
	}
	.Panel-form__submit{
		width: 4.5rem;
		height: 4.2rem;
	}
	.Panel-form__submit input[type="submit"]{
		border-radius: .7rem;
	}
	.Panel-form__submit:hover input[type="submit"]{
		background: var(--maincolor);
		color: var(--subcolor);
	}

	.Panel-category .Panel-block__body{
		width: calc(100% + var(--padding-leftright));
		padding-bottom: 1.5rem;
		gap: 2rem 1rem;
		white-space: nowrap;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
	}
	.Panel-category__item{
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
	}
	.Panel-category__item:not(:last-child){
		padding-right: 1rem;
	}

}



/*-------------------------------
	住宅コラム
-------------------------------*/

.Column{
	padding-bottom: 11rem;
}
.Column-block-wrap{
	display: flex;
	gap: 5.2rem 3.1rem;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
.C-Column-block{
	border: 2px solid var(--subcolor);
	width: calc((100% - (3.1rem * 2)) / 3);
	margin-left: 0;
	margin-right: 0;
}
.C-Column-block__image img{
	aspect-ratio: 1 / .625;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.C-Column-block{
		max-width: unset;
		width: calc((100% - (3.1rem * 1)) / 2);
	}

}
@media screen and (max-width:768px){

	.Column{
		padding-bottom: var(--padding-bottom);
		padding-top: 2.5rem;
	}
	.Column-block-wrap{
		gap: 2.8rem 1.4rem;
	}
	.C-Column-block{
		width: calc((100% - (1.4rem * 1)) / 2);
	}

}