/* 左右いっぱいに伸びた横線 */
.heading {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
}
.heading::before,
.heading::after {
  background-color: #e4e7ea; /* 横線の色 */
  border-radius: 5px; /* 横線の両端を丸く */
  content: "";
  flex-grow: 1; /* 横幅いっぱい */
  height: 5px; /* 横線の高さ */
}
.heading::before {
  margin-right: 15px; /* 文字との余白 */
}
.heading::after {
  margin-left: 15px; /* 文字との余白 */
}
/* レイアウトのためのcss */
h1 {
  color: #333;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 20px;
  padding-top: 20px;
}
h2 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  padding-top: 20px;
}
.container {
  margin-inline: auto;
  margin-top: 60px;
  width: 90%;
}
