@charset "UTF-8";


.main-inner {
  margin: 0 auto;
  max-width: 1400px;
}
.cat-content, article.post, article.page {
  border: none;
  max-width: 1000px;
}
.post-header {
  border-bottom: none;
  padding: 0;
}
.post-meta-area {
  border-bottom: none;
}
.post-meta-area .post-meta {
  padding: 0;
}
.post-meta-area .post-meta .date {
  padding: 0;
}

/* ----------------------------------------一覧ページ---------------------------------------- */
.newslist .menu {
  position: relative;
  margin: 0 0 150px;
  padding: 0;
  z-index: 100;
}
.newslist .menuItem {
  width: 33.3%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid;
  font-weight: bold;
  font-size: 1.25rem;
  position: relative;
}
.newslist .menuItem a {
  display: block;
}
.newslist .menuItem i.fa.fa-arrow-down {
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 3rem;
  font-size: 1.4rem;
  transition: all .3s;
}
.newslist .menuItem:hover i.fa.fa-arrow-down {
  top: 50%;
}
.newslist .menuItem.open i.fa.fa-arrow-down {
  transform: rotate(180deg);
  top: calc(50% - .8rem);
}
.newslist .menuItem.open:hover i.fa.fa-arrow-down {
  top: calc(50% - 1.5rem);
}
.newslist .menuSub {
  display: none;
  background-color: #666;
  position: absolute;
  top: 72px;
  width: 100%;
  text-align: left;
  padding: 0;
  border: 2px solid;
  box-sizing: content-box;
}
.newslist .menuSub a {
  display: block;
  padding: 20px;
  transition: opacity .4s;
  background: #282828;
  color: #fff;
  text-align: center;
}
.newslist .menuSub a:hover {
  opacity: .5;
}



.newslist .post-loop-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.newslist .post-loop-wrap article {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 6rem;
}
.newslist .post-loop-wrap article:nth-of-type(4n) {
  margin-right: 0;
}

.newslist .post-loop-wrap .post-thumbnail img {
  border: 2px solid #282828;
  border-radius: 30px;
  margin-bottom: .8rem;
}
.newslist .post-loop-wrap .post-title {
  border-bottom: none;
  font-size: 1.125rem;
}
.newslist .post-loop-wrap .post-categories {
  padding: 2px 25px;
  margin: 6px 0;
  border: 1px solid;
  display: inline-block;
  font-size: 0.9rem;
}

@media screen and (max-width: 1000px) {
  .newslist .menu {
    margin: 0 0 3rem;
}
  .newslist .menuItem {
    margin: 0 auto;
    width: 88%;
}
.newslist .post-loop-wrap {
  justify-content: space-between;
}
.newslist .post-loop-wrap article {
  width: 48%;
  margin: 0;
}
}

@media screen and (max-width: 767px) {
  .newslist .menu {
    margin: 0 0 5rem;
    padding: 0 20px;
}
  .newslist .menuItem {
    width: 100%;
    font-size: 1rem;
  }
  
  .newslist .menuSub {
    top: 66px;
  }
  .newslist .post-loop-wrap article {
    width: 100%;
    margin: 0 auto;
}
.newslist .post-loop-wrap article:nth-of-type(4n) {
  margin: 0 auto;
}
}
/* ----------------------------------------投稿ページ---------------------------------------- */

.news article.post {
    margin: 0 auto;
    width: 90%;
}
.news .post-title {
  border-bottom: 1px solid;
  padding-bottom: 10px;
}
.news .post-content {
  padding: 50px 0;
}


.news .newsback.btn_wrap {
  margin: 100px 0;
  text-align: center;
}
.news .newsback.btn_wrap .btn {
  width: 250px;
}

@media screen and (max-width: 991px) {
.cat-content .post-header, article.page .post-header, article.post .post-header {
    padding: 56px 0;
}
}