body{
    color: #444;
    margin: 0;
    padding: 0;
    line-height: 150%;
  }
  
  /*トップバナー*/
  #top-baner{
    width: 100%;
  }
  
  /*ヘッダー部分*/
  header{
    margin-bottom: 15px;
    height: 130px;
  }
    
  /*ナビゲーション*/
  #top-nav{
    float: right;
    width: 500px;
    height: 100px;
    position: relative;
  }
  nav a{
    padding: 10px 15px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  }
  nav a:hover{
    text-decoration: underline;
  }
  #top-nav ul{
    height: 40px;
    width: 520px;
    position: absolute;
    bottom: 0;
    right: 0;
    list-style: none;
  }
  #top-nav ul li{
    float: left;
  }
  
  /*コンテンツ横幅*/
  .site-width{
    width: 980px;
    margin: 0 auto;
  }
  
  section h1.title{
    font-family: 'Montserrat', sans-serif;
    text-align: center;
	padding: 30px 0;
  }
  #about , #product , #shop{
    margin-top: 80px;
    margin-bottom: 80px;
  }
  
  #about {
      text-align: center;
  }

  /*パネル*/
  .panel{
    background: #f6f5f5;
    border: 1px solid #eee;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin: 0 15px;
    padding: 15px;
    width: 30%;
    float: left;
    box-sizing: border-box;
    min-height: 380px;
  }
  .panel h2{
    color: #333;
    text-align: center;
  }
  
  /*shop*/
  #shop iframe {
  width: 100%;
  vertical-align: bottom;
}
  
  #product{
    overflow: hidden;
  }
  
  /*フッター*/
  footer{
    font-size: 12px;
    padding: 15px;
    background: #333;
    text-align: center;
    color: #f6f5f5;
  }
  footer a{
    color: #f6f5f5;
  }
  
  /*contact*/
  #contact{
    margin-bottom: 150px;
  }
  
  #contact,h3{
      text-align: center;
  }

  /*フォーム*/
  form{
    width: 50%;
    margin: 0 auto;
  }
  input,textarea{
    font-size: 18px;
    margin-bottom: 15px;
  }
  input[type="text"]{
    width: 100%;
    height: 60px;
    border: none;
    background: #f6f5f5;
    padding: 10px;
    box-sizing: border-box;
  }
  textarea{
    width: 100%;
    height: 300px;
    border: none;
    background: #f6f5f5;
    padding: 10px;
    box-sizing: border-box;
  }
  input[type="submit"]{
    background: #333;
    border: none;
    padding: 15px 30px;
    color: white;
    float: right;
  }
  