.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;
	justify-content: space-between;
	flex-wrap: wrap;
}

#articleInfo7 .photoBox {
	width: 45%;
	animation-name: fadeInLeft;
	-webkit-animation-name: fadeInLeft;
}

#articleInfo7 .photoBox img {width: 100%;height: 100%;object-fit: cover;}



#articleInfo7 .info {width: 50%;}

#articleInfo7 .info h3 {
	position: relative;
	padding: 0 0 10px;
	font-size: 33px;
	color: #ff5f5f;
}

#articleInfo7 .info p {
	font-size: 16px;
	animation-name: fadeInRight;
	-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 {
		position: relative;
	}
	#articleInfo7 .photoBox {
		position: relative;
		padding: 0;
		width: 90%;
		margin: 0 auto;
	}
	#articleInfo7 .info {
		position: relative;
		margin-left: 0;
		padding: 20px;
		background: none;
		width: 100%;
	}
	#articleInfo7 .info h3 {
		left: 0;
	}
}


/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	#articleInfo7 .info {
		margin-top: 0;
	}
	#articleInfo7 .info h3 {
		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; }
	}
}