/* ダウンロード詳細 */

/* 投稿記事 */
.single_ttl {
/*   margin-bottom: 0.78rem; */
  margin-bottom: 2.78rem;
  font-size: 1.33rem;
  color: #000000;
  font-weight: 500;
}
.single_date {
  display: block;
  margin-bottom: 0.61rem;
  font-size: 0.89rem;
  font-weight: 400;
}
.single_cat_list {
  padding: unset;
  margin-top: unset;
  margin-inline: unset;
  margin-bottom: 0.89rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  justify-content: flex-start;
}
.single_cat_item {
  padding: 0.33rem 1.22rem;
  color: #ffffff;
  font-weight: 400;
  font-size: 0.78rem;
  background-color: #4cb2ce;
  display: inline-block;
  &.cat01 {
    background-color: #4cb2ce;
  }
  &.cat02 {
    background-color: #29bb83;
  }
  &.cat03 {
    background-color: #1bb39a;
  }
}
.single_img {
  margin: unset;
  /* text-align: center */
}

.single_img img {
  max-height: 600px;
  width: auto;
  border: solid 1px #4d5156;
}

img{
border: solid 1px #4d5156;
}

.single_content {
  margin-top: 2.67rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.67rem;
}
.single_content_wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 0.89rem;
}
.single_lead {
  font-size: 0.89rem;
  color: #000000;
  font-weight: 400;
}
.single_content_img {
  width: 60%;
  margin-right: auto;
  figcaption {
    display: block;
    margin-top: 0.44rem;
    font-weight: 400;
    font-size: 0.78rem;
  }
}
.single_ttl--h3 {
  padding-bottom: 1.2rem;
  border-bottom: 3px solid #005bac;
  .txt {
    display: block;
    font-weight: 700;
    font-size: 1.33rem;
  }
}
.single_ttl--h4 {
  padding-left: 1.2rem;
  border-left: 3px solid #005bac;
  .txt {
    font-weight: 700;
    font-size: 1.11rem;
  }
}
.single_ttl--h5 {
  .txt {
    font-weight: 700;
    font-size: 1.11rem;
  }
}

/* 目次 */
.index_ttl {
  // margin-bottom: 0.83rem;
  padding-bottom: 0.83rem;
  font-size: 1.11rem;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #dedede;
}
.index_list {
  display: flex;
  flex-direction: column;
  row-gap: 0.33rem;
  list-style: decimal;
}
.index_item {
  display: flex;
  flex-direction: column;
  row-gap: 0.33rem;
}
.index_item_list_link {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 0.4rem;
  color: #1658a0;
  font-weight: 700;
  &::before {
    display: block;
    content: "・";
    color: #1658a0;
    font-size: 0.89rem;
  }
}
.index_item_list_child_list {
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.33rem;
}
.index_item_list_child_list_item_link {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 0.4rem;
  color: #1658a0;
  &::before {
    display: block;
    content: "ー";
    color: #1658a0;
    font-size: 0.89rem;
  }
}

/* 前へ戻るボタン */
.back_btn {
  position: relative;
  border: 1px solid #005bac;
  padding: 0.44rem 1rem 0.44rem 2.33rem;
  width: unset;
  max-width: unset;
  .txt {
    display: grid;
    place-content: center;
    color: #005bac;
    font-weight: 500;
    font-size: 0.89rem;
  }
  &::before {
    position: absolute;
    top: 50%;
    left: 0.39rem;
    transform: translateY(-50%);
    display: block;
    content: "";
    background: url("https://46923556.fs1.hubspotusercontent-na1.net/hubfs/46923556/arrow_blue_03.svg") no-repeat center / contain;
    width: 1.33rem;
    height: 0.83rem;
  }
}