@charset "utf-8";
/* 一覧ページ */
.news_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.news_list_item {
  width: calc(50% - 20px / 2);
}
.news_list_item {
  display: block;
}
.news_img {
  width: 100%;
  aspect-ratio: 290 / 200;
  border-radius: 5px;
  overflow: hidden;
}
.news_img.has-border {
  border: #eeeeec 2px solid;
}
.news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__textGroup {
  flex: 1;
}
.news__date {
  margin: 14px 0 0;
  color: #50b6bb;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.news__title {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .news_list {
    flex-wrap: nowrap;
    gap: 0 25px;
  }
  .news_list_item {
    width: calc(25% - 40px / 3);
  }
  .news_btn_wrap {
    width: 110px;
    margin: 0;
  }
  .news_btn_txt {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .news_link {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px 0;
  }
  .news_img {
    width: auto;
    border-radius: 10px;
  }
  .news_img.has-border {
    border: #eeeeec 5px solid;
  }
  .news__title {
    font-size: clamp(14px, 1.56vw, 20px);
  }
  .news__date {
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .news_list {
    gap: 0 40px;
  }
  .news_list_item {
    width: calc(25% - 40px / 4);
  }
  .news_img img {
    transition: all .3s ease-out;
  }
  .news_list_item:hover .news_img img {
    transform: scale(1.1);
  }
  .news__title {
    margin: 5px 0 0;
    font-size: 20px;
  }
}
/* ページネーション */
.page_nav_wrap {
  margin: 45px 0 0 0;
}
.wp-pagenavi {
  text-align: center;
}
.pages {
  display: none;
}
.wp-pagenavi span.current,
.page_nav_wrap .wp-pagenavi a {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #50B6BB;
  width: 40px;
  height: 40px;
  border-color: #EEEEEC !important;
  border: solid #EEEEEC 3px;
  margin: 0 10px 0 0;
  padding: 0;
  font-weight: bold;
}
.wp-pagenavi span.current {
  background-color: #50B6BB;
  border-color: #50B6BB !important;
  border: solid #50B6BB 3px;
  color: #fff;
}
.page_nav_wrap .wp-pagenavi a {
  background-color: #fff;
  transition: 0.35s;
}
.previouspostslink::before {
  content: "<";
  position: relative;
}
.nextpostslink::before {
  content: ">";
  position: relative;
  left: 1px;
}
.wp-pagenavi a:hover {
  background-color: #fff;
  transition: 0.35s;
}
@media screen and (min-width: 1280px) {
  .news_list_wrap {
    padding: 100px 0 0;
  }
  .wp-pagenavi span.current,
  .page_nav_wrap .wp-pagenavi a {
    width: 60px;
    height: 60px;
  }
  .wp-pagenavi a:hover {
    background-color: #50B6BB;
    border-color: #50B6BB !important;
    border: solid #50B6BB 3px;
    color: #fff;
  }
  .previouspostslink::before {
    left: 0px;
  }
  .nextpostslink::before {
    left: 2px;
  }
}
/* 詳細ページ */
.news_body {
  padding: 0 36px;
}
.news_single {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}
.news_single_contents {
  padding: 50px 0 0;
}
.news_single_contents * {
  margin: 20px 0 0;
}
.news_single_date {
  font-size: 13px;
  font-weight: bold;
  color: #50B6BB;
}
.news_single_ttl {
  padding: 0 0 3px;
  border-bottom: 1px solid #BFBFBF;
  font-size: 20px;
  font-weight: 500;
}
.news_single_contents *:first-child {
  margin: 0;
}
.news_single_contents h2 {
  margin: 40px 0 0;
  padding: 0 0 0 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  border-left: 2px solid #50B6BB;
}
.news_single_contents h3 {
  margin: 30px 0 0;
  font-size: 16px;
  font-weight: 500;
}
.news_single_arw {
  background-color: #efefec;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: grid;
  place-items: center;
}
.page_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 0 0;
}
.arw_rtrn {
  color: #8d8d89;
  text-decoration: underline;
}
.news_single_arw span {
  color: #8d8d89;
  display: block;
}
.single_ttl_time {
  color: #8D8D89;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .news_single {
    padding: 60px 30px;
  }
  .news_single_ttl {
    font-size: clamp(20px, 2.8vw, 36px);
  }
  .news_single_contents h2 {
    font-size: clamp(18px, 2.34vw, 30px);
  }
  .news_single_contents h3 {
    font-size: clamp(16px, 2vw, 26px);
  }
}
@media only screen and (min-width: 1280px) {
  .news_body {
    width: 1060px;
    margin: auto;
    padding: 0;
  }
  .news_single {
    width: 1060px;
    margin: auto;
    padding: 100px 70px;
  }
  .news_single_contents {
    padding: 60px 0 0;
  }
  .news_single_contents * {
    margin: 30px 0 0;
  }
  .news_single_ttl {
    font-size: 36px;
  }
  .news_single_contents h2 {
    margin: 80px 0 0;
    padding: 0 0 0 20px;
    font-size: 30px;
    border-left: 4px solid #50B6BB;
  }
  .news_single_contents h3 {
    margin: 60px 0 0;
    font-size: 26px;
  }
  .page_nav {
    margin: 40px 0 0 0;
  }
  .news_single_arw {
    width: 60px;
    height: 60px;
  }
  .single_ttl_time {
    font-size: 30px;
  }
}
/* ボタン */
.news_back_btn {
	display: block;
	width: 210px;
  margin: 40px auto 0;
	padding: 9px 20px 9px 40px;
	background: #50B6BB url(../images/common/back_arrow_off.svg) left 10px center/14px 14px no-repeat;
	transition: all 0.3s ease-out;
	border: solid 2px #50B6BB;
	border-radius: 30px;
	font-weight: 500;
	font-size: 12px;
	color: #fff;
}
@media only screen and (min-width: 1280px) {
	.news_back_btn {
		width: 300px;
		height: 60px;
    margin: 61px auto 0;
		padding: 12px 20px 12px 55px;
		background: #50B6BB url(../images/common/back_arrow_off.svg) left 19px center/20px 20px no-repeat;
		font-size: 20px;
	}
	.news_back_btn:hover {
		background: #fff url(../images/common/back_arrow_on.svg) left 19px center/20px 20px no-repeat;
		color: #50B6BB;
	}
}