@charset "utf-8";
/* CSS Document */
.head_nav a:nth-of-type(3)::after{
	display: block;
}

.equipment_wrap .box{
	width: 100%;
	padding: 50px;
	border: 1px solid #4B4B4B;
}
.equipment_wrap .box:not(:last-of-type){
	margin-bottom: 50px;
}
.equipment_wrap .box .imgbox{
	width: 40%;
}
.equipment_wrap .box .txtbox{
	width: 60%;
	padding-left: 50px;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}
.equipment_wrap .box .txtbox .bottombox{
	gap: 5px;
}
.equipment_wrap .box .txtbox .bottombox p{
	line-height: 1.2;
	font-weight: 700;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.equipment_wrap .box{
		padding: 40px;
	}
	.equipment_wrap .box .txtbox{
		padding-left: 40px;
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.equipment_wrap .box{
		padding: 30px;
	}
	.equipment_wrap .box .txtbox{
		padding-left: 30px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.equipment_wrap .box .imgbox{
		width: 45%;
	}
	.equipment_wrap .box .txtbox{
		width: 55%;
		gap: 15px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.equipment_wrap .box{
		padding: 20px;
	}
	.equipment_wrap .box:not(:last-of-type){
		margin-bottom: 30px;
	}
	.equipment_wrap .box .imgbox{
		width: 100%;
		margin-bottom: 20px;
	}
	.equipment_wrap .box .txtbox{
		width: 100%;
		gap: 15px;
		padding-left: 0;
	}
}

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

