@charset "UTF-8";
/* CSS Document */
/* =========================
  本文ベース
========================= */
.post-content {
  line-height: 1.8;
  font-size: 1rem;
  color: #313131;
}

/* 段落 */
.post-content p {
  margin-top: 1em;
}

.post-content p:first-child {
  margin-top: 0;
}

/* 改行（WPはbr使う） */
.post-content br {
  line-height: 2;
}

/* =========================
  見出し
========================= */
.post-content h1 {
  color: #D70039;
  position: relative;
  margin-top: 2.75em;
  font-size: 2rem;
  font-weight: bold;
}

.post-content h2 {
  color: #D70039;
  position: relative;
  margin-top: 2.5em;
  font-size: 1.75rem;
  font-weight: bold;
}

.post-content h3 {
  color: #D70039;
  position: relative;
  margin-top: 2em;
  font-size: 1.5rem;
  font-weight: bold;
}

.post-content h4 {
  color: #D70039;
  position: relative;
  margin-top: 1.5em;
  font-size: 1.25rem;
  font-weight: bold;
}

.post-content h5 {
  color: #D70039;
  position: relative;
  margin-top: 1.5em;
  font-size: 1.125rem;
  font-weight: bold;
}

.post-content h1::after, .post-content h2::after, .post-content h3::after, .post-content h4::after, .post-content h5::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D70039;
  margin-top: 8px;
}

/* =========================
  強調
========================= */
.post-content strong {
  font-weight: bold;
}

.post-content em {
  font-style: italic;
}

.post-content u {
  text-decoration: underline;
}

/* =========================
  リスト
========================= */
.post-content ul,
.post-content ol {
  margin-top: 1em;
  padding-left: 1.5em;
}

.post-content li {
  margin-top: 0.5em;
}

/* =========================
  引用
========================= */
.post-content blockquote {
  margin-top: 1.5em;
  padding: 1em;
  border-left: 4px solid #ccc;
  background: #f7f7f7;
  font-style: italic;
}

/* =========================
  画像
========================= */
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 1em;
}

/* 画像の位置 */
.post-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.post-content .alignleft {
  float: left;
  margin-right: 1em;
}

.post-content .alignright {
  float: right;
  margin-left: 1em;
}

/* float解除 */
.post-content::after {
  content: "";
  display: block;
  clear: both;
}

/* =========================
  ファイル（リンク）
========================= */
.post-content a {
  color: #D70039;
  text-decoration: underline;
}

.post-content a:hover {
  background-color: #ffe6ee;
}

/* =========================
  インデント（エディタで使う場合）
========================= */
.post-content .is-style-indent {
  padding-left: 1.5em;
}

/* =========================
  文字サイズ（WP標準クラス）
========================= */
.post-content .has-small-font-size {
  font-size: 0.875rem;
}

.post-content .has-medium-font-size {
  font-size: 1rem;
}

.post-content .has-large-font-size {
  font-size: 1.25rem;
}

.post-content .has-x-large-font-size {
  font-size: 1.5rem;
}

/* =========================
  リスト（ベース）
========================= */
.post-content ul,
.post-content ol {
  margin-top: 1em;
  padding-left: 1.5em;
}

.post-content li {
  margin-top: 0.5em;
}

/* ネストしたリスト */
.post-content li ul,
.post-content li ol {
  margin-top: 0.5em;
}

/* =========================
  ul（ドット）
========================= */
.post-content ul {
  list-style: disc;
}

.post-content ul ul {
  list-style: circle;
}

.post-content ul ul ul {
  list-style: square;
}

/* =========================
  ol（番号）
========================= */
.post-content ol {
  list-style: decimal;
}

.post-content ol ol {
  list-style: lower-alpha;
}

.post-content ol ol ol {
  list-style: lower-roman;
}

/* =========================
  liの中身の調整
========================= */
.post-content li > p {
  margin-top: 0.25em;
}

/* =========================
  マーカー位置調整（読みやすさ改善）
========================= */
.post-content ul,
.post-content ol {
  list-style-position: outside;
}/*# sourceMappingURL=post.css.map */