/*---------------------------
post
----------------------------*/
.post {
  text-align: left;
}
.post .inner {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.post .inner .main {
  width: 75%;
}
@media screen and (max-width: 640px) {
  .post .inner .main {
    /*sp*/
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
.post .inner .main .title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 1.6em;
}
.post .inner .main .date {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.post .inner .main .text {
  line-height: 1.8em;
  font-size: 1.2em;
}
.post .inner .main .bottom_nav {
  margin-top: 40px;
  padding: 20px 0px;
  border-top: 1px solid #ccc;
}
.post .inner .main .bottom_nav:after {
  content: "";
  display: block;
  clear: both;
}
.post .inner .main .bottom_nav .prev {
  width: 50%;
  float: left;
  text-align: left;
}
.post .inner .main .bottom_nav .next {
  width: 50%;
  float: right;
  text-align: right;
}
.post .inner .main .box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  position: relative;
}
.post .inner .main .box .img {
  width: 15%;
}
.post .inner .main .box .img img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}
.post .inner .main .box .txt {
  width: 80%;
}
.post .inner .main .box .txt span {
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
.post .inner .main .box .txt h2 {
  font-size: 1.4em;
  color: #0081BD;
  margin-bottom: 1.0em;
}
.post .inner .main .box a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.post .inner .main .pager {
  padding-top: 20px;
  text-align: center;
}
.post .inner .main .pager ul {
  list-style: none;
}
.post .inner .main .pager ul li {
  display: inline-block;
}
.post .inner .main .pager ul li a {
  border: 1px solid #ccc;
  padding: 8px 10px;
  display: block;
}
.post .inner .main .pager ul li a:hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.post .inner .main .pager ul li span.current {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 8px 10px;
  display: block;
}
.post .inner .side {
  width: 20%;
}
@media screen and (max-width: 640px) {
  .post .inner .side {
    /*sp*/
    width: 100%;
    float: none;
  }
}
.post .inner .side .box h2 {
  background: #0081BD;
  color: #fff;
  padding: 5px;
  margin-bottom: 20px;
  font-size: 0.8em;
}
.post .inner .side .box ul {
  list-style: none;
}
.post .inner .side .box ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}
.post .inner .side .box ul li span {
  font-size: 0.8em;
  padding: 0;
  font-weight: bold;
  display: block;
}
.post .inner .side .box ul li a {
  display: block;
  text-decoration: none;
}
.post.blog .inner .main {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.post.blog .inner .main .box {
  width: 31%;
  margin-right: 3.5%;
  border-bottom: none;
}
.post.blog .inner .main .box:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  .post.blog .inner .main .box {
    /*sp*/
    width: 100%;
    margin-right: 0;
  }
}
.post.blog .inner .main .box .img {
  width: 100%;
  margin-bottom: 1.0em;
}
.post.blog .inner .main .box .img img {
  width: 100%;
  height: 220px;
}
.post.blog .inner .main .box .txt {
  width: 100%;
}
.post.blog .inner .main .box .txt h2 {
  font-size: 1.6em;
  line-height: 1.2em;
}
.post.blog .inner .main .pager {
  width: 100%;
}
.post.blog .inner.content .main .title {
  color: #0081BD;
}
