@charset "UTF-8";

.news__page {
  padding-top: 88px;
  padding-bottom: 80px;
}

.news__page__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

/*ページネーション*/
.news__page__pagination {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
}
@media screen and (min-width: 769px) {
	.news__page__pagination {
		max-width: 800px;
		margin: 0 auto;
	}
}

.news__page__pagination p {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 769px) {
	.news__page__pagination p {
		font-size: 20px;
	}
}

/*前へ戻るボタン*/
.news__page__pagination__button__green__prev {
  display: block;
  background-color: #008c38;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 769px) {
	.news__page__pagination__button__green__prev {
		width: 66px;
		height: 66px;
	}
}

.news__page__pagination__button__green__prev::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 45%;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (min-width: 769px) {
	.news__page__pagination__button__green__prev::after {
		width: 15px;
		height: 15px;
	}
}

/*次へ進むボタン*/
.news__page__pagination__button__green__next {
  display: block;
  background-color: #008c38;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 769px) {
	.news__page__pagination__button__green__next {
		width: 66px;
		height: 66px;
	}
}

.news__page__pagination__button__green__next::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 45%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
	.news__page__pagination__button__green__next::after {
		width: 15px;
		height: 15px;
	}
}

.news__content {
  margin-top: 50px;
	list-style: none;
}
.news__content__home {
  margin-top: 40px;
  margin-bottom: 40px;
}

.news__article {
  margin-top: 40px;
}
.news__article:first-child {
  margin-top: 0;
}

.news__link {
  display: block;
  padding: 0 20px;
  padding-top: 18px;
  padding-bottom: 17px;
  position: relative;
}
.news__link::before {
  position: absolute;
  content: "";
  border: 4px dashed #008c38;
  border-radius: 10px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.news__link::after {
  position: absolute;
  content: "";
  border: 4px solid #fff;
  border-radius: 10px;
  top: 1px;
  right: 1px;
  left: 1px;
  bottom: 1px;
  z-index: -1;
}

.news__info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  column-gap: 2.4vw;
  line-height: 1;
}

.news__time {
  font-weight: bold;
	color: #000;
}

.news__category {
  font-weight: bold;
	color: #000;
}

.news__body {
  display: block;
  color: #000;
  margin-top: 11px;
}

.news__link__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.news__link__text {
  margin-top: 11px;
}

@media screen and (min-width: 769px) {
  .inner__home {
    max-width: 860px;
  }
  .new__badge {
    width: 40px;
    height: 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .news__page {
		padding-top: 200px;
		padding-bottom: 20px;
	}
  .news__content__home {
    margin-top: 36px;
  }
	.news__link {
		max-width: 800px;
		padding: 14px 46px 14px;
		margin: 0 auto;
		line-height: 1;
  }
  .news__link::before {
    border: 7.9px dashed #008c38;
  }
  .news__link::after {
    border: 7.9px solid #fff;
  }
  .news__article {
    margin-top: 56px;
  }
  .news__info {
    column-gap: 20px;
    font-size: 14px;
  }
  .news__body {
    margin-top: 14px;
  }
  .news__body__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .news__body__text {
    line-height: 1.667;
  }
}