@charset "utf-8";

.Breadclumb,
.EXCEED_key,
.footer{
	position: relative;
	z-index: 6000;
}



/*-------------------------------
	リンクボタン
-------------------------------*/

.Link{
	border-top-left-radius: 3rem;
	border-top-right-radius: 3rem;
	background: #ECF2F7;
	position: relative;
	z-index: 6000;
}
.Link-header{
	width: 100%;
	margin-bottom: 3.5rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Link-header__title{
	font-family: var(--mincho);
	width: 37.5rem;
	font-size: 2.8rem;
	line-height: calc(4 / 2.8);
	font-weight: 700;
}
.Link-header__text{
	max-width: calc(100% - 37.5rem);
	padding-left: 5rem;
}
.Link__subtitle{
	width: 100%;
	margin-bottom: 4rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
}
.Link__subtitle-en{
	color: var(--maincolor);
	font-size: 4.4rem;
	line-height: 1;
	font-weight: 700;
	display: block;
}
.Link__subtitle-jp{
	margin-top: 1.5rem;
	font-weight: 500;
	line-height: 1;
	display: block;
}

.Link__item-wrap{
	width: 100%;
	gap: 6rem 2.5rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.Link__item{
	width: calc((100% - (2.5rem * 4)) / 5);
	height: 4.5rem;
}
.Link__item a{
	border: 1px solid var(--maincolor);
	width: 100%;
	height: 100%;
	font-size: 1.8rem;
	padding-top: .2rem;
	border-radius: 2.3rem;
	font-weight: 700;
	letter-spacing: .06em;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1 !important;
}
.Link__item a:hover{
	background: var(--maincolor);
	color: #fff;
}

@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){

	.Link__item{
		width: calc((100% - (2.5rem * 3)) / 4);
	}
	
}
@media screen and (max-width:960px) and (min-width: 769px){

	.Link-header__title{
		width: 28rem;
	}
	.Link-header__text{
		max-width: calc(100% - 28rem);
	}
	.Link__item{
		width: calc((100% - (2.5rem * 2)) / 3);
	}

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

	.Link-header{
		margin-bottom: 5.8rem;
		flex-direction: column;
	}
	.Link-header__title{
		width: 100%;
		font-size: 3.6rem;
		margin-bottom: 9rem;
		line-height: calc(8 / 3.6);
	}
	.Link-header__text{
		width: 100%;
		max-width: 100%;
		padding-left: 0;
		line-height: calc(6 / 2.8);
	}
	.Link__subtitle{
		margin-bottom: 3rem;
	}
	.Link__subtitle-en{
		font-size: 4.8rem;
	}

	.Link__item-wrap{
		gap: 5rem 5.5rem;
	}
	.Link__item{
		width: calc((100% - (5.5rem * 1)) / 2);
		height: 9rem;
	}
	.Link__item a{
		font-size: 2.8rem;
		padding-top: .4rem;
		border-radius: 4.5rem;
		letter-spacing: .01em;
	}

}



/*-------------------------------
	メッセージ
-------------------------------*/

.Message{
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	z-index: 4000;
}
.Message-block-outer{
	position: relative;
}
.Message-bg{
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
.Message-bg::before,
.Message-bg::after{
	content: "";
	display: block;
	height: 100vh;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.-Message01 .Message-bg::before{
	width: calc((100% - var(--maxwidth-number)) / 2);
	left: 0;
	background-image: image-set(url(../images/design/bg_message-before01.jpg) 1x, url(../images/design/bg_message-before01@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../images/design/bg_message-before01.jpg) 1x, url(../images/design/bg_message-before01@2x.jpg) 2x);
}
.-Message02 .Message-bg::before{
	width: calc((100% - var(--maxwidth-number)) / 2);
	left: 0;
	background-image: image-set(url(../images/design/bg_message-before02.jpg) 1x, url(../images/design/bg_message-before02@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../images/design/bg_message-before02.jpg) 1x, url(../images/design/bg_message-before02@2x.jpg) 2x);
}
.-Message01 .Message-bg::after{
	width: calc(((100% - var(--maxwidth-number)) / 2) + (var(--maxwidth-number) - 72rem));
	right: 0;
	background-image: image-set(url(../images/design/bg_message-after01.jpg) 1x, url(../images/design/bg_message-after01@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../images/design/bg_message-after01.jpg) 1x, url(../images/design/bg_message-after01@2x.jpg) 2x);
}
.-Message02 .Message-bg::after{
	width: calc(((100% - var(--maxwidth-number)) / 2) + (var(--maxwidth-number) - 72rem));
	right: 0;
	background-image: image-set(url(../images/design/bg_message-after02.jpg) 1x, url(../images/design/bg_message-after02@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../images/design/bg_message-after02.jpg) 1x, url(../images/design/bg_message-after02@2x.jpg) 2x);
}
.Message-block-wrap{
	margin-top: -100vh; /*stiky分*/
	width: 100%;
	max-width: 72rem;
	padding-left: 9.5rem;
	padding-right: 9.5rem;
	background: #fff;
}/*
.Message::before,
.Message::after{
	content: "";
	display: block;
	height: 100vh;
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: -1;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.Message::before{
	width: calc((100% - var(--maxwidth-number)) / 2);
	left: 0;
	background-image: image-set(url(../images/design/bg_message-before.jpg) 1x, url(../images/design/bg_message-before@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../images/design/bg_message-before.jpg) 1x, url(../images/design/bg_message-before@2x.jpg) 2x);
}
.Message::after{
	width: calc(((100% - var(--maxwidth-number)) / 2) + (var(--maxwidth-number) - 72rem));
	right: 0;
	background-image: image-set(url(../images/design/bg_message-after.jpg) 1x, url(../images/design/bg_message-after@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../images/design/bg_message-after.jpg) 1x, url(../images/design/bg_message-after@2x.jpg) 2x);
}*/
.Message-block{
	/*height: 250vh;*/
	height: 250vh;
}

.Message-block__inner{
	height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	position: sticky;
	top: calc(11rem / 2); /* headerの高さの半分 */
}
.Message-block__title{
	font-family: var(--mincho);
	font-size: 2.8rem;
	margin-bottom: 4.5rem;
	font-weight: 700;
	line-height: calc(4.8 / 2.8);
}

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

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

	/*.Message::before{
		width: var(--padding-leftright);
	}
	.Message::after{
		width: calc((100% - var(--padding-leftright)) - 72rem);
	}*/
	.-Message01 .Message-bg::before,
	.-Message02 .Message-bg::before{
		width: var(--padding-leftright);
	}
	.-Message01 .Message-bg::after,
	.-Message02 .Message-bg::after{
		width: calc((100% - var(--padding-leftright)) - 72rem);
	}

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

	.Message-block-wrap{
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		max-width: 65rem;
	}
	/*.Message::after{
		width: calc((100% - var(--padding-leftright)) - 65rem);
	}*/
	.-Message01 .Message-bg::after,
	.-Message02 .Message-bg::after{
		width: calc((100% - var(--padding-leftright)) - 65rem);
	}

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

	.Message{
		/*padding-top: var(--padding-topbottom);*/
		padding-bottom: var(--padding-topbottom);
	}
	
	.Message-bg,
	.Message-bg::before,
	.Message-bg::after{
		display: none;
	}
	.Message-block-wrap{
		margin-top: 0; /*stiky分*/
	}
	.Message-block-wrap{
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.Message::before,
	.Message::after{
		display: none;
	}
	.Message-block{
		height: auto;
	}
	.Message-block:not(:last-child){
		margin-bottom: 28.5rem;
	}
	.Message-block__inner{
		height: auto;
		position: relative;
        top: 0;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.Message-block__title{
		padding-top: 6rem;
		width: 21rem;
		font-size: 3.6rem;
		padding-left: 2.5rem;
		margin-bottom: 0;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		font-feature-settings: normal;
		display: flex;
		align-items: flex-end;
		justify-content: flex-start;
	}
	.Message-block__image{
		width: calc(100% - 21rem);
	}
	.Message-block__image img{
		max-width: calc(100% + var(--padding-leftright)) !important;
		width: calc(100% + var(--padding-leftright));
	}
	.Message-block__body{
		padding-top: 11rem;
	}

}



/*-------------------------------
	記事
-------------------------------*/

.Design{
	overflow-x: hidden;
	position: relative;
	z-index: 6000;
	background: #fff;
}
.Design__title{
	font-family: var(--mincho);
	width: 100%;
	margin-bottom: 6.5rem;
	font-size: 2.8rem;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Design__title::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100vw;
	height: 1px;
	position: absolute;
	left: 50%;
	right: 50%;
	top: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.Design__title span{
	padding-left: 6.5rem;
	padding-right: 6.5rem;
	line-height: 1;
	display: inline-block;
	background: #fff;
}
.Design.-radius{
	margin-top: -3rem;
	border-top-left-radius: 3rem;
	border-top-right-radius: 3rem;
}
.Design:has( + .Design.-radius){
	padding-bottom: calc(var(--padding-topbottom) + 3rem);
}
.Design:not(.-radius):has( + .Design:not(.-radius)){
	padding-bottom: 0;
}
.Design-block:not(:last-child){
	border-bottom: 1px solid var(--blackcolor);
	padding-bottom: 7.5rem;
	margin-bottom: 7.5rem;
}
.Design-block-header{
	width: 100%;
	margin-bottom: 5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Design-block-header__title-wrap{
	/*width: calc(100% - 15rem);*/
	width: auto;
	padding-left: 3.5rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}
.Design-block-header__title{
	font-family: var(--mincho);
	height: 100%;
	padding-top: 1.2rem;
    padding-bottom: 1.1rem;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.Design-block-header__title::before{
	content: "";
	display: block;
	width: .9rem;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background: #B0BAC4;
}
.Design-block-header__title > span{
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	white-space: nowrap;
}
.Design-block-header__subtitle{
	font-family: var(--mincho);
	margin-left: 6.5rem;
	padding-left: 3.6rem;
	padding-top: .4rem;
	font-size: 1.8rem;
	font-weight: 700;
	border-left: 1px solid #B0BAC4;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Design-block-header__tag{
	color: #fff;
	height: 3rem;
	padding: .8rem 2rem .4rem;
	border-radius: 1rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	background: #67C2FC;
}

/*----- タイトル変形 */
.Design-block-header:has(.Design-block-header__data) .Design-block-header__title-wrap{
	padding-bottom: 0;
	flex-direction: column;
	align-items: flex-start;
}
.Design-block-header__data{
	width: 100%;
	padding-top: .7rem;
	padding-bottom: .3rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
}
.Design-block-header__data::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: .9rem;
	height: 100%;
	position: absolute;
	left: -3.5rem;
	bottom: 0;
}
.Design-block-header__data-item{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Design-block-header__data-item:not(:last-child){
	margin-right: 4rem;
}
.Design-block-header__data-item-title{
	font-family: var(--mincho);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Design-block-header__data-item-title::after{
	content: "：";
	display: block;
	line-height: 1.5;
}
.Design-block-header__data-item-body{
	font-family: var(--mincho);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.Design-block__body{
	width: 100%;
	padding: 7rem 5.5rem 6.5rem;
	gap: 4.5rem 4rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #F7F7F7;
}
.Design-block__item{
	width: calc((100% - 4rem) / 2);
}
.Design-block__item-image{
	width: 100%;
	margin-bottom: 1.2rem;
}
.Design-block__item-image img{
	width: 100%;
}
.Design-block__item-text{
	line-height: calc(2 / 1.6);
	font-weight: 500;
	text-align: center;
}

/*----- 賃貸マンション */
/*----- 賃貸アパート */
/*----- 事務所店舗 */
#Mansion .sec__inner .Design-block-wrap,
#Apartment .sec__inner .Design-block-wrap{
    border-bottom: 1px solid var(--blackcolor);
    padding-bottom: 7.5rem;
}
#Apartment,
#Office{
    padding-top: 7.5rem;	
}
/*----- 賃貸マンション */
/*----- 賃貸アパート */
/*----- 事務所店舗 */

/*----- 戸建て住宅 */
#House{
	background: #F7F7F7;
}
#House .Design-block__body{
	background: #fff;
}

/*----- 倉庫 */
#Storage{

}

/*----- 倉庫付事務所 */
#StorageOffice{
	background: #ECF2F7;
}
#StorageOffice .Design__title span{
	background: #ECF2F7;
}
#StorageOffice .Design__title::before{
	background: #749BC3;
}
#StorageOffice .Design-block-header__title::before{
	background: #749BC3;
}
#StorageOffice .Design-block-header__data::before{
	background: #fff;
}
#StorageOffice .Design-block-header__tag{
	background: #749BC3;
}

/*----- 店舗 */
#Shop{
	background: #E2EADF;
}
#Shop .Design__title span{
	background: #E2EADF;
}
#Shop .Design__title::before{
	background: #79966F;
}
#Shop .Design-block-header__title::before{
	background: #79966F;
}
#Shop .Design-block-header__data::before{
	background: #fff;
}
#Shop .Design-block-header__tag{
	background: #79966F;
}

/*----- 店舗工場 */
#StoreFactory{

}

/*----- 複合ビル */
#Complex{

}

/*----- 医療施設 */
#Hospital{
	background: #EBE6DF;
}
#Hospital .Design__title span{
	background: #EBE6DF;
}
#Hospital .Design__title::before{
	background: #746857;
}
#Hospital .Design-block-header__title::before{
	background: #746857;
}
#Hospital .Design-block-header__data::before{
	background: #fff;
}
#Hospital .Design-block-header__tag{
	background: #746857;
}

/*----- 福祉介護施設 */
#Nursing{
	background: #E6D9D9;
}
#Nursing .Design__title span{
	background: #E6D9D9;
}
#Nursing .Design__title::before{
	background: #8D577B;
}
#Nursing .Design-block-header__title::before{
	background: #8D577B;
}
#Nursing .Design-block-header__data::before{
	background: #fff;
}
#Nursing .Design-block-header__tag{
	background: #8D577B;
}

/*----- 社会教育施設 */
#SocialEducation{
	background: #F0EEDC;
}
#SocialEducation .Design__title span{
	background: #F0EEDC;
}
#SocialEducation .Design__title::before{
	background: #9A9465;
}
#SocialEducation .Design-block-header__title::before{
	background: #9A9465;
}
#SocialEducation .Design-block-header__data::before{
	background: #fff;
}
#SocialEducation .Design-block-header__tag{
	background: #9A9465;
}

/*----- その他施設 */
#Other{
	background: #DDD;
}
#Other .Design__title span{
	background: #DDD;
}
#Other .Design__title::before{
	background: #707070;
}
#Other .Design-block-header__title::before{
	background: #989898;
}
#Other .Design-block-header__data::before{
	background: #fff;
}
#Other .Design-block-header__tag{
	background: #989898;
}

/*----- リノベーション物件 */
#Renovation{
	background: #F0E7F5;
}
#Renovation .Design__title span{
	background: #F0E7F5;
}
#Renovation .Design__title::before{
	background: #9067A7;
}
#Renovation .Design-block-header__title::before{
	background: #9067A7;
}
#Renovation .Design-block-header__data::before{
	background: #fff;
}
#Renovation .Design-block-header__tag{
	background: #9067A7;
}

@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){

	.Design-block-header__data{
		flex-direction: column;
		align-items: flex-start;
	}

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

	.Design-block-header__title-wrap{
		padding-left: 2.5rem;
		flex-direction: column;
        align-items: flex-start;
	}
	.Design-block-header__subtitle{
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		padding-top: 0;
	}
	.Design-block-header__data::before{
		left: -2.5rem;
	}
	.Design-block__body{
		padding: 5rem;
	}

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

	.Design__title{
		margin-bottom: 7rem;
		font-size: 4rem;
	}
	.Design__title span{
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.Design-block:not(:last-child){
		padding-bottom: 6rem;
		margin-bottom: 6rem;
	}
	.Design-block-header{
		margin-bottom: 6.5rem;
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.Design-block-header__title-wrap{
		width: 100%;
		padding-left: 0;
		flex-direction: column;
		align-items: flex-start;
	}
	.Design-block-header__title{
		width: 100%;
		height: auto;
		padding-top: .6rem;
		padding-bottom: .5rem;
		font-size: 4rem;
		padding-left: 2.3rem;
		line-height: calc(5 / 4);
		position: relative;
	}
	.Design-block-header__subtitle{
		margin-left: 0;
		padding-left: 0;
		padding-top: 4.5rem;
		font-size: 3.2rem;
		line-height: calc(5 / 3.2);
		border-left: none;
	}
	.Design-block-header__tag{
		height: 4.5rem;
		padding: 1.3rem 2.4rem .4rem;
		margin-bottom: 3rem;
	}

	/*----- タイトル変形 */
	.Design-block-header:has(.Design-block-header__data) .Design-block-header__title-wrap{
		padding-bottom: 0;
		flex-direction: column;
		align-items: flex-start;
	}
	.Design-block-header__data{
		padding-top: 4.8rem;
		padding-bottom: 0;
		flex-direction: column;
		align-items: flex-start;
	}
	.Design-block-header__data::before{
		display: none;
	}
	.Design-block-header__data-item{
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.Design-block-header__data-item:not(:last-child){
		margin-right: 0;
	}
	.Design-block-header__data-item-title{
		font-size: 3.2rem;
		line-height: calc(5 / 3.2);
	}
	.Design-block-header__data-item-title::after{
		line-height: calc(5 / 3.2);
	}
	.Design-block-header__data-item-body{
		font-size: 3.2rem;
		line-height: calc(5 / 3.2);
	}

	.Design-block__body{
		padding: 6rem 6.5rem 5rem;
		gap: 5.5rem 0;
		border-radius: 1rem;
		flex-direction: column;
	}
	.Design-block__item{
		width: 100%;
	}
	.Design-block__item-image{
		margin-bottom: 1.5rem;
	}
	.Design-block__item-text{
		line-height: calc(4 / 2.8);
		letter-spacing: -.02em;
	}
	/*----- 賃貸マンション */
	/*----- 賃貸アパート */
	/*----- 事務所店舗 */
	#Mansion .sec__inner .Design-block-wrap,
	#Apartment .sec__inner .Design-block-wrap{
		border-bottom: 1px solid var(--blackcolor);
		padding-bottom: 6rem;
	}
	#Apartment,
	#Office{
		padding-top: 6rem;	
	}
	/*----- 賃貸マンション */
	/*----- 賃貸アパート */
	/*----- 事務所店舗 */

}


/*-------------------------------
	other link
-------------------------------*/
.Design-bottom{
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
    z-index: 6000;
}
.other_link_wrap{
	position: relative;
	z-index: 100;
}
.other_link {
	width:50%;
	height:48.5rem;
	position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.other_link::before {
	content:"";
	display: block;
	width:100%;
	height:100%;
	background:#1D2126;
	opacity:.5;
	position:absolute;
	left:0;
	top:0;
}

.other_link_custome_made {
	background:url(../images/quality/bg_otherlink_custome_made.jpg) no-repeat center / cover;
}

.other_link_works {
	background:url(../images/quality/bg_otherlink_works.jpg) no-repeat center / cover;
}

.link_inner {
	width:100%;
	position: relative;
}

.other_link h3 {
	font-size:3rem;
	line-height:1.5;
	font-weight:600;
	text-align: center;
	margin-bottom:2rem;
	color:#fff;
	font-family: var(--mincho);
}

.other_link_works h3 {
	margin-top:2rem;
	margin-bottom:6.5rem;
}

.other_link .C-Button {
	margin:0 auto;
}

.other_link .C-Button a:hover{
	color: var(--blackcolor);
	border-color: #ffd23c;
	background: #ffd23c;
}
.other_link .C-Button a:hover::after{
	background-image: url(../images/common/icon_arrow-black-naked.svg);
}

.other_link_custome_made h3 span {
	font-size:1.6rem;
	line-height:1.25;
	font-weight:500;
	display: block;
	letter-spacing: 0.05em;
	font-family: var(--jp);
}


/*-------------------------------
	responsive
-------------------------------*/

@media screen and (max-width:768px){
	
/*-------------------------------
	other link
-------------------------------*/

.other_link {
	width:100%;
	height:56.3rem;
}

.other_link h3 {
	font-size:4rem;
	margin-bottom:6.5rem;
}

.other_link_works h3 {
	margin-top:0rem;
	margin-bottom:6.5rem;
}

.other_link .C-Button {
	margin:0 auto;
}

.other_link_custome_made h3 span {
	font-size:2.4rem;
}

} /* end 768px */