/*全ページ共通のスタイル*/
@charset "UTF-8";

* {
    font-size: 1em;
    margin: 0;
    padding: 0;
    color: #666;
    border-color: #aaa;
    text-decoration: none;
    font-family: "メイリオ", arial, sans-serif;
}

/*input {
    -webkit-appearance: none;

}*/

img {
    width: 100%;
    height: auto;
    border: none;
    vertical-align: bottom;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

input[type=text],
input[type=email],
input[type=password],
select,
textarea {
    border: 2px solid #aaa;
    border-radius: 5px;
    padding: 2px;
}

.placeHolder {
    position: relative;
    width: 250px;
    height: 2em;
    background: #eeffee;
    font-weight: bold;
    text-align: center;
    border: 3px solid #9bca54;
    overflow: hidden;
    border-radius: 10px;
}

.placeHolder input[type=file] {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    _cursor: hand;
    opacity: 0;
    filter: alpha(opacity = 0);
}

.fillBox {
    width: 200px;
    display: block;
    margin: 0 auto;
    line-height: 2em;
}

#container{
    max-width: 1200px;
    margin:0 auto;
    background: #fff;
}

.ui-datepicker-trigger {
    width: 25px;
   // margin-bottom: 2px;
}




/*ヘッダー*/

header{
    width:100%;
    overflow: hidden;
    margin-bottom: 15px;
    border-top: 8px solid #4c8dcb;
}

#header_left {
    width: 25%;
    float: left;
}

#header_right {
    width: 65%;
    float: right;
    border-bottom: 3px solid #37bef0;
    overflow: hidden;
}

#author_area {
    width: 80%;
    margin: 70px 0 0 10px;
    float: left;
}

#author_area span {
    color: #37bef0;
}

#logout{
    width: 50px;
    float: right;
    margin: 30px 0 10px 0;
}

/*メニュー*/

nav{
    width: 18%;
    float: left;
    margin-right: 2%;
}
nav ul li {
    padding: 12px 0;
    border-top: 1px solid #666;
}

nav ul li:last-child {
    border-bottom: 1px solid #666;
}

nav img {
    width: 25px;
    padding: 0 5px;
    border-left: 3px solid #37bef0;
}

#boss {
    width: 80%;
    margin: 0 auto;
}

/*コンテンツ共通*/

#content_area {
    float: left;
    width: 80%;
}

#content_area h2{
    color: #fff;
    font-size: 1.2em;
    padding: 5px;
    text-indent: 2em;
    background: #4c8dcb;
}

#contents {
    padding: 10px;
}

/*フッター*/

footer {
    clear: both;
}


/************汎用CLASS**************/

.btn {
    background: #4c8dcb;
    color: #fff;
    border-radius: 10px;
    border: none;
    width:150px;
    height:40px;
    padding: 10px 0;
    font-weight:bold;
}

.btn:hover {
    color: #000;
    background: #3c7dbb;
}

.search {
    background: #4c8dcb;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #aaa;
    width:100px;
    padding: 5px 0;
    font-weight:bold;
}

.reset {
    background: #4c8dcb;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #aaa;
    width:100px;
    padding: 5px 0;
    font-weight:bold;
}

.smallBtn {
    background: #4c8dcb;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #aaa;
    width:80px;
    padding: 3px;
    font-weight:bold;
}

.search:hover,
.reset:hover,
.smallBtn:hover {
    color: #000;
    opacity: 0.8;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.attention {
    color: red;
}

.hidden {
    display: none;
}

.sizeS {
    width: 7em;
}

.sizeM {
    width: 13em;
}

.sizeL {
    width: 28em;
}

.ui-datepicker{
    font-size: 95%;
}

#loader img{
    border-radius: 10px;
}

table.ui-datepicker-calendar tbody td:first-child a.ui-state-default{
    color: #F00;
}
table.ui-datepicker-calendar tbody td:last-child a.ui-state-default {
    color: #00F;
}