@charset "UTF-8";
/* 基本設定 */
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* 初期設定 */
/* ----------------------------------------------------------------------
レイアウト
---------------------------------------------------------------------- */
#blog-area {
  margin-bottom: 30rem;
}
@media screen and (max-width: 520px) {
  #blog-area {
    margin-bottom: 20rem;
  }
}
#blog-area .inner {
  padding: 0 3% 20rem;
  border-bottom: 1px solid #313131;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  flex-direction: row-reverse;
  row-gap: 15rem;
}
@media screen and (max-width: 520px) {
  #blog-area .inner {
    padding: 0 3% 10rem;
  }
}
#blog-area .inner .blog-block {
  width: 70%;
}
@media screen and (max-width: 840px) {
  #blog-area .inner .blog-block {
    width: 100%;
  }
}
#blog-area .inner .sidebar {
  width: 25%;
  max-width: 24.7rem;
}
@media screen and (max-width: 840px) {
  #blog-area .inner .sidebar {
    width: 100%;
    max-width: initial;
  }
}

/* ----------------------------------------------------------------------
一覧
---------------------------------------------------------------------- */
.blog-block.archive {
  font-size: 1.7rem;
  line-height: 1.6470588235;
  letter-spacing: 0.09em;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .blog-block.archive {
    font-size: 1.5rem;
  }
}
.blog-block.archive .post-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  gap: 7.65em 3.7em;
}
@media screen and (max-width: 1024px) {
  .blog-block.archive .post-list {
    gap: 6em 2em;
  }
}
.blog-block.archive .post-list .post-item {
  width: calc((100% - 3.7em) / 2);
}
@media screen and (max-width: 1024px) {
  .blog-block.archive .post-list .post-item {
    width: calc((100% - 2em) / 2);
  }
}
@media screen and (max-width: 1024px) and (max-width: 520px) {
  .blog-block.archive .post-list .post-item {
    width: 100%;
  }
}
.blog-block.archive .post-list .post-item a {
  display: block;
}
.blog-block.archive .post-list .post-item a .thumbnail {
  width: 100%;
  aspect-ratio: 45/59;
  background-color: #e1e1e1;
}
.blog-block.archive .post-list .post-item a .thumbnail img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-block.archive .post-list .post-item a .ttl {
  width: 100%;
  min-height: 3.4em;
  margin: 1em 0 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-block.archive .post-list .post-item a .data {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  font-size: 76.5%;
}
.blog-block.archive .post-list .post-item a .data .date {
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid #313131;
}
.blog-block.archive .news-nav {
  margin-top: 2em;
  font-size: 106%;
}
.blog-block.archive .news-nav .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.blog-block.archive .news-nav .wp-pagenavi span {
  border: none;
  padding: 0;
  margin: 0;
}

/* ----------------------------------------------------------------------
シングルページ
---------------------------------------------------------------------- */
#sigle-ttl-box {
  padding-top: 20rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 520px) {
  #sigle-ttl-box {
    padding-top: 9rem;
    margin-bottom: 12rem;
  }
}
#sigle-ttl-box .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  font-size: 3rem;
  line-height: 1.3333333333;
  letter-spacing: 0.09em;
  font-weight: 400;
  row-gap: 2em;
}
@media screen and (max-width: 1024px) {
  #sigle-ttl-box .inner {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 520px) {
  #sigle-ttl-box .inner {
    font-size: 1.6rem;
  }
}
#sigle-ttl-box .inner .txt-box {
  max-width: 120rem;
  width: 79%;
  border-bottom: 1px solid #313131;
  padding: 2em 0;
}
@media screen and (max-width: 840px) {
  #sigle-ttl-box .inner .txt-box {
    width: 71%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #sigle-ttl-box .inner .txt-box {
    width: 100%;
  }
}
#sigle-ttl-box .inner .txt-box .data {
  font-size: 60%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 520px) {
  #sigle-ttl-box .inner .txt-box .data {
    margin-bottom: 1em;
  }
}
#sigle-ttl-box .inner .txt-box .data .date {
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px solid #313131;
}
#sigle-ttl-box .inner .thumbnail {
  width: 20%;
  aspect-ratio: 312/410;
  background-color: #e1e1e1;
}
@media screen and (max-width: 840px) {
  #sigle-ttl-box .inner .thumbnail {
    width: 25%;
  }
}
@media screen and (max-width: 840px) and (max-width: 520px) {
  #sigle-ttl-box .inner .thumbnail {
    width: 100%;
  }
}
#sigle-ttl-box .inner .thumbnail img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-block.single {
  font-size: 1.7rem;
  line-height: 2.8235294118;
  letter-spacing: 0.09em;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .blog-block.single {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 520px) {
  .blog-block.single {
    font-size: 1.2rem;
  }
}
.blog-block.single > *:first-child {
  margin-top: 0;
}
.blog-block.single h2, .blog-block.single h3, .blog-block.single h4, .blog-block.single h5 {
  font-weight: 800;
  margin-top: 2em;
  padding: 0.4em 0.8em;
  line-height: 1.45;
}
.blog-block.single h2 {
  background-color: #9B6661;
  color: #fff;
  font-size: 147%;
}
.blog-block.single h3 {
  color: #9B6661;
  border-bottom: 1px solid #9B6661;
  font-size: 147%;
}
.blog-block.single h4 {
  color: #9B6661;
  background-color: #D9D9D9;
  font-size: 118%;
}
.blog-block.single h5 {
  color: #9B6661;
  font-size: 118%;
}
.blog-block.single > p {
  margin-top: 2em;
}
.blog-block.single > figure {
  margin-top: 2em;
  padding: 0 1em;
}
.blog-block.single > figure img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-block.single .np-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  gap: 1em;
  margin-top: 6em;
}
.blog-block.single .np-link .pre-box a, .blog-block.single .np-link .next-box a {
  width: 1.4em;
  aspect-ratio: 2.2;
  display: block;
  background-image: url(../img/common/arrow.svg);
  filter: brightness(0) saturate(100%) invert(10%) sepia(52%) saturate(4%) hue-rotate(346deg) brightness(100%) contrast(80%);
}
.blog-block.single .np-link .pre-box a {
  transform: rotate(180deg);
}

/* ----------------------------------------------------------------------
サイドバー
---------------------------------------------------------------------- */
.sidebar {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.09em;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 520px) {
  .sidebar {
    font-size: 1.2rem;
  }
}
.sidebar .list-box {
  margin-bottom: 4em;
}
.sidebar .list-box > h4 {
  font-size: 195%;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #313131;
  margin-bottom: 1em;
}
.sidebar .list-box .side-list {
  padding: 0 2%;
}
.sidebar .list-box .side-list .side-item {
  margin-bottom: 1em;
}
.sidebar .list-box .side-list .side-item:last-child {
  margin-bottom: 0;
}
.sidebar .list-box .side-list .side-item a {
  padding: 0.3em 0;
  display: block;
}
.sidebar .list-box:last-child {
  margin-bottom: 0;
}