@charset "UTF-8";
.entry-content h1 b,
.entry-content h2 b,
.entry-content h3 b,
.entry-content h4 b,
.entry-content h5 b,
.entry-content h6 b,
.entry-content h1 strong,
.entry-content h2 strong,
.entry-content h3 strong,
.entry-content h4 strong,
.entry-content h5 strong,
.entry-content h6 strong {
  font-size: 500;
  font-weight: inherit;
}

.entry-content b,
.entry-content strong {
  font-weight: 500;
}

/* ---------------------------------
 * 記事コンテンツ共通（reset.css 想定）
 * --------------------------------- */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  padding-top: 16rem;
  padding-bottom: 10rem;
}
.entry-content h2:first-child {
  margin-top: 0 !important;
}
.entry-content h1:first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .entry-content {
    padding-top: 6rem;
  }
}

/* 段落 */
.entry-content p {
  margin: 0 0 1em;
  line-height: 1.75;
}

/* 強調・インライン要素 */
.entry-content strong {
  font-weight: 700;
}

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

.entry-content mark {
  background: #fff9c4;
}

.entry-content sup,
.entry-content sub {
  font-size: 0.75em;
  line-height: 1;
}

/* 見出し */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-weight: 700;
  line-height: 1.4;
  margin: 2.2em 0 1em;
}

/* レベル別デザイン */
.entry-content h1 {
  font-size: 2em;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.6em;
}

.entry-content h2 {
  font-size: 1.6em;
  padding-left: 1rem;
  border-left: 1rem solid #0066cc;
}

.entry-content h3 {
  font-size: 1.3em;
  position: relative;
}

.entry-content h4 {
  font-size: 1.15em;
}

.entry-content h5,
.entry-content h6 {
  font-size: 1em;
}

/* リスト（resetで消えている前提） */
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin: 0.25em 0;
  line-height: 1.7;
}

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

/* 定義リスト */
.entry-content dl {
  margin: 0 0 1.6em;
}

.entry-content dt {
  font-weight: 700;
  margin-top: 0.8em;
}

.entry-content dd {
  margin: 0.2em 0 0.8em 1.2em;
}

/* 引用 */
.entry-content blockquote {
  margin: 0 0 1.8em;
  padding: 1em 1.2em;
  border-left: 4px solid #ccc;
  background: #f9f9f9;
  color: #555;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

/* 画像・figure */
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.entry-content figure {
  margin: 0 0 1.6em;
}

.entry-content figcaption {
  margin-top: 0.4em;
  font-size: 0.85em;
  color: #777;
  text-align: center;
}

/* WP標準 align クラス */
.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.entry-content .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.entry-content .alignright {
  float: right;
  margin: 0 0 1em 1em;
}

/* キャプション */
.entry-content .wp-caption {
  margin: 0 0 1.6em;
  text-align: center;
}

.entry-content .wp-caption img {
  margin: 0;
}

.entry-content .wp-caption-text {
  font-size: 0.85em;
  color: #777;
  margin-top: 0.4em;
}

/* テーブル（reset で border 等が消えてる想定） */
.entry-content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 1.8em;
  width: 100%;
}

.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 0.6em 0.8em;
  vertical-align: top;
  line-height: 1.7;
}

.entry-content th {
  background: #f5f5f5;
  font-weight: 700;
}

/* コード・pre */
.entry-content code {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.9em;
  padding: 0.15em 0.35em;
  background: #f5f5f5;
  border-radius: 3px;
}

.entry-content pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.9em;
  padding: 1em;
  margin: 0 0 1.8em;
  background: #222;
  color: #f8f8f2;
  overflow-x: auto;
  border-radius: 4px;
}

.entry-content pre code {
  padding: 0;
  background: none;
  color: inherit;
}

/* リンク */
.entry-content a {
  color: #0066cc;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  text-decoration-thickness: 2px;
}

/* 水平線 */
.entry-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.4em 0;
}

/* クリア（float画像の後ろで崩れ防止） */
.entry-content::after {
  content: "";
  display: block;
  clear: both;
}

/* ---------------------------
 * リスト基本
 * --------------------------- */
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.6em;
}
@media screen and (max-width: 768px) {
  .entry-content ul,
.entry-content ol {
    padding-left: 0;
  }
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin: 0.25em 0;
  line-height: 1.7;
}

/* ---------------------------
 * ネストしたリスト（ul / ol）
 * --------------------------- */
.entry-content li ul,
.entry-content li ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1.4em;
}

/* 第2階層は "circle" / "lower-alpha" */
.entry-content ul ul {
  list-style: circle;
}

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

/* 第3階層は "square" / "lower-roman" */
.entry-content ul ul ul {
  list-style: square;
}

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

/* リスト内の見出し（h3/h4など）が潰れないように補正 */
.entry-content li h3,
.entry-content li h4,
.entry-content li h5,
.entry-content li h6 {
  margin-top: 1.2em;
}

.single-wrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.single-wrap .single-img {
  text-align: center;
  max-width: 800px;
}
.single-wrap .single-title h1 {
  border: none;
  padding-left: 0;
  margin-bottom: 0;
}
.single-wrap .single-cat {
  background-color: #0066cc;
  color: #fff;
  font-weight: 500;
  height: 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: flex;
  align-items: center;
}
/*# sourceMappingURL=single.css.map */