@charset "utf-8";

body {
	margin: 0;
	font-family: sans-serif;
	color:#252525;
	font-size:16px;
}

.container {
	margin: 0 auto;
	max-width: 900px;
}

/* 
各パートにパディング、背景、テキスト色などを指定する
<div class="container">の子要素に指定する
*/

header {
	padding: 10px 10px 5px 10px;
	background: #eee;
}


footer {
	padding: 20px 16px 10px 16px;
	background: #565656;
}

main {
	padding: 30px;
}

/* ヘッダーへハンバーガーメニュー */
.hamburger {
	border: none;
	width: 50px;
	height: 50px;
	background: url(../img/hamburger.png) no-repeat;
	background-size: contain;
}

/* ナビゲーション */
nav {
	background-color: #565656;
}
.navbar {
	display: none;
	margin: 0;
	padding: 0;
	list-style-type: none;
	background-color: #565656;
}
.navbar li a {
	display: block;
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
}
.navbar li a:hover {
	background: #dcdcdc;
	color: #565656;
}

	
/* ナビゲーションなどのSP */
@media only screen and (min-width: 768px) {
	.container {
		padding: 0 20px;
	}
	

	/* ナビゲーション */
	.hamburger {
		display: none;
	}
	.navbar {
		display: flex !important;
	/* justify-content: xxx; */
	}

}


/* そのたCSS */

header h1{
	font-size: 2.1em;
	color: #565656;
}


.copyright {
	margin: 0;
	text-align: center;
	color:#eee;
}

img{
max-width:100%;
height:auto;
}

h2{
	color: #565656;
	border-bottom: solid 1px #565656;
	margin-top: 30px;
}

.ao{
	color:dodgerblue;
	font-weight: bold;
}
