*{
	margin:0;
}
html{
	background-color:#efefef;

}
body{
	width:100%;
	margin:0 auto;
	height:auto;
	overflow-x: hidden;
	position: relative;
}

/*PC版の要素を消す*/
.logo{
	display: none;
}

/*メニュー非表示にするエリア*/
.click_hidden{
	width: 100%;
	height:100%;
	position: fixed;
	top:0;
	left:0;
	background: black;
	opacity: .7;
	z-index: 8;
	display: none;
	cursor: pointer;
}

/*ヘッダーデザイン*/
header{
	width:100%;
	height:50px;
	position: fixed;
	top:0;
	left:0;
	background-color:white;
	box-shadow: 0 2px 5px rgba(15,15,15,.4);
}

.head_area{
	width:100%;
	height:100%;
	position: relative;
	background-color:#4285f4;
}

.head_area .log_title{
	width:100%;
	height:100%;
}

.log_title p{
	width:100%;
	height:100%;
	margin:0;
	text-align:center;
	font-size:18px;
	font-weight: bold;
	text-align:center;
	line-height:50px;
	letter-spacing:2px;
	color: white;
}

/*メニュー表示するためのボタン*/
.touch_menu{
	width:50px;
	height:50px;
	position: absolute;
	left:5px;
	top:0;
	cursor: pointer;
}
.touch_area{
	position: relative;
	width: 100%;
	height:100%;
}
.touch_area .line1,.line2,.line3{
	width:25px;
	height:2px;
	display:block;
	background: white;
	position: absolute;
	box-shadow:.3px .5px 1px #efefef;
}
.line1{
	top:13px;
	left:8px;
}
.line2{
	top:21px;
	left:8px;
}
.line3{
	top:29px;
	left:8px;
}

/*ナビゲーションのデザイン*/
.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;
	box-shadow: 1px 0 2px rgba(50,50,50,0.8);
	transform:translateX(-210px);
}

.nav_area{
	width:100%;
	height:100%;
	box-sizing: border-box;
	word-wrap: break-word;
	position: relative;
	overflow-x:hidden;
	padding-bottom:80px;
	overflow-y: hidden;
}

/*スクロールバーのデザイン*/
.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;
}

.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;
	text-align: left;

}
.nav_list a{
	width:100%;
	height:100%;
	display:inline-block;
	text-decoration: none;
	color:black;
	transition: all .1s ease-out;
	font-size:13px;
	padding-left: 1em;
}
.nav_list a:hover{
	transition:all .1s ease-in;
	background-color: rgba(220, 220, 220, 0.4);
}

.mob_home{
	width:100%;
	height:100%;
}
.mob_home img{
	width:18px;
	height:18px;
	display: inline-block;
	vertical-align: middle;
	padding-left:10px;
}

/*問い合わせボタンのデザイン*/
.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:95%;
	height:1000px;
	margin:65px auto;
	background: white;
	box-shadow: 0 0 3px #ccc;
	margin-bottom:100px;

}
article .contents{
	width:100%;
	height:100%;
	margin: 0;
	line-height:1000px;
	font-size:20px;
	text-align: center;
	font-weight: bold;
}
