* {
    box-sizing: border-box;
}

html,
body {
    font-family:
        "Noto Sans JP",
        /* Google Fonts font */
        -apple-system,
        /* macOS/iOS font */
        BlinkMacSystemFont,
        /* Chrome on macOS/iOS */
        "Hiragino Kaku Gothic ProN",
        /* macOS font */
        "Hiragino Sans",
        /* macOS font */
        "Meiryo",
        /* Windows font */
        "Yu Gothic",
        /* Windows 10+ font */
        "MS PGothic",
        /* Old Windows */
        "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    height: 1px;
    width: 100vw;
    z-index: 9999;
}

body::after {
    content: "Copyright © JICA. All rights reserved.";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gray;
    text-wrap: nowrap;
    font-size: small;
    box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05);
}

header {
    position: fixed !important;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    padding-left: 10px;
    z-index: 999;
}

right {
    display: none;
}

header>a {
    display: block;
}

header>a img {
    height: 30px;
}

header search-box {
    margin-top: 16px;
}

table:first-of-type {
    display: none;
}

center hr {
    display: none;
}