@charset "utf-8";

.list {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
	margin: 0 -15px;
}

.list > li {
	box-sizing: border-box;
	width: 20%;
	padding: 10px 15px 5px 15px;
}

.list .Img {
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-justify-content: center;
	display: flex;
	height: 100px;
}

.list .Img img {
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
          backface-visibility: hidden;
	transition: all .5s;
	max-height: 100px;
}

.list .item:hover .Img img {
	opacity: 0.9;
	-webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.list .txt {
	padding: 15px;
	text-align: center;
}

.list h3 a {
	word-wrap:break-word;
	font-size: 22px;
	line-height:1.5;
	color: #b53138;
    font-weight: bold;
}

.list h3 a:hover {
	text-decoration:underline;
	opacity: 0.6;
}



@media (max-width: 800px) {
	.list > li {
		width: 33.3%;
	}
}


@media (max-width: 480px){
	.list > li {
		width: 100%;
	}
}
