@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *
 * 全体
 *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
html {
    font-size: 16px;
}

* {
    letter-spacing: 1px;
    font-family: 'Noto Sans Japanese', sans-serif;
}

body{
    background-color: #F7F7F7;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    z-index: 1;
}

#header_dummy {
    position: relative;
    height: 46px;
    width: 100%;
    display: block;
}

#wrapper {
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
    width: 100%;
    max-width: 640px;
    position: relative;
    min-height: calc(100vh - 39px);
}

.error_text{
    color: #D95625;
}

input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=date]::placeholder{
    color: rgb(179, 179, 179);
}

footer{
    border-top: 1px solid #eee;
    padding: 1rem 0;
}

@media only screen and (max-width: 767px) {
    #wrapper{
        padding: 1rem .75rem;
    }
}
@media only screen and (max-width: 475px) {
    #wrapper{
        padding: 1rem .5rem;
    }
}
