/*全体にかかわるレイアウトはここに*/
/*ページごとのレイアウト用CSSはファイルを分ける。style.css内の指示を参照*/


body{
    background-color: #000;
    margin: 0;
    padding: 0;
    width: 900px;
    margin: 0px auto;
}
body div:first-child{
}

/*中央寄せ*/
.center{
    text-align: center;
}



/*float関連*/
.clearfix::after {
 content: "";
 display: block;
 clear: both;
}

.float_l{
    float: left;
    display: block;
}
.float_r{
    float: right;
    display: block;
}


/*横幅関連*/
.w30{
    width: 30%;
}
.w40{
    width: 40%;
}
.w50{
    width: 50%;
}
.w60{
    width: 60%;
}
.w70{
    width: 70%;
}
