/*----------------------------------------------
  style-marine.css
    01:base style
    02:PC only
    03:SP only
----------------------------------------------*/



/* 01:base style
----------------------------------------------*/

/*
.test {
  color: #000;
}
*/




/* 02:PC only
----------------------------------------------*/
@media print, screen and (min-width: 769px){
  /*
  .test {
    color: #000;
  }
  */
}




/* 03:SP only
----------------------------------------------*/
@media only screen and (max-width: 768px){
  /*
  .test {
    color: #000;
  }
  */
}