@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

/*
=====================
	Common
=====================
*/
html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
}

.container {
	height: 100%;
}

.sidebar {
	float: left;
	width: 20%;
	height: 100%;
	background-color: #44a0b5;
}

.main {
	float: right;
	width: 80%;
	height: 100%;
	background-color: white;
}
.content {
	padding: 50px 100px;
}

/*
=====================
	Sidebar
=====================
*/
.sitename {
	text-align: center;
}

.sitename a {
	text-decoration: none;
	color: white;
}

.sitename a:hover {
	color: lightgrey;
}

ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
	border-bottom: 1px solid white;
	padding-left: 30px;
	line-height: 60px;
}

ul li:first-child {
	border-top: 1px solid white;
}

ul li:hover {
	background-color: hotpink;
}

ul li a {
	text-decoration: none;
	color: white;
	display: block;
	line-height: 60px;
}

.active {
	background-color: #307b8b;
}


/*
=====================
	about
=====================
*/

.p_start {
	font-size: 26px;
	font-weight: 700;
}


/*
=====================
	access
=====================
*/

.map_image {
	height: 300px;
	width: auto;
	border: 2px dotted lightgrey;
}


/*
=====================
	contact
=====================
*/

td {
	padding: 3%;
}

td:nth-of-type(1) {
	width: 100px;
	text-align: right;
}

input[type="text"] {
	width: 240px;
	height: 24px;
}

textarea {
	width: 240px;
}

input[type="submit"] {
	width: 120px;
	height: 40px;
	background-color: #eeeeee;
	color: black;
	font-weight: 700;
	font-size: 14px;
}

.require {
	color: orange;
}