/* STORY */
.story_contents {
  display: block;
  width: 75%;
  margin: 30px auto 50px auto;
}
.story_contents p {
  font-size: 14px;
  text-align: left;
}
.story_contents .point{
  font-size: 20px;
  font-weight:bold;
  text-align: left;
}
@media screen and (max-width:480px) {
  /* ここにスマホ版だけの記述 */
  .story_contents {
    width:95%;
    padding: 10px;
    margin: 30px auto 30px auto;
    text-align: left;
  }
  .story_contents p {
    font-size: 12px;
  }
  .story_contents .point{
    font-size: 16px;
  }
}

