@charset "utf-8";

/* フォント */
body, input, select, textarea, button {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    /*font-family: "メイリオ", "ヒラギノ角ゴ　Pro　W3", sans-serif;*/
}

/* エラー領域 */
div#err_msg_area {
    width: 100%;
    background-color: #555555;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    padding: 10px;
    position: fixed;
    bottom: -100px;
    opacity: 0.9;
    z-index: 3500;
}
div#err_msg_area.show {
    bottom: 0px;
}
div#err_msg {
    text-align: left;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0 80px 0 0;
}
div#err_messages {
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #F00;
    background-color: pink;
}
div#err_messages div#err_msg {
    text-align: left;
    font-size: 13px;
    color: #FF3333;
    padding: 0;
}

/* 確認 */
div#confirm_area {
    width: calc(100% - 20px);
    background-color: #555555;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    padding: 10px;
    position: fixed;
    bottom: -100px;
    opacity: 0.9;
    z-index: 9100;
}
div#confirm_area.show {
    bottom: 0px;
}
div#confirm_area button {
    width: 40%;
    max-width: 120px;
    margin: 5px 15px;

    border: solid 3px #3C3C50;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #FFFFFF;
}
div#confirm_area.ok_only button {
    width: 60%;
    max-width: 120px;
}
div#confirm_area.ok_only button.ng_btn {
    display: none;
}
div#confirm_msg {
    text-align: left;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0 80px 0 0;
}

/* ペジネーション */
ul.pagination {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 16px;
    list-style-type: none;
}
ul.pagination:after {
    content: ".";
    display: block;
    visibility: hidden;
    height: 0.1px;
    font-size: 0.1px;
    line-height: 0;
    clear: both;
}
ul.pagination li {
    float: left;
    height: 30px;
    width: 10%;
    text-align: center;
}


/* 幅調整 */
.line-space10 {
    margin-top: 10px;
}
.margin-bottom_10 {
    margin-bottom: 10px;
}
.margin-right_30 {
    margin-right: 30px;
}
.margin-left_30 {
    margin-left: 30px;
}
.width_80per {
    width: 80%;
}
/* チャート */
#chart {
}

/* コンテンツタイトル単位のアコーディオン */
dl.acMenu {
    margin: 0;
}
.acMenu dd {
    margin-left: 0;
}

/* --- エラー画面 --- */
.stack_trace {
    font-size: 70%;
}

/* --- デモ画面 --- */
ul.demo_menu {
    list-style: none;
    width: 200px;
    margin: 0 auto;
    border: solid 1px #3C3C50;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding-left: 10px;
}
ul.demo_menu li {
    padding: 0.5em 0;
    text-align: left;
}
ul.demo_menu a {
    color: #3C3C50;
    transition: color 0.3s ease-out;
    text-decoration: none;
    vertical-align: middle;
}
ul.demo_menu a:hover {
    color: #666;
    text-decoration: underline;
}

/* 画面説明 */
.sentence {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
    padding: 0 10px;
}

/* 入力フォーム */
table.inputtable {
    margin: 0 auto;
    font-size: 0.7em;
}
table.inputtable td {
    text-align: left;
    padding: 5px 0;
}
table.inputtable td.th {
    text-align: right;
    min-width: 5em;
    padding-right: 10px;
}

/* Highcharts */
.highchart {
    width: 100%;
}
.highcharts-container {
    margin: 0 auto;
}

/* calender */
table.calender td p.day {
    font-weight: bold;
}
table.calender td.sunday {
    background-color: pink;
}
table.calender td.saturday {
    background-color: lightcyan;
}
table.calender td.weekday {
}
table.calender td.outofmonth {
    color: gray;
    font-weight: normal;
    background-color: #CCCCCC;
}
table.calender td.selected {
    background-color: #FFFFCC;
}
table.calender .kakeibo_pay {
    letter-spacing: -0.5px;
    color: #FF0000;
}
table.calender .kakeibo_income {
    letter-spacing: -0.5px;
    color: #0000FF;
}

.calender_title .prev_month,
.calender_title .next_month {
    color: #fff;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
}
.calender_title .prev_month:hover,
.calender_title .next_month:hover {
    /*color: #3C3C50;*/
    /*background-color: #9C9CB0;*/
}
.calender_title .next_month i,
.calender_title .prev_month i {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;

    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.calender_title .next_month:hover i {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.calender_title .prev_month:hover i {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}

.calender_title .month {
    font-size: 1.5em;
    /*font-weight: bold;*/
    color: #3C3C50;
    vertical-align: middle;
}

/* detail-panel */
.detail-panel .detail-panel-content {
    text-align: center;
}
.detail-panel .det-btn-pos {
    text-align: left;
}
.detail-panel .del-btn-area {
    text-align: center;
}
.detail-panel input[type="text"] {
    border: none;
    border-bottom: solid 1px #CCCCCC;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 2.5em;
}
label.toggle_box input[type="radio"] {
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: none;
    margin: 0;
}
label.toggle_box input[type="checkbox"] {
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: none;
    margin: 0;
}
label.toggle_box input[type="radio"]:disabled {
    color:#F00;
}
label.toggle_box input[type="checkbox"]:disabled {
    color:#F00;
}
label.toggle_box {
    border: solid 1px #3C3C50;
    border-right: none;
    padding: 5px 2px;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}
label.toggle_box:first-child {
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}
label.toggle_box:last-child {
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    border-right: solid 1px #3C3C50;
}
label.toggle_box.selected {
    background-color: #3C3C50;
    color: #FFF;
}
label.toggle_box.checked {
    background-color: #3C3C50;
    color: #FFF;
}
label.toggle_box.disabled {
    background-color: #CCCCCC;
    color: #333333;
}

.detail-panel select {
    width: 200px;
}
.detail-panel textarea {
    height: 4em;
    -webkit-appearance: none;
}
.detail-panel .notify_end_date,
.detail-panel .notify_start_date,
.detail-panel .notify_start_time {
    text-align: center;
}


