/* 説明文のラッパー */
.description-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* 実際の文章ブロック */
.description {
  max-width: 700px;
  text-align: left;
  line-height: 1.8;
  font-size: 1.1em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .description-wrapper {
    padding: 20px 10px;
  }

  .description {
    font-size: 1em;
    line-height: 1.6;
  }
}