div.news {
  width: 100%;
  padding: 5% 0;
}
@media screen and (min-width: 768px) {
  div.news {
    padding: 50px 0 0 0;
  }
}

div.news__head {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  div.news__head {
    width: 785px;
  }
}
div.news__head h2.news__title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  div.news__head h2.news__title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
div.news__head a.news__button {
  display: inline-block;
  line-height: 1;
  background: #005c7a;
  padding: 0.8em 2.4em 0.8em 1.2em;
  border-radius: 60px;
  position: absolute;
  right: 0;
  top: 50%;
  border: solid 1px #005c7a;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  div.news__head a.news__button {
    font-size: 15px;
    top: 55%;
  }
  div.news__head a.news__button:hover {
    transition: all 0.4s;
    background: #FFF;
    border: solid 1px #005c7a;
  }
  div.news__head a.news__button:hover span.news__button-text {
    color: #005c7a;
  }
  div.news__head a.news__button:hover span.news__button-arrow {
    background: #005c7a;
  }
  div.news__head a.news__button:hover span.news__button-arrow::before {
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
  }
}
div.news__head a.news__button span.news__button-text {
  color: #FFF;
}
div.news__head a.news__button span.news__button-arrow {
  display: block;
  width: 1em;
  height: 1em;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translate(0, -50%);
}
div.news__head a.news__button span.news__button-arrow::before {
  content: " ";
  display: block;
  width: 30%;
  height: 30%;
  border-top: solid 1px #005c7a;
  border-right: solid 1px #005c7a;
  position: absolute;
  left: 45%;
  top: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
}

div.news__body {
  background: #F4F4F4;
  padding: 3% 0 3% 0;
}
@media screen and (min-width: 768px) {
  div.news__body {
    padding: 10px 0 10px 0;
  }
}
div.news__body button.news__toggle {
  display: block;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  width: 90%;
  margin: 0 auto;
  padding: 0.6em 0 1em 0;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  position: relative;
}
div.news__body button.news__toggle::after, div.news__body button.news__toggle::before {
  content: " ";
  display: block;
  width: 1.1em;
  height: 1px;
  background: #666;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s;
}
div.news__body button.news__toggle::after {
  transform-origin: center center;
  transform: translate(0, -50%) rotate(90deg);
  transition: all 0.4s;
}
div.news__body button.news__toggle.active::after {
  transform: translate(0, -50%) rotate(180deg);
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  div.news__body button.news__toggle {
    width: 865px;
    padding: 0.6em 0 1em 0;
  }
  div.news__body button.news__toggle:hover::before {
    transform: translate(0, -50%) rotate(360deg);
    transition: all 0.4s;
  }
  div.news__body button.news__toggle:hover::after {
    transform: translate(0, -50%) rotate(-90deg);
    transition: all 0.4s;
  }
  div.news__body button.news__toggle.active:hover::before {
    transform: translate(0, -50%);
    transition: all 0.4s;
  }
  div.news__body button.news__toggle.active:hover::after {
    transform: translate(0, -50%) rotate(180deg);
    transition: all 0.4s;
  }
}
div.news__body ul.news__list {
  width: 90%;
  margin: 0 auto;
  display: none;
  padding: 3% 0 5% 0;
}
@media screen and (min-width: 768px) {
  div.news__body ul.news__list {
    width: 865px;
    padding: 20px 0 30px 0;
  }
}
div.news__body ul.news__list li.news__item {
  border-top: solid 1px #999;
}
div.news__body ul.news__list li.news__item:last-child {
  border-bottom: solid 1px #999;
}
div.news__body ul.news__list li.news__item a {
  display: block;
  padding: 5% 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #111;
}
@media screen and (min-width: 768px) {
  div.news__body ul.news__list li.news__item a {
    padding: 15px 0 15px 1.4em;
    transition: all 0.4s;
  }
  div.news__body ul.news__list li.news__item a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
div.news__body ul.news__list li.news__item a div.news__meta {
  width: 30%;
}
@media screen and (min-width: 768px) {
  div.news__body ul.news__list li.news__item a div.news__meta {
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
div.news__body ul.news__list li.news__item a div.news__meta span {
  display: block;
}
div.news__body ul.news__list li.news__item a div.news__meta span.news__date {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 0.4em;
  letter-spacing: 0.04em;
  color: #111;
  text-align: center;
}
@media screen and (min-width: 768px) {
  div.news__body ul.news__list li.news__item a div.news__meta span.news__date {
    font-size: 13px;
    margin-bottom: 0;
  }
}
div.news__body ul.news__list li.news__item a div.news__meta span.news__category {
  background: #FFF;
  text-align: center;
  border-radius: 50em;
  color: #111;
  padding: 0.48em 0 0.6em;
  font-size: 0.8em;
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  div.news__body ul.news__list li.news__item a div.news__meta span.news__category {
    width: 83px;
    font-size: 11px;
  }
}
div.news__body ul.news__list li.news__item a p {
  width: 65%;
  font-size: 1.2em;
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  div.news__body ul.news__list li.news__item a p {
    width: calc(100% - 250px);
    font-size: 1.3em;
  }
}
div.news__body ul.news__list {
  /*li news*/
}/*# sourceMappingURL=add.css.map */