@charset "UTF-8";

footer {
    z-index: 0;
}

#Contents_Area {
	padding: 80px 0 0;
	/*background: url(../img/bg.png) no-repeat center top, #f2f0eb;
	background-size: 100% 200%;
	animation: bg 240s linear 1 forwards;*/
	background:linear-gradient(45deg, #E6E1D9,#ffffff,#E6E1D9);
	animation: bggradient_b 6s ease infinite;
}

@keyframes bggradient_b{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*@keyframes bg {
	0% {
		background-position: center top;
	}

	100% {
		background-position: center bottom;
	}
}*/


.main {
    width: 100%;
    padding: 50px 0;
    background: #EDEBE3;
    background: linear-gradient(56deg, rgba(237, 235, 227, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 235, 227, 1) 100%);
}

.main figure {
    width: 894px;
    max-width: 90%;
    margin: 0 auto;
}


.ttl_copy {
width: 800px;
max-width: 90%;
margin: 50px auto 50px;
animation: scale 2s ease-in 1 forwards;
}
.ttl_copy h2 {
margin-bottom: 30px;
}
.ttl_copy p {
width: 200px;
max-width: 80%;
margin: 0 auto;
}

.plan_Area {
    width: 100%;
    background: #fff;
    padding: 50px 0;
}

.plan_Area > h3 {
    text-align: center;
    font-size: 30px;
    line-height: 1.8;
}

.ttl_type {
    height: 50px;
    margin: 50px auto 50px;
    text-align: center;
}
.ttl_type img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.ttl_copy {
    text-align: center;
}

.interior {
    padding: 50px 0;
}
.interior > article {
    width: 100%;
    margin-bottom: 100px;
}

.lst {
    max-width: 700px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:2%;
}
.lst li {
    padding: 7px 15px;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    margin-bottom: 2%;
}

#Contents_Area #plan_Detail.plan_inner.type_a {
    padding: 0;
}

.img {
	position: relative;
	transform-origin: top center;
	transform: scale(0.8);
	animation: scale 2s ease-in 1 forwards;
}

@keyframes scale {
	0% {
		transform: scale(1.2);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.img .pos {
    width: 40%;
	position: absolute;
	top: 15%;
	left: 5%;
	opacity: 0;
	animation: fadeIn 2s 1.8s ease-in 1 forwards;
}

.img .pos.text {
    width: 100%;
	position: absolute;
	top: -17%;
	left: -4%;
	opacity: 0;
	animation: fadeIn 2s 1.8s ease-in 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.txt {
	padding-bottom: 80px;
	text-align: center;
	font-size: 15px;
	line-height: 4;
	/*animation: scale_margin 4s ease-in 1 forwards;*/
}

.txt p {
	margin: 2em auto 0;
}

@keyframes scale_margin {
	0% {
		margin-top: 0;
		opacity: 0;
	}

	50% {
		margin-top: -25%;
		opacity: 0;
	}

	100% {
		margin-top: -25%;
		opacity: 1;
	}
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
SP
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
@media only screen and (max-width: 768px) {
	#Contents_Area {
		padding: 70px 0 0px;
		background-size: 200% 200%;
	}
    
    .main {
        padding: 30px 0;
    }
    
    .ttl_type {
        height: 25px;
        margin: 0 auto 20px;
    }
    .ttl_type img {
        max-width: 90%;
    }
    
    .plan_Area > h3 {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .interior > article {
        margin-bottom: 60px;
    }
    
    .lst {
        max-width: 90%;
        margin: 0 auto 30px;
    }
    .lst li {
        font-size: 13px;
    }

	.img {
		transform: scale(1);
	}

	@keyframes scale {
		0% {
			transform: scale(1);
			opacity: 0;
		}

		100% {
			transform: scale(0.8);
			opacity: 1;
		}
	}
	
	.ttl_copy {
	margin: 0px auto 30px;
	}

	.txt {
		padding-bottom: 50px;
		font-size: 14px;
		line-height: 3;
	}

	.txt p {
		margin: 2em auto 0;
	}

	@keyframes scale_margin {
		0% {
			margin-top: 0;
		}

		100% {
			margin-top: -10%;
		}
	}
}