/* タブレット向けレイアウト */
@media all and (max-width: 800px) {
  .container {
    padding: 0 0 0 16px;
  }
  h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 30px;
  }
  h2 {
    font-size: 35px;
  }
  .lesson {
    float: left;
    width: 50%;
    margin-bottom: 50px;
  }
  .text-contents {
    font-size: 24px;
  }
}

/* モバイル向けレイアウト */
@media all and (max-width: 670px) {
  h1 {
    font-size: 30px;
  }
  h3 {
    font-size: 22px;
  }
  h2 {
    font-size: 30px;
  }
  .lesson {
    float: left;
    width: 100%;
  }
  .text-contents {
    font-size: 22px;
  }
}
