/* 投稿内容に当てるCSS */

#post_content p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  /* margin-bottom: 200px; */
  border-bottom: black;
  border-bottom-width: 1px;
}

#post_content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3cqh;
  padding-left: 1rem;
  border-left: 5px solid var(--color-main-gold);
}

#post_content h2 {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
#post_content h2::after {
  content: "";
  width: 3rem;
  height: 5px;
  background-color: var(--color-main-gold);
  position: absolute;
  bottom: 0;
  left: 0;
}

#post_content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

#post_content h4 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 2.25rem;
}

#post_content table {
  margin-bottom: 2rem;
}

#post_content table,
#post_content table tr,
#post_content table tr td,
#post_content table tr th {
  border-color: #919191;
}

#post_content table tr td:first-child {
  background-color: #f2f2f2;
}

#post_content ul {
  padding-left: 2rem;
  list-style: disc;
}

#post_content ol {
  padding-left: 2rem;
  list-style: decimal;
}

#post_content a {
  text-decoration: underline;
}

@media only screen and (max-width: 640px) {
  #post_content h1 {
    font-size: 2rem;
  }

  #post_content h2 {
    font-size: 1.75rem;
  }

  #post_content h3 {
    font-size: 1.25rem;
  }

  #post_content h4 {
    font-size: 1rem;
  }

  #post_content p {
    font-size: 1rem;
  }
}
