@charset "utf-8";
/* CSS Document */
.cate1 .box_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    width: 100%;
    margin: auto;
}
.cate1 .box_wrap .leftbox,
.cate1 .box_wrap .rightbox {
    width: 25%;
}
.cate1 .box_wrap .txtbox {
    width: 42%;
    align-items: center;
    text-align: center;
    min-width: 600px;
}
.cate1 .box_wrap .imgbox {
    overflow: hidden;
    border-radius: 8px;
}
.cate1 .box_wrap .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 200px;
}
.cate1 .box_wrap .leftbox .imgbox {
    aspect-ratio: 1 / 1;
}
.cate1 .box_wrap .rightbox {
    display: flex;
    flex-direction: column;
    gap: clamp(50px, 6vw, 90px);
}
.cate1 .box_wrap .rightbox .imgbox:first-child {
    width: 78%;
    aspect-ratio: 1 / 1;
    margin-left: auto;
}
.cate1 .box_wrap .rightbox .imgbox:last-child {
    width: 68%;
    aspect-ratio: 1 / 1;
}

/* ---------- cate2 ---------- */
.cate2 .box_wrap .boxitem .topbox {
    flex-direction: column;
	gap: 20px;
}
.cate2 .box_wrap .boxitem .topbox .numbox {
    width: 100%;
    gap: clamp(20px, 7vw, 100px);
    align-items: center;
}
.cate2 .box_wrap .boxitem .topbox .numbox img {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    display: block;
    object-fit: cover;
}
.cate2 .box_wrap .boxitem .topbox .numbox .num {
    flex-shrink: 0;
    text-align: center;
	font-family: "Cormorant Infant",  sans-serif;
	font-size: clamp(28px, 3.5vw, 40px);
	letter-spacing: 0.15em;
	color: #A7BCCB;
	font-weight: 600;
}
.cate2 .box_wrap .boxitem .bottombox {
	gap: 80px;
}
.cate2 .box_wrap .boxitem .bottombox .imgbox{
	width: calc(40% - 40px);
}
.cate2 .box_wrap .boxitem .bottombox .txtbox{
	width: calc(60% - 40px);
	align-items: flex-start;
}
.cate2 .box_wrap .boxitem .bottombox .imgbox img{
	border-radius: 20px;
}
.cate2 .box_wrap .boxitem:nth-of-type(even) .bottombox {
    flex-direction: row-reverse;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){

}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
    .cate1 .box_wrap {
        flex-direction: column;
        gap: 50px;
    }

    .cate1 .box_wrap .leftbox,
    .cate1 .box_wrap .txtbox,
    .cate1 .box_wrap .rightbox {
        width: 100%;
    }

    .cate1 .box_wrap .txtbox {
        max-width: 720px;
        min-width: 0;
        margin: 0 auto;
    }

    .cate1 .box_wrap .leftbox .imgbox {
        width: min(30%, 250px);
        margin-left: 15%;
        margin-right: auto;
    }

    .cate1 .box_wrap .rightbox {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
		margin-top: 50px;
    }

    .cate1 .box_wrap .rightbox .imgbox:first-child {
        width: min(38%, 280px);
        margin-left: auto;
        margin-right: 4%;
        transform: translateY(-20px);
    }

    .cate1 .box_wrap .rightbox .imgbox:last-child {
        width: min(34%, 240px);
        margin-left: 4%;
        margin-right: auto;
        transform: translateY(20px);
    }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate2 .box_wrap .boxitem .bottombox {
		gap: 50px;
		flex-direction: column;
	}
	.cate2 .box_wrap .boxitem:nth-of-type(even) .bottombox {
		flex-direction: column;
	}
	.cate2 .box_wrap .boxitem .bottombox .imgbox {
		width: 60%;
	}
	.cate2 .box_wrap .boxitem .bottombox .txtbox {
		width: 80%;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
    .cate1 .box_wrap {
        gap: 20px;
    }
    .cate1 .box_wrap .leftbox .imgbox {
        margin-left: 5%;
    }
	.cate2 .box_wrap .boxitem .bottombox .imgbox {
		width: 80%;
	}
	.cate2 .box_wrap .boxitem .bottombox .txtbox {
		width: 100%;
	}
    .cate2 .box_wrap .boxitem .bottombox {
        gap: 30px;
    }
	.cate2 .box_wrap .boxitem .bottombox .imgbox img{
		border-radius: 10px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

