#markdown_section h1 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 4rem;
  font-weight: bold;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

#markdown_section h1::before,
#markdown_section h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}

#markdown_section h1::before {
  background-image: url('../../../assets/web/img/crowdfunding_page/title_left.png');
  top: 0;
  left: 0;
}

#markdown_section h1::after {
  background-image: url('../../../assets/web/img/crowdfunding_page/title_right.png');
  bottom: -1.5rem;
  right: 0;
}

#markdown_section h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
  margin-top: 4rem;
  color: var(--color-main-red);
  padding-left: 1.5rem;
  position: relative;
}

#markdown_section h2::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: var(--color-main-red);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}

#markdown_section h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 4rem;
  color: var(--color-main-red);
}

/* 画像の下のキャプションのみに使用される */
#markdown_section h6 {
  font-size: 0.875rem;
  text-align: center;
  margin: 0.5rem 0 2rem;
  font-style: italic;
}

#markdown_section img {
  width: 100%;
  display: block;
  margin: 2rem 0 0;
}

#markdown_section ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 2rem;
}

#markdown_section ol {
  padding-left: 1.5rem;
  list-style: decimal;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  #markdown_section h1 {
    padding-top: 1rem;
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
  }
}
