@charset "UTF-8";
html body main.single_main {
  max-width: 1200px;
  margin: auto;
}
html body main.single_main .single_content_wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
html body main.single_main .single_content_wrapper .single_article_wrapper {
  width: 70%;
}
html body main.single_main .single_content_wrapper .single_article_wrapper h1 {
  padding: 0.5em;
  /*文字周りの余白*/
  color: #494949;
  /*文字色*/
  background: #fffaf4;
  /*背景色*/
  border-left: solid 5px #ffaf58;
  /*左線（実線 太さ 色）*/
}
html body main.single_main .single_content_wrapper .single_article_wrapper h2 {
  background-color: #fffaf4;
  padding: 10px 25px;
}
html body main.single_main .single_content_wrapper .single_article_wrapper h3 {
  padding-left: 27px;
  position: relative;
  color: white;
  background-color: #ffaf58;
  border: solid 1px #dddddd;
}
html body main.single_main .single_content_wrapper .single_article_wrapper h3::before {
  content: "";
  width: 6px;
  height: 60%;
  background-color: white;
  border-radius: 50px;
  position: absolute;
  left: 10px;
  top: 20%;
}
html body main.single_main .single_content_wrapper .single_article_wrapper h4 {
  border: none;
  border-bottom: 4px double #ffaf58;
}
html body main.single_main .single_content_wrapper .single_article_wrapper h4::before {
  content: "●";
  margin-right: 10px;
  color: #ffaf58;
}
html body main.single_main .single_content_wrapper .single_article_wrapper table {
  border: solid 1px white;
}
html body main.single_main .single_content_wrapper .single_article_wrapper table tr {
  border: solid 1px white;
}
html body main.single_main .single_content_wrapper .single_article_wrapper table tr td {
  border: solid 1px white;
}
html body main.single_main .single_content_wrapper .single_article_wrapper table tr td:nth-of-type(1) {
  background-color: #ffaf58;
  color: white;
}
html body main.single_main .single_content_wrapper #sidebar {
  width: 25%;
}
html body main.single_main .single_content_wrapper #sidebar h3 {
  text-align: left;
  color: white;
  background-color: #ffaf58;
}
html body main.single_main .single_content_wrapper #sidebar ul li {
  padding-left: 25px;
  position: relative;
}
html body main.single_main .single_content_wrapper #sidebar ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #ffaf58;
  border-right: 2px solid #ffaf58;
  transform: rotate(45deg);
  transform-origin: center center;
  top: calc(50% - 0.35rem);
}

@media screen and (max-width: 1024px) {
  html body main.single_main .single_content_wrapper .single_article_wrapper {
    width: 100%;
    padding: 5% 2%;
  }
  html body main.single_main .single_content_wrapper #sidebar {
    display: none;
  }
  html body main.single_main .single_content_wrapper table {
    white-space: nowrap;
    overflow: scroll;
  }
}/*# sourceMappingURL=single.css.map */