/* CSS 変数 */
:root {
    --main-color: #EE8300; /* ASB7 サンプル用メインカラー */
}

/* 共通 */
body {
    margin: 0;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.photo {
    width: 100%;
    background-color: #eeeeee;
    border-bottom: solid 1px #dddddd;
}

/* リンク画像の枠線を消す */
a img {
    border-style: none;
}

a {
    color: #1570a6;
    text-decoration: none
}

    a:hover {
        color: #000000;
        text-decoration: underline
    }

/* タイトル */
.title h1 a {
    color: #666;
    text-decoration: none
}

.title h1 {
    margin: 0;
    color: #888;
    font-size: 30px;
    font-weight: bold;
    vertical-align: middle;
}

/* 記事 */
.article h1 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: solid 20px var(--main-color);
    font-size: 28px; /*20150701*/
    font-weight: normal;
}

.article h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: solid 1px #1570a6;
    font-size: 20px;
    font-weight: normal;
}

.article h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: normal;
    /*float: left;*/
}

.article h4 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: normal;
}

.article h2 i {
    margin-right: 7px;
    color: #1570a6
}

.article h3 i {
    margin-right: 7px;
    color: var(--main-color)
}

.article h3 span-red {
    color: #ff0000
}

.article p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 13px;
}

    .article p span-red {
        color: #ff0000;
    }

    .article p span-blue {
        color: #0000ff;
    }

    .article p span-b {
        font-weight: bold;
    }

    .article p span-url {
        word-break: break-all;
    }

    .article p i {
        margin-right: 7px;
        color: #1570a6
    }

    .article p.right-text {
        text-align: right;
        margin-bottom: 0;
    }

.article ul {
    list-style: none;
}

.article li {
    margin-top: 0;
    font-size: 13px;
}

    .article li i {
        margin-right: 1em;
        color: #1570a6
    }

.article-li-detail {
    margin-left: 20px;
    font-size: 13px;
    color: #000000
}

.article .lead {
    max-width: 100%;
    font-size: 13px;
    color: #666666;
}

.article-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.article .saveimage {
    margin-bottom: 0;
}

.annotation {
    color: red;
    text-indent: -1em;
    padding-left: 1em;
}

/* メイン画面 */
.column-contents {
    padding-top: 25px;
    padding-bottom: 0px;
}

/* ヘッダー */
.header {
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px #dddddd;
}

/* フッター */
.footer {
    margin: 0;
    color: #fff;
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--main-color);
}

.footer-inner p {
    margin: 0;
}

.copyright {
    text-align: right;
    margin: 0;
    padding: 0 25px 0 0;
}

.contents-header img {
    width: 100%;
    height: auto;
}

/* メインページのバーコード画像 */
.barcode-block {
    text-align: center;
}

    .barcode-block img {
        border: 1px solid black;
    }

    .barcode-block p {
        margin-bottom: 7px;
    }

/* バーコードイメージ生成画面 */
.main-table {
    width: 1100px;
    border-collapse: collapse;
    border-spacing: 0;
}

    .main-table .table-left {
        min-width: 480px;
        padding: 0;
    }

    .main-table .table-right {
        min-width: 620px;
        padding: 0;
    }

.main .view {
    width: 620px;
    height: 660px;
    overflow: auto;
    background-color: silver;
}

.main .error {
    width: 605px;
    height: 35px;
    font-size: 13px;
    padding-left: 15px;
    background-color: silver;
    color: #ff0000;
}

.main #barCodeUpdatePanel p {
    margin: 0;
}

/* サイドメニュー */
.sidemenu {
    height: 695px;
    background-color: #F0F0F0;
}

    .sidemenu .mainPanel {
        padding: 15px 15px 0 15px;
        font-size: 13px;
    }

    .sidemenu .tabPanel {
        font-size: 13px;
    }

    .sidemenu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .sidemenu .tabHeader li {
        position: relative;
        float: left;
        bottom: -2px;
        border: 1px solid #c0c0c0;
    }

    .sidemenu li a {
        display: block;
        padding: 10px;
        border-top: solid 1px var(--main-color);
        color: #555555;
        text-decoration: none;
        background-color: #eeeeee;
    }

        .sidemenu li a:hover {
            background-color: #999999;
        }

    .sidemenu li.active {
        border-bottom-color: #ffffff;
        z-index: 1;
    }

        .sidemenu li.active a {
            position: relative;
            border-style: solid;
            border-width: 1px;
            border-color: #c0c0c0;
            border-bottom-color: #ffffff;
            color: #444444;
            background-color: #ffffff;
            font-weight: bold;
            z-index: 1;
        }

    .sidemenu .tabBody {
        position: relative;
        border-style: solid none solid none;
        border-width: 1px;
        border-color: #c0c0c0;
        clear: both;
        background-color: #ffffff;
    }

        .sidemenu .tabBody .item {
            float: left;
            position: relative;
        }

            .sidemenu .tabBody .item .itemBody {
                padding: 10px 0 0 15px;
            }

    .sidemenu .clearBoth {
        clear: both;
    }

    .sidemenu h2 {
        margin: 0;
        padding: 5px;
        font-size: 13px;
        font-weight: normal;
        background-color: var(--main-color);
        color: #ffffff;
        text-align: center;
    }

.sidemenu_main {
    border: solid 1px var(--main-color);
}

    .sidemenu_main h2 {
        margin: 0;
        padding: 5px;
        font-size: 14px;
        font-weight: normal;
        background-color: var(--main-color);
        color: #ffffff;
        text-align: center;
    }

    .sidemenu_main i {
        margin: 0 5px;
        color: #1570a6;
    }

.tree1, .tree1 ul {
    font-size: 12px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.tree1 {
    margin: 10px 10px 20px 10px;
}

    .tree1 ul {
        padding: 0 0 0 20px;
    }

    .tree1 li {
        padding-top: 5px;
    }

.tree2 {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .tree2 li a {
        display: block;
        padding: 10px;
        border-top: solid 1px #054816;
        color: #000000;
        font-size: 14px;
        text-decoration: none;
    }

        .tree2 li a:hover {
            background-color: #eeeeee;
        }


/* テキスト */
input[type="text"] {
    border: 0;
    font-size: 1em;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    border: solid 1px #999;
    margin: 0 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/* コンボボックス */
select {
    border: 0;
    font-size: 1em;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    border: solid 1px #999;
    margin: 0 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/* テキストエリア */
textarea {
    border: 0;
    font-size: 1em;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    border: solid 1px #999;
    margin: 0 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* IME-Mode */
.ime-active {
    ime-mode: active;
}

.ime-disabled {
    ime-mode: disabled;
}

/* ページトップ */
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 0px;
}

    .pagetop a {
        display: block;
        width: 40px;
        height: 40px;
        background-color: var(--main-color);
        border-radius: 40px;
        text-align: center;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        line-height: 40px;
    }

/* 796px 以上 */
@media (min-width: 796px) {
    /* barcode-image を並べる */
    /*    .barcode-block:after {
        content: "";
        display: block;
        clear: both;
    }

    .barcode-block-1 {
        float: left;
        width: 32%;
        margin-left: 1%;
        margin-right: 1%;
    }

    .barcode-block-2 {
        float: left;
        width: 32%;
        margin-right: 1%;
    }

    .barcode-block-3 {
        float: left;
        width: 32%;
    }
*/
}

/* 1100px 以上 */
@media (min-width: 1100px) {
    /* 全体の幅を固定 */
    .header-inner, .header-nav-inner, .footer-inner, .column-contents /*, .barcode-block*/ {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .block1:after {
        content: "";
        display: block;
        clear: both;
        margin-bottom: 0;
    }

    .block1_left {
        float: left;
        width: 42%;
        margin-left: 1%;
        margin-right: 2%;
    }

    .block1_right {
        float: left;
        width: 55%;
    }

    .barcode-block:after {
        content: "";
        display: block;
        clear: both;
    }

    .barcode-block-1 {
        float: left;
        width: 32%;
        margin-left: 1%;
        margin-right: 1%;
    }

    .barcode-block-2 {
        float: left;
        width: 32%;
        margin-right: 1%;
    }

    .barcode-block-3 {
        float: left;
        width: 32%;
    }

    .column-contents:after {
        content: "";
        display: block;
        clear: both;
    }

    .column-contents-1 {
        float: right;
        width: 75%;
        padding-left: 50px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .column-contents-2 {
        float: left;
        width: 25%;
    }
}
/* 1100px 未満 */
@media only screen and (max-width: 1100px) {
    .article {
        margin-left: 10px;
        margin-right: 10px;
    }

    .block1_left {
        text-align: center;
    }
}
