/* CSS Document */

/* mainimage */
.maincontainer {
    width: 100vw;
	margin:0 calc(50% - 50vw);
    position:relative;
}

/* backimage */
.box {
    width:100vw;
    height: 100vh;
    z-index: -10;
    position:fixed;
}
.wave {
    opacity: .3;
    position: fixed;
    top: 0px;
    bottom:0;
    left: -550px;
    background: #fff;
    width: 1000px;
    height: 1000px;
    transform-origin: 50% 48%;
    border-radius: 43%;
    animation: drift 3000ms infinite linear;
}
.wave.-three {
    animation: drift 6000ms infinite linear;
}
.wave.-two {
    animation: drift 7000ms infinite linear;
    opacity: .2;
    background: #fdd1d1;
}
.wave2 {
    opacity: .3;
    position: fixed;
    top: 0px;
    bottom:0;
    right: -550px;
    background: #fff;
    width: 1000px;
    height: 1000px;
    transform-origin: 50% 48%;
    border-radius: 43%;
    animation: drift 3000ms infinite linear;
}
.wave2.-three {
    animation: drift 6000ms infinite linear;
}
.wave2.-two {
    animation: drift 7000ms infinite linear;
    opacity: .2;
    background: #c8def9;
}
.box:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(#e8a, 1), rgba(#def, 0) 80%, rgba(white, .5));
    z-index: 11;
    transform: translate3d(0, 0, 0);
}
@keyframes drift {
    from {
        transform: rotate(0deg);
    }
    from {
        transform: rotate(360deg);
    }
}

.maincontainer .sec_top{
    height:80vh;
    align-items:center;
    display:flex;
}
.maincontainer .sec_top .title {
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    height:fit-content;
}
.maincontainer .sec_top .title h1{
    font-size:18px;
    animation-name: fadeIn;
    animation-duration: 3s;
    animation-timing-function: ease;
}
.maincontainer .sec_top .title h3 {
    padding:1em;
    margin:1em 0;
    font-size: 2rem;
    letter-spacing: .2em;
    position: relative;
    line-height: 1.4;
    display: inline-block;
    animation-name: fadeIn;
    animation-duration: 5s;
    animation-timing-function: ease;
    background: linear-gradient(90deg, #c47387 0%,#c47387 50%, #37377e 50%, #37377e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.maincontainer .sec_top .title h3 span{
    font-size: 70px;
    vertical-align:middle;
    margin:0 20px;
}
.maincontainer .sec_top .title h3 span rt{
    font-size: 1rem;
}

.maincontainer .sec_top .title h3:before,
.maincontainer .sec_top .title h3:after{
  content:'';
width: 40px;
height: 40px;
position: absolute;
display: inline-block;
}
.maincontainer .sec_top .title h3:before{
  border-left: solid 2px #de889d;
  border-top: solid 2px #de889d;
  top:0;
  left: 0;
}
.maincontainer .sec_top .title h3:after{
  border-right: solid 2px #5353bf;
  border-bottom: solid 2px #5353bf;
  bottom:0;
  right: 0;
}
.maincontainer .sec_top .title dt {
    width: 300px;
    margin:50px auto 0;
}
.maincontainer .sec_top .title h4 {
}
.maincontainer .sec_top .title h4 span{
    font-size:1rem;
    border-radius:30px;
    animation-name: fadeIn;
    animation-duration: 7s;
    animation-timing-function: ease;
    color:#fff;
    width:100%;
    display:block;
    padding:0.5em 0;
     background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
}
/* ----------768pxâ€“---------- */
@media screen and (max-width: 768px) {
    .maincontainer .sec_top .title h1 span{
        display:block;
    }
    .maincontainer .sec_top .title h3 {
        font-size: 1.5rem;
        letter-spacing: 0em;
        position: relative;
        line-height: 1.2;
    }
    .maincontainer .sec_top .title h3 span{
        font-size: 250%;
        margin:0 20px;
    }
    .maincontainer .sec_top .title h3 span rt{
        font-size: 25%;
    }
    .maincontainer .sec_top .title h4 span{
        font-size:0.8rem;
        padding:0.5em 1em;
    }
}
@media screen and (max-width: 499px) {
    .maincontainer .sec_top .title h3 {
        padding:1em 0.5em;
    }
}



.maincontainer_framebox {
    max-width: 1200px;
    width:90%;
    margin:0 auto;
    position:relative;
}

/* ----------sec / .detail---------- */
.sec{
    margin:0 0 150px 0;
}
.sec .detail{
}
.sec .detail h2{
    font-size:1.5rem;
    margin-bottom:1em;
    align-items: center;
    display: flex;
}
.sec .detail h2 span{
    background: linear-gradient(230deg, #c47387 0%, #37377e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sec .detail h2:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    margin-left: 15px; 
}
.sec .detail h3{
    font-size:1.2rem;
    margin-bottom:1em;
}
/* ----------768pxâ€“---------- */
@media screen and (max-width: 768px) {
    .sec .detail h2{
        font-size:1.3rem;
    }
    .sec .detail h3{
        font-size:1.1rem;
        margin-bottom:1em;
    }
}

/* ----------sec / chart_boxâ€“---------- */
.chart_box{
    width:90%;
    margin:50px auto;
    max-width:800px;
}
.chart_box ul{
}
.chart_box ul li{
    height:100%;
}
.chart_box ul li img{
    width:100%;
}

/* ----------sec / chart_box sec 1â€“---------- */
.sec:nth-child(1)  .chart_box ul{
    display:flex;
    justify-content:space-between;
    aspect-ratio:1 / 0.3;
}
.sec:nth-child(1) .chart_box ul li{
    width:25%;
}
.sec:nth-child(1) .chart_box ul li:nth-child(2),
.sec:nth-child(1) .chart_box ul li:nth-child(4){
    height:100%;
    width:3%;
    align-items:center;
    display:flex;
}
.sec:nth-child(1) .chart_box ul li:nth-child(5){
    width:35%;
    height:100%;
}
.sec:nth-child(1) .chart_box ul li:nth-child(5) dl{
    position:relative;
    height:100%;
}
.sec:nth-child(1) .chart_box ul li:nth-child(5) dl img{
    position:absolute;
    top:0;
}

/* ----------sec / chart_box sec 2â€“---------- */
.sec:nth-child(2) .chart_box{
    display:flex;
    justify-content:space-between;
}
.sec:nth-child(2) .chart_box ul{
    width:45%;
    aspect-ratio:1 / 0.9
}
.sec:nth-child(2) .chart_box ul dt{
    text-align:center;
}
.sec:nth-child(2) .chart_box ul dt span{
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
}
.sec:nth-child(2) .chart_box ul li dl{
    position:relative;
    height:100%;
}
.sec:nth-child(2) .chart_box ul li dl img{
    position:absolute;
    top:0;
    left:0;
}
/* ----------599pxâ€“---------- */
@media screen and (max-width: 599px) {
    .sec:nth-child(2) .chart_box{
        display:block;
        justify-content:unset;
    }
    .sec:nth-child(2) .chart_box ul{
        width:100%;
        aspect-ratio:1 / 0.9;
        margin:0 auto 70px;
        max-width:350px;
    }
}

    
/* ----------sec / chart_box sec 3â€“---------- */
.sec:nth-child(3) .chart_box{
    aspect-ratio:1 / 0.6;
    background: url(../../../../../img/perf/comfort/zeh/zeh_img_2_a.svg) no-repeat 0 0;
}
.sec:nth-child(3) .chart_box ul{
    height:100%;
}
.sec:nth-child(3) .chart_box ul li{
    position:relative;
}
.sec:nth-child(3) .chart_box ul li img{
    position:absolute;
    top:0;
    left:0;
}

/* ----------sec / chart_box sec 4â€“---------- */
.sec:nth-child(4) .chart_box{
    width:90%;
    max-width:330px;
}
.sec:nth-child(4) .chart_box li:nth-child(2){
    display:flex;
    justify-content:space-between;
    width:100%;
}
.sec:nth-child(4) .chart_box li:nth-child(2) img{
     width:20%;
}

/* ----------sec / chart_box sec 5â€“---------- */
.sec:nth-child(5) .detail dt{
    width:90%;
    max-width:250px;
    margin:50px auto;
}
.sec:nth-child(5) .chart_box{
    display:flex;
    justify-content:space-between;
    max-width:1000px;
    width:100%;
}
.sec:nth-child(5) .chart_box ul:nth-child(odd){
    width:45%;
}
.sec:nth-child(5) .chart_box ul:nth-child(odd) span{
    font-size:0.8rem;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
}
.sec:nth-child(5) .chart_box ul:nth-child(2){
    width:15%;
}
.sec:nth-child(5) .chart_box ul:nth-child(2) li{
    align-items:center;
    display:flex;
}

/* ----------sec / chart_box sec 6â€“---------- */
.sec:nth-child(6) .chart_box{
}
.sec:nth-child(6) .chart_box h4{
    font-size:1rem;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
    margin:0 0 10px;
}
.sec:nth-child(6) .chart_box ul{
    display:flex;
    justify-content:space-between;
}
.sec:nth-child(6) .chart_box ul li{
    width:48%;
}
.sec:nth-child(6) .chart_box ul li dt{
    color:#fff;
    background:#443639;
    text-align:center;
}
.sec:nth-child(6) .chart_box ul li dl{
    position:relative;
    aspect-ratio:1 / 1;
}
.sec:nth-child(6) .chart_box ul li dl img{
    position:absolute;
    width:100%;
}

/* ----------599pxâ€“---------- */
@media screen and (max-width: 599px) {
    .sec:nth-child(6) .chart_box ul{
        display:block;
        justify-content:unset;
    }
    .sec:nth-child(6) .chart_box ul li{
        width:100%;
        max-width:350px;
        margin:0 auto 50px;
    }
}

/* ----------sec / chart_box sec 7â€“---------- */
.sec:nth-child(7) .chart_box{
    max-width:1000px;
}
.sec:nth-child(7) .chart_box ul li{
    display:flex;
    justify-content:space-between;
}
.sec:nth-child(7) .chart_box ul li dl{
    width:28%;
}
.sec:nth-child(7) .chart_box ul li dl:last-child{
    width:35%;
}
.sec:nth-child(7) .chart_box ul li dt{
    font-size:0.8rem;
    text-align:center;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
    margin:0 0 10px;
}

/* ----------768pxâ€“---------- */
@media screen and (max-width: 768px) {
    .sec:nth-child(7) .chart_box ul li{
        display:block;
        justify-content:unset;
    }
    .sec:nth-child(7) .chart_box ul li dl,
    .sec:nth-child(7) .chart_box ul li dl:last-child{
        width:90%;
        max-width:400px;
        margin:0 auto 50px;
    }
}

/* ----------sec / chart_box sec 8â€“---------- */
.sec:nth-child(8) .chart_box ul li{
    display:flex;
    justify-content:space-between;
    position:relative;
    aspect-ratio:1 / 0.5;
}
.sec:nth-child(8) .chart_box ul li img{
    position:absolute;
    top:0;
    left:0;
}
/* ----------768pxâ€“---------- */
@media screen and (max-width: 768px) {
    .sec:nth-child(8) .chart_box{
        width:100%;
    }
}


/* ----------sec / chart_box sec 9â€“---------- */
.sec:nth-child(9) .chart_box ul{
    display:flex;
    justify-content:space-between;
    aspect-ratio:1 / 0.3
}
.sec:nth-child(9) .chart_box ul li{
    width:45%;
}
.sec:nth-child(9) .chart_box ul li dt{
    text-align:center;
}
.sec:nth-child(9) .chart_box ul li dt span{
    font-size:0.8rem;
    text-align:center;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
    margin:0 0 10px;
}
.sec:nth-child(9) .chart_box ul li dl{
    position:relative;
}
.sec:nth-child(9) .chart_box ul li dl img{
    position:absolute;
    top:0;
    left:0;
}
/* ----------768pxâ€“---------- */
@media screen and (max-width: 768px) {
    .sec:nth-child(9) .chart_box ul{
        display:block;
        justify-content:unset;
        aspect-ratio:unset
    }
    .sec:nth-child(9) .chart_box ul li{
        width:90%;
        aspect-ratio:1 / 0.8;
        max-width:450px;
        margin:0 auto;
    }
}


/* ----------sec / chart_box sec 10â€“---------- */
.sec:nth-child(10) .detail dt{
    width:90%;
    max-width:250px;
    margin:50px auto 0;
}
.sec:nth-child(10) .chart_box{
    display:flex;
    justify-content:space-between;
}
.sec:nth-child(10) .chart_box ul{
    width:90%;
    max-width:600px;
    margin:auto;
    aspect-ratio:1 / 0.6;
}
.sec:nth-child(10) .chart_box ul li{
    width:100%;
    position:relative;
}
.sec:nth-child(10) .chart_box ul li img{
    position:absolute;
    top:0;
}

/* ----------sec / chart_box sec 11â€“---------- */
.sec:nth-child(11) .chart_box ul{
    display:flex;
    justify-content:space-between;
    aspect-ratio:1 / 0.3;
}
.sec:nth-child(11) .chart_box ul li{
    width:100%;
    position:relative;
}
.sec:nth-child(11) .chart_box ul li img{
    position:absolute;
    top:0;
}
.sec:nth-child(11) .chart_box dl{
    text-align:center;
}
/* ----------599pxâ€“---------- */
@media screen and (max-width: 599px) {
    .sec:nth-child(11) .chart_box ul{
        display:block;
        justify-content:unset;
        aspect-ratio:unset;
    }
    .sec:nth-child(11) .chart_box ul li{
        width:100%;
        max-width:300px;
        aspect-ratio:1 / 1;
        margin:0 auto;
    }
}

/* ----------sec / chart_box sec 12â€“---------- */
.sec:nth-child(12) .chart_box{
    max-width:1000px;
}
.sec:nth-child(12) .chart_box ul li dt{
    text-align:center;
}
.sec:nth-child(12) .chart_box ul li dt span{
    font-size:0.8rem;
    text-align:center;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
    margin:0 0 10px;
}
.sec:nth-child(12) .chart_box ul{
    display:flex;
    justify-content:space-between;
    aspect-ratio:1 / 0.3;
}
.sec:nth-child(12) .chart_box ul li{
    width:100%;
    position:relative;
}
.sec:nth-child(12) .chart_box ul li img{
}
/* ----------599pxâ€“---------- */
@media screen and (max-width: 599px) {
    .sec:nth-child(12) .chart_box ul{
        display:block;
        justify-content:unset;
        aspect-ratio:unset;
    }
    .sec:nth-child(12) .chart_box ul li{
        width:100%;
        max-width:300px;
        aspect-ratio:1 / 1;
        margin:0 auto;
    }
}

    
/* ----------sec / chart_box sec 13â€“---------- */
.sec:nth-child(13) .chart_box dl{
    width:100%;
    max-width:500px;
    position:relative;
    aspect-ratio:1 / 1;
    margin:auto;
}
.sec:nth-child(13) .chart_box dl img{
    position:absolute;
    top:0;
}

/* ----------sec / chart_box sec 14â€“---------- */
.sec:nth-child(14) .detail dt{
    margin:0 0 10px;
}
.sec:nth-child(14) .detail dt span{
    font-size:1rem;
    text-align:center;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
}
.sec:nth-child(14) .detail h4{
    font-size:1.2rem;
    margin:0 0 1em 0;
}
.sec:nth-child(14) .chart_box dl{
    width:100%;
    max-width:500px;
    position:relative;
    aspect-ratio:1 / 1;
    margin:auto;
}
.sec:nth-child(14) .chart_box dl img{
    position:absolute;
    top:0;
    width:100%;
}

/* ----------sec / chart_box sec 15â€“---------- */
.sec:nth-child(15) .detail dt{
    margin:0 0 10px;
}
.sec:nth-child(15) .detail dt span{
    font-size:1rem;
    text-align:center;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
}
.sec:nth-child(15) .detail h4{
    font-size:1.2rem;
    margin:0 0 1em 0;
}
.sec:nth-child(15) .chart_box dl{
    width:100%;
    max-width:500px;
    position:relative;
    aspect-ratio:1 / 1;
    margin:auto;
}
.sec:nth-child(15) .chart_box dl img{
    position:absolute;
    top:0;
    width:100%;
}

/* ----------sec / chart_box sec 16â€“---------- */
.sec:nth-child(16) .chart_box{
    max-width:600px;
}
.sec:nth-child(16) .chart_box dt{
    font-size:1rem;
    color:#fff;
    padding:0.2em 1em;
    background: linear-gradient(90deg, #de889d 0%, #5353bf 100%);
    border-radius:20px;
    text-align:center;
    margin:0 0 50px;
}
.sec:nth-child(16) .chart_box dd{
    width:100%;
    max-width:800px;
    position:relative;
    aspect-ratio:1 / 1;
    margin:auto;
}
/* ----------599pxâ€“---------- */
@media screen and (max-width: 599px) {
    .sec:nth-child(16) .chart_box{
       width:100%;
    }
    .sec:nth-child(16) .chart_box dt{
        font-size:0.8rem;
    }
}


/* -- cta -- */
.cta{
	margin:100px calc(50% - 50vw) 0;
	width:100vw;
    padding:100px 0;
    background:url("../../../../../img/perf/comfort/zeh/zeh_cta_bg.webp") center / cover;
    position:relative;
	max-height:800px;
}
.cta:after{
    content:"";
    display:block;
    height:100%;
    width:100%;
    position:absolute;
    top:0;
    left:0;
    background:#000;
    opacity:0.5;
}
.cta .inner{
	width:80%;
	max-width:800px;
	margin:auto;
	color:#fff;
	z-index:1;
	position:relative;
}
.cta .inner h4{
	font-size:2rem;
	display: flex;
    align-items: center;
}
.cta .inner h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #ccc;
	margin-left: 1rem;
}
.cta .inner h2{
	font-size:1.3rem;
	margin:0 0 1em 0;
	line-height:2em;
}
.cta .inner h2 strong{
	font-weight:lighter;
	font-size:120%;
}
.cta .inner .ctr_box{
	display:flex;
	justify-content:space-between;
	margin:30px 0 0 0;
}
.cta .inner .ctr_box .btn{
	width:48%;
}
.cta .inner .ctr_box .btn a{
	width:100%;
	display:block;
	padding:10px 20px;
	box-sizing:border-box;
	border-radius:50px;
	background:#948977;
		box-shadow: 1rem 1rem 1rem -1rem hsl(200 50% 20% / 40%);
	background: linear-gradient(139deg, #948977, #7d6f57);
	color:#fff;
	text-align:center;
}

/* ----------768px–---------- */
@media screen and (max-width: 768px) {
	.cta{
		padding:10vh 0;
	}
	.cta .inner h2{
		font-size:1.2rem;
		line-height:unset;
	}
	.cta .inner .ctr_box{
		display:block;
		justify-content:unset;
		margin:30px 0 0 0;
	}
	.cta .inner .ctr_box .btn{
		width:100%;
		max-width:400px;
		margin:0 auto 20px;
	}
}


