@charset "UTF-8";

/* **********************

********************** */

@import url("layout_pc.css") screen and (min-width:765px);
@import url("contents_pc.css") screen and (min-width:765px);

@import url("layout_sp.css") screen and (max-width:765px);
@import url("contents_sp.css") screen and (max-width:765px);

/* まずはデフォルト（PC想定） */
.spNone { display: block; }
.pcNone { display: none; }

/* SP時に反転 */
@media screen and (max-width: 767px) {
  .spNone { display: none !important; }
  .pcNone { display: block !important; }
}
/* 表示切り替え（.shibaura-tags 内だけに限定して衝突回避） */
@media screen and (min-width: 769px) {
  .shibaura-tags .pcNone { display: none !important; }
  .shibaura-tags .spNone { display: block !important; }
}

@media screen and (max-width: 768px) {
  .shibaura-tags .pcNone { display: block !important; }
  .shibaura-tags .spNone { display: none !important; }
}
/* 表示切り替え（.shibaura-tags 内だけに限定して衝突回避） */
@media screen and (min-width: 769px) {
  .shibaura-course-inner .pcNone { display: none !important; }
  .shibaura-course-inner .spNone { display: block !important; }
}

@media screen and (max-width: 768px) {
  .shibaura-course-inner .pcNone { display: block !important; }
  .shibaura-course-inner .spNone { display: none !important; }
}
