.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;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

#articleInfo7 .photoBox {
	width: 50%;
	top: 50px;
	left: 0;
	animation-name: fadeInLeft;
	-webkit-animation-name: fadeInLeft;
}

#articleInfo7 .photoBox img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    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 {width: 40%;margin-left: 50px;}

#articleInfo7 .info h3 {
	position: relative;
	padding: 0px 0px 20px;
	font-size: 32px;
	color: #131313;
}

#articleInfo7 .info p {
	font-size: 24px;
	animation-name: fadeInRight;
	-webkit-animation-name: fadeInRight;
	color: #1e74aa;
}

#articleInfo7 .info article {
	margin: 0px 0 0px 0px;
	line-height: 180%;
	animation-name: fadeInUp;
	-webkit-animation-name: fadeInUp;
}


/************ = 適應性 = ************/
/* +width:768 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#articleInfo7 {
		position: relative;
		display: inline-block;
		margin-bottom: 10px;
	}
	#articleInfo7 .photoBox {
		position: relative;
		padding: 20px 0%;
		width: 100%;
		top: 0px;
	}
	#articleInfo7 .info {
		position: relative;
		margin-left: 0;
		padding: 15px 0;
		background: none;
		width: 100%;
	}
	#articleInfo7 .info h3 {
		left: 0;
		text-align: justify;
	}
}


/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#articleInfo7 .info {
		margin-top: 0;
		padding: 5px 0 15px 0;
	}
	#articleInfo7 .info h3 {
		padding: 0px 0 20px 0;
		text-align: left;
		font-size: 25px;
	}
	#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; }
	}
}