.wow {
	animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;	
}

#articleInfo7 {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

#articleInfo7 .photoBox {
	float: left;
	width: 50%;
	animation-name: fadeInLeft;
	-webkit-animation-name: fadeInLeft;
}

#articleInfo7 .photoBox img {
    transition: opacity 0.35s, transform 0.35s;
}

#articleInfo7 .photoBox:hover img {
	opacity: 0.7;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}


#articleInfo7 .info {
	margin-left: 20%;
	padding: 0 50px 50px 35%;
}

#articleInfo7 .info h3 a {
	position: relative;
	padding: 0 0 10px;
	font-size: 25px;
	display: block;
	color: #3e3e3e;
}

#articleInfo7 .info:hover h3 {
	animation: animatedIcon 1s;
	-webkit-animation: animatedIcon 1s infinite linear;
	-moz-animation: animatedIcon 1s infinite linear;
	-ms-animation: animatedIcon 1s infinite linear;
	-o-animation: animatedIcon 1s infinite linear;
}


#articleInfo7 .info p {
	font-size: 16px;
	line-height: 200%;
	text-align: justify;
	-webkit-animation-name: fadeInRight;
}

#articleInfo7 .info article {
	margin: 30px 0 10px 20px;
	line-height: 180%;
	animation-name: fadeInUp;
	-webkit-animation-name: fadeInUp;
}


/************ = 適應性 = ************/
/* +width:768 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#articleInfo7 {
	}
	#articleInfo7 .photoBox {
	float: none;
	width: 100%;
	}
	#articleInfo7 .info {
	margin: 30px 0 0;
	padding: 0;
	}
	#articleInfo7 .info h3 {
		left: 0;
		text-align: right;
	}
}


/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#articleInfo7 .info {
		margin-top: 0;
		padding: 50px 20px;
	}
	#articleInfo7 .info h3 {
		padding: 20px 0;
		text-align: left;
	}
	#articleInfo7 .info article {
		margin-left: 0;
	}
	@keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-o-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-webkit-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-moz-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
	@-ms-keyframes animatedIcon { 
		0%{ padding: 20px 0;}
		50%{ padding: 0 0 40px; }
		100%{ padding: 20px 0; }
	}
}