@charset "UTF-8";

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,aside,figure {margin: 0;padding: 0;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal;}
table {border-collapse: collapse;border-spacing: 0;}
caption,th {text-align: left;}
object, embed {vertical-align: top;}
hr,legend {display: none;}
h1,h2,h3,h4,h5,h6 {font-size: 100%;}
img,abbr,acronym,fieldset {border: 0;}
li {list-style-type: none;}


/* base
----------------------------------------*/
html {
	font-size: 62.5%;
	overflow: auto;
}
body {
	width: 100%;
	color: #000;
	font-family: "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans","ヒラギノ角ゴ ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
}
a:focus {outline:none;}
a:link {color:#000;text-decoration:underline;}
a:visited {color:#000;text-decoration:underline;}
a:active, a:hover {color:#000;text-decoration:none;}

.spview{display: none;}

@media screen and (max-width: 767px){
	.pcview{display: none;}
	.spview{display: block;}
}


/* layout
----------------------------------------*/
.contents{
	padding-bottom: 55px;
	background: #a6dedb;
}
.contents img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.main{
	max-width: 1600px;
	margin: 40px auto 0;
	padding-bottom: 80px;
	background: #fff;
}

@media screen and (max-width: 767px){
	.contents{
		padding-bottom: 30px;
	}
	.main{
		margin: 20px auto 0;
		padding-bottom: 50px;
	}
}


/* mv
----------------------------------------*/
.mv{
	height: 500px;
	padding: 0 5%;
	background: #fff url(bg-mv.jpg) no-repeat center;
	background-size: cover;
}
.mv-inner{
	max-width: 900px;
	margin: 0 auto;
}
.mv-heading{
	max-width: 796px;
	margin: 0 auto;
	padding-top: 30px;
}

@media screen and (max-width: 767px){
	.mv{
		height: 0;
		padding: 0 5% 80%;
		background: #fff url(bg-mv-sp.jpg) no-repeat center;
		background-size: cover;
	}

}


/* lead
----------------------------------------*/
.lead{
	padding: 0 3% 40px;
}
.lead-inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 900px;
	margin: 0 auto;
}
.lead-inner_text{
	width: calc(100% - 26.66666666666667% - 20px);
	color: #007f41;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
}
.lead-inner_photo{
	width: 26.66666666666667%;
	margin: -10px -50px 0 0;
	border: solid 10px #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
	transform: rotate(-5deg);
}

@media screen and (max-width: 1000px){
	.lead-inner_photo{
		margin: -10px -10px 0 0;
	}
}

@media screen and (max-width: 767px){
	.lead{
		padding: 0 4% 20px;
	}
	.lead-inner_text{
		width: 100%;
		font-size: 1.5rem;
		order: 2;
	}
	.lead-inner_photo{
		width: 50%;
		margin: -40px auto 20px;
		order: 1;
	}
}


/* article
----------------------------------------*/
.article{
	padding: 0 3%;
}
.article-list{
	max-width: 900px;
	margin: 0 auto;
}
.article-list + .article-list{
	margin-top: 50px;
}
.article-list a{
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	padding: 40px;
	border: solid 1px #fff;
	box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	text-decoration: none;
	transition: 0.5s;
}
.article-list a:hover{
	border: solid 1px #a6dedb;
	opacity: 0.7;
}
.article-list_thumb{
	width: 40.34229828850856%;
	overflow: hidden;
}
.article-list_text{
	width: 55.99022004889976%;
}
.article-list_text_number{
	display: inline-block;
	margin-bottom: 5px;
	padding: 0.3em 1.2em 0.2em;
	background: #007f41;
	border-radius: 1em;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
}
.article-list_text_heading{
	margin-bottom: 20px;
}
.article-list_text_heading span{
	display: block;
	font-weight: 700;
	line-height: 1.4;
}
.article-list_text_heading_main{
	margin-bottom: 10px;
	font-size: 2.5rem;
}
.article-list_text_heading_sub{
	font-size: 2.1rem;
}
.article-list_text_person{
	padding-left: 15px;
	border-left: solid 4px #a6dedb;
}
.article-list_text_person > p{
	font-size: 1.5rem;
	line-height: 1.5;
}
.article-list_text_person > p + p{
	margin-top: 0.5em;
}
.article-list_text_person > p span{
	display: inline-block;
	font-size: 150%;
}
.article-list a .article-list_thumb img{
  transition: 0.5s;
}
.article-list a:hover .article-list_thumb img{
  transform:scale(1.1);
}

@media screen and (max-width: 767px){
	.article-list + .article-list{
		margin-top: 30px;
	}
	.article-list a{
		padding: 20px;
	}
	.article-list_thumb{
		width: 100%;
	}
	.article-list_text_number{
		font-size: 1.4rem;
	}
	.article-list_text{
		width: 100%;
	  margin-top: 15px;
	}
	.article-list_text_heading{
		margin-bottom: 15px;
	}
	.article-list_text_heading_main{
		margin-bottom: 10px;
		font-size: 2.0rem;
	}
	.article-list_text_heading_sub{
		font-size: 1.8rem;
	}
	.article-list_text_person > p{
		font-size: 1.3rem;
	}
	.article-list_text_person > p span{
		display: block;
	}
}


/* information
----------------------------------------*/
.information{
	margin: 60px auto 50px;
	padding: 0 5%;
}
.information-inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 10px;
	background: #fff;
	box-sizing: border-box;
}
.company-logo{
	width: 80px;
}
.company-logo img{
	width: 100%;
	height: auto;
}
.information-inner > .text{
	margin-left: 30px;
}
.information-inner > .text p{
	font-size: 1.5rem;
	line-height: 1.6;
}
.information-heading{
	margin-bottom: 10px;
	font-size: 2.2rem;
	font-weight: 700;
}

@media screen and (max-width: 767px){
	.information{
		margin: 30px auto;
	}
	.information-inner{
		padding: 20px 10px;
	}
	.company-logo{
		width: 70px;
	}
	.information-inner > .text{
		width: 100%;
		margin: 20px 0 0 0;
		text-align: center;
	}
	.information-heading{
		font-size: 2.0rem;
	}
	.information-inner > .text p{
		font-size: 1.5rem;
	}
}


/* contact
----------------------------------------*/
.contact{
	margin: 0 auto;
	padding: 0 5%;
}
.contact-inner{
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
.contact-heading{
	margin-bottom: 10px;
	font-size: 2.0rem;
	font-weight: 700;
}
.contact-inner > p{
	font-size: 1.4rem;
	line-height: 1.6;
}

@media screen and (max-width: 767px){
	.contact-heading{
		font-size: 1.8rem;
	}
	.contact-inner > p{
		font-size: 1.3rem;
	}
}


/* pagetop
----------------------------------------*/
.pagetop{
	position: fixed;
	bottom: 2em;
	right: 2em;
}
.pagetop img{
	width: 60px;
	height: 60px;
}
.pagetop a {
  display: block;
  transition: 0.5s;
}
.pagetop a:hover{
    opacity: 0.7;
}

@media screen and (max-width: 767px){
	.pagetop{
		position: fixed;
		bottom: 0.5em;
		right: 0.5em;
	}
	.pagetop img{
		width: 50px;
		height: 50px;
	}
}


/* localFooter
----------------------------------------*/
div.localFooter{
	padding: 20px;
	background: #fff;
	text-align: left;
	line-height: 1.6;
}