﻿@charset "utf-8";


html ,
body {
  height:100%;
  width:100%;/* Firefoxで-moz-box-pack:center;を効かせるために必要 */
  margin: 0px;
  padding: 0px;
  font-size:12px;
  line-height:1.2;
  font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","ＭＳ Ｐゴシック",Osaka,Helvetica,sans-serif;
}
body {
  display:-webkit-box;
  -webkit-box-align:center;
  -webkit-box-pack:center;
  display:-moz-box;
  -moz-box-align:center;
  -moz-box-pack:center;
  display:-ms-box;
  -ms-box-align:center;
  -ms-box-pack:center;
  background-color: #cbd2d8;

  /* Gradient Webkit */
  background-image:
    -webkit-linear-gradient(left,
    #c5ccd4,
    #c5ccd4 75%,
    #cbd2d8 75%,
    #cbd2d8);

  /* Gradient Firefox */
  background-image:
    -moz-linear-gradient(left,
    #c5ccd4,
    #c5ccd4 75%,
    #cbd2d8 75%,
    #cbd2d8);

  /* Gradient IE */
  background:
    -ms-linear-gradient(left,
    #c5ccd4,
    #c5ccd4 75%,
    #cbd2d8 75%,
    #cbd2d8);

  /* Gradient W3C */
  background:
    linear-gradient(left,
    #c5ccd4,
    #c5ccd4 75%,
    #cbd2d8 75%,
    #cbd2d8);

  background-size: 5px 100%;

  /* エレメントのコンテンツをユーザが選択できるかどうかの指定 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

h1 {
  margin-bottom:10px;
  color:#5d6874;
  font-size:2em;
  text-align:center;
}
article > p {
  text-align:center;
}
