@charset "utf-8";

@import "search.css";
@import "stepbar.css";
@import "menu.css";
@import "row_input.css";

header, main, footer, nav {
    display: block;
}

body {
    min-width: 320px;
    word-wrap: break-word;
    background-color: #f2f2f2;
    margin: 0 auto; /* 余白の削除 */
    padding: 0; /* 余白の削除 */
    width: 100%;
    height: 100%;
}

.wrapper {
    width: 1000px;
    margin: 0 auto;
}

/* ヘッダーの固定　Start */
header {
    background-color: #FBF8CB; /* 背景色 */
    border-bottom: solid #F93 2px;
    top: 0; /* 位置(上0px) */
    left: 0; /* 位置(右0px) */
    width: 100%; /* 横幅100%　*/
    height: 50px; /* 縦幅140px */
    /*	margin-bottom: 15px; */
}

header #h-wrapper {
    max-width: 1100px;
    height: 30px;
    padding: 10px 0;
    margin: auto;
    position: relative;
}

header #header-logo {
    height: 25px;
}

header #right_box {
    margin-left: auto;
    float: right;
    /*	height: 80px;*/
    /*margin-top:5px;*/
    text-align: center;
}

header #head-name {
    float: right;
    padding-top: 4px;
    margin-right: 5px;
}

/* ヘッダーの固定　End */

#select, #main {
    min-width: 100%;
    margin: 20px auto;
    text-align: center;
}

/* スクロール領域設定 */
div.scroll_main, div.scroll01 {
    background-color: #f2f2f2;
    height: 600px;
    width: 1080px;
    overflow: auto;
    margin: 5px auto;
    padding-left: 15px;
}

div.scroll01 {
    height: 350px;
    width: 1000px;
    margin: 5px auto;
}

#footer {

}

/* メニュー */
nav {
    background-color: #F9E8C9;
    border-bottom: solid #F93 2px;
    min-width: 100%;
    padding: 0;
    height: 35px;
}

#menu {
    list-style-type: none;
    max-width: 1100px;
    height: 35px;
    margin: auto;
    position: relative;
    display: flex;
}

#menu li {
    width: 100px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: relative;
    border-right: solid #F93 2px;
    display: inline-block;
}

#menu li:first-child {
    border-left: solid #F93 2px;
}

#menu li a {
    width: auto;
    height: 35px;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    vertical-align: middle;
    display: block;
    text-decoration: none;
    color: #000;
}

/*
#menu li a:hover {
  background: #ffa443;
  color:#FFF;
}*/
#menu li:hover > a {
    background: #FBF8CB;
    color: #000;
    border-bottom: solid #F93 2px;
}

#menu li ul {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 2;
}

#menu li ul li {
    overflow: hidden;
    width: 230px;
    line-height: 30px;
    height: 0;
    border-left: solid #F93 2px;
    display: block;
}

#menu li ul li a {
    display: block;
    padding-left: 8px;
    height: 30px;
    background: #F9E8C9;
    border: none;
    text-align: left;
    font-size: 12px;
    font-weight: normal;
}

#menu li:hover ul li {
    overflow: auto;
    height: 30px;
}

#menu li:hover ul li:first-child {
    border-top: 0;
}

#menu li:hover ul li:last-child {
    border-bottom: 0;
}

#menu li:hover ul li:last-child a {
    border-radius: 0;
}

#menu .menu-item-new:after {
    content: 'NEW!';
    position: absolute;
    display: block;
    padding: 2px;
    border-radius: 2px;
    line-height: 100%;
    top: -8px;
    right: 0;
    background-color: #FF0000;
    color: #FFFFFF;
    font-size: 60%;
}

/******************************/


/*******トグルメニュ*********/
@media screen and (max-width: 769px) {
    /*19*/

}

/************************************
/* テーブルタイトル */
.table_title01 {
    width: 1000px;
    margin: auto;
    padding: 2px 0;
    background-color: #ffdab9;
    font-weight: bold;
}

/* テーブル */
.select01, .stripe01, .user_input01, .notification_edit, .contract_input {
    border: solid #F93 1px;
    border-collapse: separate;
    border-spacing: 0;
    width: 1050px;
    position: relative;
    margin: auto;
}

.wide_table {
    width: 1070px;
}

.user_input02 {
    border: solid #F93 1px;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
}

.stripe02 {
    border: solid #F93 1px;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    margin: auto;
}

.contract_confirm_status {
    border: solid #F93 1px;
    border-collapse: separate;
    border-spacing: 0;
    width: 1100px;
    position: relative;
    margin: auto;
}

.select01 th, .stripe01 th, .stripe02 th, .user_input01 th, .notification_edit th, .contract_input th, .contract_confirm_status th {
    border: solid #F93 1px;
    background-color: #F9E8C9;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 0;
}

/*paddingが邪魔なので02を作成*/
.user_input02 th {
    border: solid #F93 1px;
    background-color: #F9E8C9;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.stripe01 tr:nth-child(2n+1) td, .stripe02 tr:nth-child(2n+1) td, .contract_confirm_status tr:nth-child(2n+1) td {
    background: #dcdcdc;
}

.stripe01 tr td input[type="text"], .stripe02 tr td input[type="text"] {
    width: 80%;
    margin: 0 auto;
}

.stripe01 th.name, .stripe01 td.name, .contract_confirm_status td.name {
    padding: 3px 12px;
    text-align: left;
}

.select01 td, .stripe01 td, .stripe02 td, .contract_confirm_status td {
    border: solid #F93 1px;
    font-size: 12px;
    background-color: #FFF;
    padding: 3px 0;
}

.select01 th, .select01 td {
    padding: 2px;
}

.select01 th {
    max-width: 90px;
}

.select01 td {
    text-align: left;
    padding: 2px 5px;
}

.select01 #submits {
    text-align: center;
    width: 210px;
    border-left: solid #F93 1px;
}

.user_input01 th, .contract_input th {
    width: 200px;
    padding: 10px 5px;
    margin-right: auto;
    text-align: left;
}

.user_input01 td, .contract_input td{
    border: solid #F93 1px;
    background-color: #FFF;
    padding: 5px 5px;
    margin-right: auto;
    text-align: left;
}

.user_input02 th {
    margin-right: auto;
}

.user_input02 td {
    border: solid #F93 1px;
    background-color: #FFF;
}

.notification_edit td {
    border: solid #F93 1px;
    background-color: #FFF;
    padding: 5px 5px;
    margin-right: auto;
    text-align: left;
}

.fixed_table {
    table-layout: fixed;
}

.fiexed_td {
    width: 175px;
}

/* 集計テーブル */
.aggregate01 td {
    text-align: right;
    padding-right: 8px;
}

/* 下揃え */
.bottom {
    vertical-align: bottom;
}

/* tableのtd,thのgrid design的実装のため
 一番上に基準tdを12個おいて非表示にする*/
.user_input01 .table-colspan-adjust,
.user_input01 .table-colspan-adjust td,
.stripe01 .table-colspan-adjust td {
    border: solid #fff 0px;
    padding: 0px;
}

.table-head-strong td, .force-table-head-strong {
    background-color: #F9E8C9;
    font-weight: bold;
    text-align: center;
}

.is-hide {
    display: none;
}

/*******部品*********/
.t_indent01 {
    text-indent: 1ex;
}

/* 強調文字01 */
#main .character01 {
    font-weight: bold;
    color: #F00;
    border-bottom: 2px solid #ff3333;
}

/* 強調文字02 */
#main .character02 {
    font-weight: bold;
    color: #F00;
}

/* テキスト左寄せ */
.t_left {
    text-align: left !important;
}

/* テキスト右寄せ */
.t_right {
    text-align: right !important;
}

/* テキスト中央揃え */
.t_center {
    text-align: center !important;
}

/* ボタン */
.myButton01 {
    -moz-box-shadow: 0 1px 0 0 #fff6af;
    -webkit-box-shadow: 0 1px 0 0 #fff6af;
    box-shadow: 0 1px 0 0 #fff6af;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffec64), color-stop(1, #ffab23));
    background: -moz-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background: -webkit-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background: -o-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background: -ms-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background: linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23', GradientType=0);
    background-color: #ffec64;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #ffaa22;
    display: inline-block;
    cursor: pointer;
    color: #333333;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 4px 16px;
    text-decoration: none;
    text-shadow: 0 1px 0 #ffee66;
}

.myButton01:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffab23), color-stop(1, #ffec64));
    background: -moz-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background: -webkit-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background: -o-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background: -ms-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background: linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffab23', endColorstr='#ffec64', GradientType=0);
    background-color: #ffab23;
}

.myButton01:active {
    position: relative;
    top: 1px;
}

.myButton01:disabled {
    opacity: 0.5;
}

.myButton01-disabled {
    -moz-box-shadow: 0 1px 0 0 #999999;
    -webkit-box-shadow: 0 1px 0 0 #999999;
    box-shadow: 0 1px 0 0 #999999;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #999999), color-stop(1, #bbbbbb));
    background: -moz-linear-gradient(top, #999999 5%, #bbbbbb 100%);
    background: -webkit-linear-gradient(top, #999999 5%, #bbbbbb 100%);
    background: -o-linear-gradient(top, #999999 5%, #bbbbbb 100%);
    background: -ms-linear-gradient(top, #999999 5%, #bbbbbb 100%);
    background: linear-gradient(to bottom, #999999 5%, #bbbbbb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23', GradientType=0);
    background-color: #aaaaaa;
    border: 1px solid #999999;
    text-shadow: 0 1px 0 #999999;
}

.myButton02 {
    -moz-box-shadow: 0 1px 0 0 #f7c5c0;
    -webkit-box-shadow: 0 1px 0 0 #f7c5c0;
    box-shadow: 0 1px 0 0 #f7c5c0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fc8d83), color-stop(1, #e4685d));
    background: -moz-linear-gradient(top, #fc8d83 5%, #e4685d 100%);
    background: -webkit-linear-gradient(top, #fc8d83 5%, #e4685d 100%);
    background: -o-linear-gradient(top, #fc8d83 5%, #e4685d 100%);
    background: -ms-linear-gradient(top, #fc8d83 5%, #e4685d 100%);
    background: linear-gradient(to bottom, #fc8d83 5%, #e4685d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8d83', endColorstr='#e4685d', GradientType=0);
    background-color: #fc8d83;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #d83526;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 7px;
    text-decoration: none;
    text-shadow: 0 1px 0 #b23e35;
}

.myButton02:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e4685d), color-stop(1, #fc8d83));
    background: -moz-linear-gradient(top, #e4685d 5%, #fc8d83 100%);
    background: -webkit-linear-gradient(top, #e4685d 5%, #fc8d83 100%);
    background: -o-linear-gradient(top, #e4685d 5%, #fc8d83 100%);
    background: -ms-linear-gradient(top, #e4685d 5%, #fc8d83 100%);
    background: linear-gradient(to bottom, #e4685d 5%, #fc8d83 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4685d', endColorstr='#fc8d83', GradientType=0);
    background-color: #e4685d;
}

.myButton02:active {
    position: relative;
    top: 1px;
}

/* ボタンエリアの設定 */
div.botton_area {
    width: 970px;
    margin: auto;
    text-align: right;
    padding: 10px 20px 10px 10px;
}

/*ishimaru added*/
.center {
    text-align: center;
}

.right {
    text-align: right;
}

.small_txt {
    font-size: 0.7em;
}

#whats_new {
    padding: 0;
    margin: 0.5em 0 0 0;
}

#content_center {
    margin: 10px auto;
    width: 1100px;
    text-align: left;
}

.float_left {
    float: left;
}

.pagination {
    display: flex;
    width: 640px;
    margin: 4px auto;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.pagination-next {
    margin: 0 8px;
}

.pagination-prev {
    margin: 0 8px;
}

.pagination-nav, .pagination-current, .pagination-omit {
    margin: 0 4px;
}

th.required:before {
    content: '※';
    color: #FF0000;
}

.required {
    color: #FF0000;
}

.buttons {
    margin: 15px 15px 0 0;
}

.error_messages {
    text-align: left;
    padding: 4px;
}

.error {
    color: #FF0000;
}

p.error {
    margin: 0;
}

.tabs {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.tabs .tabs-tab {
    min-width: 40px;
    min-height: 10px;
    margin-right: 2px;
    background-color: #FFF;
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    font-size: 80%;
    font-weight: bold;
}

.tabs .tabs-tab a {
    display: block;
    padding: 4px 12px;
    text-decoration: none;
    color: #000;
}

.tabs .tabs-tab a:hover {
    background: #fac695;
    background: linear-gradient(to bottom, #fac695 0%, #f4bc8b 49%, #eda868 100%);
}

.tabs .tabs-tab-active a {
    background: linear-gradient(to bottom, #fac695 0%, #f4bc8b 49%, #eda868 100%);
}

.warning {
    color: #FF0000;
    font-weight: bold;
}

.custom-file-input:lang(ja) ~ .custom-file-label::after {
    content: "参照";
}

.staff-report-textarea {
    width: 480px;
}

/* 深夜労働時間・労働日数集計 */
.info-area {
    width: 90%;
    margin: 0 auto;
    padding: 0.5rem;
    font-size: .8rem;
    background-color: rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
    border-radius: .1rem;
}

.info-area ul {
    margin-bottom: 0;
    list-style: none;
}

/* 半透明 */
.opacity50 {
    opacity: 0.5;
}

/* input type number のスピンボタンの非表示 */
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}
