@charset "UTF-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

.inner{
	width: 1000px;
	margin: 0 auto;
}
.inner100{
	width: 1000px;
	margin: 0 auto;
}
body{
	margin: 0;
	padding: 0;
}
p{
	line-height: 2;
	color: #686767;
	font-size: 13px;
}
p.center{
	text-align: center;
}
ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
a img:hover, a:hover{
	opacity: 0.7;
}
.only_pc{
	display: block;
}
.only_sp{
	display: none;
}
.m_b10{
	margin-bottom: 10px !important;
}

@media only screen and (max-width: 481px) {
	.inner{
		width: 95%;
	}
	.inner100{
		width: 100%;
	}
	.only_pc{
		display: none;
	}
	.only_sp{
		display: block;
	}
}

@media only screen and (max-width: 769px) {

}

/* -----------------------------------------------
--------------------------------------------------
header
--------------------------------------------------
----------------------------------------------- */

header{
	border-bottom: 2px solid #00a476;
	width: 100%;
	height: 60px;
	box-sizing: border-box;
}
header .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}
h1{
	width: 220px;
	margin: 0;
}
.head_right{
	display: flex;
	align-items: center;
}
.head_right nav{
}
.head_right nav{
	margin-right: 20px;
}
.head_right ul{
	display: flex;
	align-items: center;
}
.head_right ul li{
	margin-left: 16px;
	font-size: 12px;
}
.head_right ul li a{
	color: #686767;
	text-decoration: none;
}
.head_right ul li a:hover{
	text-decoration: underline;
}
.head_tel{
	width: 140px;
}
.head_right .head_insta{
	width: 40px;
	margin-left: 20px;
}

@media only screen and (max-width: 1000px) {

}


@media only screen and (max-width: 481px) {
	header{
		height: auto;
		padding-bottom: 0;
	}
	h1{
		float: none;
		text-align: center;
		width: 80%;
	}
	.head_right{
		float: none;
		width: 80%;
		margin: 20px auto 0 auto;
	}
	.head_right img{
		display: none;
		float: none;
		margin: 0 auto 0 0;
		width: 180px;
	}
	.head_right nav{
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		margin: 0;
	}
	.head_right nav ul{
		background: rgba(0, 164, 118, 0.8);
		width: 100%;
		height: 100vh;
		padding-top: 70px;
		display: block;
	}
	.head_right nav ul li a{
		color: #FFF;
	}
	.head_right nav ul li{
		float: none;
		text-align: center;
		color: #FFF;
		font-weight: bold;
		border-bottom: 1px dashed #FFF;
		padding: 20px 0;
		margin: 0;
		font-size: 14px;
	}
	.head_right nav ul li:first-child{
		border-top: 1px dashed #FFF;
	}
}


/* nav */

@media only screen and (max-width: 481px) {
	/*開閉ボタン*/
	.nav_toggle2{
		position: absolute;
		top: 20px;
		right: 2.5%;
		width: 30px;
	}
	#nav_toggle{
		display: block;
		width: 30px;
		height: 30px;
		position: relative;
		top: 4px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 3px;
		background: #00a476;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span{
		background: #FFF;
	}
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}
}




/* -----------------------------------------------
--------------------------------------------------
content
--------------------------------------------------
----------------------------------------------- */
#main{
	width: 100%;
	background: url("../img/main_bg.jpg") repeat-x;
	background-size: auto 419px;
}
img.top_recruit{
	display: block;
	width: 700px;
	margin: 30px auto 0 auto;
}
img.top_img1{
	margin: 70px auto 50px auto;
	width: 720px;
	display: block;
}
#content{
	padding: 0 0 30px 0;
}
.top_button{
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: 30px auto 100px auto;
}
.top_button a{
	width: 32%;
	display: block;
	background: #fffabc;
	color: #00a476;
	font-weight: bold;
	font-size: 20px;
	text-decoration: none;
	text-align: center;
	padding: 18px 0;
	border-radius: 10px;
	position: relative;
}
.top_button a::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 12px;
	z-index: 2;
	width: 8px;
	height: 16px;
	background: url("../img/top_arrow_white.png") no-repeat left 0 top 0;
	background-size: 8px 16px;
	
}
.top_point{
	width: 80%;
	margin: 30px auto 80px auto;
	display:flex;
	flex-wrap:wrap;
}
.top_point_content{
	width: 31%;
	box-sizing: border-box;
	border: 1px solid #00a476;
	border-radius: 10px;
	float: left;
	margin-right: 3.5%;
	background: #00a476;
}
.top_point_content:last-child{
	margin-right: 0;
}
.top_point_content:first-child p{
	margin-top: 30px;
}
.top_point_content p{
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
}


@media only screen and (max-width: 481px) {
	#main{
		background: none;
	}
	img.top_recruit{
		display: block;
		width: 80%;
		margin: 20px auto 0 auto;
	}
	img.top_img1{
		margin: 50px auto 50px auto;
		width: 90%;
		display: block;
	}
	#content{
		padding: 0;
	}
	.top_button{
		width: 80%;
		margin-bottom: 60px;
		display: block;
	}
	.top_button a{
		width: 100%;
	}
	.top_button a:first-child, .top_button a:nth-child(2){
		margin-bottom: 30px;
	}
	.top_button a:last-child{
		margin-bottom: 0;
	}
	.top_point{
		width: 80%;
		display: block;
		margin-bottom: 50px;
	}
	.top_point_content{
		float: none;
		width: 100%;
		margin: 0 0 30px 0;
	}
	.top_point_content:first-child p{
		margin-top: 20px;
	}
}



/*  あいさつ  */

.aisatsu{
	background: #ebf3f0;
	border-top: 2px solid #00a476;
	border-bottom: 2px solid #00a476;
	padding-bottom: 50px;
}
.aisatsu h2{
	background: url("../img/aisatsu_bg.png") no-repeat center top, #FFF;
	background-size: 1250px auto;
	height: 145px;
	margin: 0;
	box-sizing: border-box;
	text-align: center;
	color: #00a476;
	padding-top: 50px;
	font-size: 31px;
	line-height: 0.8;
}
.aisatsu h2 span{
	color: #90ccb9;
	font-size: 14px;
}
.aisatsu_p1{
	line-height: 5;
	text-align: center;
}
.aisatsu_p2{
	text-align: center;
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 0;
	margin-top: 50px;
}
.aisatsu_p3{
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	margin: 0;
}
.aisatsu_p3 span{
	font-size: 15px;
}


@media only screen and (max-width: 481px) {
	.aisatsu_p1{
		line-height: 3;
	}
}



/*  ABOUT US  */

.about{
	padding: 70px 0;
}
h2{
	text-align: center;
	font-size: 31px;
	color: #00a476;
	margin: 0 0 50px 0;
}
.about_con{
	width: 660px;
	overflow: hidden;
	margin: 0 auto 50px auto;
}
.about_con table{
	width: 330px;
}
.about_con table tr{
	
}
.about_con table th{
	width: 80px;
	font-weight: 100;
	color: #00a476;
	text-align: left;
	padding: 10px 0;
	vertical-align: top;
}
.about_con table td{
	width: 260px;
	color: #686767;
	padding: 10px 0;
}
.about_con table.about_t1{
	float: left;
	margin-bottom: 50px;
}
.about_con table.about_t2{
	float: right;
}
.map{
	width: 100%;
	height: 400px;
}
.map iframe{
	width: 100%;
	height: 400px;
}
.area{
	clear: both;
}
.area p.area_title{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #00a476;
	border-top: 1px solid #00a476;
	color: #00a476;
}
.area p.area_p{
	text-align: center;
}


@media only screen and (max-width: 481px) {
	.about_con{
		width: 90%;
		margin: 0 auto 30px auto;
	}
	.about_con table{
		width: 90%;
	}
	.about_con table th{
		width: 25%;
	}
	.about_con table td{
		width: 75%;
	}
	.about_con table.about_t1{
		float: none;
		margin-bottom: 0;
	}
	.about_con table.about_t2{
		float: none;
	}
}



/* -----------------------------------------------
--------------------------------------------------
footer
--------------------------------------------------
----------------------------------------------- */

footer{
	background: #ebf3f0;
}
footer .inner{
	padding: 30px 0;
}
.foot_box{
	width: 250px;
	margin: 0 auto;
}
.foot_box p{
	line-height: 1.5;
	margin: 10px 0 0 0;
}
footer .foot_logo{
	text-align: center;
	font-size: 20px;
	color: #14ab39;
	font-weight: bold;
}
footer .foot_logo span{
	font-size: 14px;
}
.footer_tel{
	display: block;
	margin: 0 auto;
	width: 250px;
}
footer ul{
	overflow: hidden;
	text-align: center;
	width: 762px;
	margin: 40px auto 0 auto;
}
footer ul li{
	float: left;
	margin: 0 15px;
}
footer ul li a{
	color: #686767;
	text-decoration: none;
}
footer ul li a:hover{
	text-decoration: underline;
}
footer ul li a:visited, footer ul li a:link{
	color: #686767;
}
footer .copy{
	width: 100%;
	background: #00a476;
}
footer .copy p{
	text-align: center;
	color: #FFF;
	padding: 5px 0;
	margin: 0;
	font-size: 12px;
}

.sns{
	width: 100px;
	margin: 10px auto;
}
.sns a{
	display: block;
	width: 40px;
	margin: 0 auto;
}
.sns a img{
	width: 100%;
}

@media only screen and (max-width: 481px) {
	footer .foot_logo{
		font-size: 16px;
	}
	footer .foot_logo span{
		font-size: 13px;
	}
	.footer_tel{
		display: block;
		margin: 0 auto;
		width: 200px;
	}
	footer ul{
		width: 100%;
	}
	footer ul li{
		width: 50%;
		box-sizing: border-box;
		margin: 0;
		padding: 15px 0;
		border-bottom: 1px dashed #ccc;
	}
	footer ul li:nth-child(even){
		border-left: 1px dashed #ccc;
	}
	footer ul li:first-child, footer ul li:nth-child(2){
		border-top: 1px dashed #ccc;
	}
	footer ul li:nth-child(7), footer ul li:nth-child(8){
		border-bottom: none;
	}
	footer .inner{
		padding: 30px 0 0 0;
	}
}



