/*
 * iweb52-style30
 *
 * Copyright 2017, TANK
 * 
 * 
 * 2017 / 4 / 27
 */


/* + newsList
*----------------------------------------------------------------------------*/
#newsList {
	overflow: hidden;
	margin-bottom: 15px;
}

#newsList .list {
	position: relative;
	margin: 10px 0 25px;
	float: left;
	width: 33%;
}

#newsList .list .date ,
#newsList .list .date:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#newsList .list .date:before {
	content: "";
	width: 30px;
	height: 2px;
	background: #d1b084;
	display: block;
}

#newsList .list .newPhoto {
	overflow: hidden;
	margin: 15px auto 10px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
}

#newsList .list .newPhoto a.photo {
	transition: all 0.4s ease;
}

#newsList .list:hover .newPhoto a.photo {
	background-size: auto 120%;
}


#newsList .list h3 {
	overflow: hidden;
	margin: 10px 0;
	height: 22px;
	text-align: center;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

#newsList .list h3 a {
	color: #645e55;
	font-size: 16px;
}


/************ = 適應性 = ************/
/* +width:640 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
	#newsList .list {
		width: 50%;
	}
}

/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#newsList .list .newPhoto {
		width: 180px;
		height: 180px;
	}
}

/* +width:450 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 450px) {
	#newsList .list {
		width: 100%;
	}
	#newsList .list .newPhoto {
		width: 240px;
		height: 240px;
	}
}
