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

.cate1 .topbox{
	gap:50px;
	flex-direction: column;
	position: relative;
    width: 100%;
}
.cate1 .topbox .txtbox{
	position: relative;
    z-index: 2;
    gap: 50px;
    flex-direction: column;
    margin: 0 auto;
}

.cate1 .boxwrap{
	gap: 60px;
	align-items: stretch;
	justify-content: flex-start;
}
.cate1 .boxwrap .box{
	width: calc(50% - 60px / 2);
	border: 3px solid #e6b6c3;
	background-color: #fff;
}
.cate1 .boxwrap .box > div{
	padding: 30px;
	gap: 20px;
}
.cate1 .boxwrap .box .item_top{
	border-bottom: 1px dashed #D9D2D5;
}
.cate1 .boxwrap .box .item_top .icon{
	width: 50px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #e6b6c3;
}
.cate1 .boxwrap .box .item_top .icon img{
	width: 50%;
}
.cate1 .boxwrap .box .item_top .imgbox{
	width: 100%;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.cate1 .boxwrap{
		gap: 50px;
	}
	.cate1 .boxwrap .box{
		width: calc(50% - 50px / 2);
	}
	.cate1 .boxwrap .box > div{
		padding: 30px 20px;
		gap: 20px;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1 .boxwrap{
		gap: 40px;
	}
	.cate1 .boxwrap .box{
		width: calc(50% - 40px / 2);
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
    .cate1 .topbox{
        gap: 30px;
        min-height: auto;
    }
    .cate1 .topbox .txtbox{
        width: 100%;
        gap: 30px;
    }
	.cate1 .boxwrap{
		gap: 30px 20px;
	}
	.cate1 .boxwrap .box{
		width: calc(50% - 20px / 2);
		gap: 15px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .boxwrap .box{
		width: 100%;
		gap: 15px;
	}
}

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

