*{
	font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',sans-serif;
	margin:0;
}
html{
	background-color:#efefef;

}
body{
	width:100%;
	height:100%;
}

/*スマホ版だけの要素を消す*/
header,.click_hidden,.mob_home{
	display: none;
}


/*ナビゲーションのデザイン*/
.navgation{
	position:fixed;
	top:0;
	left:0;
	width:200px;
	height:100%;
	background:white;
	text-align: center;
	box-sizing: border-box;
	word-wrap: break-word;
	z-index:10;
	transition: all ease-in .3s;
}

.navgation .logo{
	width:100%;
	height: 70px;
	line-height: 70px;
	font-size:16px;
	font-weight: bold;
	background-color:#4285f4;
	border-bottom: 1px solid blue;
}

.navgation .logo a{
	display:inline-block;
	width: 100%;
	height:100%;
	text-decoration: none;
	color:white;
}

.nav_area{
	width:100%;
	height:100%;
	box-sizing: border-box;
	word-wrap: break-word;
	position: relative;
	box-shadow: 2px 0 5px rgba(50,50,50,0.8);
	overflow-x:hidden;
	padding-bottom:80px;
	overflow-y: hidden;
}

.nav_list{
	width:100%;
	height:auto;
	padding:0;
}

.nav_list li{
	width:100%;
	height:50px;
	line-height: 50px;
	list-style-type: none;
	border-bottom:.2px solid #e3e3e3;
	font-size:13px;
	letter-spacing: 2px;
}

.nav_list li:first-child{
	border-top:.2px solid #e3e3e3;
}

.nav_list a{
	width:100%;
	height:100%;
	display:inline-block;
	text-decoration: none;
	color:black;
	transition: all .1s ease-out;
	font-size:13px;
}

.nav_list a:hover{
	transition:all .1s ease-in;
	background-color: rgba(220, 220, 220, 0.4);
}

/*ナビゲーションのスクロールバーのデザイン*/
.nav_area::-webkit-scrollbar {
	width: 2px;
	height:100px;
}

.nav_area::-webkit-scrollbar-track {
	background: whitesmoke;
	border-radius: 3px;
}

.nav_area::-webkit-scrollbar-thumb {
	background-color: rgba(50,50,50,0.5);
	height:100px;
	border-radius: 2px;
}

/*問い合わせボタンのデザイン*/
.form_area{
	width:180px;
	height:40px;
	margin:10px auto;
	box-shadow:1px 3px 3px gray;
	border-radius: 5px;
	background-color:#4285f4;
}

.form_area a{
	display: inline-block;
	width:100%;
	height:100%;
	line-height: 40px;
	text-decoration: none;
	color:white;
	transition:all ease .2s;
}

.form_area a:hover{
	background-color:skyblue;
	transition:all ease .2s;
	border-radius: 5px;
}

.form_mg{
	display: inline-block;
}

.form_img{
	display: inline-block;
	width:18px;
	height: 18px;
}

.form_img img{
	width: 100%;
	height: 100%;
	vertical-align: -3px;
}

/*コンテンツエリア*/
article{
	width:83%;
	min-width:700px;
	height:1000px;
	float:left;
	margin-left:210px;
	margin-top:20px;
	background: white;
	box-shadow: 0 0 3px #ccc;
	margin-bottom:100px;
}

article .contents{
	width:100%;
	height:100%;
	margin: 0;
	font-size:40px;
	text-align: center;
	line-height: 1000px;
	font-weight: bold;
}
