/* ----------------------------------------
	news.html / event.html
-------------------------------------------*/

.news .sec,
.event .sec{
	padding-bottom: 20%;
}
.news_list .text a,
.event_info a{
	color: var(--green);
}
.news_list .text a:hover,
.event_info a:hover{
	opacity: var(--hover);
}
.news_list{
	width: 88%;
	margin: 0 auto;
	text-align: justify;
}
.news_list .head,
.event_info .head{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	font-weight: bold;
	column-gap: 20px;
}
.news_list .head .date,
.news_list .head .cat{
	font-size: 14px;
}
.news_list .head .cat{
	color: var(--green);
}
.news_list .head .tit{
	width: 100%;
	padding: 2% 0;
	margin-bottom: 4%;
	border-bottom: 1px solid;
	border-color: var(--bg-sub-color);
}

.event #page_nav li{
	width: 32.3%;
}
#seminar .more_link{
	display: flex;
	justify-content: flex-end;
	padding: 6% 0;
}
.event_info{
	text-align: justify;
}
.event_info .head .tit{
	width: 100%;
	padding-bottom: 2%;
	margin-bottom: 4%;
	border-bottom: 1px solid;
	border-color: var(--bg-sub-color);
	font-size: 24px;
}
.event_info .item{
	position: relative;
	width: 100%;
	padding: 6% 8%;
	border-radius: 40px;
	background-color: #fff;
	border: 4px solid;
	border-color: var(--green);
}
.event_info .item + .item{
	margin-top: 4%;
}
#questionnaire .opinion{
	position: relative;
	font-size: 16px;
	padding: 4% 8%;
	margin-bottom: 12%;
	border-radius: 40px;
	background-color: var(--bg-sub-color);
}
.opinion:before{
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	pointer-events: none;
	border: solid transparent;
}
.opinion:before{
	border-top-color: var(--bg-sub-color);
	border-width: 26px;
	margin-left: -26px;
}
.opinion li{
	padding-bottom: 2%;
	text-indent: -1em;
	padding-left: 1em;
	color: var(--brown);
	font-weight: bold;
	text-align: justify;
}
.opinion li:first-letter{
	color: var(--green);
}
.results dl{
	padding-bottom: 12%;
}
.results dl dt{
	margin-bottom: 6%;
	padding: 1% 2%;
	line-height: 1.6;
	font-weight: bold;
	text-align: justify;
	color: #fff;
	border-radius: 8px;
	background-color: var(--brown);
}
.results dl dt .small{
	font-size: 65%;
}
.results dl dt .sub{
	font-size: 75%;
	color: #b5a18e;
}
.results dl dd img{
	width: 98%;
	text-align: center;
}
.results .q1 dd img{
	width: 76%;
}
.youtube{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 4%;
}
.youtube iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 650px){
	
	.news .sec,
	.event .sec{
		padding-bottom: 28%;
	}
	.news_list{
		width: 100%;
	}
	.news_list .head .date,
	.news_list .head .cat{
		font-size: 13px;
	}
	.news_list .head .tit,
	.event_info .head .tit{
		font-size: 16px;
		padding-bottom: 4%;
		margin-bottom: 8%;
	}
	
	.event #page_nav li{
		width: 100%;
	}
	#seminar .more_link{
		padding-top: 12%;
	}
	.event_info .head .tit{
		padding-bottom: 4%;
		margin-bottom: 8%;
		font-size: 18px;
	}
	.event_info .item{
		padding: 10% 8%;
		border-radius: 20px;
	}
	.event_info .item + .item{
		margin-top: 8%;
	}
	#questionnaire .opinion{
		font-size: 13px;
		padding: 6%;
		margin-bottom: 20%;
		border-radius: 20px;
	}
	.opinion:before{
		border-width: 20px;
		margin-left: -20px;
	}
	.opinion li{
		padding-bottom: 3%;
	}
	.results dl{
		padding-bottom: 16%;
	}
	.results dl dt{
		padding: 3% 4%;
		border-radius: 4px;
	}
	.results dl dt .small{
		font-size: 75%;
	}
	.results dl dt .sub{
		font-size: 90%;
	}
	.results dl dd img{
		width: 100%;
	}
	.results .q1 dd img{
		width: 92%;
	}
}


/* ページャー */

.pagination{
	width: var(--page-width);
	margin: 0 auto;
	padding-bottom: 8%;
}
.nav-links{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 12px;
}
.screen-reader-text{
	display: none;
}
.page-numbers{
	display: flex;
	justify-content: center;
	font-size: 14px;
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 50%;
	border: 1px solid var(--green);
}
.page-numbers:hover{
	opacity: var(--hover);
}
.nav-links .prev,
.nav-links .next{
	width: auto;
}
.prev.page-numbers,
.next.page-numbers,
.page-numbers.dots{
	border: none;
}
.page-numbers.current{
	color: #fff;
	background-color: var(--green);
	border: 1px solid var(--green);
}

@media screen and (max-width: 650px){
	
	.nav-links{
		column-gap: 8px;
	}
	.page-numbers{
		width: 34px;
		height: 34px;
		line-height: 32px;
	}
}
