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

.cate2 .boxwrap .box{
	padding: 20px 0;
	border-bottom: 1px solid #E4E4E4;
	justify-content: space-between;
}
.cate2 .boxwrap .box > p{
	text-align: right;
}
/* ---------- 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){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate2 .boxwrap .box{
		padding: 20px 0;
		border-bottom: 1px solid #E4E4E4;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
	.cate2 .boxwrap .box > p{
		text-align: left;
	}
}

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

