@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright © SUN Y'S group

HTML CSS Selectors blog

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
一覧
--------------------------------------------------------------------------------- */
.list-wrap {
  padding-top: 190px;
  margin-bottom: 235px;
}
.list-wrap-ttl {
  padding-bottom: 50px;
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
.category-nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.category-nav a {
  display: block;
  margin: 0 18px;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: #b5b4b0;
  position: relative;
}
.category-nav a.current {
  font-size: 36px;
  text-decoration:line-through;
  color: #000;
  position: relative;
  top: 5px;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 85px;
}
.blog-list li {
  width: 25%;
}
.blog-list li:nth-of-type(4n+2) {
  transition-delay:500ms;
}
.blog-list li:nth-of-type(4n+3) {
  transition-delay:700ms;
}
.blog-list li:nth-of-type(4n) {
  transition-delay:900ms;
}
.blog-list a {
  display: block;
  width: 100%;
  padding-top: 100%;
}
.blog-list__img,
.blog-list__disc {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-list a:hover {
  opacity: 1;
}
.blog-list__img {
    opacity: 1;
    transform: rotateY(0deg);
    transition:
        opacity 100ms 150ms,
        transform 300ms 150ms;
}
.blog-list__disc {
    opacity: 0;
    transform: rotateY(90deg);
    transition:
        opacity 50ms 200ms,
        transform 300ms;
}

.blog-list a:hover .blog-list__img {
    opacity: 0;
    transform:rotateY(90deg);
    transition:
        opacity 50ms 200ms,
        transform 300ms;
}
.blog-list a:hover .blog-list__disc {
    opacity: 1;
    transform:rotateY(0deg);
    transition:
        opacity 100ms 150ms,
        transform 300ms 150ms;
}

.blog-list__disc {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 0 10%;
}
.blog-list__disc__logo {
  width: 85px;
  height: 82px;
  border-bottom: 1px solid #000;
  margin-bottom: 26px;
}
.blog-list__disc__logo.lucido {
  background: url("../img/common/logo_lucido.png") no-repeat center top;
  background-size: 73px auto;
}
.blog-list__disc__logo.bell {
  background: url("../img/common/logo_bell.png") no-repeat center top;
  background-size: 73px auto;
}

.blog-list__disc__ttl {
  width: 100%;
  font-size: 16px;
  text-align: center;
}

.wp-pagenavi .pages {
  display: none;
}

/*---------------------------------------------------------------------------------
詳細
--------------------------------------------------------------------------------- */
.detail-wrap {
  width: 720px;
  padding-top: 178px;
  margin: 0 auto 300px;
}

.post-date {
  padding-bottom: 15px;
  font-family: var(--font-btn);
  font-size: 12px;
  line-height: 1;
}
.post-date span {
  font-size: 22px;
}
.post-ttl {
  padding-bottom: 15px;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0;
}

.post {
  padding-bottom: 35px;
  margin-bottom: 70px;
  opacity: 2;
  position: relative;
}
.post::before {
  display: block;
  width: 1px;
  height: 0;
  background-color: #c8c4be;
  position: absolute;
  top: 0;
  left: 60px;
  content:"";
  z-index: -1;
}
.effect-on.post::before {
  height: 100%;
}
.post-category {
  width: 155px;
  height: 165px;
  margin: 0 auto;
}
.post-category.lucido {
  background: url("../img/common/logo_lucido.png") no-repeat center top;
  background-size: 100% auto;
}
.post-category.bell {
  background: url("../img/common/logo_bell.png") no-repeat center top;
  background-size: 100% auto;
}

.post div {
  padding: 25px 0 35px;
  background-color: #fff;
}
.post p {
  padding: 24px 0 1em 95px;
  font-size: 12px;
  line-height: 1.8;
}

.post-nav {
  width: 550px;
  height: 20px;
  margin: 0 auto;
  position: relative;
}
.post-nav span {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 0;
}
.post-nav .prev {
  padding: 0 22px 6px 0;
  left: 0;
}
.post-nav .next {
  padding: 0 0 6px 22px;
  right: 0;
}

.other-blog {
  padding-bottom: 300px;
}
.other-blog-ttl {
  padding-bottom: 55px;
  font-family: var(--font-en);
  font: 36px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.other-blog-link {
  width: 225px;
  margin: 0 auto;
}
.other-blog-link a {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
  font-family: var(--font-en);
  font: 14px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
.other-blog-link a::after {
  display: inline-block;
  width: 23px;
  height: 7px;
  background-image: url("../img/topics/icon_arrow.svg");
  margin-left: 7px;
  content:"";
}

