@charset "UTF-8";
* {/* ユニバーサルセレクタ*/
                margin:0;
                padding:0;
                -webkit-box-sizing: border-box;
                   -moz-box-sizing: border-box;
                        -o-box-sizing: border-box;
                     -ms-box-sizing: border-box;
                            box-sizing: border-box;     /* 横幅（と高さ）がwidth(height)内に収まるようになります*/

}

body {/* BODY基本*/
                height: 100%;
                font-size:1em;
                line-height:1.4;
                margin:0 auto;
                font-family: Verdana, "ＭＳ Ｐゴシック", sans-serif;  /* フォント指定*/
                color: #333333;
                background-color: #ecf3ff;
}

html {/* HTML基本*/
                overflow-y:scroll;/*はみ出た部分の表示の仕方*/
                height: 100%;/* 高さ指定*/
    }
