/* news */
#news .filter-nav {
  width: 100%;
  margin-bottom: 10vw;
}

@media screen and (min-width: 768px) {
  #news .filter-nav {
    width: 526px;
    margin: 0 auto 65px;
  }
}

#news .filter-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #2D2D2D;
}

#news .filter-nav__item {
  font-size: 3vw;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #news .filter-nav__item {
    font-size: 14px;
  }
}

#news .filter-nav__item:nth-child(2) {
  border-left: 1px solid #2D2D2D;
  border-right: 1px solid #2D2D2D;
}

#news .filter-nav__item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #news .filter-nav__item a:hover {
    color: #fff;
    background-color: #2D2D2D;
  }
}

#news .filter-nav__item.is-active {
  color: #fff;
  background-color: #2D2D2D;
}

#news .filter-nav__item.is-active a {
  cursor: default;
}

#news .filter-nav__item.is-active a:hover {
  opacity: 1;
}

#news .news-list {
  max-width: 700px;
  margin: 0 auto 25.3vw;
}

@media screen and (min-width: 768px) {
  #news .news-list {
    margin-bottom: 150px;
  }
}

#news .news-list .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #D0D0D0;
  padding: 15px 0;
}

@media screen and (min-width: 768px) {
  #news .news-list .list__item {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#news .news-list .list__item + .list__item {
  margin-top: 15px;
}

#news .news-list .list__date {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

#news .news-list .list__label {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  background-color: #2D2D2D;
  padding: 5px 10px;
  margin-right: 15px;
  white-space: nowrap;
  min-width: calc(8em + 20px);
}

#news .news-list .list__ttl {
  width: 100%;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  #news .news-list .list__ttl {
    width: auto;
    margin-top: 4px;
  }
}

#news .news-list .list__ttl a:hover {
  text-decoration: underline;
}

#news .navigation {
  margin-top: -10vw;
}

@media screen and (min-width: 768px) {
  #news .navigation {
    margin-top: -50px;
    margin-bottom: 140px;
  }
}

/* news post */
#news .post__content {
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}

#news .post__img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

#news .post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8vw 0 5.3vw;
}

@media screen and (min-width: 768px) {
  #news .post__meta {
    margin: 60px 0 15px;
  }
}

#news .post__date {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  #news .post__date {
    font-size: 16px;
  }
}

#news .post__label {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  background-color: #2D2D2D;
  padding: 5px 20px;
  margin-left: 15px;
  white-space: nowrap;
}

#news .post__ttl {
  font-size: 5.3vw;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 6.6vw;
}

@media screen and (min-width: 768px) {
  #news .post__ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

#news .post__sns-wrap {
  margin-bottom: 8vw;
}

@media screen and (min-width: 768px) {
  #news .post__sns-wrap {
    margin-bottom: 25px;
  }
}

#news .post__link {
  margin-bottom: 21.3vw;
}

@media screen and (min-width: 768px) {
  #news .post__link {
    margin-bottom: 80px;
  }
}

/* post content */
.post__wrap {
  margin-bottom: 80px;
}

.post__wrap h1, .post__wrap h2, .post__wrap h3, .post__wrap h4, .post__wrap h5, .post__wrap h6 {
  color: inherit;
  font-size: 5.3vw;
  font-weight: bold;
  margin: 30px 0;
}

@media screen and (min-width: 768px) {
  .post__wrap h1, .post__wrap h2, .post__wrap h3, .post__wrap h4, .post__wrap h5, .post__wrap h6 {
    font-size: 20px;
  }
}

.post > * {
  margin-bottom: 16px;
}

.post img {
  width: auto;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.post img.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

.post img.alignleft {
  margin-right: auto;
}

.post img.alignright {
  margin-left: auto;
}
