/**
 * Error Page
 * 2016/06/21
 */
html,body{
    height: 100%;
}
#container{
    padding: 80px 0 0;
}
#wrapper{
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    background-image: url(../images/wrapper_bg.png);
    background-position: left top;
    background-repeat: repeat-x;
}

h1{
    text-align: center;
}


/*　汎用テーブル　*/
.tableMod {
	width:100%;
    border: 1px solid #cccccc;
    border-collapse: collapse;
    margin: 20px 0 0;
}
.tableMod td, .tableMod th {
    border: 1px solid #cccccc;
    border-collapse: collapse;
    padding: 2px 10px;
    word-break: break-all;
}
.tableMod th {
	width:160px;
    background-color: #f2f2f2;
	color: #333333;
	text-align: left;
    line-height: 1.2;
    padding: 5px 10px;
}
.tableMod th.sortHeader {
    background-repeat: no-repeat;
    background-position: 98% center;
    padding: 2px 30px 2px 10px;
}
.tableMod th.sortHeader.non {
    padding: 2px 10px;
}
.tableMod th.sortHeader.asc {
    background-image: url(../images/sort_arrow02.png);
}
.tableMod th.sortHeader.desc {
    background-image: url(../images/sort_arrow01.png);
}

.tableMod td.pd20{
    padding: 20px;
}
.tableMod th.center ,
.tableMod td.center {
    text-align: center;
}

.errorTable{
	width:50%;
	margin:0 auto;
	margin-top:50px;
}

.errorTable h2{
	text-align:center;
	font-size:150%;
}

.alert-danger{
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

form{
    margin:15px auto;
    /* border */
/*
    border:1px solid rgb(204, 204, 204);
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    box-shadow:rgba(50, 50, 50, 0.1) 0px 0px 5px 1px;
    -webkit-box-shadow:rgba(50, 50, 50, 0.1) 0px 0px 5px 1px;
    -moz-box-shadow:rgba(50, 50, 50, 0.1) 0px 0px 5px 1px;
    width:300px;
*/
}

form .loginMod{
    width:252px;
    padding-top:40px;
    margin-left:auto;
    margin-right:auto;
    display: block;
}
form .submitMod{
    width:252px;
    padding-bottom:40px;
    margin-left:auto;
    margin-right:auto;
    display: block;
}
form input[type="text"],
form input[type="password"]{
    width:252px;
    padding-top:12px;
    padding-bottom:12px;
    /* border */
    border:1px solid #ccc;
    /* border-radius */
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

form input[type="password"]{
    margin-top:25px;
}


form #btnLogin{
    margin-top:25px;
    width:252px;
    font-size: 120%;
    font-weight: bold;
    border-radius: 5px;
    background-color: #2385c2;
    box-shadow: 0 3px #6cadd6;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    border: none;
    color: #fff;
    box-shadow: 0 3px #ccc;
    cursor: pointer;
}
form #btnLogin:hover{
    border-radius: 5px;
    background-color: #3d98d1;
}
#footer {
    width: 100%;
    position: absolute;
    bottom: 0;
}

#footer {
    margin-top: 25px;
    background-color: #3c3c3c;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align:center;
}


#information{
	text-align:center;
}