﻿body
{
	text-align: center;
	font-size: 11pt;
	color: #000032;
    font-family: メイリオ,  sans-serif;
	background-color: #87cefa;
}
legend
{
	color: #0000cd;
}
a
{
    color: #000032;
    text-decoration: none;
}
a:hover
{
    background-color: #0099ff;
    text-decoration: none;
}

/* テキストボックス(共通) */
.TextBoxStd, .TextBoxNum, .TextBoxEisuu, .TextBoxJapanese, .TextBoxError
{
    background-color: #fff5ee;
    font-family: メイリオ,  sans-serif;
}

/* テキストボックス(通常) */
.TextBoxStd
{
    ime-mode: auto;
}
/* テキストボックス(数字) */
.TextBoxNum
{
    ime-mode: disabled;
    text-align: right;
}
/* テキストボックス(英数) */
.TextBoxEisuu
{
    ime-mode: inactive;
}
/* テキストボックス(日本語) */
.TextBoxJapanese
{
    ime-mode: active;
}
/* テキストボックス(エラーメッセージ) */
.TextBoxError
{
    color: white;
    background-color: red;
}

/* ボタン(通常) */
.ButtonStd, .ButtonAlert, .ButtonMaster, .ButtonGridSelect, .ButtonLinkMaster
{
    width: 120px;
    height: 25px;
    font-family: メイリオ,  sans-serif;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    background-color: #49a9d4;
    border-radius: 5px;
}
/* ボタン(警告) */
.ButtonAlert
{
    background-color: #FF0000;
}
/* ボタン(使用不可) */
.ButtonStd:disabled, .ButtonAlert:disabled, .ButtonMaster:disabled, .ButtonGridSelect:disabled
{
    font-weight: bold;
    text-align: center;
    color: #808080;
    background-color: #c0c0c0;
    border-radius: 5px;
}
/* ボタン(マスターページ) */
.ButtonMaster
{
    width: 75px;
    height: 23px;
    font-size: 9pt;
}
/* ボタン(グリッド選択) */
.ButtonGridSelect
{
    width: 50px;
    height: 25px;
    font-size: 9pt;
}
/* ボタン(マスタリンク) */
.ButtonLinkMaster
{
    width: 18px;
    height: 18px;
    border-color: white;
    border-style: outset;
    border-width: 2px;
    padding: 0px;
    margin: 0px;
    vertical-align: middle;
}

/* ボタン(登録) */
.ButtonRegister {
    width: 100px;
    height: 25px;
    font-family: メイリオ, sans-serif;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    background-color: #1F9958;
    border-radius: 5px;
}

/* ドロップダウンリスト */
.SelectStd {
    font-family: メイリオ, sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #49a9d4;
    border: none;
    border-radius: 5px;
    padding: 5px;
    -webkit-appearance: none;
    -moz-appearance: none; 
    text-align: center;
}

    /* ドロップダウンリスト(使用不可) */
.SelectStd:disabled, .SelectAlert:disabled {
    color: #808080;
    background-color: #c0c0c0;
}


/* パネル(通常) */
.PanelStd
{
    padding: 0px;
    margin: auto;
    border: 2px solid #075aa8;
    background-color: #add8e6;
}
/* Divヘッダ(通常) */
.DivHeaderStd
{
    border-style: none;
    padding: 0px;
    margin: 0px;
    background-color: #075aa8;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: white;
    font-weight: bold;
}
/* ヘッダ(通常) */
td.HeaderStd
{
    padding: 0px;
    margin: 0px;
    background-color: #075aa8;
    vertical-align: middle;
    text-align: center;
    color: white;
    font-weight: bold;
}

/* ラベル(ヘッダ) */
.LabelHeader
{
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: #075aa8;
}
/* ラベル(エラーメッセージ) */
.LabelError
{
    color: white;
    background-color: red;
}

/* GridView(通常) */
.GridViewStd
{
    border-collapse: collapse;
    font-size: 10pt;
    padding: 0px;
    margin: 1px;
}
/* GridViewのヘッダー行(通常) */
.GridViewHeaderStyleStd
{
    height: 23px;
    text-align: center;
    color: white;
    background-color: #075aa8;
}
/* GridViewのヘッダー行(通常) */
a:GridViewHeaderStyleStd
{
    color: white;
    text-decoration: none;
}
/* GridViewの奇数行(通常) */
.GridViewRowStyleStd
{
    background-color: #b0c4de;
}
/* GridViewの偶数行(通常) */
.GridViewAlternatingRowStyleStd
{
    background-color: #e0ffff;
}
/* GridViewのページャー(通常) */
.GridViewPagerStyleStd
{
    font-size: 11pt;
}

/* ドロップダウンリスト(通常) */
.DropDownListStd
{
    background-color: #fff5ee;
    font-family: メイリオ,  sans-serif;
}
/* テーブル(明るい色) */
.TableBright
{
    padding: 0px;
    margin: auto;
    width: 100%;
    background-color: #afeeee;
}

/* 確実に自動改行させる */
.line-break {
    word-break: break-all;
}











/*************************************
 スクロール
 2018-03-15 by T.Ando
*************************************/
#scrool_btn 
{
    position: fixed;
    bottom: 16px;
    right: 16px;
    
    transition-property: opacity; 
    transition-duration: 1s;
    opacity: 0;
    
    /* 表示ずれ対策 */
    display:block;
    transform: translate3d(0, 0, 0);
    z-index: 1;
}
 
#scrool_btn img:hover {
    opacity: 0.55 ;
}

#scrool_btn.fade-in {
    opacity: 0.6;

}



/*************************************
 入力フォームのビジュアル変更
 2018-03-16 by T.Ando
**************************************

input, select, textarea 
{
    color: #363535;
    border:0;
    border:solid 1px #ccc;
    padding: 3px;
    
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    }


table {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
table thead th,
table tbody th,
table tbody td {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.GridViewStd td 
{
    color: #363535;
}
*/


/* 入力フォームのフォーカス 2018-03-16 by T.Ando */
input:focus, select:focus, textarea:focus select:focus {
    border:solid 2px #EEA34A;
}



/*************************************
 新着数
 2018-03-15 by T.Ando
*************************************/
.maru {
  padding: 0;
  margin: 0 0 0 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  font-size: 10px;
  font-weight:bold;
}

.red {
  color: #fff;
  background-color:#D70303;
}

.blue {
  color: #fff;
  background-color:#014CA2;
}