@charset "UTF-8";

/*main*/
main {
    background-image: linear-gradient(45deg, #f2f4f4, #d5d7d7);
}
ul.att {
    margin-top: 50px;
}

/*メインビジュアル*/
.mainVisual {
    /*background: #5d727a;*/
    background: linear-gradient(40deg, #7199a0,#5d727a,#3d535c);
    background-size: 200% 200%;
    animation: bggradient_b 5s ease infinite;
}

@keyframes bggradient_b{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.mainVisual div {
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.mainVisual div h2 {
    color: #fff;
    font-size: min(8vw,40px);
    font-family: "Jost", sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.mainVisual div p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.2em;
}

/*コンセプト*/
.con_Bgwrap {
    width: 100%;
    height: 100%;
    
}
.con_Bgwrap figure {
    position: relative;
}
.con_Bgwrap.con01 h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    max-width: 350px;
    margin: auto;
    z-index: 1;
}
.con_Bgwrap {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}

/*個別css*/
.con_Bgwrap.con02 {
    padding: 10svw;
    background-image: url(../img/con_img02.jpg);
    text-align: center;
}
.con_Bgwrap.con02 p {
    line-height: 3;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.con_Bgwrap.con02 h4 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 2;
    font-weight: 600;
}
.con_Bgwrap.con02 img {
    text-align: center;
    width: 70%;
    max-width: 350px;
}


.con_Bgwrap.con03 p {
    position: absolute;
    right: 5%;
    bottom: 5%;
    width: 51%;
    max-width: 800px;
}


.con_Bgwrap.con04 {
    padding: 10svw;
    background-image: url(../img/con_img04.jpg);
    text-align: center;
}
.con_Bgwrap.con04 .free {
    text-align: center;
    width: 70%;
    max-width: 400px;
    margin-bottom: 30px;
}
.con_Bgwrap.con04 h4 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 50px;
    line-height: 2;
    letter-spacing: 0.2em;
}
.con_Bgwrap.con04 ul {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:40px 4%;
}
.con_Bgwrap.con04 ul li {
    width: 48%;
}
.con_Bgwrap.con04 ul li figure {
    clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 85% 100%, 20% 100%, 0% 100%, 0 0);
    overflow: hidden;
}
.con_Bgwrap.con04 p.ttl {
    color: #fff;
    font-size: 20px;
    margin: 15px auto;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: left;
}
.con_Bgwrap.con04 p.txt {
    color: #fff;
    line-height: 1.6;
    font-size: 15px;
    text-align: left;
}



@media only screen and (max-width: 768px) {
    
    /*メインビジュアル*/
    .mainVisual div {
        padding: 50px 0;
    }
    
    /*コンセプト*/
    .con_Bgwrap.con01 h3 {
        max-width: 200px;
    }
    
    /*個別css*/
    .con_Bgwrap.con02 {
        padding: 80px 0;
    }
    .con_Bgwrap.con02 p {
        font-size: 15px;
        line-height: 2.5;
    }
    .con_Bgwrap.con02 h4 {
        font-size: 17px;
    }
    .con_Bgwrap.con02 img {
        max-width: 250px;
    }
    
    
    .con_Bgwrap.con04 {
        padding: 80px 0;
    }
    .con_Bgwrap.con04 .free {
        max-width: 200px;
    }
    .con_Bgwrap.con04 h4 {
        font-size: 18px;
    }
    .con_Bgwrap.con04 ul li {
        width: 100%;
    }
    .con_Bgwrap.con04 p.ttl {
        font-weight: 600;
    }


}