body,
h1,
h2,
h3,
h4,
p,
ul,
li,
dl,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

.inner {
    width: 1000px;
    margin: auto;
}

body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
    color: #606060;
    background-color: #FBCECE;
}

header{
    background-color: #fff;
    width: 100%;
    height: 5em;
}

header h1 {
    line-height: 2.5em;
    text-align: center;
}

main{
    padding-top: 5em;
}

main p{
    margin-top: 0.5em;
}

dl{
    margin-top: 2em;
}

dl dt{
    margin-top: 1em;
}

form p{
    margin-top: 2em;
}

form input[type=text],form input[type=password]{
    line-height: 1.5em;
}

footer{
    width: 100%;
    height: 5em;
    background-color: #fff;
    position: fixed;
    bottom: 0;
}

footer p{
    text-align: center;
    line-height: 5em;
}


/*spレスポンシブ対応*/
@media screen and (max-width:640px) {
    .inner {
        width: 90%;
    }
    header h1{
        font-size: 1.2em;
        line-height: 4em;
    }

    main{
        padding-top: 2em;
    }

    dl{
        margin-top: 1em;
    }
    form p{
        margin-top: 1em;
    }
}