<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/* 2022.11.25 勝田パーク作成 */

p.onigiri_course{
	clear: both;
	display: flex;
	justify-content: space-between;
	background-color: #fff799;
	padding: 10px;
}
p.bento_course{
	clear: both;
	display: flex;
	justify-content: center;
	background-color: #fff799;
	padding: 10px;
	width: fit-content;
}

/* スマホのみ */
@media screen and (max-width: 640px){

	p.onigiri_course{
		flex-direction: column;
	}
	p.bento_course{
		width: 100%;
	}
	p.bento_course img{
		width: 100%;
	}
</pre></body></html>