/*--------------------------------
 CSSリセット
---------------------------------*/
* {
    margin: 0;
    padding: 0;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: border-box;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 100%;
    font-weight: bold;
  }
  
  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  
  li {
    list-style-type: none;
  }
  
  /*--------------------------------
   全体
  ---------------------------------*/
  
  body {
    font-family: Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
  }
  a {
    text-decoration: none;
  }
  