/*
 * スタイルシート定義 ※webgk用
 */

/* font-size: 10pt; は fontタグのsize="2" に相当 */
/* font-size: 13pt; は fontタグのsize="3" に相当 */
/* font-size: 18pt; は fontタグのsize="5" に相当 */

/* font-size: 16px; は font-size: 12pt;   に相当 */
/* 画面解像度の違いに考慮し、pxを使用する        */

/* 2017.8.10 d.iimura add start スマートフォン用デザインを追加 命名に位置・形・色・サイズは使用しない事 */



/* 警告文字 赤文字 */
.alert {
    font-size: "16px";
    color: #ff0000;
}

/* 通知メッセージ 青文字 */
.notice {
    font-size: "16px";
    color: #0000FF;
}

/* 標準ボタン 薄い青の背景・白文字 */
.button {
    margin:0 0 0 0;
    line-height:140%;
    font-size: "16px";
    font-weight:bolder;
    width: 175px; 
    height: 25px;
    text-align: center;
    border-style:none;  /* ボーダーをなくす */
/*    background:#01A9DB;*/
    background:#72c3c8;
    color:#ffffff;
}

/* 標準ボタン無効化状態 灰色の背景・白文字 */
.button_disabled {
    margin:0 0 0 0;
    line-height:140%;
    font-size: "16px";
    font-weight:bolder;
    width: 175px; 
    height: 25px;
    text-align: center;
    border-style:none;  /* ボーダーをなくす */
    background:#cecece;
    color:#ffffff;
}

/* 機能切替ボタン 緑の背景・白文字 */
.button_switch {
    margin:0 0 0 0;
    line-height:140%;
    font-size: "16px";
    font-weight:bolder;
    font-size: small;
    width: 175px; 
    height: 25px;
    text-align: center;
    border-style:none;  /* ボーダーをなくす */
    background:#00db92;
    color:#ffffff;
}

/* 検索ボタン 画像表示 */
.button_search {
    font-size:16px;
    color:#FFFFFF;
    width: 80px;
    height: 25px;
    top: 0;
    left: 195px;
    background-color: #00a7eb;
    background-image: url(../images/webgk/search.gif);
    background-size: contain;
    background-repeat: no-repeat;
    border-style:none;
}

/* 入力ボックス 白背景・黒文字・枠有*/
.input_box {
        border-style:groove;
        height: 25px;
        font-size: "16px";
        background:#FFFFFF;
        color:#000000;
        font-weight: normal;
}

/* 検索入力ボックス 白背景・黒文字・枠有 検索ボタンに合わせheightを25pxに設定*/
.input_search_box {
        border-style:groove;
        height: 25px;
        font-size: "16px";
        background:#FFFFFF;
        color:#000000;
        font-weight: normal;
}

/* 検索出力リスト 薄い青背景・青文字*/
.output_search_inline {
        font-size: "16px";
        color:#2e2efe;
        background-color:#e0f8f7;
}

/* セレクトボックス 薄い青背景・青文字*/
.select_box {
        -webkit-appearance:none;
        font-size: "16px";
        height: 25px;
}

/* 入力ボックス 初期案の残し 青みがかった灰色背景・黒文字・枠無*/
.input_box_extra {
        border-style:groove;
        height: 16px;
        font-size: "3";
        background:#DEEDF8;
        color:#000000;
        border-style:none;  /* ボーダーをなくす */
        font-weight: normal;
}

/* 2017.8.10 d.iimura add e n d スマートフォン用デザインを追加  命名に位置・形・色・サイズは使用しない事 */
