@import url("sp_style.css");/* < 主にフォントやリンクについて設定する */


/*縦向きの場合 */
@media screen and (orientation:portrait){
  p {font-size: 1em; }  
}
/* 横向きの場合 */
@media screen and (orientation:landscape){
  p {font-size: 1.2em; }  
}

