@charset "utf-8";

/**********リセット**********/
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: sans-serif;
  line-height: 1;
}

ul {
  list-style: none;
}

a{
  text-decoration: none;
  display: block;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/**********リセット終了**********/

body{
  background: #fff;
}

.container{
  width: 960px;
  margin: 0 auto;
}

header,footer,nav{
  background: #ccc;
}

h1{
  font-size: 30px;
  padding-top: 30px;
}

header p{
  padding:20px 0;
  }

nav ul{
  display: flex;
  justify-content: space-between;
  background: linear-gradient(0deg, #ccc, #fff);
}

nav li{
  line-height: 50px;
  width: 34%;
  text-align: center;
}

nav a:hover{
  background: linear-gradient(0deg, #fff, #ccc);

}

.current,.current:hover{
  background:#fff;
}


h2{
  margin-bottom: 30px;
}

span{
  font-size: 12px;
}

section{
  padding: 50px 0;
}

section p{
text-decoration: underline #00f;
color: #00f;
}

section p+p{
  margin-top: 20px;
}


footer{
  padding: 30px 0;
}