/* ==========================================
   base.css
   ベース設定
========================================== */

html,
body{

    height:100%;
}

body{

    min-height:100vh;

    display:flex;
    flex-direction:column;

    padding-top:60px;

    font-family:-apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:16px;

    background:#f7f7f7;
}

main{

    flex:1;
}

*{
    box-sizing:border-box;
}

img{

    max-width:100%;
    display:block;
}

h1{

    text-align:center;
}

h2{

    margin-top:0;
}

h3{

    margin-top:0;
    margin-bottom:10px;
}

a{
    text-decoration:none;
}

button,
input,

textarea{

    font-family:inherit;
}