@charset "UTF-8";
/*
Theme Name: Simple
Theme URI:
Description:
Version: 2.0
Author: nw
*/
/* ==========================================================================

	BLOG

========================================================================== */
/* --------------------------------------- 記事 --------------------------------------- */
/*--------------------------------
    記事ページ
--------------------------------*/
section .container article .post {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}
section .container article .post .postTitle {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  margin: 0 auto 1em;
}
@media screen and (max-width: 812px) {
  section .container article .post .postTitle {
    font-size: 2rem;
  }
}
section .container article .post .postInfo em {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 812px) {
  section .container article .post .postInfo em {
    font-size: 1.2rem;
  }
}
section .container article .post .postInfo span {
  display: block;
  font-size: 1.3rem;
}
@media screen and (max-width: 812px) {
  section .container article .post .postInfo span {
    font-size: 1.2rem;
  }
}
section .container article .post .postTag {
  margin: 10rem 0 0;
}
@media screen and (max-width: 812px) {
  section .container article .post .postTag {
    margin: 5rem 0 0;
  }
}
section .container article .post .postTag em {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 1.5em 0 0;
}
@media screen and (max-width: 812px) {
  section .container article .post .postTag em {
    font-size: 1.3rem;
  }
}
section .container article .post .postTag em:last-of-type {
  margin: 0;
}
section .container article .post .postTag em a::before {
  content: "#";
}
section .container article .post .postTag em a:link, section .container article .post .postTag em a:visited {
  color: #999;
}
@media (any-hover: hover) {
  section .container article .post .postTag em a:hover {
    color: var(--color-highlight);
  }
}
section .container article .post .postContents {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  word-break: break-all; /* 英語の時は消す */
  overflow-wrap: break-word;
  margin-top: 10rem;
}
@media screen and (max-width: 812px) {
  section .container article .post .postContents {
    font-size: 1.5rem;
    margin-top: 5rem;
  }
}
section .container article .post .postContents:after {
  content: "";
  display: block;
  clear: both;
}
section .container article .post .postContents a:link, section .container article .post .postContents a:visited {
  color: #000;
  text-decoration: underline;
}
@media (any-hover: hover) {
  section .container article .post .postContents a:hover {
    color: #999;
    text-decoration: none;
  }
}
section .container article .post .postContents img {
  display: block;
  max-width: 100%;
  height: auto;
}
section .container article .post .postContents p {
  margin: 0 auto 1.5em;
  /* clear: both; */ /* 回り込みを禁止する場合 */
}
section .container article .post .postContents p > img {
  margin: 0 auto 1.5em;
}
section .container article .post .postContents .wp-caption {
  margin: 0 auto 1.5em;
  max-width: 100%;
}
section .container article .post .postContents .wp-caption img {
  margin: 0 auto;
}
section .container article .post .postContents .wp-caption .wp-caption-text {
  margin: 0.8em auto 0;
  font-size: 90%;
  text-align: center;
}
section .container article .post .postContents .aligncenter {
  margin: 0 auto 1em;
}
section .container article .post .postContents .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
section .container article .post .postContents .alignright {
  float: right;
  margin: 0 0 1em 1em;
}
section .container article .post .postContents strong {
  font-weight: bold;
}
section .container article .post .postContents em {
  font-style: italic;
}
section .container article .post .postContents blockquote {
  font-style: italic;
  margin: 1.12em 40px;
  color: #666;
}
section .container article .post .postContents pre {
  white-space: normal;
}
section .container article .post .postContents ul {
  margin: 1.12em 0;
}
section .container article .post .postContents ul li {
  list-style-type: disc;
}
section .container article .post .postContents ol {
  margin: 1.12em 0;
}
section .container article .post .postContents ol li {
  list-style-type: decimal;
}
section .container article .post .postContents h1,
section .container article .post .postContents h2 {
  font-size: 2.4rem;
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents h3 {
  font-size: 2rem;
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents h4 {
  font-size: 1.8rem;
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents h5,
section .container article .post .postContents h6 {
  margin: 1.5em 0 0.75em;
  font-weight: bold;
  text-align: left;
}
section .container article .post .postContents iframe[src*=youtube] {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  min-height: 474px; /* ポストエリア幅843pxのとき画角16:9想定で */
}
section .container article .post .postContents *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 812px) {
  section .container article .post .postContents h1,
  section .container article .post .postContents h2 {
    font-size: 2rem;
  }
  section .container article .post .postContents h3 {
    font-size: 1.8rem;
  }
  section .container article .post .postContents h4 {
    font-size: 1.6rem;
  }
  section .container article .post .postContents iframe[src*=youtube] {
    min-height: 190px; /* ポストエリア幅337pxのとき画角16:9想定で */
  }
}

/*--------------------------------
    目次（TOC）
--------------------------------*/
#toc_container {
  font-weight: bold;
  padding: 40px;
  border: solid 1px #333;
  margin-bottom: 4em;
}
#toc_container .toc_title {
  font-size: 2rem;
  margin-bottom: 1em;
}
#toc_container .toc_list > li {
  margin-bottom: 1.5em;
  list-style-type: none;
}
#toc_container .toc_list > li:last-child {
  margin-bottom: 0;
}
#toc_container .toc_list > li > a {
  font-weight: bold;
}
#toc_container .toc_list > li > ul {
  margin-top: 1em;
  padding-left: 2em;
}
#toc_container .toc_list > li > ul > li {
  margin-bottom: 1.5em;
  list-style-type: none;
}
#toc_container .toc_list > li > ul > li:last-child {
  margin-bottom: 0;
}
#toc_container a:link, #toc_container a:visited {
  color: #333;
  text-decoration: none;
}
@media (any-hover: hover) {
  #toc_container a:hover {
    color: #999;
    text-decoration: none;
  }
}

@media screen and (max-width: 812px) {
  #toc_container {
    padding: 20px;
  }
  #toc_container .toc_title {
    font-size: 18px;
  }
  #toc_container .toc_list > li > ul {
    padding-left: 1em;
  }
}