body {
  font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",Hiragino Sans,"Noto Sans JP",sans-serif;-ms-word-wrap: break-word; color: #4d4643;
}
@media screen and (max-width: 574px) {
 .container-fluid{
    margin-top: 45px;
 }
}
.navbar-top-links li {
    display: inline-block;
    color: #fff;
}
.navbar-top-links>li>a {
    color: #fff;
}
.navbar-inverse .navbar-brand {
    color: #fff;
}
#wrapper {
    width: 100%;
    background-color: #5e8615;
}
.sidebar ul li a.active {
    background-color: #3d560e;
    color: #fff;
}
.sidebar ul li {
    border-bottom: 1px solid #0b2137;
}
.h1, h1 {
    font-size: 2.5rem;
}
.sidebar .nav-second-level li a {
    padding-left: 37px;
    background-color: #5e8615;
    color: #fff;
}
.nav>li>a {
    position: relative;
    display: block;
    background-color: #5e8615;
    padding: 10px 15px;
    color: #fff;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
     background-color: #3d560e;
}
.logo2 {
    width: 80%;
    margin: 0 auto 40px;
}
.logo2 img{
  width: 100%;
}
.container {
    max-width: 1118px;
    margin: 60px auto;
    text-align: center;
}
.loginWrap1 {
    max-width: 700px;
    margin: auto;
    text-align: center;
    color: #8d790c;
}
.formStyle1 {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    color: #fff;
    /*align-items: center;*/
}
.formStyle1 li {
    padding: 10px;
}
.loginWrap1 input {
    width: 360px;
}
.formStyle1 li:nth-child(1) {
    width: 7rem;
}
.formStyle1 li:nth-child(2) {
    width: 12rem;
}
.btnStyle3 {
    color: #fff;
    border: 1px solid #ccc;
    padding: 0;
    margin: 20px 0 40px;
    display: inline-block;
    padding: 10px 30px;
    color: #000;
    background-color: #f7f7f7;
}
.btnStyle3:hover{
  background-color: #303f4e;
  transition: 0.5s;
  color: #fff;
}

.formStyle1 input[type=text],
.formStyle1 input[type=password]{
    padding: 5px;
}
@media screen and (max-width: 530px) {
 .formStyle1 input{
    width: 200px;
 }
}
@media screen and (max-width: 360px) {
 .formStyle1 input{
    width: 100px;
 }
}
.page-header {
    padding: 10px 20px;
    margin: 40px 0 20px;
    background-color: #5e8514;
    color: #fff;
    font-size: 2.2rem;
}
.tblStyle1{
    width: 100%;
}
.tblStyle1 th,
.tblStyle1 td{
    padding: 10px;
    vertical-align: top;
}
.tblStyle1 th{
    width: 20rem;
    font-weight: 400;
    padding-top: 12px;
}
.tblStyle1 em {
    font-size: 1rem;
    padding: 2px 7px;
    float: right;
    text-align: center;
    background-color: #b43232;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    margin-left: 5px;
    position: relative;
}
.btn {
    display: inline-block;
    align-self: center;
    font-weight: 400;
    /* color: #212529; */
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    /*font-size: 1.4rem;*/
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.caption1{
    font-size: 0.8rem;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
    color: #999;
}

/* チェックボックス01 */
input[type=checkbox] {
 /* 透明度0 */
  filter: alpha(opacity=0);
  -moz-opacity:0;
  opacity:0;
  /* ブラウザのデフォルトのスタイルを削除 */
  -webkit-appearance: none;
  appearance: none;
  /* レイアウトから無視 */
  position: absolute;
}
.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0px 8px 5px 30px;
    position: relative;
    font-weight: 400;
    width: auto;
}
.checkbox01::before {
    background: #fff;
    border: 1px solid #231815;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox01::after {
    border-right: 3px solid #b43232;
    border-bottom: 3px solid #b43232;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

/* ラジオボタン01 */
input[type=radio] {
 /* 透明度0 */
  filter: alpha(opacity=0);
  -moz-opacity:0;
  opacity:0;
  /* ブラウザのデフォルトのスタイルを削除 */
  -webkit-appearance: none;
  appearance: none;
  /* レイアウトから無視 */
  position: absolute;
}
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0px 30px;
    position: relative;
    width: auto;
    font-weight: 400;
}
.radio01::before {
    background: #fff;
    border: 1px solid #231815;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio01::after {
    background: #b43232;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 8px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}
input[type="radio"]:focus + .radio01,
input[type="checkbox"]:focus + .checkbox01{
  box-shadow: 0 0 4px #004AA1;
}

.btnStyle1 {
    color: #fff;
    border: none;
    padding: 0;
    margin: 20px 0 40px;
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background-color: #c30000;
}
.btnStyle1:hover {
    background-color: #8d790c;
    transition: 0.5s;
    color: #fff;
}

.form-control {
    display: inline-block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.secondLevel a{
    padding-left: 2rem;
}
.hStyle1 {
    font-size: 2rem;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 2rem;
}
.mateMaster{
    display:flex;
  flex-wrap:wrap;
  list-style-type:none;
  padding:0;
  margin:0;
}
.mateMaster li {
    display: inline-block;
    padding: 5px 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    margin-right: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.mateMaster a.button1 {
    margin: 0 0.5rem 0 1rem;
    font-size: 1.2rem;
    text-decoration: underline;
    position: relative;
}
.mateMaster li p{
    margin: 0;
}

.tblStyle2{
    width: 100%;
}
.tblStyle2 th,
.tblStyle2 td{
    padding: 10px;
}
.tblStyle2 th{
    background-color: #8d790c;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}
.imgStyle1{
    max-width: 100px;
}
.tblStyle2 tr:nth-child(odd){
    background-color: #f7f7f7;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #2f3f4e;
    border-color: #2f3f4e;
}
.coutionDialog{
    color: #0950A8;
    font-size: 1.6rem;
    font-weight: 600;
}
.faStyle1 {
    color: #8d790c;
    margin: 0 0.7rem;
    font-size: 2rem!important;
}
.ulStyle1 {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.tblCompany th{
    background-color: #2f3f4e!important;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 40px 0 20px;
    border-radius: 4px;
}
.tblStyle3{
    margin-bottom: 4rem;
}
.tblStyle3 th,
.tblStyle3 td{
    padding: 10px;
}
.tblStyle3 th{
    white-space: nowrap;
}

.tblStyle5{
    margin-bottom: 2rem;
    width: 100%;
}
.tblStyle5 th,
.tblStyle5 td{
    padding: 10px;
    border-bottom: 1px dotted #ccc;
}
.tblStyle5 th{
    white-space: nowrap;
    width: 12rem;
}



.btnStyle2 {
    color: #fff;
    border: none;
    padding: 0;
    margin: 20px 0 40px;
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background-color: #3f84c9;
}
.btnStyle2:hover {
    background-color: #8d790c;
    transition: 0.5s;
    color: #fff;
}
.ulDay{
    display:flex;
  flex-wrap:wrap;
  list-style-type:none;
  padding:0 0 0 15px;
  margin:0;
}
.ulDay li a{
    padding: 0 5px;
}
.ulDay li:before{
    content: "｜";
}
.tblStyle4{
    width: 100%;
}
.tblStyle4 tr:nth-child(odd){
    background-color: #f7f7f7;
}
.tblStyle4 th,
.tblStyle4 td{
    padding: 10px;
}
.tblStyle4 th{
    background-color: #8d790c;
    color: #fff;
    font-weight: 400;
}
.txtStyleDone {
    font-size: 1rem;
    padding: 2px 7px;
    background-color: #6fbeaf;
    color: #fff;
    text-align: center;
    display: inline;
}
.txtStyleNot {
    font-size: 1rem;
    padding: 2px 7px;
    background-color: #c30000;
    color: #fff;
    text-align: center;
    display: inline;
}
.total{
    background-color: #dbdada;
    font-weight: 600;
}
.flexStyle2{
    display:flex;
  flex-wrap:wrap;
  list-style-type:none;
  padding:0;
  margin:0;
  align-items:center;
}
.flexStyle2 section{
    padding: 10px;
}
.btnStyle4 {
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 1.2rem;
}
.btnStyle4:hover{
    background-color: #2f3f4e;
    color: #fff;
}
.ulStyle2{
    display:flex;
    flex-wrap:wrap;
    list-style-type:none;
    padding:0;
    margin:0;
}
.ulStyle2 li {
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px;
    border-left: 10px solid #2f3f4e;
    border-right: 1px solid #ccc;
}
#mytable{
  width: 100%;
  height: 300px;
  margin-bottom: 7rem;
}
.flexStyleInvoice{
    display:flex;
    flex-wrap:wrap;
    list-style-type:none;
    padding:0;
    margin:0;
}
.flexStyleInvoice section{
    padding: 10px;
}
.flexStyleInvoice section.txt1{
    font-size: 1.8rem;
}
.flexStyleInvoice section.right{
    margin-left: auto;
}
.flexStyleInvoice section .amount {
    font-size: 2rem;
    padding: 10px;
    border: 1px solid #ccc;
}
.flexStyleInvoice section .amount em{
    font-size: 1.4rem;
}
.tblInvoice th,
.tblInvoice td{
    text-align: right;
}
.tblInvoice th{
    background-color: #aeaeaf;
    text-align: left;
}
.tblInvoice td.ttl{
    text-align: left;
}
.totalLine td{
    background-color: #fff;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}
.navbar-inverse {
    background-color: #253409;
    border-color: #080808;
}
.txtSmall{
    font-size: 0.8rem;
    color: #ff9e9e;
}