@charset "UTF-8";
/* CSS Document */

.Entry__content{
	margin: 5rem 0;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px){
			.Entry__content{
			margin: 4rem 0;
			}
	}
	@media only screen and (max-width: 559px){
		  .Entry__content{
			margin: 3rem 0;
			}
	}
.Entry__content p.Text{
	margin: 0 0 1.5em 0;
	}
.Entry__content .Button {
  display: inline-block;
  min-width: 25rem;
  padding-right: 1rem;
}
.Entry__content a.Button__inner {
  display: block;
  width: 100%;
  padding: 1rem 2.5rem;
  text-decoration: none;
}


#NewsPage .PageNavigation .Button,
#TopicsPage .PageNavigation .Button{
min-width:46rem;
}
	@media only screen and (min-width: 560px) and (max-width: 959px){
			#NewsPage .PageNavigation .Button,
			#TopicsPage .PageNavigation .Button{
			width:100%;
			max-width:46rem;
			min-width:auto;
			}
	}
	@media only screen and (max-width: 559px){
		  #NewsPage .PageNavigation .Button,
			#TopicsPage .PageNavigation .Button{
			width:100%;
			min-width:auto;
			}
	}


		
/* ===== NewsArea ===== */	

#NewsPage .NewsList {
	width:100%;
	margin: 8rem auto 0 auto;
	list-style-type: none;
	font-weight: normal;
	line-height: 2rem;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	 #NewsPage .NewsList {
		margin-top: 6rem;
	  }
	}
	@media only screen and (max-width: 559px) {
	  #NewsPage .NewsList {
		margin-top: 2rem;
	  }
	} 
#NewsPage .NewsList__item{

  display: flex;
  flex-direction: row;
  padding: 2.5rem 0;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: var(--gray-medium);
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	 #NewsPage .NewsList__item {
		padding: 2rem 0;
	  }
	}
	@media only screen and (max-width: 559px) {
	  #NewsPage .NewsList__item {
		padding: 1rem 0;
	  }
	} 
#NewsPage .NewsListItem__date {
  font-size: 1.2rem;
   line-height: 2.4rem;
  white-space: nowrap;
  margin: 0 2rem 0 0;
  padding-top:0.3rem;
  font-weight: normal;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	 #NewsPage .NewsListItem__date {
		line-height: 2rem;
		margin-right: 1rem;
		padding-top:0.4rem;
	  }
	}
	@media only screen and (max-width: 559px) {
	  #NewsPage .NewsListItem__date {
		line-height: 2rem;
		margin-right: 1rem;
		padding-top:0;
	  }
	} 
#NewsPage .NewsListItem__text {
font-size: 1.8rem;
line-height: 2.4rem;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	 #NewsPage .NewsListItem__text {
		font-size: 1.6rem;
		line-height: 2rem;
	  }
	}
	@media only screen and (max-width: 559px) {
	  #NewsPage .NewsListItem__text {
		font-size: 1.3rem;
		line-height: 2rem;
	  }
	} 
#NewsPage .NewsList__item a{
	display:block;
	width: 100%;
	height: auto;
	}
	#NewsPage .NewsList__item a:link{
	color:#333;
	}
	#NewsPage .NewsList__item a:visited{
	color:#666;
	}
	#NewsPage .NewsList__item a:hover{
	  color: #00a8a9;
	}

#NewsPage .NewsList__item .Link {
   padding-left: 2rem;
  /* font-size: 1.8rem;*/
}
@media only screen and (max-width: 559px) {
	 #NewsPage .NewsList__item .Link {
	   padding-left: 1.5rem;
	}
	} 
#NewsPage .NewsList__item .Link::before {
 content: "";
	display: inline-block;
	position: absolute;
	top: 1rem;
	left: 0;
	right: auto;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid #00a8a9;
	border-right: 2px solid #00a8a9;
	transform: rotate(45deg);
	}
	
	@media only screen and (max-width: 559px) {
	 #NewsPage .NewsList__item .Link::before {
	 	top: 0.6rem;
		width: 0.6rem;
		height: 0.6rem;
		border-top: 1px solid #00a8a9;
		border-right: 1px solid #00a8a9;
	  }
	} 
#NewsPage .NewsList__item .Button{
	margin: 1rem 0 0 auto;
	display: inline-block;
	width:auto;
}



/* ===== TopicsArea ===== */

#TopicsPage .TopicsArea__card{
margin: 4rem 0 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	align-items: stretch;
	align-content: flex-start;
	gap:2rem;
}
#TopicsPage .TopicsArea__cardItem{
	width:calc(33% - 2rem);
	margin: 0 0 2rem 0;
	position: relative;
	}

@media only screen and (min-width: 560px) and (max-width: 959px) {
  #TopicsPage .TopicsArea__cardItem {
    width:calc(50% - 2rem);
  }
}

@media only screen and (max-width: 559px) {
  #TopicsPage .TopicsArea__cardItem {
    width:100%;
  }
}

#TopicsPage .TopicsAreaCard{
	padding: 1.5rem 1.5rem 8rem 1.5rem;
	background:var(--gray-exlight);
}

 #TopicsPage .TopicsAreaCard__title{
 margin: 0.5rem 0 0 0;
 font-size: 2rem;
 line-height: 1.5;
 color:#666;
 }