@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright©Elme Tokyo.All Rights Reserved.

HTML CSS Selectors journal

$Revision: 1.0 $
--------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.wp-pagenavi .pages,
.wp-pagenavi .last {
  display: none;
}
.previouspostslink,
.nextpostslink {
  width: 20px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.previouspostslink::before {
  width: 6px;
  height: 6px;
  border-top: 1px solid #727171;
  border-right: 1px solid #727171;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  left: 3px;
  bottom: 0;
  margin: auto;
  content:"";
}
.nextpostslink::before {
  width: 6px;
  height: 6px;
  border-top: 1px solid #727171;
  border-right: 1px solid #727171;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 3px;
  bottom: 0;
  margin: auto;
  content:"";
}
/*---------------------------------------------------------------------------------
一覧
--------------------------------------------------------------------------------- */
.list {
  width: 1040px;
  padding: 186px 0 145px;
  margin: 0 auto;
}
.category-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin: 60px 0px 75px;
}
.category-nav li {
  display: block;
  margin: 0 30px;
}
.category-nav li a {
  display: block;
  padding-bottom: 8px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
  color: #727171;
  letter-spacing: 0.16em;
  position: relative;
}
.category-nav a.current::after {
  width: 100%;
  height: 1px;
  background-color: #727171;
  position: absolute;
  bottom: 0;
  left: 0;
  content:"";
}

.post-list {
  display: flex;
  flex-wrap: wrap;
}
.post-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 220px;
  padding: 0px 20px 55px;
}
.post-list li a {
  display: block;
}
.post-list li .ttl {
  display: block;
  padding: 25px 0 15px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
}
.post-list li .date {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #727171;
  letter-spacing: 0.16em;
}

/*SP ---------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .list {
    width: auto;
    padding: 110px 0 85px;
    margin: 0 4.2%;
  }
  .category-nav {
    padding-top: 40px;
    margin: 0 6% 40px;
  }
  .category-nav li {
    margin: 0 20px 10px;
  }
  .category-nav li a {
    display: inline-block;
    padding-bottom: 5px;
    margin: 0;
    font-size: 14px;
  }

  .post-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .post-list li {;
    width: 46%;
    padding: 0 0 36px;
  }
  .post-list li a {
    display: block;
  }
  .post-list li .ttl {
    display: block;
    font-size: 13px;
    padding: 16px 0 12px;
  }
  .post-list li .date {
    font-size: 12px;
  }
}


/*---------------------------------------------------------------------------------
詳細
--------------------------------------------------------------------------------- */
.detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1000px;
  padding: 186px 0 190px;
  margin: 0 auto;
}
.detail .sec-ttl {
  margin-bottom: 80px;
}
.detail article {
  width: 650px;
  color: #000;
}
.post-header {
  padding-bottom: 80px;
}
.post-ttl {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.post-date {
  font-family: 'Roboto Condensed', sans-serif;
  font: 13px;
  line-height: 1;
  color: #727171;
  letter-spacing: 0.16em;
}
.post-detail {
  padding-bottom: 110px;
  border-bottom: 1px solid #727171;
  margin-bottom: 30px;
}
.post-detail p {
  line-height: 2;
  padding-bottom: 2em;
}

aside {
  width: 190px;
}
aside nav {
  margin-bottom: 50px;
}
aside h3 {
  padding-bottom: 26px;
  font-family: 'Cormorant', serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}
aside nav:first-child h3 {
  display: none;
}
aside li {
  padding-bottom: 12px;
}
aside nav:first-child a {
  font-size: 14px;
}
aside li a {
  font-size: 13px;
  line-height: 1;
}


/*SP ---------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .detail {
    display: block;
    width: auto;
    padding: 110px 0 0;
    margin: 0;
  }
  .detail .sec-ttl {
    margin-bottom: 35px;
  }
  .detail article {
    width: auto;
    color: #000;
    margin: 0 4.2%;
  }
  .post-header {
    padding-bottom: 42px;
  }
  .post-ttl {
    padding-bottom: 15px;
    font-size: 14px;
    text-align: center;
  }
  .post-date {
    font: 12px;
    text-align: center;
  }
  .post-detail {
    padding-bottom: 45px;
    border-bottom: 1px solid #727171;
    margin-bottom: 20px;
  }
  .post-detail p {
    line-height: 2;
    padding-bottom: 2em;
  }

  aside {
    width: 100%;
    padding-top: 50px;
  }
  aside nav {
    margin-bottom: 50px;
  }
  aside h3 {
    padding-bottom: 26px;
    font-family: 'Cormorant', serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
  }
  aside .category ul {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
  }
  aside .category li {
    padding: 0px 20px;
  }
  aside li {
    padding-bottom: 12px;
  }
  aside nav:first-child a {
    font-size: 14px;
  }
  aside .archives {
    padding: 62px 0px 48px;
    background-color: #f1f1f1;
    margin-bottom: 0;
  }
  aside .archives h3 {
    text-align: center;
    letter-spacing: 0.16em;
  }
  aside .archives ul {
    width: 78%;
    margin: 0 auto;
  }aside .archives li {
    text-align: center;
  }
  aside li a {
    font-size: 13px;
    line-height: 1;
  }

}