@charset "utf-8";
/* CSS Document */

.cate2 .boxwrap{align-items: stretch;}
.cate2 .boxwrap .box{
	width: calc(100% / 3);
	padding: 0 20px;
	gap: 15px;
	justify-content: flex-start;
}
.cate2 .boxwrap .box:nth-of-type(2){
	border-left: 1px solid #DEE6C9;
	border-right: 1px solid #DEE6C9;
}
.cate2 .boxwrap .box img{
	width: clamp(80px,50%,110px);
}

.cate3 .boxwrap{
	align-items: flex-start;
}
.cate3 .boxwrap .box{
	position: relative;
	width: 100%;
	justify-content: space-between;
}
.cate3 .boxwrap .box::before,
.cate3 .boxwrap .box::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 34px;
    height: 34px;
    background-image: url("https://plana-henna.com/system_panel/uploads/images/hena_arrow.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}
.cate3 .boxwrap .box::before{
    left: calc(33.333% - 4px);
}
.cate3 .boxwrap .box::after{
    left: calc(66.666% + 4px);
}
.cate3 .boxwrap .box > div{
    position: relative;
    overflow: hidden;
    width: calc(100% / 3 - 16px);
    z-index: 1;
}
.cate3 .boxwrap .box > div p{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: rgba(255,255,255,0.80);
}
/* ---------- 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){
	.cate2 .boxwrap .box{
		padding: 0 10px;
	}
	
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate2 .boxwrap{
		gap: 30px;
	}
	.cate2 .boxwrap .box{
		width: 100%;
		padding: 0 10px;
	}
	.cate2 .boxwrap .box:nth-of-type(2){
		border-left: none;
		border-right: none;
		border-top: 1px solid #DEE6C9;
		border-bottom: 1px solid #DEE6C9;
		padding-top: 30px;
		padding-bottom: 30px;
	}
    .cate3 .boxwrap .box{
        flex-direction: column;
        gap: 20px;
    }

    .cate3 .boxwrap .box::before,
    .cate3 .boxwrap .box::after{
        display: none;
    }

    .cate3 .boxwrap .box > div{
        width: 70%;
    }
}

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

