/* =====================
共通設定
===================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:
    "Helvetica Neue",
    Arial,
    sans-serif;
    color:#222;
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
