@charset "utf-8";
/* CSS Document */
.cate1{
	align-items: stretch;
}
.cate1 > div{
	position: relative;
	z-index: 2;
	flex-direction: column;
}
.cate1 .imgbox1,.cate1 .imgbox2{
	width: 27.5%;
	justify-content: space-between;
	gap: 10vh;
	flex-wrap: nowrap;
}
.cate1 .txtbox{
	width: 45%;
	padding: 0 5%;
}
.cate1 .imgbox1 .img1{
	width: 70%;
}
.cate1 .imgbox1 .img2{
	width: 45%;
	margin-left: 55%;
}
.cate1 .imgbox2 .img1{
	width: 45%;
	margin-left: 30%;
}
.cate1 .imgbox2 .img2{
	width: 70%;
	margin-left: 20%;
}
.faq_c{
	width: 100%;
}
.faq_c .box .qbox p {
    font-family: "Lato",  sans-serif;
	color: #84A837;
}
.faq_c .box .abox {
    margin-top: 10px;
    background-color: #fff;
    padding: 30px;
	border-radius: 5px;
}
.faq_c .box .qbox .icon::before, .faq_c .box .qbox .icon::after {
    background-color: #84A837;
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.cate1 .imgbox1,.cate1 .imgbox2{
		width: 25%;
	}
	.cate1 .txtbox{
		width: 50%;
		padding: 0 5%;
	}
	.cate1 .imgbox1 .img1{
		width: 90%;
	}
	.cate1 .imgbox1 .img2{
		width: 65%;
		margin-left: 35%;
	}
	.cate1 .imgbox2 .img1{
		width: 65%;
		margin-left: 35%;
	}
	.cate1 .imgbox2 .img2{
		width: 80%;
		margin-left: 5%;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate1 .txtbox{
		padding: 0 10px;
	}
	.cate1 .imgbox1 .img1{
		width: 100%;
	}
	.cate1 .imgbox1 .img2{
		width: 75%;
		margin-left: 25%;
	}
	.cate1 .imgbox2 .img1{
		width: 75%;
		margin-left: 25%;
	}
	.cate1 .imgbox2 .img2{
		width: 90%;
		margin-left: 0;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1{
		flex-direction: column;
		gap: 30px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.cate1 .imgbox1,.cate1 .imgbox2{
		width: 100%;
		justify-content: space-between;
		flex-direction: row;
		gap: 0;
		flex-wrap: nowrap;
		align-items: flex-end;
	}
	.cate1 .txtbox{
		width: 100%;
		padding: 0;
	}
	.cate1 .imgbox1 .img1{
		width: 45%;
		margin-bottom: 15%;
	}
	.cate1 .imgbox1 .img2{
		width: 30%;
		margin-left: 0%;
	}
	.cate1 .imgbox2 .img1{
		width: 40%;
		margin-left: 0;
	}
	.cate1 .imgbox2 .img2{
		width: 50%;
		margin-bottom: 10%;
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

.flow_wrap .txtbox{
   flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	justify-content: flex-start;
}
.flow_wrap .item{
    display: grid;
    grid-template-columns: clamp(300px, 32vw, 550px) 72px 1fr;
    column-gap: clamp(16px, 3vw, 40px);
    position: relative;
    padding-bottom: 60px;
    width: 100%;
}
.cate3 .flow_wrap .item{
    display: grid;
    grid-template-columns: clamp(240px, 32vw, 400px) 72px 1fr;
    column-gap: clamp(16px, 3vw, 40px);
    position: relative;
    padding-bottom: 60px;
    width: 100%;
}
.flow_wrap .item:last-child{
    padding-bottom: 0;
}
.flow_wrap .imgbox{
    width: 100%;
    overflow: hidden;
}
.flow_wrap .imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	border-radius: 10px;
}
.flow_wrap .col-num{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.flow_wrap .col-num::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 72px;
    bottom: 0px;
    transform: translateX(-50%);
    width: 0;
    border-left: 1px solid #84A837;
    pointer-events: none;
}
.flow_wrap .item:last-child .col-num::before{
    display: none;
}
.flow_wrap .circle{
    width: 65px;
    height: 65px;
    border-radius: 999px;
	border: #84A837 1px solid;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.flow_wrap .circle p{
    letter-spacing: 0.1em;
	line-height: 1;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
   .flow_wrap .item,.cate3 .flow_wrap .item{
        grid-template-columns: 1fr;
        grid-template-areas:
            "col"
            "imgbox"
            "txtbox";
        gap: 16px;
        padding-bottom: 50px;
        max-width: 500px;
        margin: 0 auto;
    }
	.cate3 .flow_wrap .item .imgbox{
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
    .flow_wrap .col-num{
        grid-area: col;
        justify-content: flex-start;
    }

    .flow_wrap .imgbox{
        grid-area: imgbox;
    }

    .flow_wrap .txtbox{
        align-items: center;
        margin-top: 0;
    }

    .flow_wrap .col-num::before{
        display: none;
    }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.flow_wrap .txtbox {
		gap: 10px;
	}
	.flow_wrap .circle {
		width: 50px;
		height:50px;
	}
    .flow_wrap .item {
        padding-bottom: 30px;
    }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

