@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400&display=swap');


.view-btn{
	background: #ff9d1b;
	color: #fff;
	padding: 10px 0;
	width: 90%;
	max-width: 273px;
	margin: 30px auto;
	display: block;
	border-radius: 30px;
	text-align: center;
	position: relative;
}
.view-btn:before{
	content: '';
	display: inline-block;
	background: url(images/arrow-icon.svg) no-repeat;
	background-size: contain;
	width: 14px;
	height: 16px;
	vertical-align: middle;
	margin-right: 20px;
	margin-left: -20px;
	transform: rotate(-180deg);
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
	.view-btn{
		margin-top: 0px;
		margin-bottom: 50px;
	}
}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
	.view-btn{
		margin-bottom: 130px;
	}
}
/* main
------------------------------------------------------ */
.main-bg{
	background: url(images/main-img.jpg) no-repeat;
	background-size: cover;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	height: 340px;
	position: relative;
	background-position: center;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px){
	.main-bg{
		height: 300px;
	}
	.voice-item{
		margin-bottom: 20px;
	}
}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
}


/* news
------------------------------------------------------ */
.content-ttl.news-ttl{
	margin-top: 120px;
}
.news-wrap{
	width: 90%;
	max-width: 816px;
	margin: 80px auto 40px;
}
.news-article{
	display: flex;
	justify-content: flex-start;

	padding: 20px 0;
	flex-wrap: wrap;
}
.article-category{
	background: #00B987;
	border-radius: 12px;
	color: #fff;
	padding: 2px 30px;
	font-size: 1.4rem;
	margin-left: 20px;
}

.article-ttl{
	width: 100%;
	font-weight: 600;
	font-size: 1.6rem;
	margin-top: 10px;
	border-bottom: 2px solid #f0f0f0;
	padding: 10px 0;
	margin-bottom: 20px;
	position: relative;
}
.article-ttl:before{
	content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 120px;
  height: inherit;
	border-bottom: 2px solid #00B987;
}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
	.news-wrap{
		margin-top: 150px;
	}
}

/*SP Layout
===================================*/
@media all and (max-width: 768px){
	.news-wrap{
		margin-bottom:0;
	}
.news-article{
	flex-wrap: wrap;
	justify-content: flex-start;
}
	.article-category{
		margin-left: 10px;
		padding: 0 30px;
	}
	.article-ttl{
		width: 90%;
	}
	.article-ttl:after{content: none;}

}

