@charset "UTF-8";
@import url(entry.css);
/********** 投稿共通 **********/
.postBloc {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 80px;
  padding-bottom: 80px;
  border-bottom: 3px double #ccc;
  position: relative;
  display: block;
  clear: both; }

/********** 投稿一覧 **********/
/********** 新着情報一覧 **********/
.cardList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px; }
  @media screen and (max-width: 640px) {
    .cardList {
      margin-bottom: 40px; } }
  .cardList li {
    margin-bottom: 40px;
    flex: 0 0 calc((100% - 20px * 2) / 3); }
    @media screen and (max-width: 800px) {
      .cardList li {
        flex: 0 0 calc((100% - 20px * 1) / 2); } }
    .cardList li a {
      text-decoration: none;
      display: block; }
    .cardList li img {
      width: 100%;
      height: auto;
      margin-bottom: 10px; }

/*** ページ送り（投稿一覧） ***/
.wp-pagenavi {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0;
  clear: both;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; }
  .wp-pagenavi a,
  .wp-pagenavi span {
    margin: 0 10px 0 0;
    padding: 7px 17px !important;
    border-radius: 50px;
    font-size: 0.85rem; }
    @media screen and (max-width: 800px) {
      .wp-pagenavi a,
      .wp-pagenavi span {
        padding: 0 12px; } }
  .wp-pagenavi span {
    border: 1px solid #000; }
    .wp-pagenavi span.pages {
      border: 1px solid #000;
      background: #000;
      color: #fff; }
    .wp-pagenavi span.extend {
      border: none;
      color: #000; }
    .wp-pagenavi span.current {
      font-weight: bold;
      color: #000;
      background: #fff; }
  .wp-pagenavi a,
  .wp-pagenavi a:link {
    border: 1px solid #000;
    color: #fff;
    background: #000;
    text-decoration: none; }
  .wp-pagenavi a:hover {
    border: 1px solid #000;
    color: #000;
    background: #fff; }
  .wp-pagenavi a:active {
    border: 1px solid #000;
    color: #fff; }
  .wp-pagenavi a.last {
    margin-right: 0; }

/********** 投稿詳細 **********/
#postDet .postBox {
  width: 100%;
  margin-bottom: 100px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ccc; }

.postTtl {
  width: 100%;
  margin: 0 auto 40px;
  padding-bottom: 20px;
  border-bottom: 3px double #ccc; }

.postTtl h2 {
  font-size: 1.4rem;
  line-height: 160%;
  font-weight: normal;
  display: block; }
  @media screen and (max-width: 1050px) {
    .postTtl h2 {
      font-size: 1.2rem; } }

.postTtl h2 a {
  text-decoration: none; }

.postTtl h2 a:hover {
  color: #999; }

.postMeta {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  justify-content: flex-start;
  align-items: baseline; }

.postMeta .date {
  margin-right: 20px;
  font-size: 1rem; }

.postMeta a {
  padding: 5px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.75rem; }
  @media screen and (max-width: 1050px) {
    .postMeta a {
      padding: 5px 15px;
      font-size: 0.65rem; } }

.postMeta a:hover {
  background: #999; }

/*** ページ送り（投稿シングル） ***/
.flip {
  width: 100%;
  margin: 0 auto;
  line-height: 100% !important;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .flip a {
    text-decoration: none; }
  .flipLeft {
    width: 50%; }
  .flipRight {
    width: 50%;
    text-align: right; }
