/* CSS Document */

.local_flex{
	display: flex;
	justify-content: space-between;
}
.local_flex img{width:100%;}
.local_flex.f1 > *:nth-child(1),
.local_flex.f2 > *:nth-child(2){width:520px;}
.local_flex.f1 > *:nth-child(2),
.local_flex.f2 > *:nth-child(1){width:450px;}
.con_subt + .local_flex.f1{margin-top: 1.5em;}
@media screen and (max-width: 999px) {
	.local_flex{flex-direction: column;}
	.local_flex.f1 > *:nth-child(1),
	.local_flex.f2 > *:nth-child(2),
	.local_flex.f1 > *:nth-child(2),
	.local_flex.f2 > *:nth-child(1){width:100%;}
	.local_flex.f1 > *:nth-child(1){}
	.local_flex.f1 > *:nth-child(2){margin-top: 1em;}
	.local_flex.f2 > *:nth-child(1){order:2;margin-top: 1em;}
	.local_flex.f2 > *:nth-child(2){order:1;}
}