@charset "UTF-8";


/*---------- ページ全体の指定 ----------*/

* {
  margin: 0;
  padding: 0;
  outline: 0;
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
       -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}
a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #FF0066;
}
img, a img {
  border: none;
  max-width: 100%;
  height: auto;
  width /***/:auto;
vertical-align: bottom;
}
ul{
  list-style-type: none;
}

h2,h3,h4,h5,h6 {
  font-size: 1em;
}


/*----------------------------------- #基本ブロック */

html {
 overflow-y: scroll;
}
html, body {
  height: 100%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0.85em;
  text-align: center;
  font-family: メイリオ, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", Osaka, sans-serif;
  color: #333333;
  background-color: #ffffff;
}
#pagecover {
  position: relative;
  min-height: 100%;
  margin: 0 auto;
  text-align: center;
  width: 900px;
}

/* ヘッダー */
header {
  margin: 0 auto;
  padding: 0.5em 0 1em 0;
  text-align: center;
/*border-bottom: solid 3px #11A45B;*/
}

/* コンテンツ */
#contents {
  overflow: hidden;
  width: 900px;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.7;
  font-size: 1.2em;
}

/* フッター */
footer {
  background-color: #11a45b;
  width: 100%;
  overflow:hidden;
  position: absolute;
  bottom: 0;
}

/* copyright */
footer p.copyright {
  margin: 0;
/*  padding: 0.5em 0;*/
  text-align: center;
  color: #ffffff;
  font-size: 1em;
}


