﻿@charset "UTF-8";
html, body {
  font-family: sans-serif;
  position: relative;
  min-height: 100vh;
  font-size: 16px;
  color: #333333;
  /*　tablet以下　*/
  /*　tablet以上　*/
}
@media screen and (max-width: 768px) {
  html, body {
    background-color: #e2e2e2;
  }
  html .min-dispNone, body .min-dispNone {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  html, body {
    font-size: 18px;
  }
  html .min-disp, body .min-disp {
    display: none;
  }
}

header {
  position: fixed;
  height: 50px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}
header .uscoLogo_aTag {
  height: 50px;
  padding: 0;
  margin: 0;
}
header .uscoLogo_aTag .uscoLogo {
  height: 90%;
}

#body-content {
  /*　tablet以下　*/
  /*876px以下になるとヘッダーが重なる*/
  /*　画面サイズが768pxから876pxまではここを読み込む　*/
  /*　876px以上　*/
}
@media screen and (max-width: 768px) {
  #body-content {
    padding-top: 65px;
    padding-bottom: 35px;
    background-color: #e2e2e2;
  }
  #body-content .min-dispNone {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 876px) {
  #body-content {
    padding-top: 120px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 876px) {
  #body-content {
    padding-top: 65px;
    padding-bottom: 35px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  color: #bbb;
  background: #393939;
  padding-left: 10px;
  padding-top: 5px;
}

/* header */
#pageTitle {
  text-align: center;
}

#navMenu > ul > li:first-child {
  border-left: 1px solid #ddd;
}
#navMenu > ul > li {
  border-right: 1px solid #ddd;
}

/* search input */
#searchform {
  /*medium以下の時だけ表示*/
}
#searchform .min-disp {
  display: none;
  margin: 0;
}
#searchform .dummy-label {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #searchform .form-group.min-dispNone {
    margin: 0;
  }
  #searchform .min-disp {
    display: unset;
  }
  #searchform .dummy-label {
    visibility: hidden;
  }
}

#row1 {
  display: flex;
  flex-wrap: wrap;
}
#row1 .form-group {
  display: flex;
  flex-direction: column;
  margin: 0 3px 5px 0;
  /*medium以下のとき*/
}
#row1 .form-group .calender {
  background-color: #fff;
}
#row1 .form-group label {
  font-size: 90%;
  color: #555;
  align-self: flex-start;
  margin-right: 3px;
  margin-bottom: 0px;
}
#row1 .form-group .input-wrapper {
  padding: 0px;
  margin: 0px;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  #row1 .form-group {
    font-size: 16px;
    flex-direction: row;
    margin-right: 0px;
    width: 100%;
    justify-content: space-between;
  }
  #row1 .form-group label {
    align-self: center;
  }
  #row1 .form-group .input-wrapper {
    width: 70%;
  }
  #row1 .form-group .input-group {
    display: flex;
    flex-direction: column;
  }
  #row1 .form-group .input-group .calender-wrapper {
    display: inline-flex;
  }
  #row1 .form-group .input-group .calender-wrapper input {
    border-radius: 3px;
  }
  #row1 .form-group .input-group .calender-wrapper button {
    border: none;
    height: 60%;
    padding: 3px;
    margin: 3px;
  }
}

#row2 #btnSearch-btnClear-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#row2 #btnSearch-btnClear-wrapper .btn {
  margin: unset;
}
#row2 #btnSearch-btnClear-wrapper #ButtonFormClear {
  font-size: 60%;
  margin-right: 3px;
}
@media screen and (max-width: 768px) {
  #row2 #btnSearch-btnClear-wrapper {
    width: 100%;
  }
  #row2 #btnSearch-btnClear-wrapper #fake_serachButton {
    width: 70%;
  }
}

/* search table */
.table-custom-result {
  margin-top: 5px;
}
.table-custom-result > tbody {
  font-size: 16px;
}
.table-custom-result > tbody > tr:first-child {
  color: #fff;
}
.table-custom-result > tbody > tr:first-child > th {
  color: #fff;
  background-color: #337ab7 !important;
  text-align: center;
  white-space: nowrap;
}
.table-custom-result > tbody > tr:first-child > th > a {
  color: #fff;
  text-align: center;
  text-decoration: underline;
}
.table-custom-result > tbody > tr:first-child > th.asc a:after {
  content: "▲";
}
.table-custom-result > tbody > tr:first-child > th.desc a:after {
  content: "▼";
}
.table-custom-result > tbody > tr > th {
  border: 1px solid #44a;
}
.table-custom-result > tbody > tr > td {
  vertical-align: middle !important;
  border: 1px solid #000;
}
.table-custom-result > tbody > tr:nth-child(odd) {
  background-color: #EEEEEE !important;
}

.table-custom-detail > tbody > tr th, .table-custom-detail > tbody > tr td {
  padding: 2px;
  vertical-align: middle;
}
.table-custom-detail > tbody > tr > th {
  font-size: 0.85em;
  color: #fff;
  background-color: #337ab7;
  white-space: nowrap;
}
.table-custom-detail > tbody > tr > td {
  /*padding: 1px 1px;*/
  background-color: #fff;
}
.table-custom-detail > tbody > tr > td .form-control {
  font-size: 0.85em;
  padding: 0px 0px;
}

#MainContent_ApproveCardGridView {
  /*iPad以上のサイズのとき*/
  /*iPad以下のサイズのとき*/
}
#MainContent_ApproveCardGridView .card-thumbnail-display {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #MainContent_ApproveCardGridView > tbody {
    font-size: 16px;
  }
  #MainContent_ApproveCardGridView > tbody > tr:first-child {
    color: #fff;
  }
  #MainContent_ApproveCardGridView > tbody > tr:first-child > th {
    color: #fff;
    background-color: #337ab7 !important;
    text-align: center;
    white-space: nowrap;
  }
  #MainContent_ApproveCardGridView > tbody > tr:first-child > th > a {
    color: #fff;
    text-align: center;
    text-decoration: underline;
  }
  #MainContent_ApproveCardGridView > tbody > tr:first-child > th.asc a:after {
    content: "▲";
  }
  #MainContent_ApproveCardGridView > tbody > tr:first-child > th.desc a:after {
    content: "▼";
  }
  #MainContent_ApproveCardGridView > tbody > tr > th {
    border: 1px solid #44a;
  }
  #MainContent_ApproveCardGridView > tbody > tr > td {
    vertical-align: middle !important;
    border: 1px solid #000;
  }
  #MainContent_ApproveCardGridView > tbody > tr:nth-child(odd) {
    background-color: #EEEEEE !important;
  }
  #MainContent_ApproveCardGridView .card-thumbnail-display {
    width: 100%;
    height: auto;
    max-width: 60px;
  }
  #MainContent_ApproveCardGridView tr:first-child th:last-child {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #MainContent_ApproveCardGridView {
    border: none;
    width: 100%;
    /*.td-status,*/
  }
  #MainContent_ApproveCardGridView .td-Name {
    font-weight: normal;
    font-size: 120%;
    color: #333333;
    border-top: none;
    padding: 5px 0 0 10px;
  }
  #MainContent_ApproveCardGridView .td-CompanyName {
    font-weight: bold;
    color: #333333;
    border-top: none;
    padding: 0 0 0 10px;
  }
  #MainContent_ApproveCardGridView .td-meetDate {
    font-size: 80%;
    color: #666666;
    border-top: none;
    padding: 0 10px 3px 10px;
  }
  #MainContent_ApproveCardGridView .td-distance {
    font-size: 80%;
    color: #666666;
    border: none;
    padding: 0 10px 2px 10px;
  }
  #MainContent_ApproveCardGridView tbody tr:first-child {
    display: none;
    margin: 0;
    padding: 0;
  }
  #MainContent_ApproveCardGridView tbody tr:first-child th {
    display: none;
  }
  #MainContent_ApproveCardGridView tbody .min-dispNone {
    display: none;
  }
  #MainContent_ApproveCardGridView tbody tr {
    display: block;
    margin-bottom: 5px;
    width: 100%;
    height: 100px;
    background-color: #fff;
  }
  #MainContent_ApproveCardGridView tbody td {
    display: block;
    width: 100%;
  }
  #MainContent_ApproveCardGridView tbody tr td:first-child {
    background-color: skyblue;
    height: 0px;
    padding: 0px;
    position: relative;
  }
  #MainContent_ApproveCardGridView tbody .card-thumbnail-display {
    max-width: unset;
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    opacity: 0;
  }
  #MainContent_ApproveCardGridView tbody .pagination-custom {
    background-color: transparent;
    margin: 0;
    height: 20px;
  }
  #MainContent_ApproveCardGridView tbody .pagination-custom table, #MainContent_ApproveCardGridView tbody .pagination-custom tbody, #MainContent_ApproveCardGridView tbody .pagination-custom tr {
    background-color: transparent;
  }
  #MainContent_ApproveCardGridView tbody .pagination-custom tr {
    display: block;
  }
  #MainContent_ApproveCardGridView tbody .pagination-custom td {
    display: inline;
  }
}

#MainContent_InputForm_HistoryDetailGridView {
  /*　tablet以上　*/
  /*　tablet以下　*/
}
@media screen and (min-width: 768px) {
  #MainContent_InputForm_HistoryDetailGridView > tbody {
    font-size: 16px;
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr:first-child {
    color: #fff;
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr:first-child > th {
    color: #fff;
    background-color: #337ab7 !important;
    text-align: center;
    white-space: nowrap;
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr:first-child > th > a {
    color: #fff;
    text-align: center;
    text-decoration: underline;
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr:first-child > th.asc a:after {
    content: "▲";
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr:first-child > th.desc a:after {
    content: "▼";
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr > th {
    border: 1px solid #44a;
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr > td {
    vertical-align: middle !important;
    border: 1px solid #000;
  }
  #MainContent_InputForm_HistoryDetailGridView > tbody > tr:nth-child(odd) {
    background-color: #EEEEEE !important;
  }
}
@media screen and (max-width: 768px) {
  #MainContent_InputForm_HistoryDetailGridView {
    border: none;
  }
  #MainContent_InputForm_HistoryDetailGridView tr {
    border: none;
  }
  #MainContent_InputForm_HistoryDetailGridView th {
    display: none;
  }
  #MainContent_InputForm_HistoryDetailGridView td {
    background-color: #fff;
    border: 1px solid #e2e2e2;
  }
}

.table-custom-pager > td > table > tbody > tr > td {
  border: 5px solid transparent;
}

.pagination-custom {
  /*display: inline-block;*/
  background-color: transparent;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination-custom table > tbody > tr > td {
  display: inline;
}
.pagination-custom table > tbody > tr > td > a, .pagination-custom table > tbody > tr > td > span {
  position: relative;
  float: left;
  padding: 8px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination-custom table > tbody > tr > td > span {
  position: relative;
  float: left;
  padding: 8px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  margin-left: -1px;
  z-index: 2;
  color: #aea79f;
  background-color: #f5f5f5;
  border-color: #dddddd;
  cursor: default;
}
.pagination-custom table > tbody > tr > td:first-child > a, .pagination-custom table > tbody > tr > td:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination-custom table > tbody > tr > td:last-child > a, .pagination-custom table > tbody > tr > td:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination-custom table > tbody > tr > td > a:hover, .pagination-custom table > tbody > tr > td > span:hover, .pagination-custom table > tbody > tr > td > a:focus, .pagination-custom table > tbody > tr > td > span:focus {
  /*color: #97310e;*/
  background-color: #eeeeee;
  border-color: #dddddd;
}

.custom-radio label {
  font-weight: normal;
}

select:not([readonly=readonly]):not([disabled=disabled]):focus,
textarea:not([readonly=readonly]):not([disabled=disabled]):focus,
input[type=text]:not([readonly=readonly]):not([disabled=disabled]):focus,
input[type=password]:not([readonly=readonly]):not([disabled=disabled]):focus,
input[type=number]:not([readonly=readonly]):not([disabled=disabled]):focus {
  background: #f2e263;
}

@media (min-width: 768px) {
  .editor-area {
    height: 80vh;
    overflow-y: scroll;
  }
}

.text-custom-bold {
  font-weight: bold;
}

/*入力・承認セレクト画面*/
.title_underLine {
  border-bottom: 2px solid #9E9C9C;
  border-left: 10px solid #9E9C9C;
  padding: 7px;
}

.list_status_wait ul {
  box-shadow: 0px 0px 3px silver;
  border: solid 1px whitesmoke;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  background: #fafafa;
}
.list_status_wait ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: circle !important;
}

#MainContent_uL_cardImage {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
#MainContent_uL_cardImage a li {
  list-style-type: none !important;
  margin: 5px;
}
#MainContent_uL_cardImage a li img {
  max-height: 100px;
  max-width: 200px;
}

.requiredItem {
  font-size: 10px;
  width: 30px;
  height: 15px;
  text-align: center;
  vertical-align: middle;
  padding: unset;
  background-color: #d9534f;
  border-radius: 5px;
}

.input-info-wrapper {
  padding: 3px 10px;
}

.input-info {
  font-size: 60%;
  color: #888;
}

.collapsible-sidebar ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.collapsible-sidebar ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
}
.collapsible-sidebar ul li img {
  height: 25px;
}
.collapsible-sidebar ul li:hover {
  background-color: #F8F8F8;
}

.article {
  border-left: solid 1.5px #C3C2C2;
}
.article iframe {
  width: 100%;
}

.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  /*background: #CDE3F5;*/
  background: #FFF5E1;
  border-radius: 15px;
}
.balloon1 ul {
  margin: 0;
  padding: 0;
  /*list-style: none;*/
}
.balloon1 ul li {
  margin: 5px 20px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #FFF5E1;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}

/*ボタンを右下に固定*/
.kotei_migishita {
  display: inline-block;
  text-decoration: none;
  background: #F89174;
  color: #FFF;
  width: 50px;
  height: 50px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #d66342;
  transition: 0.4s;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
}

.kotei_migishita:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  border-bottom: none;
}

/*右寄せの術*/
.rightSide {
  display: flex;
  justify-content: flex-end;
}

/*両端ぞろえの術*/
.btn-wrapper, .between {
  display: flex;
  justify-content: space-between;
}

/*色設定*/
.gray {
  color: #747171;
}

.red {
  color: #F0AD4E;
}

#change_log a:link {
  color: #fff;
}
#change_log a:visited {
  color: #fff;
}

@media (min-width: 1450px) {
    .container {
        width: 1420px;
    }
}