@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　index
 */

/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/
.content {
	margin-top: 0;
}
	
	
/*--------------------------------------------------------------------------
   Mv
---------------------------------------------------------------------------*/
#Mv{
	position: relative;
	overflow: hidden;
	background: var(--navy);
	line-height: 0;
}
#Mv::before{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background:var(--navy);
	transition: 1.5s;
	transition-delay: .5s;
  pointer-events: none;
}
#Mv.start::before{
	opacity: 0;
	pointer-events: none;
}
.mv-slider{
	filter: blur(14px);
	transition: 2s;
	transition-delay: 1.5s;
}
.start .mv-slider{
	filter: blur(0);
}
.mv-slider .slider-item{
	overflow: hidden;
}
.mv-slider .slider-item img{
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.add-animation .slider-item img{
  animation: zoomUp 7s linear 0s normal both;
}
.mv-slider .slick-prev,
.mv-slider .slick-next{
	top: auto;
	left: auto;
	bottom: 40px;
	z-index: 500;
	width: 29px;
	height: 26px;
	background: url(../img/common/arw_w.svg) no-repeat center center;
	background-size: 19px auto;
	transform: none;
	transition: .3s;
	opacity: .5;
}
.mv-slider .slick-prev{
	right: 52px;
	transform: rotate(180deg);
}
.mv-slider .slick-next{
	right: 15px;
}
.mv-slider .slick-prev:hover,
.mv-slider .slick-next:hover{
	opacity: 1;
}
.mv-slider .slick-dots{
	right: 20px;
	bottom: 30px;
	z-index: 500;
	display: flex;
	width: 300px;
	border-radius: 100vmax;
	overflow: hidden;
}
.mv-slider .slick-dots li{
	width: calc(100% / 5);
	height: 4px;
	margin: 0;
	background: var(--light);
	opacity: .5;
}
.mv-slider .slick-dots li.slick-active,
.mv-slider .slick-dots li:hover{
	opacity: 1;
}
.mv-slider .slick-dots button{
	width: 100%;
	height: 4px;
}
#Mv h1{
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 200;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	overflow: hidden;
}
#Mv h1 span{
	display: inline-block;
	transform: translateY(100%);
	transition: 1.2s;
}
#Mv.start h1 span{
	transform: translateY(0);
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
/*.scroll-container{
	overflow: auto;
	scroll-snap-type: y mandatory;
	height: 100vh;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
	display: none;
}
.scroll-container > div,
.scroll-container > section{
	scroll-snap-align: start;
	min-height: 100vh;
}
*/

/* intro
-----------------------------------------------------------------*/
.intro{
	padding: 120px 0 50px;
	background: url(../img/top/bg_intro_pc.jpg) no-repeat center bottom;
	background-size: cover;
}
.intro .inner{
	display: flex;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	min-height: calc(100vh - 100px);
}
.intro .layout-box{
	width: 100%;
}
.intro .txt-area .txt{
	font-size: 1.8rem;
	line-height: 2;
}
.intro .pic{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.intro .pic-area{
	margin-left: 20px;	
}
.intro .pic-area img{
	max-width: none;
}
.intro .pic01{
	margin-right: 110px;
}
.intro .pic02{
	margin-top: 70px;
	margin-left: 110px;
}
.intro .pic .pic01-02,
.intro .pic .pic02-02{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	opacity: 0;
	transition: 2s ease-in;
	transition-delay: 3.5s;
	transform-origin: left center;
	overflow: hidden;
}
.intro .pic::before{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--light);
	opacity: .5;
	transition: 2s;
}
.intro .pic.start::before{
	transform: translateX(100%);
}
.intro .pic.start .pic01-02,
.intro .pic.start .pic02-02{
	opacity: 1;
	width: 100%;
}


/* strength
-----------------------------------------------------------------*/
.strength{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: 90px;
}
.strength .inner{
	width: 100%;
}
.strength-hd{
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}
.strength h2{
	flex-shrink: 0;
	margin-right: 20px;
}
.strength-hd .txt{
	max-width: 680px;
}
.strength .strengs-contents-list{
	display: flex;
}
.strength .strengs-contents-list li{
	width: calc(100% / 3);
}
.strength .strengs-contents-list a{
	position: relative;
	display: block;
	color: var(--light);
}
.strength .strengs-contents-list a::before{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--black);
	opacity: .5;
	transition: .3s;
}
.strength .strengs-contents-list a:hover::before{
	opacity: 0;
}
.strength .strengs-contents-list .txt-area{
	position: absolute;
	left: 40px;
	bottom: 50px;
	width: calc(100% - 80px);
}
.strength .strengs-contents-list h3{
	margin-bottom: 30px;
	line-height: 1;
}
.strength .strengs-contents-list .num{
	display: block;
	margin-bottom: 10px;
	padding-left: 5px;
	font-size: 2rem;
	text-shadow: 0 0 10px rgba(0,0,0,.2);
}
.strength .strengs-contents-list .ttl{
	font-size: 4.8rem;
}


/* works
-----------------------------------------------------------------*/
.works{
	display: flex;
	align-items: center;	
	padding: 90px 0 50px;
	background: url(../img/top/bg_works_pc.jpg) no-repeat center center;
	background-size: cover;
}
.works .inner{
	width: 100%;
}
.works-hd{
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.works h2{
	flex-shrink: 0;
	margin-right: 20px;
}
.works-hd .txt{
	max-width: 680px;
}
.works-list{
	display: flex;
	justify-content: space-between;	
}
.works-list li{
	max-width: 396px;
	width: calc((100% - 20px)/3);
}
.works-list .slider-item{
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border:2px solid transparent;
	overflow: hidden;
	transition: .3s;	
}
.works-list .slider-item:hover{
	border-color: var(--navy);
	box-shadow: 0 0 10px rgba(0,0,0,.15);
}
.works-list .slider-item a{
	position: relative;
	display: block;
	height: 100%;
	background: var(--light);
}
.works-list .slider-item a::after{
	position: absolute;
	right: 5%;
	bottom: 25px;
	display: block;
	width: 13px;
	height: 10px;
	content: "";
	background: url(../img/common/arw_navy.svg) no-repeat;
	background-size: 100% auto;
	transition: .3s;
}
.works-list .slider-item a:hover::after{
	right: 4%;
}
.works-list .slider-item .thumb{
	overflow: hidden;
}
.works-list .slider-item .thumb img{
	display: block;
	transition: .5s;
}
.works-list .slider-item a:hover .thumb img{
	transform: scale(1.03);
}
.works-list .slider-item .txt-area{
	padding: 25px 5% 30px;
}
.works-list .slider-item .tags{
	margin-bottom: 10px;
}
.works-list .slider-item h3{
	margin-bottom: 10px;
	font-size: 2rem;
}
.works-list .slider-item .mansion-name{
	width: fit-content;
	color: var(--navy);
}
.works-list .slider-item a:hover .mansion-name{
	border-bottom: 1px solid var(--navy);
}
.works .btn-base{
	margin-top: 80px;
}
.works .btn-base a{
	max-width: 316px;
	margin-inline: auto;
}


/* interview
-----------------------------------------------------------------*/
.interview{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: 90px;
}
.interview .inner{
	width: 100%;
}
.interview .interview-hd{
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;	
}
.interview .ttl-area{
	margin-right: 20px;
}
.interview .ttl-area .btn-base{
	margin-top: 60px;
}
.interview .txt-area{
	max-width: 680px;
}
.interview .txt-area .txt-lead{
	margin-bottom: 20px;
}
.interview .interview-slider{
	line-height: 0;
	background: var(--light);
}
.interview .interview-slider a{
	transition: .3s;
}
.interview .interview-slider a:hover{
	opacity: .7;
}


/* reproduce
-----------------------------------------------------------------*/
.reproduce{
	display: flex;
	align-items: center;	
	padding: 90px 0 50px;
}
.reproduce .layout-box{
	width: 100%;
	padding-left: calc((100% - 1280px)/2);
	align-items: flex-start;
}
.reproduce .ttl-area{
	max-width: 720px;
	margin-right: 20px;
}
.reproduce h2{
	margin-bottom: 70px;
}
.reproduce .txt-lead{
	margin-bottom: 25px;
}
.reproduce .btn-base{
	margin-top: 40px;
}
.reproduce .pic{
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	transition: .8s;
	transition-delay: .5s;
}
.reproduce .pic.start{
	clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
}
.reproduce .pic img{
	max-width: none;
	width: 37.6vw;
	border-radius: 10px 0 0 10px;	
}


@media screen and (max-width: 1280px) {
	.reproduce .layout-box{
		padding-left: 20px;
	}
}


/* flow
-----------------------------------------------------------------*/
.flow{
	display: flex;
	align-items: center;	
	padding: 140px 0;
	background: var(--lightblue);
}
.flow .inner{
	width: 100%;
}
.flow h2{
	margin-bottom: 100px;
}
.flow-steps{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flow-steps li{
	position: relative;
	max-width: 600px;
	width: calc(50% - 10px);
	padding: 50px;
	border-radius: 10px;
	background: var(--light);
}
.flow-steps li:nth-child(n+3){
	margin-top: 80px;
}
.flow-steps .step{
	position: absolute;
	left: 50px;
	top: 0;
	transform: translateY(-60%);
	color: var(--navy);
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}
.flow-steps .step span{
	font-size: 5.8rem;
}
.flow-steps h3{
	position: relative;
	margin-bottom: 20px;
	padding-right: 110px;
	font-size: 3.2rem;
	line-height: 1.4;
}
.flow-steps h3 .ico{
	position: absolute;
	right: 0;
	bottom: 5px;
}
.flow-steps .phone,
.flow-steps .contact{
	display: flex;
	align-items: flex-start;
}
.flow-steps .phone .ico,
.flow-steps .contact .ico{
	flex-shrink: 0;
	margin-right: 15px;
}
.flow-steps .contact{
	margin-top: 20px;
}
.flow-steps .phone .phone-link{
	color: var(--navy);
}
.flow-steps .note{
	font-size: 1.4rem;
}


/* information
-----------------------------------------------------------------*/
.information{
	padding: 140px 0;
}
.information .layout-box{
	align-items: flex-start;
}
.information h2{
	flex-shrink: 0;
}
.information .information-list{
	max-width: 860px;
	width: calc(100% - 250px);
}
.information .information-list > div{
	border-bottom: 1px solid var(--navy);
}
.information .information-list > div a{
	position: relative;
	display: block;
	padding: 20px 40px;
}
.information .information-list > div a.pdf{
	background: url(../img/common/ico_pdf.svg) no-repeat right 40px center;
	background-size: 16px auto;
}
.information .information-list > div a::before{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: -1;
	display: block;
	width: 0;
	height: 100%;
	content: "";
	background: var(--light);
	transition: .5s;	
}
.information .information-list > div a:hover::before{
	width: 100%;
}
.information .information-list dt{
	position: relative;
	color: var(--navy);
	font-weight: 600;	
}
.information .information-list dd{
	position: relative;
	padding-right: 20px;	
	font-size: 1.8rem;
}
.information .information-list > div a:hover dd span{
	border-bottom: 1px solid var(--navy);
	color: var(--navy);
}



































/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

/*--------------------------------------------------------------------------
   Mv
---------------------------------------------------------------------------*/
	.mv-slider .slick-prev:hover,
	.mv-slider .slick-next:hover{
		opacity: 1;
	}
	.mv-slider .slick-dots{
		width: calc(100% - 40px);
	}
	#Mv h1{
		padding: 5vw;
	}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
	.scroll-container{
		overflow: visible;
		scroll-snap-type: none;
		height: auto;
	}
	.scroll-container > div,
	.scroll-container > section{
		min-height: inherit;
	}


/* intro
-----------------------------------------------------------------*/
	.intro{
		padding: 100px 0 70vw;
		background: url(../img/top/bg_intro_sp.jpg) no-repeat center bottom;
		background-size: cover;
	}
	.intro .inner{
		display: block;
		max-width: 1400px;
		width: auto;
		min-height: inherit;
	}
	.intro .layout-box{
		display: block;
	}
	.intro .txt-area .txt{
		font-size: 1.5rem;
		line-height: 1.8;
	}
	.intro .txt-area .txt + .txt{
		margin-top: 15px;
	}
	.intro .pic-area{
		display: none;	
	}


/* strength
-----------------------------------------------------------------*/
	.strength{
		display: block;
		padding-top: 40px;
	}
	.strength .inner{
		width: 100%;
	}
	.strength-hd{
		display: block;
		justify-content: space-between;
		margin-bottom: 40px;
	}
	.strength h2{
		margin: 0 0 20px;
	}
	.strength-hd .txt{
		max-width: none;
	}
	.strength .strengs-contents-list{
		display: block;
	}
	.strength .strengs-contents-list li{
		width: 100%;
	}
	.strength .strengs-contents-list a::before{
		display: none;
	}
	.strength .strengs-contents-list .txt-area{
		left: 30px;
		bottom: 40px;
		width: calc(100% - 60px);
	}
	.strength .strengs-contents-list h3{
		margin-bottom: 20px;
	}
	.strength .strengs-contents-list .num{
		padding-left: 5px;
		font-size: 2rem;
	}
	.strength .strengs-contents-list .ttl{
		font-size: 3rem;
	}


/* works
-----------------------------------------------------------------*/
	.works{
		display: block;
		padding: 55px 0 70px;
		background: url(../img/top/bg_works_sp.jpg) no-repeat center center;
		background-size: cover;
	}
	.works-hd{
		display: block;
		margin-bottom: 40px;
	}
	.works h2{
		margin: 0 0 20px 0;
	}
	.works-hd .txt{
		max-width: none;
	}
	.works-slider-area{
		width: calc(100% + 40px);
		margin-left: -20px;
		padding-right: 40px;
		overflow: hidden;
	}
	.works-list{
		display: block;
	}
	.works-list .slick-list{
		overflow: visible;
	}
	.works-list li{
		max-width: none;
		width: auto;
		padding-left: 20px;
	}
	.works-list .slider-item{
		box-shadow: 0 0 10px rgba(0,0,0,.15);
	}
	.works-list .slider-item a{
		display: block;
		height: 100%;
	}
	.works-list .slider-item a::after{
		right: 15px;
		bottom: 15px;
	}
	.works-list .slider-item a:hover::after{
		right: 15px;
	}
	.works-list .slider-item:hover{
	border-color: transparent;
}
	.works-list .slider-item .txt-area{
		min-height: 170px;
		padding: 20px 20px 25px;
	}
	.works-list .slider-item h3{
		margin-bottom: 8px;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.works-list .slider-item .mansion-name{
		font-size: 1.4rem;
	}
	.works-list .slider-item a:hover .mansion-name span{
		border-bottom: none;
	}
	.works-list .slick-prev,
	.works-list .slick-next{
		z-index: 50;
    width: 25px;
    height: 44px;
    cursor: pointer;
	}
	.works-list .slick-prev{
		left: 5px;
		background: url(../img/common/arw_slider_prev.svg) no-repeat;
		background-size: 100% auto;
	}
	.works-list .slick-next{
		right: -15px;
		background: url(../img/common/arw_slider_next.svg) no-repeat;
		background-size: 100% auto;
	}
	.works .btn-base{
		margin-top: 40px;
	}
	.works .btn-base a{
		max-width: 250px;
	}


/* interview
-----------------------------------------------------------------*/
	.interview{
		display: block;
		padding-top: 70px;
	}
	.interview .interview-hd{
		display: block;
		margin-bottom: 40px;	
	}
	.interview .ttl-area{
		margin: 0 0 20px;
	}
	.interview .txt-area .btn-base{
		margin-top: 25px;
	}
	.interview .txt-area{
		max-width: none;
	}
	.interview .txt-area .txt-lead{
		margin-bottom: 20px;
	}
	.interview-slider-area{
		overflow: hidden;
	}
	.interview .interview-slider{
		width: 150%;
		line-height: 0;
		background: var(--light);
	}
	.interview .interview-slider a:hover{
		opacity: 1;
	}


/* reproduce
-----------------------------------------------------------------*/
	.reproduce{
		display: block;
		padding: 70px 0;
	}
	.reproduce01{
		padding-bottom: 0;
	}
	.reproduce .layout-box{
		display: block;
		padding: 0;
	}
	.reproduce .ttl-area{
		max-width: none;
		margin: 0 0 40px;
		padding: 0 20px;
	}
	.reproduce h2{
		margin-bottom: 25px;
	}
	.reproduce .txt-lead{
		margin-bottom: 20px;
	}
	.reproduce .btn-base{
		margin-top: 25px;
	}
	.reproduce .pic{
		margin-left: 20px;
		transition-delay: .4s;
	}
	.reproduce .pic img{
		width: 100%;
	}


/* flow
-----------------------------------------------------------------*/
	.flow{
		display: block;
		padding: 70px 0;
	}
	.flow h2{
		margin-bottom: 65px;
	}
	.flow-steps{
		display: block;
	}
	.flow-steps li{
		width: 100%;
		margin-inline: auto;
		padding: 30px 20px 35px;
		font-size: 1.5rem;
	}
	.flow-steps li:nth-child(n+2){
		margin-top: 48px;
	}
	.flow-steps .step{
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 2.1rem;
	}
	.flow-steps .step span{
		font-size: 4.2rem;
	}
	.flow-steps h3{
		margin-bottom: 20px;
		padding-right: 0;
		font-size: 2.2rem;
		text-align: center;
	}
	.flow-steps h3 .ico{
		display: none;
	}
	.flow-steps .phone .ico,
	.flow-steps .contact .ico{
		margin-right: 10px;
	}	
	.flow-steps .note{
		font-size: 1.2rem;
	}


/* information
-----------------------------------------------------------------*/
	.information{
		padding: 70px 0;
	}
	.information .layout-box{
		display: block;
	}
	.information h2{
		margin-bottom: 20px;
	}
	.information .information-list{
		width: 100%;
		font-size: 1.3rem;
	}
	.information .information-list > div a{
		position: relative;
		display: block;
		padding: 15px 0;
	}
	.information .information-list > div a.pdf{
		background: none;
	}
	.information .information-list > div a::before{
		display: none;
	}
	.information .information-list dt{
		position: relative;
		color: var(--navy);
		font-weight: 600;	
	}
	.information .information-list dd{
		padding-right: 0;
	}
	.information .information-list dd::after{
		display: inline-block;
		width: 15px;
		height: 18px;
		transform: translateY(3px);
		margin-left: 5px;
		content: "";
		background: url(../img/common/ico_pdf.svg) no-repeat;
		background-size: 13px auto;
	}
	.information .information-list > div a:hover dd span {
			border-bottom: none;
			color: var(--dark);
	}

}