* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    line-height: 100%;
    text-decoration: none;
    list-style: none;
    font-weight: normal;
}
html {
    height: 100%;
}
body {
    height: 100%;
    background: #efefef;
    font-size: 12px;
    font-family: "M PLUS Rounded 1c";
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
}
table {
    border-collapse: collapse;
}
a {
    cursor: pointer;
}
label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
label > input {
    margin-right: 4px;
}
input[type='button'], input[type='submit'] {
    cursor: pointer;
    display: inline-flex;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    color: #333;
}
input[type='button']:not(:disabled):hover, input[type='submit']:not(:disabled):hover {
    background-color: #f6f6f6;
    border-color: #b4b4b4;
}
input[type='number'], input[type='text'], input[type='password'] {
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #bbb;
    background: #fff;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type='number'].price {
    width: 110px;
}
input[type='number'].amount {
    width: 110px;
}
input:disabled {
    opacity: 0.4;
    cursor: default;
}
table.data {
    width: 100%;
    background: #fff;
}
table.data.fixed {
    table-layout: fixed;
}
table.data caption {
    text-align: left;
    margin-bottom: 4px;
    font-weight: bold;
}
table.data th, table.data td {
    border: 1px solid #bbb;
    text-align: center;
    padding: 4px;
    font-family: 'Roboto Condensed', "M PLUS Rounded 1c";
}
table.data th {
    background: #ddd;
    font-weight: normal;
    color: #000;
}
table.data thead th {
    letter-spacing: -1px;
    font-size: 9px;
}
table.data tbody th {
    font-size: 11px;
}
table.data td {
    color: #333;
}
table.data.large td {
    font-size: 14px;
}
table.data td.label {
    text-align: left;
}
table.data td.number {
    text-align: right;
}
table.data td:after {
    font-size: 10px;
    display: inline-flex;
    transform: scale(0.75);
    margin: 0 -2px 0 -1px;
    align-items: flex-end;
    line-height: 7.5px;
    vertical-align: bottom;
    letter-spacing: -1px;
}
table.data td.yen:after {
    content: "円";
}
table.data.US td.yen:after {
    content: "㌦";
}
table.data td.dollar:after {
    content: "㌦";
}
table.data td.hyakumanyen:after {
    content: "百万円";
    margin: 0 -4px 0 -3px;
    letter-spacing: -2px;
}
table.data td.okuyen:after {
    content: "億円";
}
table.data td.chouyen:after {
    content: "兆円";
}
table.data td.per:after {
    content: "%";
}
table.data td.times:after {
    content: "倍";
}
table.data td.kabu:after {
    content: "株";
}
table.data.FUND td.kabu:after {
    content: "";
}
table.data td.ten:after {
    content: "点";
}
table.data td.kai:after {
    content: "回";
}
table.data td.age:after {
    content: "歳";
}
table.data td.plus {
    color: #090;
}
table.data td.minus {
    color: #900;
}
table.data tfoot td {
    background: #f2f2f2;
}
table.US .hideUS {
    display: none;
}
table.FUND .hideFUND {
    display: none;
}
table.list tbody tr:nth-of-type(2n) {
    background: rgba(0, 0, 0, 0.05);
}
ul.tab {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}
ul.tab li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ccc;
    color: #333;
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
}
ul.tab li.focus {
    background: #c90;
    color: #fff;
}
ul.tab li:not(.focus):hover {
    background: #c2c2c2;
}
#menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #364654;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
#menu a {
    display: inline-flex;
    padding: 8px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}
#menu a.focus {
    background: rgba(255, 255, 255, 0.1);
}
#menu a:not(.focus):hover {
    background: rgba(255, 255, 255, 0.25);
}
#content {
    padding: 48px 8px;
}
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    font-size: 12px;
    background: #2e2e2e;
    color: #ccc;
}
@media (max-width: 767px) {
    table.data th, table.data td {
        padding: 2px;
    }
    table.data thead th {
        font-size: 9px;
    }
    table.data tbody th {
        font-size: 9px;
    }
    table.data.large td {
        font-size: 12px;
    }
    table.data tbody td {
        font-size: 12px;
    }
    table.data td.trivial:after {
        display: none;
    }
}