@charset "UTF-8";


/*-------------------------------------------------
.post-container
------------------------------------------------*/
.post-container {
  margin: 30px 0 0;
}



/*-------------------------------------------------
.post
------------------------------------------------*/
.post-container article + article {
  margin: 34px 0 0;
  padding: 34px 0 0;
  border-top: 1px solid #ccc;
}

.post-container article a .post-desc {
  margin: 16px 0 0;
}

.post-container article a .post-thumb-wrap {
  position: relative;
}
.post-container article a .post-thumb-wrap .post-thumb {
  overflow: hidden;
}
.post-container article a .post-thumb-wrap .post-thumb img {
  width: 100%;
  transition: transform .5s;
}
.post-container article a:hover .post-thumb-wrap .post-thumb img {
  transform: scale(1.2);
}

.post-container article a .post-thumb-wrap .post-cat {
  position: absolute;
  z-index: 2;
  padding: 4px 8px 6px;
  border-bottom-right-radius: 6px;
  background-color: #ef5289;
}

.post-container article a .post-thumb-wrap .post-cat span {
  color: #fff;
  font-size: 12px;
}

.post-container article a .post-desc .post-ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.post-container article a .post-desc .post-release {
  margin: 6px 0 0;
  font-size: 13px;
  color: #9e9e9e;
  line-height: 1.8;
  text-align: right;
}
.post-container article a .post-desc .post-release i {
  margin: 0 4px 0 0;
}







/*///////////////////////////////////////////////////////////////////////

tb 520〜959px

///////////////////////////////////////////////////////////////////////*/
@media (min-width: 520px) {

/*-------------------------------------------------
.post-container (tb)
------------------------------------------------*/
.post-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/*-------------------------------------------------
.post (tb)
------------------------------------------------*/
.post-container article + article {
  margin: 0;
  padding: 0;
  border-top: none;
}
.post-container article {
  width: 47%;
}
.post-container article + article:nth-child(n+3) {
  margin: 6% 0 0;
}


}




