@charset "utf-8";
/* CSS Document */

/* Imported Styles
-------------------------------------------------- */
@import url("common.css");
@import url("second.css");
@import url("common_sp.css") screen and (max-width: 767px);
@import url("second_sp.css") screen and (max-width: 767px);

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: block !important; }
}