@charset "utf-8";
/* CSS Document */

#container {
	width: 1000px;
	margin: 0 auto;
}

#header {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	background-color: #00bfff;
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
	margin-bottom: 50px;
}

h1 {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
}

#contents {
	width: 670px;
	margin-left: 20px;
}

#contents img {
	margin-top: 30px;
	margin-bottom: 30px;
}

h2 {
	border-left: solid 20px #00bfff;
	border-bottom: solid 2px #00bfff;
	padding-left: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.point {
	background-color: #00bfff;
	border-radius: 8px;
	color: #FFF;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 10px;
}

ul li {
	list-style-type: none;
}

#nav {
	width: 250px;
	margin-left: 20px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #e0ffff;
}

#footer {
	font-size: 12px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

#footer p {
	font-size: 12px;
}

#flexbox01 {
	display: flexbox;
	display: -ms-box;
	display: -moz-box;
	display: -webkit-box;
}