@charset "utf-8";

/******* リセット記載 ******/
  *{
    padding: 0;
    margin: 0;
  }

  body{
    font-family: sans-serif;
    line-height: 1;
  }

  ul{
    list-style: none;
  }

  a{
    text-decoration: none;
    color: inherit;
  }

  img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }

/******* リセット記載終了 ******/

.container{
  width: 960px;
  margin: 0 auto;
}

.wrap{
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

header{
  background:#a00;
  height: 200px;
  color: #fff;
}

header p{
  padding-top: 20px;
  font-size: 24px;
}

header .container{
  background: url(../img/new-header.png) no-repeat right bottom;
  display: block;
  height: 200px;
}

.container h1{
  font-size: 60px;
  padding: 40px 0 0 0;
  font-family: 'Kaushan Script', cursive;
}

nav{
  background: #fdd;
}

nav ul{
  display: flex;
  line-height: 50px;
  justify-content: space-between;
  width: 960px;
  margin: 0 auto;
  
}

ul li{
 width: 20%;
 text-align: center;
 color: #900;
}

ul li a:hover{
  background: #f00;
  color: #fff;
  display: block;
}

h2{
  background: #f00;
  padding: 10px;
  margin-bottom: 20px;
  color: #fff;
}

h3{
  background: #fdd;
  padding: 10px 10px;
  color: #900;
  margin-bottom: 20px;
}

p{
  line-height: 1.5;
}

main img{
  float: left;
  width: 40%;
  padding-right: 20px;
}

span{
  color:#00f;
  text-decoration:underline;
}

span i{
  color: #fff;
  padding-right: 5px;
}


main p{
  overflow: hidden;
  line-height: 1.7;
}

main section{
  margin-bottom: 30px;
  overflow: hidden;
}

main p+p {
  margin-top: 10px;
}

.more{
  background-color:#f00;
  float: right;
  color: #fff;
  padding:10px 20px;
  border-radius: 5px;
}

.more:hover{
  background: #900;
}

main{
  width: calc(100% * (630/960));
}

.sub{
  width: calc(100% * (300/960));
}

.sub section+section{
  margin-top: 30px;
}

dt{
  color: #900;
  margin-bottom: 5px;
}


dd{
  line-height: 1.7;
  margin-bottom: 15px;
}

footer .container{
    color: #fff;
}

footer{
  background-color: #900;
padding: 30px 0;
}