@charset "UTF-8";

/* 共通 */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 100%;
	font-weight: 300;
	color: #0b0e0d;
}

/* font-weight for Noto Sans JP */
.noto100 {font-weight:100;}
.noto300 {font-weight:300;}
.noto400 {font-weight:400;}
.noto500 {font-weight:500;}
.noto700 {font-weight:700;}
.noto900 {font-weight:900;}

a {
	text-decoration: none;
	color: #222;
}
a:hover {
	opacity: 0.5;
}
img {
	max-width: 100%;
	height: auto;
}

.inner {
	min-width: 320px; /* 最小幅 320px */
	max-width: 960px; /* 最大幅 960px */
	width: 100%;
	margin: 0 auto;
}
.inner:after {
	content: "";
	clear: both;
	display: block;
}

/* ヘッダー */
header {
	width: 100%;
	position: absolute; /* for: ヘッダースクロール時のアニメーション */
	top: -100px; /* for アニメーション */
	margin: 100px auto 0; /* for アニメーション */
	padding-top: 20px; /* top余白 */
	z-index: 999;
}
header.fixed {
	position: fixed;
	height: 45px; /* bottom余白 約15px */
	top: 0; /* スクロール後はtop:0に戻す */
	margin-top: 0;
	padding-top: 15px; /* top余白 */
	background: #fff;
	box-shadow: 0px 0px 2px 2px rgba(100,100,100,0.5);
	transition: top 0.65s ease-in; /* アニメーション */
}
@media screen and (max-width: 768px) {
	header {
		position: fixed;
		top: 0;
		margin-top: 0;
		padding: 0;
		box-shadow: 0px 0px 2px 2px rgba(100,100,100,0.5);
	}
	header.fixed {
		background: transparent;
		padding: 0;
	}
}
header .inner {
	position: relative; /* for: "nav ul","#nav-toggle"のabsolute */
}
/* スマホ向けヘッダー背景 */
@media screen and (max-width: 768px) {
	#mobile-head {
		background: #fff;
		width: 100%;
		height: 65px;
		box-shadow: 0px 0px 2px 2px rgba(100,100,100,0.5);
		/*z-index: 999;
		position: relative;*/
	}
}
/* ロゴ */
header .logo {
	float: left;
	width: 100px; /* ×height:44.75px */
	padding-left: 20px;
}
header.fixed .logo {
	width: 70px; /* ×height:31.3px */
}
@media screen and (max-width: 768px) {
	header .logo,
	header.fixed .logo {
		padding-left: 0px;
		position: absolute;
		left: 15px;
		top: 17px;
		width: 70px;
	}
}
header .logo a {
	opacity: 1;
}
/* ナビゲーション */
@media screen and (max-width: 768px) {
	nav {
		position: absolute;
		top: -500px; /* 開いてないときは画面外に配置 */
		width: 100%;
		background: #098b69;
		text-align: center;
		transition: .5s ease-in-out;
	}
}
nav ul {
	position: absolute; /* for: 垂直方向の位置調整 */
	right: 0; /* 右寄せ */
	bottom: 14px;
}
header.fixed nav ul {
	bottom: 8px;
}
@media screen and (max-width: 768px) {
	nav ul {
		position: static;
		/*right: 0;
		bottom: 0;*/
	}
}
nav ul li {
	float: left;
	position: relative; /* for: "nav ul li:after"のabsolute */
}
@media screen and (max-width: 768px) {
	nav ul li {
		float: none;
		position: static;
	}
}
/* ナビ ホバー時のアニメーション */
nav ul li:after {
	position: absolute;
	bottom: -10px;
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	transition: all 0.3s ease;
}
nav ul li:hover:after {
	background: #56b99f;
	bottom: -20px;
}
@media screen and (max-width: 768px) {
	nav ul li:after  {
		display: none;
	}
}
nav ul li a {
	padding: 0 25px; /* 左右余白 */
}
nav ul li a:hover {
	opacity: 1;
}
header.fixed nav ul li a {
	font-size: 87.5%; /* 14px */
}
@media screen and (max-width: 768px) {
	header nav ul li a,
	header.fixed nav ul li a {
		width: 100%;
		display: block;
		color: #fff;
		padding: 18px 0;
	}
}

/* スマホ向けハンバーガーメニュー */
#nav-toggle {
	display: none; /* PC画面幅では非表示 */
	position: absolute;
	top: 14px;
	right: 14px;
	width: 37px;
	height: 51px;
	cursor: pointer;
	/*z-index: 101;*/
}
@media screen and (max-width: 768px) {
	#nav-toggle {
		display: block;
	}
}
#nav-toggle div {
	position: relative; /* for: "#nav-toggle span"のabsolute */
}
#nav-toggle span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background: #2e4751;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}
#nav-toggle span:nth-child(4) {
	top: 30px;
	background: none;
}
#nav-toggle span:nth-child(4) em {
	font-size: 87.5%; /* 14px */
	color: #2e4751;
	text-align: center;
}
/* スマホ向けメニュー 切り替えアニメーション */
@media screen and (max-width: 768px) {
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		transform: rotate(-315deg);
	}
	.open nav {
		transform: translateY(565px); /* nav top + #mobile-head height */
	}
}

/* コンテンツ */
article {
	margin: 85px auto 0; /* margin-top:headerのheightをここで指定 */
	padding-bottom: 70px;
	text-align: center;
	line-height: 1.5;
	background: #e6f1ee;
}
@media screen and (max-width: 768px) {
	article {
		margin-top: 65px;
		padding-bottom: 50px;
	}
}

/* お問合せバナー */
#banner_contact a {
	margin: 45px auto 0;
	display: block;
	position: relative;
	width: 200px;
	line-height: 64px;
	color: #098b69;
	border: 1px solid #098b69;
}
#banner_contact a:hover {
	opacity: 1;
	color: #fff;
	background: #098b69;
}
#banner_contact a i {
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	color: #fff;
	margin: auto 0;
	height: 1em;
}
/* Google:Material icons */
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* 推奨サイズ */
	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-transform: none;
}

/* フッター */
footer {
	line-height: 3em;
	border-top: solid 1px #bbb;
	background: #ECF0EE;
}
@media screen and (max-width: 768px) {
	footer {
		line-height: 2em;
		padding: 10px 0;
	}
}
/* 個人情報バナー */
footer .footer_banner {
	text-align: right;
	margin-top: 20px;
	margin-right: 30px;
}
@media screen and (max-width: 768px) {
	footer .footer_banner {
		text-align: center;
		margin-bottom: 20px;
		margin-right: 0;
	}
}
footer .footer_banner li {
	display: inline;
	padding-left: 20px;
}
@media screen and (max-width: 768px) {
	footer .footer_banner li {
		display: block;
		padding-left: 0;
	}
	footer .footer_banner li:first-child {
		padding-bottom: 20px;
	}
}
footer .footer_banner li img{
	width: 220px;
}
/* 社名 */
footer .footer_company {
	text-align: left;
	border-bottom: solid 1px #999;
	margin: 0 30px;
}
@media screen and (max-width: 768px) {
	footer .footer_company {
		text-align: center;
	}
}
/* フッターナビゲーション */
.footer_inner {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	padding-bottom: 5px;
	font-size: 87.5%; /* 14px */
}
@media screen and (max-width: 768px) {
	.footer_inner {
		flex-flow: column;
	}
}
.footer_inner ul li {
	display: inline;
	padding-right: 20px;
}
.footer_inner ul li:first-child {
	margin-left: 30px;
}
@media screen and (max-width: 768px) {
	.footer_inner ul {
		margin: 0 auto; /* 中央寄せ */
	}
	.footer_inner ul li {
		padding-right: 8px;
	}
	.footer_inner ul li:first-child {
		margin-left: 0;
	}
	.footer_inner ul li:last-child {
		padding-right: 0;
	}
}
/* コピーライト */
footer small {
	margin-right: 30px;
}
@media screen and (max-width: 768px) {
	footer small {
		text-align: center;
		margin-right: 0px;
	}
}
