/* ベースグループ */
body {
  color: #222;
  font-family: sans-serif; /* ゴシック体 */
  line-height: 1.5;
}

strong {
  font-size: 1.5rem;
}

/* コンテンツエリア */
.content {
  max-width: 670px; /* コンテンツ幅は670pxだが、左右の余白を含めると700px */
  padding: 60px 15px;
  margin-right: auto; /* 中央寄せ */
  margin-left: auto; /* 中央寄せ */
  background-color: #efefef;
}
.content__main {
  flex: 1;
  margin-right: 3.25203%;
}

/* メディアクエリ適用時 */
@media screen and (max-width: 768px) {
  .content__main {
    margin-right: 0;
    margin-bottom: 60px;
  }
}
