/* ----------------------------------------
  News
---------------------------------------- */
.news__cat-list {
  margin-bottom: 4vw;
  font-weight: 400;
}
@media screen and (max-width: 579px) {
  .news__cat-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.news__cat-list li {
  display: inline-block;
  margin: 0 1em 1em 0;
}
@media screen and (max-width: 579px) {
  .news__cat-list li {
    width: 49%;
    margin: 0 0 2%;
  }
}
.news__cat-list li a {
  min-width: 14em;
  padding: 0.25em 1em;
}
.news__cat-label {
  display: block;
  border: solid 1px #4DB6E8;
  border-radius: 3em;
  background: #4DB6E8;
  text-align: center;
  font-size: 0.7em;
  color: #fff;
}
.news__cat-label--all {
  border-color: #6B5D48;
  background: #6B5D48;
  color: #fff;
}
.news__cat-label--important {
  border-color: #ef8c62;
  background: #ef8c62;
  color: #fff;
}
.news__cat-label + .news__cat-label {
  margin-top: 0.5em;
}

.news-list__entries {
  margin-bottom: 40px;
  border-top: solid 1px #6B5D48;
}
.news-list__entry {
  display: flex;
  align-items: stretch;
  padding-top: 1em;
  border-bottom: solid 1px #6B5D48;
}
.news-list__entry dt {
  width: 7em;
  padding: 0.5em 1em 0.5em 0;
  border-right: solid 1px #6B5D48;
  text-align: center;
  font-weight: 300;
  transition: background-color 0.3s;
}
@media screen and (max-width: 579px) {
  .news-list__entry dt {
    width: 3.5em;
    padding: 0.5em 0.25em;
    line-height: 1.4;
    text-align: left;
  }
}
.news-list__entry dt time span {
  display: inline-block;
}
@media screen and (max-width: 579px) {
  .news-list__entry dt time span:first-child {
    font-size: 0.9em;
  }
}
.news-list__entry dd {
  position: relative;
  display: flex;
  width: calc(100% - 7em);
  padding: 0.5em 4em 0.75em 1.5em;
  font-weight: 300;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .news-list__entry dd {
    display: block;
  }
}
@media screen and (max-width: 579px) {
  .news-list__entry dd {
    width: calc(100% - 3.5em);
    padding: 0.5em 2em 0.5em 1em;
  }
}
.news-list__entry dd::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(50% - 0.6em);
  right: 1em;
  width: 1.2em;
  height: 1.2em;
  background: url("/resource/images/common/arrow__brown02d.svg") center center/contain no-repeat;
}
@media screen and (max-width: 579px) {
  .news-list__entry dd::after {
    right: 0.5em;
  }
}
@media screen and (min-width: 1280px) {
  .news-list__entry:hover dt, .news-list__entry:hover dd {
    background-color: rgba(107, 93, 72, 0.1);
  }
}
.news-list__category {
  width: 12em;
  padding: 0.2em 1em 0 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news-list__category {
    width: 100%;
    max-width: 12em;
    margin-bottom: 0.5em;
    padding: 0;
  }
}
.news-list__title {
  width: calc(100% - 12em);
}
@media screen and (max-width: 768px) {
  .news-list__title {
    width: 100%;
  }
}

/* ----------------------------------------
  Entry Title
---------------------------------------- */
.entry-title {
  padding: 2em 0;
  background: #6B5D48;
  color: #fff;
}
.entry-title__content-ttl span {
  position: relative;
  display: inline-block;
  padding: 0 0.75em;
  line-height: 1.2;
}
.entry-title__content-ttl span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-left: solid 1px #fff;
}
.entry-title__content-ttl span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-right: solid 1px #fff;
}
.entry-title__text {
  line-height: 1.6;
  font-size: 1.8em;
}
.entry-title__category {
  display: inline-block;
  margin-top: 1em;
}
.entry-title .news__cat-label {
  display: inline-block;
  margin-right: 1em;
  padding: 0 1em;
  border: none;
  background: #fff;
  font-weight: 500;
  color: #6B5D48;
}

/* ----------------------------------------
  News Detail
---------------------------------------- */
.news-detail {
  padding: 3em 0 7%;
}
.news-detail__date {
  margin-bottom: 2em;
  font-size: 0.8em;
}
.news-detail__body {
  margin: 3em auto;
}
.news-detail__body:first-child {
  margin-top: 0;
}
.news-detail__body:last-child {
  margin-bottom: 0;
}
.news-detail__body h2 {
  font-size: 1.4em;
  font-weight: 500;
  color: #4DB6E8;
}
.news-detail__body h2:not(:first-child) {
  margin-top: 2.5em;
}
.news-detail__body h2:not(:last-child) {
  margin-bottom: 1em;
}
.news-detail__body h3 {
  font-size: 1.2em;
  font-weight: 500;
  color: #6B5D48;
}
.news-detail__body h3:not(:first-child) {
  margin-top: 1.5em;
}
.news-detail__body h3:not(:last-child) {
  margin-bottom: 1em;
}
.news-detail__body h2 + h3 {
  margin-top: 0 !important;
}
.news-detail__body h4 {
  font-weight: 500;
  color: #6B5D48;
}
.news-detail__body h4:not(:first-child) {
  margin-top: 2em;
}
.news-detail__body h4:not(:last-child) {
  margin-bottom: 0.5em;
}
.news-detail__body p {
  line-height: 2;
}
.news-detail__body p:empty {
  min-height: 1.5em;
}
.news-detail__body ol {
  margin-left: 1.5em;
}
.news-detail__body ol li {
  list-style-type: decimal;
}
.news-detail__body a {
  color: #4DB6E8;
}
.news-detail__body a:hover {
  text-decoration: underline;
}
.news-detail__image {
  width: 100%;
  max-width: 980px;
  margin: 2em auto;
}
.news-detail__image:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=style_news.css.map */