/*
 * iweb52-style27
 *
 * Copyright 2017, TANK
 * 
 * 
 * 2017 / 02 / 16
 */
.content-main{
	width:70%;
	margin:0 auto;
	overflow:hidden;
}


/* + newsList
*----------------------------------------------------------------------------*/
#newsList ul {
	border-top: 2px #f2f2f2 solid;
}

#newsList ul li {
	overflow: hidden;
	position: relative;
	border-bottom: 1px #dcd9d9 solid;
}

#newsList ul li {
	padding: 0 15px;
}

#newsList ul li > div {
	position: relative;
	margin: 15px 0;
	float: left;
	width: 40%;
	z-index: 2;
}

#newsList ul li .newPhoto a.photo {
	    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: block;
	transition: all 0.5s ease;
}
#newsList ul li:hover .newPhoto a.photo {
	background-size: 120% auto;
}
#newsList ul li .info {
	margin-left: 5%;
	width: 55%;
}

#newsList ul li .info h3 a ,
#newsList ul li .info article {
	overflow: hidden;
	height: 29px;
	font-size: 18px;
	font-weight: bold;
	color: #969696;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	line-height: 180%;
}

#newsList ul li:hover .info h3 a {
	color: #282623;
}

#newsList ul li .info article {
	margin-top: 10px;
	height: 75px;
	font-size: 16px;
	-webkit-line-clamp: 3;
}

#newsList ul li:after {
	position: absolute;
	width: 0;
	height: 100%;
	display: block;
	background: #dadada;
	top: 0;
	left: 0;
	content: "";
	z-index: 1;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}

#newsList ul li:hover:after {
	width: 100%;
	opacity: 1;
}

#article p.Quo {
	text-align: right;
	color: #7b7b7b;
	margin-bottom: 10px;
}

#article p.Quo em ,
#article p.Quo b {
	margin: 0 5px;
	vertical-align: middle;
}

#article p.Quo b a {
	vertical-align: initial;
	color: #635e5e;
}


#community{
	overflow:hidden;
	margin-top: 50px;
}
#community li{
	float:left;
	line-height:0;
	margin:5px 5px 0 0;
}
/************ = 適應性 = ************/
/* +width:768 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#newsList ul li .info article {
		margin-top: 0;
		height: 55px;
		-webkit-line-clamp: 2;
	}
	.content-main{
		width:80%;
	}

}

/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#newsList ul li > div {
		margin: 10px 0;
		width: 100%;
	}
	.content-main{
		width:90%;
	}
}