/* ============================================================
   #content .post .text — ブログ記事コンテンツスタイル
   f-high-class.jp テーマ用
   ============================================================ */

/* ============================================================
   見出し h1〜h6
   ============================================================ */

#content .post .text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #b8973a;
  background: #fff;
}

#content .post .text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 40px 0 20px;
  padding-left: 14px;
  border-left: 4px solid #b8973a;
  background: #fff;
}

#content .post .text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 32px 0 16px;
  padding-bottom: 6px;
  padding-left: 20px;
  border-bottom: 1px solid #ddd;
  border-left: none;
  background: #fff;
  position: relative;
}

#content .post .text h3::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 1.5em;
  color: #b8973a;
  font-size: 12px;
  line-height: 1;
}

#content .post .text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 28px 0 12px;
  background: #fff;
}

#content .post .text h5 {
  font-size: 15px;
  font-weight: 700;
  color: #555;
  line-height: 1.5;
  margin: 24px 0 10px;
  background: #fff;
}

#content .post .text h6 {
  font-size: 14px;
  font-weight: 700;
  color: #777;
  line-height: 1.5;
  margin: 20px 0 8px;
  background: #fff;
}

/* ============================================================
   段落・テキスト
   ============================================================ */

#content .post .text p {
  margin: 0 0 1.6em;
  line-height: 1.9;
}

#content .post .text a {
  color: #b8973a;
  text-decoration: underline;
}

#content .post .text a:hover {
  text-decoration: none;
}

#content .post .text strong,
#content .post .text b {
  font-weight: 700;
}

#content .post .text mark {
  background: linear-gradient(transparent 60%, #ffd97a 60%);
  color: inherit;
}

/* ============================================================
   リスト ul / ol
   ============================================================ */

#content .post .text ul,
#content .post .text ol {
  margin: 0 0 1.6em;
  padding-left: 0;
  list-style: none;
}

#content .post .text ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  line-height: 1.8;
}

#content .post .text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: #b8973a;
  border-radius: 50%;
}

#content .post .text ol {
  counter-reset: ol-counter;
}

#content .post .text ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 6px;
  line-height: 1.8;
  counter-increment: ol-counter;
}

#content .post .text ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #b8973a;
}

/* ネスト */
#content .post .text ul ul,
#content .post .text ol ol,
#content .post .text ul ol,
#content .post .text ol ul {
  margin: 6px 0 4px;
}

/* ============================================================
   テーブル
   ============================================================ */

#content .post .text table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.8em;
  font-size: 14px;
  line-height: 1.7;
}

#content .post .text table th {
  background: #2c2c2c;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid #444;
}

#content .post .text table td {
  padding: 10px 14px;
  border: 1px solid #ddd;
  vertical-align: top;
}

#content .post .text table tr:nth-child(even) td {
  background: #faf7f0;
}

/* ============================================================
   定義リスト dl
   ============================================================ */

#content .post .text dl {
  margin: 0 0 1.8em;
}

#content .post .text dt {
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}

#content .post .text dd {
  margin: 8px 0 0 16px;
  color: #444;
  line-height: 1.8;
}

/* ============================================================
   引用 blockquote
   ============================================================ */

#content .post .text blockquote {
  margin: 0 0 1.8em;
  padding: 16px 20px;
  background: #faf7f0;
  border-left: 4px solid #b8973a;
  color: #555;
}

#content .post .text blockquote p {
  margin: 0;
}

/* ============================================================
   水平線
   ============================================================ */

#content .post .text hr {
  border: none;
  border-top: 1px solid #e0d9cc;
  margin: 36px 0;
}

/* ============================================================
   画像
   ============================================================ */

#content .post .text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.4em;
}

#content .post .text figcaption {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

/* ============================================================
   補足ボックス
   ============================================================ */

#content .post .text .box {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 18px 20px;
  margin: 0 0 1.8em;
}

#content .post .text .box-gold {
  border-color: #b8973a;
  background: #faf7f0;
}

#content .post .text .box-warn {
  border-color: #e6a020;
  background: #fff9f0;
}

/* ============================================================
   ボタン
   ============================================================ */

#content .post .text .btn {
  display: inline-block;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}

#content .post .text .btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

#content .post .text .btn-gold {
  background: #b8973a;
  color: #fff !important;
  border: 2px solid #b8973a;
}

#content .post .text .btn-outline {
  background: transparent;
  color: #b8973a !important;
  border: 2px solid #b8973a;
}

#content .post .text .btn-dark {
  background: #2c2c2c;
  color: #fff !important;
  border: 2px solid #2c2c2c;
}

#content .post .text .btn-wrap {
  text-align: center;
  margin: 28px 0;
}

/* ============================================================
   スマートフォン対応（〜767px）
   ============================================================ */

@media screen and (max-width: 767px) {

  #content .post .text h1 { font-size: 22px; margin: 36px 0 18px; }
  #content .post .text h2 { font-size: 18px; margin: 30px 0 16px; }
  #content .post .text h3 { font-size: 16px; margin: 24px 0 12px; }
  #content .post .text h4 { font-size: 15px; }
  #content .post .text h5 { font-size: 14px; }
  #content .post .text h6 { font-size: 13px; }

  #content .post .text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #content .post .text .btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

}