/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
.indent {
  padding-left: 5em;
  text-indent: -5em;
}

.post_body{
  margin-right: auto; /* 1 */
  margin-left:  auto; /* 1 */
 
  max-width: 1060px; /* 2 */
 
  padding-right: 10px; /* 3 */
  padding-left:  10px; /* 3 */
}