@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:after{
	content: '';
	display: inline-block;
	background: url(images/arrow-icon.svg) no-repeat;
	background-size: contain;
	width: 14px;
	height: 16px;
	vertical-align: middle;
	margin-left: 20px;
	margin-right: -20px;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
}
/* 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){
}


/* voice
------------------------------------------------------ */
.voice-article-ttl-bg{
	background: rgba(0,186,136,.2);
	margin: 80px auto 60px;
	position: relative;
	padding: 20px 0;
	max-width: 980px;
}
.voice-icon{
	width: 49px;
	height: auto;
	margin: 0 auto;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	top: -30px;
}
.voice-article-ttl{
	text-align: center;
	font-weight: 600;
	border-bottom: 2px solid #000;
	border-style: dotted;
	width: 75%;
	margin: 10px auto 0;
	padding-bottom: 10px;
	font-size: 1.8rem;
}
.voice-article-date{
	text-align: center;
	padding-top: 10px;
}
.voice-article-wrap{
	margin: 20px auto;
	max-width: 980px;
}
.all-article-btn{
	background: #ff9d1b;
    color: #fff;
    padding: 10px 0;
    width: 70%;
    max-width: 273px;
    margin: 20px;
    display: block;
    border-radius: 30px;
    text-align: center;
    position: relative;
}
.all-article-btn:after{
	content: '';
    display: inline-block;
    background: url(images/arrow-icon.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 16px;
    vertical-align: middle;
    margin-left: 20px;
    margin-right: -20px;
}
.next-article-btn{
	background: #00ba88;
    color: #fff;
    padding: 10px 0;
    width: 70%;
    max-width: 273px;
    margin: 20px;
    display: block;
    border-radius: 30px;
    text-align: center;
    position: relative;
}
.next-article-btn:after{
	content: '';
    display: inline-block;
    background: url(images/arrow-icon.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 16px;
    vertical-align: middle;
    margin-left: 20px;
    margin-right: -20px;
}
.article-btn-wrap{
	margin-bottom: 60px;
}

/*SP Layout
===================================*/
@media all and (max-width: 768px){
	.voice-article-ttl-bg{
		margin-bottom: 40px;
	}
	.voice-article-txt{
		margin-bottom: 20px;
	}
	.all-article-btn,.next-article-btn{
		margin: 0 auto 20px;
	}
}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
	.voice-article-wrap{
		display: flex;
		justify-content: space-between;
	}
	.voice-article-txt,.voice-article-img{
		width: 48%;
	}
	.article-btn-wrap{
		display: flex;
		justify-content: center;
	}
}


/* news
------------------------------------------------------ */
.news-bg{
	padding: 100px 0;
}
.news{
	width: 90vw;
	margin: 0 calc(50% - 50vw);
	margin-left: auto;
}
.news-list-item{
	margin-bottom: 40px;
}
.news-list-cat{
	background: #00b987;
	font-size: 1.2rem;
	color: #fff;
	text-align: center;
	padding: 2px 30px;
	text-align: center;
	border-radius: 30px;
	margin-left: 10px;
}
.news-list-date{
	margin-bottom: 20px;
}
.news-list-ttl{
	font-size: 1.2rem;
	line-height: 2rem;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px){

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
	.news{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.news-img{
		width: 56%;
	}
	.news-contents{
		width: 30%;
	}
}



/* service
------------------------------------------------------ */
.service-bg{
	background: #e7f2ec;
	padding: 80px 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.service{
	width: 90%;
	max-width: 1020px;
	margin: 0 auto;
}
.service-icon{
	width: 30%;
	margin: 0 auto;
	margin-top: -50px;
}
.service h3,.service .section-lead{
	text-align: center;
}
.service-item{
	background: #fff;
	border-radius: 15px;
	padding-bottom: 40px;
}
.service-ttl{
	text-align: center;
	color: #00b987;
	font-size: 2rem;
	margin-top: -50px;
	margin-bottom: 20px;
}
.service-ttl span{
	display: block;
	font-size: 1rem;
	color: #333;
}
.service-txt{
	width: 70%;
	margin: 0 auto;
	font-size: 1.2rem;
	line-height: 2rem;
}
.service-wrap{
	margin: 60px auto;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px){

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
	.service-wrap{
		display: flex;
		justify-content: space-between;
	}
	.service-item{
		width: 46%;
	}
}


/* facility
------------------------------------------------------ */
	.facility-bg{
	padding: 80px 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	}
.facility h3{
	text-align: center;
}
.facility-wrap{
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	display: flex;
	justify-content: space-between;
}
.facility-wrap-bg{
	background: #e7f2ec;
	padding: 40px 0 20px;
}
.facility-item{
	width: 17%;
}
.facility-txt{
	background: #00b987;
	padding: 40px 10px 20px;
	color: #fff;
}
.facility-type{
	font-size: 1.2rem;
}
.facility-name{
	font-size: 1.5rem;
}
.facility .view-btn{
	margin-top: 80px;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px){

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){

}

/* recruit
------------------------------------------------------ */
.recruit-bg{
	width: 90vw;
	margin: 0 calc(50% - 50vw);
	background: #e7f2ec;
	padding: 80px 0 40px;
	margin-bottom: 80px;
}
.recruit-wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.recruit-img{
	width: 64%;
}
.recruit-contents{
	width: 30%;
}
/*SP Layout
===================================*/
@media all and (max-width: 768px){

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){

}

/* product
------------------------------------------------------ */
.product-bg{
	background: #e7f2ec;
	padding: 80px 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.product{
	width: 90%;
	margin: 0 auto;
	max-width: 890px;
}	
/*SP Layout
===================================*/
@media all and (max-width: 768px){

}
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px){
	.product-wrap{
		display: flex;
		justify-content: space-between;
	}
	.product-item{
		width: 32%;
	}
}