@charset "utf-8";

/*確認ダイアログの背景*/
.nBaseBodyClass .dlgWindow {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    cursor: default;
}

/*確認ダイアログのダイアログ部分*/
.nBaseBodyClass .dlgArea {
    font-size: 16px;
    color: #444444;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    position: fixed;
    top: 25%;
    left: 50%;
    width: 400px;
    height: auto;
    padding-bottom: 20px;
    border: 1px #92a0b3 solid;
    background-color: rgba(255, 249, 177, .8);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 255, 255, .7);
    cursor: default;
    /*margin-left: auto;*/
    margin: 0px 0px 0px -200px;
}

/*削除ダイアログのダイアログ部分*/
.nBaseBodyClass .dlgAreaDel {
    font-size: 16px;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    position: fixed;
    top: 25%;
    left: 50%;
    width: 400px;
    height: auto;
    padding-bottom: 20px;
    border: 1px #92a0b3 solid;
    background-color: rgba(170, 170, 170, .8);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 255, 255, .7);
    cursor: default;
    /*margin-left: auto;*/
    margin: 0px 0px 0px -200px;
}

/*カレンダーダイアログのダイアログ部分*/
.nBaseBodyClass .dlgCalendarArea {
    height: 600px;
    width: 670px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    padding-top: 50px;
/*    background-color: rgba(255, 255, 255, .4);*/
}

/*会議室編集ダイアログの背景*/
.nBaseBodyClass .dlgWindowKaigisitu {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    cursor: default;
}
/*会議室編集ダイアログのダイアログ部分*/
.nBaseBodyClass .dlgKaigisituEditArea {
    height: auto;
    width: 800px;
    padding-bottom: 70px;
    margin-left: 20px;
    background-color: rgba(255, 249, 177, .8);
/*    background-color: rgba(255, 255, 255, .4);*/
}

/*カレンダーダイアログ*/
.nBaseBodyClass .dlgCalendar0,
.nBaseBodyClass .dlgCalendar1,
.nBaseBodyClass .dlgCalendar2,
.nBaseBodyClass .dlgCalendar3,
.nBaseBodyClass .dlgCalendar4 {
    margin-top: 10px;
    color: #444444;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    width: 200px;
    height: 200px;
    border: 1px #92a0b3 solid;
    background-color: rgba(255, 249, 177, .8);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 255, 255, .7);
    cursor: default;
    float: left;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

.nBaseBodyClass .dlgCalendar0 { position: fixed; left: -1290px; }
.nBaseBodyClass .dlgCalendar1 { position: fixed; left: 50%; margin-left: -320px; }
.nBaseBodyClass .dlgCalendar2 { position: fixed; left: 50%; margin-left: -100px; }
.nBaseBodyClass .dlgCalendar3 { position: fixed; left: 50%; margin-left: 120px; }
.nBaseBodyClass .dlgCalendar4 { position: fixed; left: 8000px; }

/*前年のカレンダー*/
.nBaseBodyClass .previousYear {
    position: fixed;
    top: -1000px;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}
/*今月のカレンダー*/
.nBaseBodyClass .thisYear {
    position: fixed;
    top: 170px;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}
/*次年のカレンダー*/
.nBaseBodyClass .nextYear {
    position: fixed;
    top: 5000px;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

/*確認ダイアログのタイトル*/
.nBaseBodyClass .dlgTitle {
    font-size: 17px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(188, 178, 50, .4);
    padding: 5px 0px 0px 0px;
    height: 20px;
    color: #444444;
}

/*削除ダイアログのタイトル*/
.nBaseBodyClass .dlgTitleDel {
    font-size: 17px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(130, 130, 130, .8);
    padding: 5px 0px 0px 0px;
    height: 20px;
    color: #ffffff;
}
/*カレンダーダイアログのタイトル(年月)*/
.nBaseBodyClass .calendarDlgTitle {
    font-size: 17px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(188, 178, 50, .4);
    padding: 5px 0px 0px 0px;
    height: 20px;
    color: #444444;
}
/*会議室編集ダイアログのタイトル*/
.nBaseBodyClass .kaigisituDlgTitle {
    height: 30px;
    width: 800px;
    margin-left: 20px;
    margin-top: 20px;
    font-size: 17px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(198, 192, 106, .9);
    color: #444444;
}

/*カレンダーダイアログのボタン部分*/
.nBaseBodyClass .btnCalendarArea {
    text-align: center;
    width: 400px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
}

/*カレンダーの曜日部分*/
.nBaseBodyClass .calendarWeekArea {
    font-size: 14px;
    text-align: center;
    padding: 20px 0px 0px 0px;
}
.nBaseBodyClass .calendarWeekArea table{
    width: 90%;
    margin-left: 10px;
    background-color: inherit;
    border-style: none;
}
.nBaseBodyClass .calendarWeekArea table th {
    padding: 0px;
}

.nBaseBodyClass .calendarWeekArea span {
    margin: 0px 2px 0px 3px;
    padding: 2px 1px 2px 1px;
}

/*カレンダーの日付部分*/
.nBaseBodyClass .calendarArea {
    font-size: 14px;
    text-align: center;
    padding: 15px 0px 0px 0px;
    font-family: monospace;
}
.nBaseBodyClass .calendarArea table{
    width: 90%;
    margin-left: 10px;
    background-color: inherit;
    border-style: none;
}
.nBaseBodyClass .calendarArea table>tbody:hover{
    background-color: inherit;
}

.nBaseBodyClass calendarArea table th {
    padding: 0px;
}
.nBaseBodyClass .calendarArea table>tbody>tr>td{
    border-style: none;
}

.nBaseBodyClass .calendarArea a {
    text-decoration: none;
    padding: 2px 1px 2px 1px;
    color: #000000;
    transition-duration: 0.1s;
    transition-timing-function: ease;
    border-radius: 5px;
}
.nBaseBodyClass .calendarArea a:hover {
    background-color: #ff5555;
}
.nBaseBodyClass .calendarArea a:active {
    background-color: #ff9999;
}
