@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/**
 * Webサイト全体のレイアウトを定義
 */

body {
    /* IEでフッターが最下部に固定されないので設定 */
    display: flex;
    flex-direction: column;
    color: #000;
    font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3","Meiryo",Verdana,sans-serif;
    background: #fff;
}

h1 {
    line-height: 150%;
    font-weight: 100;
}

table {
    font-size: inherit;
}