@charset "utf-8";
.pc-only {
  padding: 2rem;
  /* background-color: #FFF967;*/
  background-color: rgba(248, 248, 244, 0.952);
  width: 100%;
}
/*JSを使いfixedクラスが付与された際の設定*/
.fixed{
  position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
}

.pc-only .gnav-menu {
  width: 85%;
  margin: 0 auto;
}

#newspage {
  width:82%;
  justify-content: space-between;
  display: flex;
  padding: 3rem 0;
  margin: 0 auto;
}
#newspage_left {
  width:70%;
  margin: 0 auto;
}
#newspage_left h2 {
margin: 0 auto 3rem;
padding-bottom: 3rem;
border-bottom: solid 0.5px #dbdbdb;
text-align: center;
font-size : 3.2rem;
font-weight: 300;
letter-spacing: 0.5rem;
width:100%;
}
#newspage_left .newslist {
display: flex;
flex-wrap: wrap;
width: 100%;
gap: 3rem;
margin: 0 auto;
}
#newspage_left .newslist_img {
 width: calc((100% - 3rem*2)/3);
 position: relative;
}
.js-animation {
opacity: 0;
visibility: hidden;
transform: translateY(10rem);
transition: all 1s;
}
.js-animation.is-show {
opacity: 1;
visibility: visible;
transform: translateY(0px);
}
/* 2つ目の要素に200msのdelayをかける */
.js-animation:nth-of-type(1) {
transition-delay:200ms;
}
.js-animation:nth-of-type(2) {
transition-delay:400ms;
}
.js-animation:nth-of-type(3) {
  transition-delay:600ms;
}
.js-animation:nth-of-type(3n+1) {
  transition-delay:200ms;
}
.js-animation:nth-of-type(3n+2) {
  transition-delay:400ms;
}
.js-animation:nth-of-type(3n+3) {
  transition-delay:600ms;
}

.newslist_img .newslist_title {
position: absolute;/*絶対配置*/
color: white;/*文字は白に*/
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
padding: 2rem;
font-size: 2rem;
z-index: 10;
font-weight: 500;
line-height: 3rem;
}
#newspage_left .newslist_img img {
width:100%;
cursor: pointer;
transition-duration: 0.3s;
}
#newspage_left .newslist_img :hover .newslist_title {
opacity: 1;
width:100%;
height:100%;
}
#news_top .news_img img:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
}
.newslist_img .caption {
 background-color :white; 
 line-height: 1.5;
 margin-top: 0.7rem;
}
.newslist_img .caption p {
	font-size: 1.3rem;
	font-family: futura-pt-bold,sans-serif;
}
.newslist_img .caption h3 {
	font-size: 1.3rem;
	font-style: normal;
  font-weight: 500;
	font-family: futura-pt-bold,sans-serif;
	color:#191818;
	letter-spacing: 0.1rem;
	text-indent: -1rem;
}
#newspage {
    width:90%;
    justify-content: space-between;
    display: flex;
    padding: 3rem 0;
    margin: 1.5rem auto;
  }
#newspage_right {
  width: 20%;
  font-size: 1.4rem;
  font-weight: 300;
  margin-left: 2rem;
}
#newspage_right .newspage_right_box {
  position: sticky;
  top: 20rem;
  height: 17rem;
  border-bottom: 1px solid #0000001e;
}
#newspage_right h3 {
  background-color: #FFF967;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
#newspage_right li {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.newspage_right_box02 {
  display: none;
}
.next_button {
width:100%;
margin:4rem auto 0; 
text-align: center;
padding: 1rem;
}
.next_button a {
text-decoration: none;
}
.next_button:hover {
opacity: 0.5;
}
.sen {
margin: 5rem auto 0;
width: 76%;
border-width: 0.5px 0 0 0;
border-style: solid;
border-color: #0000005d;
}


@media screen and (max-width : 1282px ){
	body {
		font-size: 1.6rem;
	}
#newspage_left {
	width: 100%;
  margin: 0 auto;
}
#newspage_left .newlist {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
  margin: 0 auto;
  width: 100%;
}
#newspage_left .newslist_img {
	width: calc((100% - 4rem)/2);
	position: relative;
}
#newspage_left h2 {
	margin: 1rem auto 3rem;
	padding-bottom: 1rem;
	border-bottom: none;
	text-align: center;
	font-weight: 300;
	letter-spacing: 0.5rem;
  width:100%;
}
.newslist_img .caption {
  margin-top: 0;
 }
 .newslist_img .caption p {
	font-size: 2rem;
	font-family: futura-pt-bold,sans-serif;
}
.newslist_img .caption h3 {
	font-size: 2rem;
	font-style: normal;
  font-weight: 500;
	font-family: futura-pt-bold,sans-serif;
	color:#191818;
	letter-spacing: 0.1rem;
	text-indent: -1rem;
}
#newspage_right {
  display: none;
}
}
