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


.sampleClass {
	color: red;
}


/* PC style only */
@media screen and (min-width: 737px) {
}

/* 1200px ～ スマホのブレイクポイント＋1 （←このブレイクポイント間でのみにスタイルを指定したい場合） */
@media screen and (min-width: 736px + 1) and (max-width: 1200px) {
}

/* SP style only */
@media screen and (max-width: 736px) {
}</pre></body></html>