/*--------------------------------------------------------------
# ページビジュアル
--------------------------------------------------------------*/
.page_visual {
  background: url(/assets/img/blog/page_visual.jpg) no-repeat center / cover;
}
/*--------------------------------------------------------------
# サイド
--------------------------------------------------------------*/
.page_content_wrap {
  padding-bottom: 11rem;
  @media (min-width:768px) {
    padding-bottom: 16rem;
    @media (min-width: 1200px) {
      background-image: url(/assets/img/common/side_flower_left.png),url(/assets/img/common/side_flower_right.png);
      background-position: top left, top right;
      background-repeat: repeat-Y;
      background-size: 6%, 7%;
    }
  }
}
/*--------------------------------------------------------------
# サイドバー
--------------------------------------------------------------*/
.blog_content .sidebar {
  list-style: none;
  margin-left: 0;
}
.blog_content .sidebar_item {
  .item_title {
    font-size: clamp( 1.4rem, calc( 1.2285714285714285rem + 0.4761904761904762vw ), 1.8rem );
    padding: 1em;
    background: var(--pale-blue);
    border-radius: 0.8rem;
  }
  .sidebar_date {
    color: var(--key-color);
    font-size: 1.2rem;
    font-weight: 700;
  }
  .text {
    font-size: 1.4rem;
    font-weight: 700;
  }
  & ul {
    list-style: none;
    margin-left: 0;
    & li {
      border-bottom: 0.1rem dashed #D9D9D9;
      & a {
        display: block;
        color: var(--fc-normal);
        &:hover {
          color: #008CFF;
        }
      }
    }
  }
  .to_archive {
    color: var(--fc-normal);
    &:hover {
      color: #008CFF;
    }
  }
}


/*--------------------------------------------------------------
# コンテンツ
--------------------------------------------------------------*/
.comming_soon {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-english);
  font-size: var(--fs-block-title);
  justify-content: center;
  align-items: center;
  min-height: 30rem;
}
@media (min-width:768px) {
  .blog_content {
    display: flex;
    justify-content: space-between;

    & article {
      width: 71%;
    }
    & aside {
      width: 21%;
    }
  }
}
.blog_content article {
  margin-bottom: 5.6rem;
}
.blog_date {
  color: var(--key-color);
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
}
.blog_content .blog_title {
  font-size: var(--fs-block-title);
  line-height: 1.5;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem,transparent 1.6rem);
  background-size: 1.6rem 0.2rem;
  background-position: left 0 top 98%;
  background-repeat: repeat-x;
}
.blog_content h2 {
  color: var(--key-color);
  font-size: clamp( 1.8rem, calc( 1.2rem + 1.6666666666666667vw ), 3.2rem );
  line-height: 1.5;
  margin: 0.5em 0;
}
.blog_content h3 {
  font-size: var(--fs-block-title);
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.blog_content p {
  margin-bottom: 1em;
}
.blog_content ul {
  list-style-type: disc;
  margin: 0 0 1em 1.5em;
}
.blog_content ol {
  list-style-type: decimal;
  margin: 0 0 1em 1.5em;
}
.blog_content img {
  margin: 1rem 0;
}
/*--------------------------------------------------------------
# アーカイブ
--------------------------------------------------------------*/
.blog_list_wrap {
  @media (min-width:768px) {
    width: 71%;
  }
}
.blog_content .blog_list {
  list-style: none;
  margin-left: 0;
  padding-top: 2.4rem;
  background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem,transparent 1.6rem);
  background-size: 1.6rem 0.2rem;
  background-position: left 0 top 0;
  background-repeat: repeat-x;

  & li {
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
    background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem,transparent 1.6rem);
    background-size: 1.6rem 0.2rem;
    background-position: left 0 top 98%;
    background-repeat: repeat-x;

    & a {
      color: inherit;
      padding-bottom: 0.5em;
      @media (min-width:768px) {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      &:hover {
        color: #008CFF;
      }
    }
    .img_wrap {
      border-radius: 1.6rem;
      @media (min-width:768px) {
        width: 36%;
      }
      & img {
        width: 100%;
        aspect-ratio: 260 / 179;
        margin: 0;
        object-fit: cover;
        object-position: center;
      }
    }
    .text_wrap {
      @media (min-width:768px) {
        width: 61%;
      }
    }
    .text {
      font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
      margin-bottom: 0;
    }
  }
}
/*--------------------------------------------------------------
# ページナビ
--------------------------------------------------------------*/
.wp-pagenavi {
	width: fit-content;
  margin: 5.6rem auto;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-flex;
  color: #FFF;
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0.2em;
  padding: 0.2em 0.5em;
  background: var(--key-color);
  border: 0.1rem solid var(--key-color);
  border-radius: 0.4rem;
}
.wp-pagenavi a:hover {
  color: var(--key-color);
	background: #FFF;
}
.wp-pagenavi span.current {
  color: var(--key-color);
	background: #FFF;
  border: none;
}