@charset "UTF-8";

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: auto;
}

body {
    margin-top: 0;
    padding: 0;
    background-color: #dde;
    color: #000;
}

@media screen and (max-width: 780px) {
    body {
        margin: 0;
    }
}

.clear {
    clear: both;
    display: block;
}

#page {
    margin: 0 auto;
    width: 90%;
    min-width: 760px;
    max-width: 900px;
}

@media screen and (max-width: 780px) {
    #page {
        width: 100%;
    }

    #ttl_map,
    #ggl_map {
        width: 100%;
        max-width: 600px;
    }
}
@media screen and (max-width: 400px) {
    #page {
        font-size: 90%;
    }
}

/* メニューバー */
#menubar {
    margin: 4px 0 8px 0;
    width: 100%;
    height: 32px;
    padding: 0;
    text-align: center;
}

@media screen and (max-width: 780px) {
    #menubar {
        margin: 0;
    }
}

#menubar.fixed {
    /* スクロール時: 上部に固定、横拡張、半透明化 */
    position: fixed;
    z-index: 999;
    margin: 0;
    top: 0;
    left: 0;
    box-shadow: 0 1px 6px 0 #666;
    background-color: #9cf;
    opacity: 0.75;
}

.menu_frame {
    margin: 0 auto 0 auto;
    width: 90%;
    min-width: 760px;
    max-width: 900px;
    height: 32px;
    background-color: #369;
}
@media screen and (max-width: 780px) {
    .menu_frame {
        width: 100%;
        min-width: 320px;
        max-width: 780px;
    }
}

.menu_logo {
    float: left;
    width: 140px;
    height: 32px;
    text-align: center;
    background-color: #036;
}

.menu_logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 6px;
}
@media screen and (max-width: 780px) {
    .menu_logo {
        display: none;
    }
}

#menu_item4 a::before {
    content: "Download";
}
@media screen and (max-width: 400px) {
    #menu_item4 a::before {
        content: "DL";
    }
}
#menu_item7 a::before {
    content: "grandMA3";
}
@media screen and (max-width: 400px) {
    #menu_item7 a::before {
        content: "MA3";
    }
}

.menu_items {
    display: flex;
    justify-content: center;
    height: 32px;
}

.menu_items ul {
    margin: 4px 4px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.menu_items li {
    margin: 0 3px;
    float: right;
    line-height: 24px;
}

li.menu_btn {
    width: 80px;
    height: 24px;
    white-space: nowrap;
    background-color: #9ac;
    border-radius: 3px;
    font-size: 80%;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 630px) {
    li.menu_btn {
        width: auto;
        font-size: 80%;
    }
}
@media screen and (max-width: 450px) {
    li.menu_btn {
        width: auto;
        font-size: 70%;
    }
}

li.menu_btn a:hover {
    height: 24px;
    border-radius: 3px;
}

a.nrm_item {
    /* 通常状態 */
    display: block;
    width: 100%;
    padding: 0;
    border-radius: 3px;
    color: #000 !important;
}
@media screen and (max-width: 630px) {
    a.nrm_item {
        padding: 0 2px;
    }
}


a.cur_item {
    /* アクティブページ */
    height: 24px;
    background-color: #cfc !important;
}

/* トップボタン */
#top_btn {
    position: fixed;
    right: 0;
    bottom: 0;
    padding: 8px;
    background-color: #333;
    color: #fff;
    border-radius: 4px 0 0 0;
    text-decoration: none;
    display: none;
}

/* サブメニューバー */
.sub_menubar {
    position: fixed;
    z-index: 999;
    top: 40px;
    left: 4px;
    right: 4px;
    max-width: calc(50% + 560px);
    pointer-events: none;
}

.sub_menubar_max {
    position: fixed;
    z-index: 999;
    top: 40px;
    left: 4px;
    right: 4px;
    max-width: calc(100% - 16px);
    pointer-events: none;
}

.sub_menu_items {
    float: right;
    line-height: 125%;
    pointer-events: auto;
}

.sub_menu_btn {
    min-width: 108px;
    border-radius: 3px;
}

.sub_menu_btn_ma {
    min-width: 92px;
    font-family: 'Roboto', sans-serif;
}

.sub_menu_btn,
.sub_menu_btn_ma {
    display: inline-block;
    margin-bottom: 4px;
    width: fit-content;
    opacity: 0.75;
    box-shadow: 1px 1px 4px 0 #666;
    text-align: right;
    font-size: 80%;
    font-weight: bold;
}

.sub_menu_btn a,
.sub_menu_btn_ma a {
    display: block;
    width: 100%;
}

.sub_menu_btn a:hover {
    border-radius: 3px;
}

.sub_menu_btn#to_TTL {
    background-color: #cff;
}

.sub_menu_btn#to_MA {
    background-color: #cfc;
}

.sub_menubar a,
.sub_menu_btn_ma a {
    padding: 2px 4px;
}

/* レイアウト */
.container_center {
    text-align: center;
}

.block_center {
    margin: 0 auto;
}

.block_right {
    margin-left: auto;
    margin-right: 0;
}

.container_topic {
    margin: 0 auto;
    width: 100%;
    min-width: 760px;
    max-width: 900px;
}

@media screen and (max-width: 780px) {
    #page,
    .container_topic {
        min-width: 320px;
        max-width: 780px;
    }
}

.container_w100 {
    margin: 0 auto;
    width: 100%;
    padding: 8px 14px;
    border-style: solid;
    border-width: 1px 2px 2px 1px;
    border-color: #aaf #669 #669 #aaf;
    background-color: #dde;
    text-align: left;
}
@media screen and (max-width: 780px) {
    .container_w100 {
        border-width: 0;
    }
}

.container_products {
    margin: 0 auto;
    width: 100%;
    padding: 8px 22px;
    border-style: solid;
    border-width: 1px 2px 2px 1px;
    border-color: #aaf #669 #669 #aaf;
    background-color: #dde;
    text-align: left;
}

.container_info {
    margin: 0 auto;
    width: 100%;
    padding: 8px 22px;
    border-style: solid;
    border-width: 1px 2px 2px 1px;
    border-color: #999 #666 #666 #999;
    background-color: #eee;
    color: #000;
    text-align: left;
}
@media screen and (max-width: 780px) {
    .container_info {
        border-width: 0;
    }
}

.container_link {
    margin: 0 auto;
    width: 100%;
    padding: 8px 14px;
    border-style: none solid solid solid;
    border-width: 1px;
    border-color: #999;
    border-collapse: collapse;
    background-color: #eee;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: left;
    color: #000;
}

/* 要素 */
body.products,
body.download {
    background-image: url(img/back_page.png);
}

body.price,
body.etc {
    background-image: url(img/back_page.png);
}

@media screen and (max-width: 780px) {
    body.download,
    body.etc {
        background-image: none;
        background-color: #dde;
    }
}

img {
    border: 0;
    margin: 0;
}

figure {
    text-align: center;
}

figcaption {
    font-size: 84%;
    font-weight: bold;
}

p,
dl {
    line-height: 150%;
}

pre {
    line-height: 100%;
}

hr {
    margin-bottom: 8px;
    height: 1px;
    border: none;
    border-top: 1px #999 solid;
}

img.footer_bar {
    margin-top: 24px;
    margin-bottom: 120px;
    width: 100%;
    min-width: 760px;
    max-width: 900px;
    height: 4px;
}
img.footer_bar_w {
    margin-top: 24px;
    margin-bottom: 240px;
    width: 100%;
    min-width: 760px;
    max-width: 900px;
    height: 4px;
}
@media screen and (max-width: 780px) {
    img.footer_bar,
    img.footer_bar_w {
        display: none;
    }
}

li {
    margin-bottom: 0.4em;
}

@media screen and (max-width: 780px) {
    #inf_list {
        padding: 10px;
    }
}

#inf_list li {
    margin-bottom: 4px;
    list-style-image: url(img/arrow3.png);
}

#inf_list a {
    display: block;
    width: 100%;
    font-size: 100%;
}

#inf_sub a {
    display: inline;
    width: 0;
    white-space: nowrap;
    font-size: 80%;
}

/* A */
a {
    text-decoration: none;
}

a:hover {
    background-color: #a6f;
}

a:link {
    color: #036;
}

a:visited {
    color: #603;
}

a:active {
    color: #900;
}

a.navi_lnk_w,
a.navi_lnk_w_h,
a.navi_lnk_p,
a.navi_lnk_w_bb {
    display: block;
    width: 100%;
}

a.navi_lnk_w_h {
    height: 1.5em;
}

a.navi_lnk_p {
    padding: 0 6px;
    font-weight: bold;
}

a.navi_lnk_w_bb {
    font-size: 120%;
    font-weight: bold;
}

a.navi_inf_u_b {
    text-decoration: underline;
    font-weight: bold;
}

a.inf_link,
a.inf_link_r {
    padding: 2px;
    font-size: 14px;
}

a.inf_link {
    line-height: 125%;
}

a.inf_link:before {
    margin-right: 2px;
    content: url(img/arrow3.png);
}

a.inf_link_r {
    line-height: 150%;
}

a.inf_link_r:before {
    margin-right: 2px;
    content: url(img/arrow3r.png);
}


a.ext_link:after {
    content: url(img/ex_link.png);
}

/* ダウンロード */
a.download_ex {
    position: relative;
    line-height: 125%;
    font-weight: bold;
}

a.download_ex:before {
    margin-right: 2px;
    content: url(img/arrow00.png);
}

a.download_ex_w {
    display: block;
    position: relative;
    width: 100%;
    line-height: 125%;
    font-size: 20px;
    font-weight: bold;
}

a.download_ex_w:before {
    content: url(img/arrow00.png);
}

#download_panel div {
    box-shadow: 4px 4px 16px 0 #669;
}

.iblk_w50 {
    display: inline-block;
    min-width: 50%;
}

.iblk_w30 {
    display: inline-block;
    min-width: 30%;
}

/* テーブル */
table.products_title,
table.spec,
table.drawing,
table.etc_100,
table.prod_lst {
    margin-left: 0;
    width: 100%;
}

table.spec {
    border-width: 1px;
    border-style: solid;
    border-color: #999;
    border-collapse: collapse;
    font-size: 84%;
    line-height: 125%;
}

table.price {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    border-width: 1px;
    border-style: none solid;
    border-color: #669;
    border-collapse: collapse;
    font-size: 84%;
    line-height: 125%;
}

table.etc {
    margin-left: 1em;
    border-width: 1px;
    border-style: solid;
    border-color: #999;
    border-collapse: collapse;
    line-height: 125%;
}

table.etc_80 {
    width: 80%;
    border-width: 1px;
    border-style: solid;
    border-color: #999;
    border-collapse: collapse;
    line-height: 125%;
}
@media screen and (max-width: 780px) {
    table.etc_80 {
        width: 90%;
    }
}
@media screen and (max-width: 400px) {
    table.etc_80 {
        width: 100%;
    }
}

table.etc_80,
table.etc_100,
table.prod_lst {
    border-width: 1px;
    border-style: solid;
    border-color: #999;
    border-collapse: collapse;
    line-height: 125%;
}

table.products_title {
    border-style: solid;
    border-width: 1px 3px 3px 1px;
    border-color: #696;
    background-color: #cfc;
    border-collapse: collapse;
}

table.spec,
table.prod_lst {
    font-size: 84%;
}
@media screen and (max-width: 780px) {
    table.prod_lst {
        font-size: 75%;
    }
}

table.lbdr_col_c {
    border-left: 6px solid #cff;
    border-right: 6px solid #cff;
    border-bottom: 2px solid #cff;
}

table.lbdr_col_g {
    border-left: 6px solid #cfc;
    border-right: 6px solid #cfc;
    border-bottom: 2px solid #cfc;
}

table.lbdr_col_o {
    border-left: 6px solid #fda;
    border-right: 6px solid #fda;
    border-bottom: 2px solid #fda;
}

@media screen and (max-width: 400px) {
    td.big_bold {
        font-size: 100%;
    }
}

td {
    padding: 6px;
    vertical-align: top;
}

td.bottom {
    padding: 6px;
    vertical-align: bottom;
}

td.narrow {
    padding: 0;
}

td.narrow_ind {
    padding: 0 0 0 1em;
}

td.narrow_1 {
    padding: 0 6px;
}

tr.sep {
    height: 0.5em;
}

/* リンク集 */
#link_list dt {
    margin: 0;
    width: 360px;
    border-style: solid;
    border-width: 1px 1px 0 2px;
    border-color: #39c;
    background-color: #dee;
    border-top-right-radius: 4px;
}
@media screen and (max-width: 780px) {
    #link_list dt {
        width: 96%;
    }
}

#link_list dd {
    margin: 0 0 1em 0;
    width: 96%;
    padding: 0.25em 1em 0.75em 1em;
    border: 1px solid #99c;
    background-color: #dde;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 80%;
    line-height: 125%;
}
@media screen and (max-width: 780px) {
    #link_list dd {
        border-top-right-radius: 0;
    }
}

/* テキスト飾り */
.normal_left {
    line-height: 150%;
}

.normal_center {
    line-height: 125%;
    text-align: center;
}

.normal_right {
    padding: 0 6px;
    line-height: 125%;
    text-align: right;
}

.small,
.small_n,
.small_bold {
    font-size: 84%;
    line-height: 125%;
}

.small_n {
    font-weight: normal;
}

.small_right {
    margin-top: 6px;
    margin-right: 4px;
    font-size: 84%;
    line-height: 125%;
    text-align: right;
}

.small_right_mr {
    margin-top: 6px;
    margin-right: 4em;
    font-size: 84%;
    line-height: 150%;
    text-align: right;
}
.small_right_mr2 {
    margin-top: 6px;
    margin-bottom: 0;
    margin-right: 4em;
    font-size: 84%;
    line-height: 200%;
    text-align: right;
}
@media screen and (max-width: 780px) {
    .small_right_mr, .small_right_mr2 {
        margin-right: 0;
    }
}

.small_bold {
    font-weight: bold;
}

.big_bold {
    font-size: 120%;
    font-weight: bold;
}

.big_bold_center {
    font-size: 120%;
    font-weight: bold;
    text-align: center;
}

.filename_s {
    font-size: small;
    font-weight: bold;
}

.xsmall_n {
    font-size: 80%;
    font-weight: normal;
    color: #343;
}

.underline_b {
    text-decoration: underline;
    font-weight: bold;
}

.note_red {
    color: #c00;
}

.products_cmplt {
    float: right;
    padding: 0 4px;
    font-size: 84%;
    font-weight: bold;
    color: #900;
    background-color: #fcc;
}

.indent1 {
    padding-left: 1em;
    line-height: 125%;
}

.indent2 {
    padding-left: 2em;
    line-height: 125%;
}

.strike_g {
    text-decoration: line-through;
    color: #666;
}

.pdf_mark {
    padding: 0 0.25em;
    vertical-align: middle;
    font-family: sans-serif;
    font-size: 70%;
    font-weight: normal;
    color: #fff;
    background-color: #c33;
    border-radius: 3px;
}


/* セル飾り */
.head_sub_title {
    padding: 5px;
}

.head_spec,
.head_sub_title {
    background-color: #fff;
    border-width: 2px;
    border-style: none solid solid none;
    border-color: #669;
    font-size: small;
}

.head_spec {
    padding: 6px;
}

.head_right,
.head_right_v,
.head_right_n,
.head_left,
.head_left_v {
    padding: 6px 0.6em;
    background-color: #ddc;
    vertical-align: top;
    white-space: nowrap;
}
@media screen and (max-width: 400px) {
    .head_right {
        padding: 0.4em;
    }
}

.head_right,
.head_right_v {
    text-align: right;
}

.head_right_n {
    border-style: none;
    text-align: right;
}

.head_right,
.head_left {
    border-style: none none solid;
    border-width: 1px;
    border-color: #669;
}

.head_left,
.head_left_v {
    text-align: left;
}

.head_right_v,
.head_left_v {
    border-style: none solid solid none;
    border-width: 1px;
    border-color: #669 #bbb;
}

.cell_list,
.cell_list_r {
    border-style: none none solid;
    border-bottom-width: 1px;
    border-color: #669;
}

.cell_list {
    vertical-align: top;
}

.cell_list_r {
    text-align: right;
}

.cell_list_r_v {
    border-style: none solid solid none;
    border-width: 1px;
    border-color: #669 #bbb;
    text-align: right;
}

.cell_list,
.cell_list_r,
.cell_list_r_v {
    padding: 6px;
    background-color: #eef;
}

/* ------------------------------------ */
.cell_hdr,
.cell_hdr_r,
.cell_hdr_b,
.cell_hdr_rb,
.cell_hdr_lb {
    background-color: #eef;
    text-align: center;
    width: 1%;
    white-space: nowrap;
}

.cell_hdr,
.cell_hdr_r,
.cell_hdr_b,
.cell_hdr_rb {
    padding: 0 2px;
}

.cell_hdr {
    border-style: none;
}

.cell_hdr_r {
    border-style: none solid none none;
    border-width: 1px;
    border-color: #669 #bbb;
}

.cell_hdr_b {
    border-style: none none solid none;
    border-width: 1px;
    border-color: #669;
}

.cell_hdr_rb {
    border-style: none solid solid none;
    border-width: 1px;
    border-color: #669 #bbb;
}

/* ------------------------------------ */
.cell_hdr_lb {
    padding: 0;
    border-style: none none solid solid;
    border-width: 1px;
    border-color: #669 #bbb;
}

/* ------------------------------------ */
.cell_line,
.cell_line_g {
    border-style: none none solid;
    border-bottom-width: 1px;
}

.cell_line {
    border-color: #669;
}

.cell_line_g {
    border-color: #ccf;
}
.cell_line_rem {
    border-style: none solid solid none;
    border-width: 1px;
    border-color: #669 #bbb;
}
.cell_line,
.cell_line_g,
.cell_line_rem {
    padding: 4px;
    text-align: left;
    white-space: nowrap;
    background-color: #eef;
}

/* ------------------------------------ */
.cell_link,
.cell_link_g,
.cell_link_left {
    border-style: solid;
    border-width: 1px;
}

.cell_link,
.cell_link_left {
    border-color: #669 #bbb;
}

.cell_link_g {
    border-color: #ccf #bbb;
}

.cell_link,
.cell_link_g,
.cell_link_left {
    padding: 0;
    background-color: #eef;
    vertical-align: middle;
    white-space: nowrap;
}

.cell_link,
.cell_link_g {
    text-align: center;
}

.cell_link_left {
    text-align: left;
}

@media screen and (max-width: 780px) {
    .cell_line,
    .cell_line_g,
    .cell_line_rem,
    .cell_link,
    .cell_link_g,
    .cell_link_left,
    .head_right {
        white-space: wrap;
    }
}

/* ------------------------------------ */
.cell_products_tit {
    padding: 1em 0.5em;
    line-height: 150%;
    text-align: center;
    white-space: nowrap;
}

.cell_products_img {
    text-align: center;
    background-color: #fff;
}

.cell_products_sub {
    padding: 1em 0.5em;
    line-height: 125%;
    font-size: 80%;
    white-space: nowrap;
}

.products_name {
    margin: 0.5em 0;
    font-size: large;
    font-weight: bold;
    color: #009;
}

.products_frame {
    width: 100%;
    margin-left: 0;
    border-style: solid;
    border-width: 1px 3px 3px 1px;
    border-color: #696;
    background-color: #cfc;
    border-collapse: collapse;
}

.cell_drawing {
    padding: 8px;
    background-color: #ccc;
    text-align: center;
}

.cell_pink_r {
    padding: 6px;
    background-color: #faa;
    text-align: right;
    white-space: nowrap;
}

.cell_right,
.cell_right_bottom,
.cell_left {
    padding: 2px;
    text-align: right;
}

.cell_right_bottom {
    vertical-align: bottom;
}

.cell_blank {
    padding: 6px;
    background-color: #999;
}

.cell_left_box {
    padding: 8px;
    text-align: left;
}


/* 見出し */
h1.title {
    margin: 0 auto;
    width: 100%;
    padding: 4px 1px 3px;
    background-color: #acc;
    border-style: solid none;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: #234;
    background-image: url(img/back_tit.png);
    color: #022;
    font-size: large;
    text-align: center;
}

h2.title {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4px;
    padding: 4px 1px 3px;
    background-color: #acc;
    border-style: solid none;
    border-top-width: 1px;
    border-bottom-width: 3px;
    border-color: #333;
    text-indent: 1em;
    font-size: medium;
    font-weight: bold;
    color: #033;
}

h2.dl_title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: medium;
    font-weight: bold;
}

.dl_sub_title {
    /* ジャンプ時にメニューバーの高さを相殺 */
    margin-top: -80px;
    padding-top: 80px;
    font-size: medium;
    font-weight: bold;
    color: #009;
}

@media screen and (max-width: 400px) {
    .dl_sub_title {
        font-size: small
    }
}

/* 上下罫飾り */
.h_border_b {
    width: 100%;
    padding: 4px;
    border-style: ridge none;
    border-top-width: 6px;
    border-bottom-width: 4px;
    border-color: #9af;
    background-color: #bbf;
}

.h_border_c {
    margin-left: 0;
    width: 100%;
    padding: 4px;
    border-style: ridge none none;
    border-top-width: 6px;
    border-color: #9cf;
    background-color: #cff;
}

.h_border_g {
    margin-left: 0;
    width: 100%;
    padding: 4px;
    border-style: ridge none none;
    border-top-width: 6px;
    border-color: #cfc;
    background-color: #cfc;
}

.h_border_o {
    margin-left: 0;
    width: 100%;
    padding: 4px;
    border-style: ridge none none;
    border-top-width: 6px;
    border-color: #fda;
    background-color: #fda;
}

/* ナビゲーション・ボタン */
.navi_link_button {
    margin: 0 2px;
    padding: 1px 6px;
    background-color: #aad;
    border-style: none;
    border-radius: 3px;
    box-shadow: 1px 1px 4px 0 #666;
    text-align: center;
    font-weight: bold;
}

/* 枠飾り */
.frame_g,
.frame_b,
.frame_c,
.frame_y {
    padding: 1em;
    border-style: none;
    border-radius: 4px;
}

.frame_g {
    background-color: #bfb;
}

.frame_b {
    background-color: #bbf;
}

.frame_c {
    background-color: #bff;
}

.frame_y {
    background-color: #ffb;
}

.frame_topic {
    border-style: solid;
    border-width: 1px;
    border-color: #66f;
    background-color: #a8b8f8;
}

.shadow {
    box-shadow: 4px 4px 16px 0 #666;
}

.note_mark {
    padding: 0 4px;
    background-color: #fbb;
    border-style: solid;
    border-width: 1px;
    border-color: #c99;
    border-radius: 2px;
    color: #600;
    font-weight: bold;
}

.info_box {
    margin-left: 2em;
    padding: 0.5em 1em;
    background-color: #eee;
    color: #000;
    border-style: solid;
    border-width: 1px;
    border-color: #999;
}

.info_box_w {
    padding: 0.5em 1em;
    background-color: #fff;
    color: #000;
    border-style: solid;
    border-width: 1px;
    border-color: #aaa;
    border-radius: 3px;
}

/* ダウンロード枠 */
.dl_box {
    margin-left: 4%;
    margin-bottom: 8px;
    padding: 0.3em 1em;
    border-style: solid;
    border-width: 0 1px 1px 4px;
}

.box_col_cyan {
    background-color: #cff;
    border-color: #39a;
}

.box_col_green {
    background-color: #cfc;
    border-color: #6a6;
}

.box_col_green_d {
    background-color: #cec;
    border-color: #696;
}

.box_col_amber {
    background-color: #caa;
    border-color: #a66;
}

.box_col_blue {
    background-color: #aaf;
    border-color: #66a;
}

.box_col_red {
    background-color: #fcc;
    border-color: #a66;
}

.warn_box {
    margin-left: 4%;
    margin-bottom: 8px;
    padding: 0.2em 1em;
    background-color: #fcc;
}

.new_mark {
    margin-right: 0.5em;
    padding: 0 0.3em;
    background-color: #c3a;
    border-radius: 3px;
    color: #fff;
    font-family: sans-serif;
    font-size: 75%;
    font-weight: bold;
}

.hrs_mark {
    margin-right: 2px;
    padding: 0 0.5em;
    background-color: #000;
    border-radius: 3px;
    color: #fff;
    font-family: sans-serif;
    font-size: 80%;
    font-weight: bold;
}
