#item_wrapper * {
	box-sizing: border-box;
	display: flex;
	margin: 2.5% auto;
	padding: 0;
}
#item_wrapper li {
	list-style: none;
}
#item_wrapper {
	display: flex;
	width: 75%;
	margin: 0 auto;
}
#item_outerbox {
	width: 100%;
	background: rgba(225,225,225,0.5);
}
#item_outerbox .item_innerbox {
	width: 13.5%;
}
#item_outerbox .item_image {
	width: 100%;
	height: 55%;
	box-shadow: 0 0 5px #ccc;
	border-radius: 8px;
	background-color: #ffffff;
}
.item_innerbox {
;
}
.item_innerbox a {
	flex-direction: column;
	text-decoration: none;
}
.item_text {
	color: #000;
	font-weight: bold;
	font-size: 1.2vw;
	flex-direction: column
}
.item_textIn {
	font-size: 1vw;
}

@media(max-width: 906px){
#item_wrapper {
	width: 95%;

}
#item_outerbox {
	flex-wrap: wrap;
}
#item_outerbox .item_innerbox {
	width: 45%;
	height: 20%;
}
.item_text {
	font-size: 16px;
}
.item_textIn {
	font-size: 13px;
}

}