@charset "utf-8";
/* Reset */
* {
	box-sizing: border-box;
}
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align:baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display:block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul, li {
  list-style: none;
  list-style-type: none;
}


/* Common */
html {
	font-size: 62.5%;
}

body {
	width: 100%;
	height: 100%;
	font-family: "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	color: #fff;
	text-align: center;
	background: #000;
}
header {
	background: #fff;
	color: #333;
	padding: 30px 0;
}
h1 {
	font-size: 4rem;
}
#container {
	width: 80%;
	display: flex;
	justify-content: space-between;
	margin: 30px auto;
}
nav {
	background: #666;
	width: 30%;
	padding: 20px;
	text-align: left;
}
nav a {
	color: #fff;
	display: block;
	font-size: 1.4rem;
	line-height: 1.2em;
	margin-bottom: 20px;
	text-decoration: none;
}
nav a:last-child {
	margin-bottom: 0;
}
section {
	width: 65%;
	padding: 20px;
}
h2 {
	font-size: 3rem;
	border-bottom: solid 1px #fff;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
p {
	font-size: 1.6rem;
	line-height: 1.8em;
	text-align: left;
	padding-bottom: 20px;
}
.link a {
	color: yellow;
}