/* Scss Document */
.news-wrapper {
  padding: 3rem;
}
.news-list {
  margin: 0 auto;
  width: 950px;
}
@media only screen and (max-width: 640px) {
  .news-list {
    width: 100%;
  }
}
.news-list li {
  margin: 1.5em 0;
  padding-bottom: 1.5em;
  line-height: 1.3;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}
.news-list li a,
.news-list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .news-list li a,
.news-list li span {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-list li time {
  width: 10%;
}
@media only screen and (max-width: 640px) {
  .news-list li time {
    width: auto;
  }
}
.news-list li .cat {
  padding: 0.25em 0.5em;
  border: solid 1px #9a2b4a;
  width: 12%;
  color: #9a2b4a;
  text-align: center;
  font-size: 1.3rem;
}
@media only screen and (max-width: 640px) {
  .news-list li .cat {
    margin-left: 1em;
    width: auto;
  }
}
.news-title {
  width: 72%;
}
@media only screen and (max-width: 640px) {
  .news-title {
    margin-top: 0.5em;
    width: 100%;
  }
}
.news a .news-title {
  text-decoration: underline;
}

.news-detail-head {
  background: #f4f4f4;
}
.news-detail-head .inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.news-detail-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
.news-detail-info time {
  color: #9a2b4a;
  font-size: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .news-detail-info time {
    width: auto;
    font-size: 1.8rem;
  }
}
.news-detail-info .cat {
  margin-left: 2rem;
  padding: 0.25em 0.5em;
  border: solid 1px #9a2b4a;
  color: #9a2b4a;
  text-align: center;
  font-size: 1.5rem;
}
@media only screen and (max-width: 640px) {
  .news-detail-info .cat {
    margin-left: 1rem;
    width: auto;
    font-size: 1.2rem;
  }
}
.news-detail-title {
  margin-top: 0.5em;
  font-size: 3.2rem;
  line-height: 1.3;
}
@media only screen and (max-width: 640px) {
  .news-detail-title {
    font-size: 2.4rem;
  }
}
.news-detail-body {
  margin: 0 auto;
  width: 950px;
}
@media only screen and (max-width: 640px) {
  .news-detail-body {
    width: 100%;
  }
}