﻿@charset "utf-8";

@font-face {
	font-family: "Zen Kaku Gothic Antique";
	src: url("http://InspireWorks.jp/font/ZenKakuGothicAntique-Regular.ttf");
}


* {
	box-sizing: border-box;
}


body {
	margin: 0;
	padding: 0;
	position: relative;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	background-image: url(http://InspireWorks.jp/images/Home/bg_001.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}


header {
	width: 100%;
	height: 60px;
	background: #4F4F4F;
	text-align: left;
	display: flex;
	justify-content: center;
}


.flexbox {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}

.box-left {
	text-align: left;
}

.box-right {
	text-align: right;
}


#logo{
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#logo p{
	margin: 0px 0px 0px 20px;
	padding: 0px;
	font-size: 25px;
	font-weight: 500;
	color: #eeeeee;
}


#contact p{
	margin: 0px;
	padding: 20px 15px 0px 0px;
}

#contact a {
	text-decoration:none;
	font-size:14px;
	padding: 5px 23px 5px 23px;
	border-radius: 100px;
	background: #eeeeee;
	color: #4F4F4F;
}

#contact a:hover {
	border-radius: 100px;
	background: #4F4F4F;
	color: #eeeeee;
}


footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40px;
	background: #4F4F4F;
	text-align: center;
}

footer p{
	margin: 0px;
	padding: 5px 0px 0px 0px;
	font-size:18px;
	color: #eeeeee;
}

