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

.cate1{
	
}
.cate1 .contents .imgbox{
	overflow: hidden;
	border-radius: 50px;
	width: 45%;
}
.cate1 .contents .txtbox{
	width: 55%;
	padding-left: 5%;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}
.cate1 .contents .txtbox > div{
	width: 100%;
}
.cate1 .contents .txtbox .title h3{
	font-size: clamp(24px,3.2vw,36px);
	font-weight: 700;
}
.cate1 .contents .txtbox .title p{
	font-weight: 500;
	color: #e6b6c3;
}

.cate2 .boxwrap{
	padding: 5%;
}
.cate2 .boxwrap .box{
	gap: 40px;
	align-items: flex-start;
}
.cate2 .boxwrap .box:not(:last-of-type){
	margin-bottom: 30px;
}
.cate2 .boxwrap .box h3{
	width: 180px;
	border-radius: 200px;
	padding: 8px;
	border: 2px solid #e6b6c3;
}
.cate2 .boxwrap .box > div{
	width: calc(100% - 220px);
	padding: 5px 10px 15px;
	border-bottom: 1.5px dashed #DBCED3;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.cate2 .boxwrap .box{
		gap: 30px;
	}
	.cate2 .boxwrap .box > div{
		width: calc(100% - 210px);
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1 .contents .imgbox{
		width: 50%;
	}
	.cate1 .contents .txtbox{
		width: 50%;
		gap: 30px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate1 .contents .imgbox{
		width: 70%;
		margin-bottom: 30px;
	}
	.cate1 .contents .txtbox{
		width: 80%;
		gap: 30px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .contents .imgbox{
		width: 80%;
		border-radius: 30px;
		margin-bottom: 30px;
	}
	.cate1 .contents .txtbox{
		width: 100%;
		gap: 20px;
	}
	
	.cate2 .boxwrap{
		padding: 20px;
	}
	.cate2 .boxwrap .box{
		justify-content: flex-start;
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.cate2 .boxwrap .box > div{
		width: auto;
	}
	.cate2 .boxwrap .box h3{
		width: 160px;
		border-radius: 200px;
		padding: 8px;
		border: 2px solid #e6b6c3;
	}
}

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

