/* CSS Document */

main a[target="_blank"][href^="http"]:not([href^="https://goo"]):after{
	display: none;
}

#youth{}
	#youth figure,
	#youth dl{
		margin-top: 1em;
		}
	#youth p+div,
	#youth div+div{
		margin-top: 2em;
		}
	#youth .flex{
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
#youth{}
	#youth .flex > div{
		width: 60%;
		}
	#youth .flex > figure{
		width: calc(40% - 1em);
		margin-top: 0.3em;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none){}


