@charset "utf-8";
/*==================================================
	【コンセプト】ページ固有のスタイル
==================================================*/
#concept .box_flex {
	flex-direction: row-reverse;
}
#concept .box_concept {
	width: 550px;
}
#concept .photo {
	position: relative;
	width: 450px;
	margin-top: 100px;
}

@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#concept .box_concept {
		width: 56%;
	}
	#concept .photo {
		width: 40%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#concept .box_concept,
	#concept .photo {
		width: auto;
	}
	#concept .photo {
		margin-top: 40px;
	}
}