/* Scss Document */
/* Scss Document */
.post-item {
  margin-bottom: 5em;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.post-item time {
  width: 200px;
  height: 200px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: -webkit-box;
  display: flex;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  /*color: #fff; */
  background: #eee;
  letter-spacing: 0.2em;
  font-size: 400;
}

.post-item time .year {
  font-size: 2rem;
}

.post-item time .date {
  font-size: 3rem;
  letter-spacing: 0.3em;
}

.post-item time .week {
  margin-top: 0.25em;
  font-size: 1.5rem;
}

.post-item .post-body {
  width: 900px;
  text-align: left;
}

.post-item .post-body .post-title {
  margin-bottom: 1em;
  font-size: 3rem;
}

.post-item .post-body p {
  margin: 2em auto;
}

.post-item.news time {
  color: #2DB200;
  background: #eee;
}

.post-item.event time {
  color: #FFF;
  background: #2DB200;
}

.post-item.event .post-body .post-title {
  color: #2DB200;
}

.post-item.information time,
.post-item.topics time {
  color: #2DB200;
  border: solid 1px #2DB200;
  background: #fff;
}

.post-item.information .post-body .post-title,
.post-item.topics .post-body .post-title {
  color: #2DB200;
}

.nav-below {
  margin: 2em 0;
}

.wp-pagenavi {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: -webkit-box;
  display: flex;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
}

.wp-pagenavi span,
.wp-pagenavi a {
  border: none !important;
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 6px;
  background: #eee;
  color: #231815;
  text-align: center;
  line-height: 36px;
}

.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background: #2DB200;
  color: #FFF;
}

.wp-pagenavi a:hover,
.wp-pagenavi a.current {
  background: #2DB200;
  color: #FFF;
}

.post_nav_list {
  margin-top: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post_nav_list li {
  margin: 0;
  width: 33.33333%;
  text-align: center;
}

.post_nav_list .prev {
  text-align: left;
}

.post_nav_list .index {
  text-align: center;
}

.post_nav_list .next {
  text-align: right;
}

.post_nav_list a {
  padding: 0.5em 1em;
  text-align: center;
  display: inline-block;
  color: #231815;
  background: #eee;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .post-item {
    margin-bottom: 5em;
    display: block;
  }

  .post-item time {
    margin-top: 0;
    padding: 1em;
    width: 100%;
    height: auto;
    line-height: 1.3;
  }

  .post-item .post-body {
    width: 100%;
  }

  .post-item .post-body .post-title {
    margin: 1em 0;
    font-size: calc((36/760)*100vw);
    font-weight: 400;
  }

  .post_nav_list {
    margin-top: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.2rem;
  }

  .post_nav_list li {
    margin: 0;
    width: 50%;
    text-align: center;
    color: #231815;
  }

  .post_nav_list .prev {
    margin-right: -25%;
    text-align: left;
  }

  .post_nav_list .index {
    text-align: center;
  }

  .post_nav_list .next {
    margin-left: -25%;
    text-align: right;
  }
}