@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%; /* iPhone Safariで、画面を横向きにしたときにフォントサイズが自動調整されるのを防ぐ */
}

body {
    box-sizing: border-box;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: black;
    background-color: white;
}

header {
    height: 5rem;   /* main.cssのiframe#headerのheightと合わせる */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    line-height: 0.75;
}

header a {
    text-decoration: none;
    color: inherit;
}

small {
    font-size: 0.75rem;
}

@media only screen and (max-width: 767px) {    /* スマートフォン想定 */
    header {
        height: 4rem;
        font-size: 1.5rem;
    }

    small {
        font-size: 0.6rem;
    }
}
