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

/* 印刷用 */
@import "pc.css" print;

/* PC用 */
@import url("pc.css") screen and (min-width:960px);

/* タブレット用 */
@import url("tablet.css") screen and (min-width:768px) and (max-width:959px);

/* スマ－トフォン横用 */
@import url("sp-landscape.css") screen and (min-width:480px) and (max-width:767px);

/* スマ－トフォン縦用 */
@import url("sp-portrait.css") screen and (min-width:0px) and (max-width:479px);</pre></body></html>