@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.section--gray {
  background: #f6f7f7;
  padding: 30px 0;
}
@media screen and (min-width: 520px) {
  .section--gray {
    padding: 50px 0;
  }
}
@media screen and (min-width: 760px) {
  .section--gray {
    padding: 30px 0 70px;
  }
}

.menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 760px) {
  .menu__list {
    flex-wrap: nowrap;
  }
}
.menu__item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  background: #fff;
  width: 30%;
  text-align: center;
  padding: 10px 6px;
  line-height: 1.5;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 2%;
  cursor: pointer;
}
@media screen and (min-width: 520px) {
  .menu__item {
    padding: 10px;
  }
}
@media screen and (min-width: 760px) {
  .menu__item {
    width: 190px;
    margin-right: 20px;
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .menu__item {
    padding: 18px;
  }
}
@media screen and (min-width: 760px) {
  .menu__item:last-of-type {
    margin-right: 0;
  }
}
.menu__item--black {
  color: #000;
  border: 1px solid #000;
}
.menu__item--black:hover {
  color: #fff;
  background: #000;
  transition: 0.3s;
}
.menu__item--active-black {
  background: #000;
  color: #fff;
}
.menu__item--pink {
  color: #c31c7d;
  border: 1px solid #c31c7d;
}
.menu__item--pink:hover {
  color: #fff;
  background: #c31c7d;
  transition: 0.3s;
}
.menu__item--active-pink {
  background: #c31c7d;
  color: #fff;
}
.menu__item--blue {
  color: #72bce6;
  border: 1px solid #72bce6;
}
.menu__item--blue:hover {
  color: #fff;
  background: #72bce6;
  transition: 0.3s;
}
.menu__item--active-blue {
  background: #72bce6;
  color: #fff;
}
.menu__item--yellow {
  color: #ffbb0b;
  border: 1px solid #ffbb0b;
}
.menu__item--yellow:hover {
  color: #fff;
  background: #ffbb0b;
  transition: 0.3s;
}
.menu__item--active-yellow {
  background: #ffbb0b;
  color: #fff;
}
.menu__item--green {
  color: #84b76c;
  border: 1px solid #84b76c;
}
.menu__item--green:hover {
  color: #fff;
  background: #84b76c;
  transition: 0.3s;
}
.menu__item--active-green {
  background: #84b76c;
  color: #fff;
}
.menu__item--red {
  color: #f00;
  border: 1px solid #f00;
}
.menu__item--red:hover {
  color: #fff;
  background: #f00;
  transition: 0.3s;
}
.menu__item--active-red {
  background: #f00;
  color: #fff;
}

.news {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}
.news__link {
  display: block;
  width: 100%;
  background: #fff;
  padding: 20px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .news__link {
    padding: 30px;
  }
}
.news__link::before {
  content: "";
  background-image: url(../img/news/arrow_red_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.news__link:hover::before {
  position: absolute;
  right: 10px;
}
.news__link--red {
  position: relative;
  transition: all 0.3s;
}
.news__link--red:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 0, 0, 0.2);
  z-index: 2;
  left: 0;
  top: 0;
}
.news__link--yellow {
  position: relative;
  transition: all 0.3s;
}
.news__link--yellow:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 11, 0.2);
  z-index: 2;
  left: 0;
  top: 0;
}
.news__list {
  margin-top: 20px;
}
@media screen and (min-width: 760px) {
  .news__list {
    margin-top: 40px;
  }
}
.news__item {
  display: none;
  margin-top: 10px;
}
.news__item--active {
  display: block;
}
@media screen and (min-width: 760px) {
  .news__item {
    margin-top: 20px;
  }
}
.news__item:first-of-type {
  margin-top: 0;
}
.news__time {
  display: inline-block;
  margin-right: 20px;
}
.news__tag {
  display: inline-block;
  padding: 6px 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .news__tag {
    padding: 10px 14px;
  }
}
.news__tag--red {
  background: #f00;
}
.news__tag--black {
  background: #000;
}
.news__tag--yellow {
  background: #ffbb0b;
}
.news__title {
  padding-top: 20px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .pager {
    margin-top: 40px;
  }
}
.pager__list {
  display: flex;
  justify-content: center;
}
.pager__item {
  height: 40px;
  width: 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.pager__item a {
  color: #000;
  font-weight: bold;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pager__item a:hover {
  background: #000;
  color: #fff;
}
.pager__item--active a {
  background: #000;
  color: #fff;
}
.pager__action {
  display: inline-block;
  font-weight: bold;
  position: relative;
  margin-left: 20px;
  width: 70px;
}
@media screen and (min-width: 760px) {
  .pager__action {
    margin-left: 50px;
  }
}
.pager__action::after {
  content: "";
  position: absolute;
  background-image: url(../img/module/arrow_black_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: 0.3s;
}
.pager__action:hover::after {
  right: -10px;
}