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

/* ---------- main ---------- */
.cate .box_wrap{
	padding-right: 40px;
	padding-left: 40px;
}
.cate_wrap .cate1{
	background-color: #BA1A23;
	color: #fff;
	border-bottom-left-radius: 60px;
}
.cate1 .title-num{
	width: 10%;
}
.title-line{
	justify-content: flex-start;
}
.cate1 .titlebox h2{
	padding-left: 20px;
}
.cate1 .imgbox{
	width: 100%;
}
.cate1 .imgbox img{
	border-radius: 10px;
}
.txtbg-red{
	padding: 30px 20px;
	background-color: #A00912;
	border-radius: 10px;
}
.cate1 .bottom-box{
	flex-direction: column;
}
.cate1 .bottom-box .txtline{
	position: relative;
	z-index: 2;
	padding-left: 30px;
	padding-right: 30px;
}
.cate1 .bottom-box .txtline::before,
.cate1 .bottom-box .txtline::after{
	content: "";
	position: absolute;
	top: 50%;
	width: 30px;
	height: 2px;
	background: white;
	background-size: 4px 4px;
	background-repeat: repeat-x;
}
.cate1 .bottom-box .txtline::before{
	top: 20px;
	left: 0;
	transform: rotate(55deg);
}
.cate1 .bottom-box .txtline::after{
	top: 20px;
	right: 0;
	transform: rotate(-55deg);
}
.cate2 .titlebox p{
	line-height: normal;
}
.cate2 .box_wrap{
	gap: 20px;
	align-items: stretch;
	flex-wrap: wrap;
}

.cate2 .box-item{
	width: calc(50% - 10px);
	box-sizing: border-box;
	padding-bottom: 20px;
}
.cate2 .box-item .imgbox img{
	border-radius: 20px;
}
.cate2 .box-item .txtbox h3{
	text-align: center;
	padding: 10px 0;
}

/* ---------- 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){
	.cate1 .title-num{
		width: 15%;
	}
	.cate2 .box-item{
		width: 80%;
	}
	.cate2 .box-item .imgbox img {
		border-radius: 10px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

