@charset "UTF-8";
/* Sass Document */
/* Scss Document */
/* 全体
============================================================================================================*/
* {
  padding: 0px;
  margin: 0px; }

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal; }

/* body
============================================================================================================*/
body {
  color: #000000;
  font-size: 1em;
  line-height: 1.8;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  font-family: 'Noto Sans JP','Roboto',  sans-serif;
  margin-top: 0px;
  background-color: #fff; }

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  line-height: 100%; }

a {
  text-decoration: none;
  color: #003399; }
  a img {
    border-style: none; }

.clear {
  clear: both; }
  .clear hr {
    display: none; }

a:hover {
  text-decoration: underline;
  color: #FF6600;
  transition: 0.5s; }
  a:hover img {
    opacity: 0.6;
    filter: alpha(opacity=60);
    transition: 0.5s; }

ul li {
  list-style-type: none; }

.ankerbox {
  position: relative; }
  .ankerbox a {
    position: absolute;
    top: -60px; }

.video {
  width: 100%;
  /*横幅いっぱいにwidthを指定*/
  padding-bottom: 56.25%;
  /*高さをpaddingで指定(16:9)*/
  height: 0px;
  /*高さはpaddingで指定するためheightは0に*/
  position: relative;
  margin-top: 30px; }

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* Scss Document */
/* Scss Document */
header {
  background: #21457c;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  position: sticky;
  line-height: 100%;
  color: white;
  top: 0;
  z-index: 999; }
  header .logo {
    font-weight: 600;
    border-right: 1px solid white;
    padding-right: 15px; }
    header .logo a {
      color: white; }
  header .head-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    header .head-nav a {
      color: white; }
    header .head-nav p {
      border-right: 1px solid white;
      padding-left: 10px;
      padding-right: 10px;
      font-size: 12px; }
      header .head-nav p:last-child {
        padding-right: 0; /* YKS */
        border-right: 0; }

main {
  padding-top: 10px; }

/* Scss Document contents */
.cp_fullscreenmenu {
  display: none; }

body {
  background: #f0f0f0; }

input[type="date"] {
  width: 130px; }

.mn {
  text-align: end; }
  .mn input {
    text-align: end; }

.cn {
  text-align: center; }

.democheck {
  display: none; }

.democheck + p {
  display: none; }

.democheck:checked + p {
  display: block; }

.modal-content {
  box-shadow: 0 0 10px black; }

.td-button {
  display: flex;
  justify-content: space-between; }

.form-control, .form-control-sm {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 1px;
  padding-bottom: 1px;
  min-height: auto;
  font-size: 13px; }
  .form-control:hover, .form-control-sm:hover {
    background: #fff6ed;
    transition: 0.5s; }

.form-select {
  padding-left: 5px;
  padding-right: 15px;
  padding-top: 1px;
  padding-bottom: 1px;
  min-height: auto;
  font-size: 13px; }

.btn-sm {
  min-height: auto;
  padding: 3px;
  font-size: 11px; }

input[type="date"] {
  width: 100px; }

.d-flex input, .d-flex select, .d-flex button {
  margin-left: 0px;
  margin-right: 2px; }

.login {
  height: 60vh; /* YKS */
  display: flex;
  justify-content: center;
  align-items: center; }

.main {
  display: flex;
  justify-content: space-between; }
  .main .sec01 {
    flex-basis: 30%;
    background: #EFEFEF;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr; }
    .main .sec01 p {
      color: white;
      font-size: 32px;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 10px;
      line-height: 140%;
      flex-grow: 1; }
      .main .sec01 p span {
        margin-right: 10px; }
        .main .sec01 p span img {
          width: 50px; }
    .main .sec01 ul {
      display: flex;
      padding: 5px; }
      .main .sec01 ul li {
        flex-grow: 1;
        margin: 2px; }
        .main .sec01 ul li a {
          background: white;
          display: flex;
          align-items: center;
          padding: 8px;
          font-weight: 600;
          color: #191919;
          font-size: 18px; }
          .main .sec01 ul li a img {
            height: 30px;
            margin-right: 10px; }
          .main .sec01 ul li a:hover {
            background: #ffbb64; }
    .main .sec01 div {
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      flex-direction: column; }
      .main .sec01 div:last-child {
        margin-bottom: 0; }
    .main .sec01 .kokyaku {
      background: #4C55CE; }
    .main .sec01 .mitsumori {
      background: #12A6A7; }
    .main .sec01 .jisseki {
      background: #D15324; }
    .main .sec01 .contact-menu {
      background: #6EB0FF; }
    .main .sec01 .index-contact a {
      color: white;
      font-size: 32px;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      background: #162c60; }
      .main .sec01 .index-contact a:hover {
        background: #ff7600; }
  .main .sec02 {
    flex-basis: 25%;
    background: #EFEFEF;
    display: grid; }
    .main .sec02 article {
      margin-bottom: 5px; }
      .main .sec02 article a {
        display: flex;
        align-items: center;
        padding: 20px;
        font-size: 30px;
        font-weight: 600;
        color: #373737;
        line-height: 100%;
        height: 100%; }
        .main .sec02 article a span {
          background: white;
          border-radius: 50%;
          width: 50px;
          height: 50px;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-right: 10px; }
          .main .sec02 article a span img {
            width: 40px;
            margin-left: 10px;
            margin-right: 10px; }
        .main .sec02 article a:hover {
          background: #ffc942; }
    .main .sec02 div p {
      display: flex;
      align-items: center;
      padding: 20px;
      font-size: 30px;
      font-weight: 600;
      color: #373737;
      line-height: 100%; }
      .main .sec02 div p span {
        background: white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px; }
        .main .sec02 div p span img {
          width: 40px;
          margin-left: 10px;
          margin-right: 10px; }
    .main .sec02 div ul {
      padding: 0 10px 0 10px;
      display: grid; }
        .main .sec02 div ul li a {
          background: white;
          display: flex;
          align-items: center;
          padding: 10px;
          color: #262626; }
          .main .sec02 div ul li a span {
            margin-right: 10px; }
            .main .sec02 div ul li a span img {
              width: 30px; }
          .main .sec02 div ul li a:hover {
            background: #ffe5a4; }
    .main .sec02 .nyukin {
      background: #D9EDFF; }
    .main .sec02 .shiharai {
      background: #DCFFEC; }
    .main .sec02 .seikyu {
      background: #FFF8DE;
      display: grid; }
  .main .sec03 {
    flex-basis: 23%;
    background: #EFEFEF;
    display: grid; }
    .main .sec03 p {
      padding: 10px;
      font-size: 20px;
      font-weight: 600; }
    .main .sec03 ul {
      background: white;
      padding: 10px; /* YKS */
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 5px; }
      .main .sec03 ul li {
        list-style: inherit;
        line-height: 160%;
        margin-left: 30px;
        margin-right: 5px; }
        .main .sec03 ul li a {
          padding: 5px;
          color: #2e2e2e;
          display: block; }
  .main .sec04 {
    flex-basis: 20%;
    background: #EFEFEF;
 /*   display: grid; */
    }
    .main .sec04 p {
      padding: 10px;
      font-size: 20px;
      font-weight: 600; }
    .main .sec04 ul {
      background: #EFEFEF;
      display: grid; }
      .main .sec04 ul .sub {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 5px;
        position: relative; }
        .main .sec04 ul .sub label {
          background: white;
          padding: 8px 8px 8px 20px;
          display: block; }
          .main .sec04 ul .sub label:after {
            content: " ";
            display: block;
            width: 15px;
            height: 15px;
            position: absolute;
            right: 15px;
            top: 18px;
            border-style: solid;
            border-color: gray;
            border-width: 5px 5px 0 0;
            transform: rotate(45deg); }
          .main .sec04 ul .sub label:hover {
            background: #ffe5cc; }
        .main .sec04 ul .sub div {
          visibility: hidden;
          height: 0;
          position: absolute;
          top: 0;
          z-index: 900;
          box-shadow: 0 0 0px black;
          transition: 0.5s;
          opacity: 0;
          left: 65%;
          background: white;
          background: #e3e3e3;
          width: 60%; }
          .main .sec04 ul .sub div a {
            display: block;
            font-size: 14px;
            color: black;
            padding: 8px;
            border-bottom: 1px dotted #ccc;
            line-height: 120%; }
            .main .sec04 ul .sub div a:hover {
              background: #fff0c6;
              color: #5c1213; }
        .main .sec04 ul .sub:hover label + div {
          visibility: visible;
          box-shadow: 0 0 3px gray;
          transition: 0.5s;
          opacity: 1;
          background: white;
          top: -20px;
          left: 60%;
          height: inherit; }
      .main .sec04 ul .nosub {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 2px;
        position: relative; }
        .main .sec04 ul .nosub a {
          background: white;
          padding: 5px 5px 5px 20px;
          display: block;
          color: black; }
          .main .sec04 ul .nosub a:hover {
            background: #ffe5cc; }

.index {
  display: flex;
  justify-content: space-between; }
  .index ul {
    background: white;
    margin: 1%;
    border-radius: 10px;
    padding-top: 15px; }
    .index ul h3 {
      font-size: 20px;
      font-weight: 600;
      padding: 5px; }
    .index ul li {
      margin-bottom: 10px;
      display: flex;
      flex-wrap: wrap;
      position: relative; }
      .index ul li a {
        margin: 5px; }
      .index ul li:hover a + p {
        visibility: visible;
        height: inherit;
        transition: 0.5s;
        overflow-y: hidden;
        opacity: 1; }
      .index ul li p {
        visibility: hidden;
        height: 0px;
        transition: 0.5s;
        overflow-y: hidden;
        position: absolute;
        left: 90px;
        top: 5px;
        display: block;
        background: rgba(255, 255, 255, 0.3);
        z-index: 900;
        opacity: 0; }
      .index ul li p {
        margin-left: 20px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column; }
        .index ul li p a {
          width: 150px;
          margin-bottom: 2px;
          text-align: left; }
      .index ul li hr {
        border-bottom: 1px dotted gray;
        display: block !important;
        background: gray;
        height: 1px;
        width: 100%; }

.list tr:hover {
  background: #ffe8bf; }

#wrapper {
  max-width: 1200px;
  min-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px; }

#wrapper-inner {
  background: white;
  border-radius: 5px;
  padding: 10px;
  min-height: calc(100vh - 15px); }

h1 {
  font-weight: 600;
  font-size: 18px;
  padding: 8px;
  position: sticky;
  top: 30px;
  background: white;
  display: flex;
  justify-content: space-between;
  z-index: 980; }
  h1 nav ul {
    display: flex; }
    h1 nav ul li {
      margin-left: 5px; }
      h1 nav ul li a {
        background: rgba(228, 228, 228, 0.5);
        border-radius: 5px;
        color: #252525;
        font-size: 14px;
        padding: 5px;
        cursor: pointer; /* YKS */
        border: 1px solid #d7d7d7; }
        h1 nav ul li a:hover {
          background: #ffe2ba;
          text-decoration: none; }
      h1 nav ul li .red {
        background: #b7171a;
        color: white; }
      h1 nav ul li .lightblue {
        background: #add8e6; }

h2 {
  font-weight: 600;
  font-size: 18px;
  padding: 8px;
  background: white; }

h3 {
  margin-bottom: 5px; }
  h3 span {
    padding: 3px;
    width: 120px;
    font-size: 14px;
    display: flex;
    align-items: center;
    min-height: 33px; }

table {
  margin-bottom: 0.6rem; }
  table:last-child {
    margin-bottom: 0px; }

.table01, .table02 { /* YKS */
  border-color: #eee;
  border-style: solid;
  border-width: 0 0 1px 1px;
  font-size: 14px;
  line-height: 14px; }
  .table01 th, .table01 td,
  .table02 th, .table02 td { /* YKS */
    border-color: #eee;
    border-style: solid;
    border-width: 1px 1px 0 0;
    padding: 3px;
    background: white; }
  .table01 td > input:not(.form-control-sm), /* YKS */
  .table02 td > input:not(.form-control-sm) { /* YKS */
    padding: 0;
    line-height: 100%; }
  .table01 th {
    width: 120px;
    white-space: nowrap; }
  .table01 th.narrow { /* YKS */
    width: 80px; }
  .table02 th { /* YKS */
    white-space: nowrap; }
  .table01 .th td,
  .table02 .th td { /* YKS */
    white-space: nowrap;
    text-align: center; }

.table-list {
  border-color: #eee;
  border-style: solid;
  border-width: 0 0 1px 1px;
  font-size: 12px;
  line-height: 14px; }
  .table-list th, .table-list td {
    border-color: #eee;
    border-style: solid;
    border-width: 1px 1px 0 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.5); }

.th-c1 th {
  background: #dddddd;
  color: #212121; }
.th-c1 .th td {
  background: #dddddd;
  color: #212121; }
.th-c1 span {
  background: #dddddd;
  color: #212121; }

.th-c2 th {
  background: #bac6eb;
  color: #28223d; }
.th-c2 .th td {
  background: #bac6eb;
  color: #28223d; }
.th-c2 span {
  background: #bac6eb;
  color: #28223d; }
.th-c2 span.lighter { /* YKS */
  background: #dddddd;
  color: #212121; }

.td1-sticky tr th:first-child {
  position: sticky;
  left: 0;
  z-index: 800; }
.td1-sticky tr td:first-child {
  position: sticky;
  left: 0;
  z-index: 800; }

.tr-on {
  color: red; }
  .tr-on td {
    background-color: #ffefba !important; }

.input-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative; }
  .input-area button {
    margin: 5px; }
  .input-area .del {
    position: absolute;
    right: 0;
    bottom: 0; }

.input-area-sticky {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5); }

.th-10 th {
  width: 10px; }

.th-100 th {
  width: 100px; }

.th-150 th {
  width: 150px; }

.flex-sb {
  display: flex;
  justify-content: space-between; }

.sticky-table-sm {
  height: 130px;
  overflow-y: auto;
  position: relative;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px; }
  .sticky-table-sm thead {
    position: sticky;
    top: 0;
    z-index: 990;
    background: white; }
    .sticky-table-sm thead:before {
      border-top: 1px solid white;
      position: absolute;
      top: 0px;
      width: 100%;
      content: " ";
      display: white; }
  .sticky-table-sm tbody {
    position: relative;
    z-index: 50; }

main section {
  padding: 10px;
  background: #f8f8f8; /* YKS */
  margin-bottom: 10px; }
  main section hr {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 1px; }
main .b2 {
  background: #efe; }

.sm-tab .nav-link {
  padding: 5px; }

.tab-content .tab-pane {
  background: white;
  padding: 5px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: lightgray; }

.cell-table {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 700px; }
  .cell-table table {
    width: 3600px;
    font-size: 12px;
    border-collapse: separate; /* YKS */
    border-color: lightgray;
    border-style: solid;
    border-width: 0 0 1px 1px; }
    .cell-table table thead {
      position: sticky;
      top: 0;
      z-index: 900; }
    .cell-table table th {
      background: #f0f0f0;
      line-height: 110%;
      text-align: center;
      white-space: nowrap;
      position: relative;
      z-index: 700; }
    .cell-table table tbody {
      position: relative;
      z-index: 690; }
    .cell-table table th, .cell-table table td {
      border-color: lightgray;
      border-style: solid;
      border-width: 1px 1px 0px 0px !important;
      padding: 1px; }
    .cell-table table td {
      background: white; }
    .cell-table table tr.table-light td { /* YKS */
      background-color: lightgray; }
    .cell-table table tr.table-warning td { /* YKS */
      background-color: #fff3cd; }
    .cell-table table tr.table-success td { /* YKS */
      background-color: #d1e7dd; }
    .cell-table table tr.table-info td { /* YKS */
      background-color: #cff4fc; }
    .cell-table table input[type="text"], .cell-table table input[type="tel"] {
      font-size: 12px;
      border: none;
      width: 100%; }
    .cell-table table select {
      border: none; }
  .cell-table .cell-1 {
    background: #c4e0ff; }
  .cell-table .cell-2 {
    background: #fffadf; }
  .cell-table .cell-3 {
    background: #dfffe3; }
  .cell-table .cell-4 {
    background: #ffdfdb; } /* YKS */
  .cell-table table.mw2800 { /* YKS */
    min-width: 2800px;
    width: auto; }

.modal-body table {
  margin-left: auto;
  margin-right: auto; }

.other-list {
  height: 50px;
  overflow-y: auto; }

.h3-mn {
  display: flex;
  align-items: center; }
  .h3-mn span {
    background: white;
    margin-left: 10px;
    border: 1px solid gray;
    padding: 3px;
    min-width: 120px;
    justify-content: flex-end;
    display: flex;
    align-content: center; }

.table-in-ul {
  display: flex; }
  .table-in-ul li {
    display: flex;
    align-items: center;
    margin-right: 5px; }
    .table-in-ul li span {
      padding: 5px; }
    .table-in-ul li input {
      margin-left: 5px;
      margin-right: 5px; }

.select-label {
  display: flex;
  flex-wrap: wrap; }
  .select-label li {
    margin: 3px;
    padding: 8px;
    border: 1px solid lightgray;
    display: flex;
    align-items: center;
    line-height: 100%; }
    .select-label li input {
      margin-right: 10px; }
    .select-label li:hover {
      border-color: orange;
      color: #ff5f00; }
    .select-label li label {
      display: block; }

.input-option {
  position: relative; }
  .input-option p {
    position: absolute;
    right: 0;
    z-index: 800; }

.comp td {
  background-color: #ffb8ba !important; }

.config .config-inner {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid gray; }
.config .config-inner2 {
  margin-left: 10px; }
  .config .config-inner2 h3 {
    padding: 2px;
    font-weight: 600; }

.config-page {
  display: flex;
  justify-content: space-between; }
  .config-page .config-nav {
    flex-basis: 100px;
    position: relative; }
    .config-page .config-nav ul {
      position: sticky;
      top: 80px;
      width: 100%; }
      .config-page .config-nav ul li {
        margin-bottom: 5px; }
        .config-page .config-nav ul li a {
          background: rgba(233, 233, 233, 0.5);
          padding: 5px;
          display: block;
          color: black; }
          .config-page .config-nav ul li a:hover {
            background: #ffe39c; }
  .config-page .config-body {
    flex-grow: 1;
    padding-bottom: 1vh; } /* YKS */
  .config-page .input-area {
    position: sticky;
    bottom: 0; }

.select-radio input {
  margin-left: 3px;
  margin-right: 3px; }

.select-radio-line {
  display: flex; }
  .select-radio-line li {
    margin-right: 10px;
    min-width: 90px; }
  .select-radio-line input {
    margin-left: 3px;
    margin-right: 3px; }

/* estimate Document */
.hide {
  display: none; }

.mitsumori-table {
  width: 100%; }

.dashuboard-m, .page-mate-regi {
  width: 99%;
  overflow-x: auto;
  clear: both;
  max-height: 500px; }

.mitsumori-check {
  margin-top: 10px;
  margin-bottom: 10px; }

.mitsumori-check label {
  padding-right: 5px; }

.dashuboard table {
  min-width: 50%;
  margin-bottom: 10px; }

.dashuboard .c-table {
  width: 100%;
  margin-bottom: 0px; }

.dashuboard table,
.mitsumori-table table,
.c-table,
.std-table table {
  border-color: #eee;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-collapse: separate; /* YKS */
  line-height: 100%; }

.dashuboard table th, .mitsumori-table table th, .c-table th {
  background-color: #E4E4E4;
  white-space: nowrap; }

.mitsumori-table table th.material {
  background-color: #dbe5ff; }

.mitsumori-table table th.process {
  background-color: #fffbdb; }

.mitsumori-table table th.construct {
  background-color: #dbffe8; }

.mitsumori-table table th.cost {
  background-color: #ffdfdb; }

a.contractor-selector { /* YKS */
  cursor: pointer}

tr.heading td.colored, tr.heading td.colored input {
  background: #0a72ff;
  color: #e4e4e4; }

tr.submaterial td.colored, tr.submaterial td.colored input {
  background-color: rgba(174, 221, 255, 0.5);
  color: #1f4e70; }

tr.arbitrary td.colored,
tr.arbitrary td.colored input,
td.arbitrary,
input.arbitrary {
  background-color: #fadaff; }

.dashuboard table th,
.dashuboard table td,
.mitsumori-table table th,
.mitsumori-table table td,
.std-table table th,
.std-table table td,
.c-table th {
  border-color: #ccc;
  border-style: solid;
  border-width: 0 0 1px 1px;
  padding: 2px !important;
  font-size: 12px;
  line-height: 14px; }

/* Madoc 修正 2019-01-11 */
.dashuboard .form-input input,
.dashuboard-m .form-input input,
.modal-content .form-input input {
  border: 1px solid #FFFFFF; }

.mid-menu {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  margin-top: 5px;
  justify-content: space-between;
  align-items: center; }

.mid-menu div {
  padding-top: 5px;
  padding-right: 8px;
  padding-bottom: 5px;
  padding-left: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  margin-right: 2px; }

.mid-menu div article {
  display: flex; }

.mid-menu h4 {
  line-height: 100%;
  margin-top: 5px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  color: #363636;
  font-weight: normal;
  border-width: 0px;
  font-size: 90%;
  display: flex;
  justify-content: space-between; }

.mid-menu input {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  cursor: hand;
  padding-left: 10px;
  padding-right: 10px; }
/* YKS
.mid-menu input:hover {
  background-color: #FF9600; }
*/

.check {
  text-align: center; }

.open span, .open2 span {
  float: right; }

.mid-menu-a {
  margin-top: 10px;
  display: flex;
  justify-content: space-between; }

.mid-menu-a .mid-menu2 {
  width: 100%; }

.mid-menu-a .head-menu {
  width: 30%;
  padding-top: 8px; }

.mid-menu h4 p {
  margin-right: 10px; }

.mid-menu h4 span {
  color: #470001;
  font-size: 90%; }

.mid-menu article span {
  font-size: 80%;
  display: block; }

.mid-menu2 .mid-menu2-title {
  color: white;
  width: 17%;
  padding-left: 2%;
  font-size: 18px;
  font-weight: 600;
  font-weight: bold;
  cursor: pointer; }

.head-keisan {
  /*
  	width: 340px;
  	float: right;
  */
  text-align: left; }

.head-keisan ul {
  display: flex;
  align-items: center; }

.head-keisan ul li {
  /*	float: left; */
  font-size: 90%;
  line-height: 105%;
  width: 16.5%; }

.head-keisan input[type="text"] {
  text-align: right;
  /*	width: 90%; */
  width: 85%;
  margin-left: 5px; }

.head-keisan input.short {
  width: 65%; }

.head-menu input,
.head-menu2 input,
.mid-menu .head-menu input {
  width: 90px;
  height: 38px;
  text-indent: -9999px;
  border-width: 0px;
  cursor: pointer;
  cursor: hand; }

.mid-menu2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
  background-color: #055200;
  padding-top: 3px;
  padding-right: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
  border-radius: 10px;
  align-items: center;
  height: 60px; }

.head-keisan {
  padding-right: 1%;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-left: 1%;
  border-radius: 10px;
  background-color: white;
  width: 78%; }

#mid {
  display: none; }

#mid + .head-keisan {
  visibility: hidden;
  transition: 0.5s;
  height: 0px;
  overflow-y: hidden;
  padding: 0px; }

#mid:checked + .head-keisan {
  visibility: visible;
  transition: 0.5s;
  height: auto;
  overflow-y: hidden;
  padding: 8px; }

.form-input input {
  cursor: pointer;
  cursor: hand; }

.form-input input:hover {
  background-color: #dddddd; }

.input-20 {
  width: 20px; }

.input-30 {
  width: 30px; }

.input-40 {
  width: 40px; }

.input-50 {
  width: 50px; }

.input-50c {
  width: 50px;
  text-align: center; }

.input-60 { /* YKS */
  width: 60px; }

.input-70 { /* YKS */
  width: 70px; }

.input-70c { /* YKS */
  width: 70px;
  text-align: center; }

.input-80 {
  width: 80px; }

.input-100 {
  width: 100px; }

.input-110 {
  width: 110px; }

.input-120 {
  width: 120px; }

.input-130 {
  width: 130px; }

.input-150 {
  width: 150px; }

.input-170 {
  width: 170px; }

.input-200 {
  width: 200px; }

.input-250 {
  width: 250px; }

.input-300 {
  width: 300px; }

.input-350 {
  width: 340px; }

.input-400 {
  width: 400px; }

.input-500 {
  width: 500px; }

.input-gyomeisai {
  width: 80%; }

.input-rate {
  width: 3.5em;
  text-align: right; }

.input-50p {
  width: 50%; }

.input-85p {
  width: 85%; }

.input-100p {
  width: 90%; }

.input-100pct {
  width: 98%; }

.input-size-max span #textarea {
  width: 800px; }

.input-form-20 {
  width: 35px; }

.input-form-50 {
  width: 50px; }

.input-form-70 {
  width: 70px; }

.input-form-100 {
  width: 100px; }

.input-form-120 {
  width: 100px; }

.input-h24px {
  height: 24px; }

.t01, .t01d {
  width: 3%; }

.t02, .t02d {
  width: 23%; }

.t03, .t03d {
  width: 20%; }

.t04, .t04d {
  width: 7%; }

.t05, .t05d {
  width: 6%; }

.t06, .t06d {
  width: 10%; }

.t07, .t07d {
  width: 10%; }

.t08, .t08d, w-auto {
  width: auto; }

.t09, .t09d {
  width: 50%; }

.t11, .t11d {
  width: 12%; }

.t11f {
  width: 12% !important; }

.t12, .t12d {
  width: 5.5%; }

.t01d, .t05d, .t12d {
  text-align: center; }

.t04d, .t06d, .t08d, .t07d {
  text-align: right; }

.mw70 {
	min-width: 70px !important;
}

tr td textarea {
  width: 100%; }

.c-table {
  width: 100%;
  clear: both; }

/*
▼行・列ヘッダ固定化▼
 https://125naroom.com/web/3816
*/
.sticky_table table {
  border-top: 1px solid gray; }

.sticky_table thead th {
  position: sticky;
  top: 0;
  z-index: 0;
  border-top: 0px solid gray; }

.sticky_table thead th:after {
  position: absolute;
  top: -1px;
  left: -1px;
  border-top: 1px solid gray;
  content: " ";
  display: block;
  width: 101%; }

.sticky_table thead th:first-child {
  position: sticky;
  top: 0;
  left: 0px;
  z-index: 800;
  border-left: 1px solid gray; }

.sticky_table thead td {
  background: rgba(235, 235, 235, 0.6); }

.sticky_table thead .cell-1 {
  background: #c9dbff; }

.sticky_table thead .cell-2 {
  background: #fffacf; }

.sticky_table thead .cell-3 {
  background: #e3ffdb; }

.sticky_table thead .cell-4 {
  background: #c6cbff; }

.sticky_table .th {
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  z-index: 0;
  background: white;
  border-left: 1px solid gray; }

/* 複合セル整列 */
.check-flex p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; }

th.check-flex p {
  text-align: left;
  width: 100%; }

td.check-flex p label {
  border-right: 1px solid gray;
  padding-right: 3px;
  padding-left: 1px;
  margin-right: 3px; }

.check-flex p input {
  margin-left: 3px; }

/*
 ▲行・列ヘッダ固定化▲
*/
.input-cell table,
.input-cell2 table {
  width: 100%;
  margin-bottom: 5px; }

.input-cell th,
.input-cell2 th {
  width: 80px;
  text-align: left;
  background-color: #E4E4E4;
  padding-left: 5px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  white-space: nowrap;
  border-bottom: solid 1px #FFFFFF; } /* YKS */

.input-cell th,
.input-cell td,
.input-cell2 th,
.input-cell2 td {
  padding: 1px 3px;
  font-size: 14px; } /* YKS */

.class-box, /* YKS */
.tanka-box {
  position: relative;
  border: 1px solid #6c6c6c;
  padding: 10px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
  margin-bottom: 5px; }
  .class-box h3, /* YKS */
  .tanka-box h3 {
    position: absolute;
    top: -10px;
    background: white; }
  .class-box table, /* YKS */
  .tanka-box table {
    margin-bottom: 0;
    margin-right: 10px; }

.indicator {
  margin-top: -5px;
  margin-bottom: 5px; }

.indicator ul {
  display: flex;
  font-size: 12px;
  color: gray;
  font-style: normal;
  font-weight: 400; }

.indicator li {
  min-width: 100px;
  border: #cbcbcb;
  margin: 2px 5px 2px 2px;
  text-align: center; }

.indicator .sales-recorded {
  background: #b91518;
  color: white; }

.indicator .sales-pending {
  background: #bb8888;
  color: #ddd; }

.indicator .bill-issued {
  background: #183c90;
  color: white; }

.indicator .bill-pending {
  background: #8888bb;
  color: #ddd; }

.print-modal {
  font-size: 12px; }
  .print-modal div div {
    display: flex; }
    .print-modal div div label {
      margin-right: 3px; }
  .print-modal div input[type="tel"] {
    margin-right: 10px;
    width: 80px; }
  .print-modal hr { /* YKS */
    margin: 5px 0; }

/* Scss Document */
.contact {
  margin-top: 20px;
  padding-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }
  .contact input[type="text"], .contact textarea {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .contact dl {
    background: white;
    display: flex;
    justify-content: space-between; }
    .contact dl dt {
      flex-basis: 30%;
      text-align: left; }
    .contact dl dd {
      flex-basis: 70%; }
    .contact dl dt, .contact dl dd {
      padding: 10px; }
    .contact dl dd input {
      padding: 8px; }
    .contact dl:nth-child(even) {
      background: rgba(213, 213, 213, 0.2); }
  .contact p {
    display: flex;
    justify-content: center;
    align-items: center; }
    .contact p input {
      padding: 15px;
      min-width: 280px;
      font-size: 110%;
      cursor: pointer;
      cursor: hand;
      border: 1px gray solid;
      background: white; }
      .contact p input:hover {
        background: #ffd27f; }
  .contact article {
    font-size: 80%;
    text-align: center;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }

@media screen and (max-width: 480px) {
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

  .cp_fullscreenmenu {
    display: block; }

  .cp_fullscreenmenu {
    position: fixed;
    z-index: 998;
    top: 5px;
    right: 5px;
    border: 1px solid #ababab; }

  /*menuコンテンツ*/
  .cp_fullscreenmenu .menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    outline: 1px solid transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    align-items: center;
    justify-content: center; }

  .cp_fullscreenmenu .menu > div {
    display: flex;
    overflow: hidden;
    width: 200vw;
    height: 200vw;
    transition: all 0.4s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
    text-align: center;
    color: #212121;
    flex: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8); }

  .cp_fullscreenmenu .menu > div > ul {
    max-height: 200vh;
    margin: 0;
    padding: 0 1em;
    list-style: none;
    opacity: 0;
    width: 100%; }

  .cp_fullscreenmenu .menu > div > ul > li {
    display: block;
    padding: 0;
    font-size: 90%;
    border-bottom: 1px dotted white; }

  .cp_fullscreenmenu .menu > div > ul > li a {
    display: block;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    color: white; }

  /*クリックしたらメニューが開閉の動作*/
  .cp_fullscreenmenu .toggle {
    position: fixed;
    z-index: 999;
    top: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    right: 0px; }

  .cp_fullscreenmenu .toggle:checked + .hamburger > span {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }

  .cp_fullscreenmenu .toggle:checked + .hamburger > span:before,
  .cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
    top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }

  .cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
    opacity: 0; }

  .cp_fullscreenmenu .toggle:checked ~ .menu {
    visibility: visible;
    pointer-events: auto; }

  .cp_fullscreenmenu .toggle:checked ~ .menu > div {
    transition-duration: 0.75s;
    -webkit-transform: scale(1);
    transform: scale(1); }

  .cp_fullscreenmenu .toggle:checked ~ .menu > div > ul {
    opacity: 1; }

  .cp_fullscreenmenu .toggle:checked:hover + .hamburger > span {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg); }

  /*ハンバーガー*/
  .cp_fullscreenmenu .hamburger {
    z-index: 980;
    top: 5px;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0.5em 1em;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    border-radius: 0 0.12em 0.12em 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    right: 0%;
    background-color: white;
    position: fixed;
    border: 1px solid #cccccc; }

  .cp_fullscreenmenu .hamburger > span {
    position: relative;
    top: 50%;
    display: block;
    width: 100%;
    height: 2px;
    transition: all 0.4s ease;
    background-color: #525252;
    right: 0px; }

  .cp_fullscreenmenu .hamburger > span:before,
  .cp_fullscreenmenu .hamburger > span:after {
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    transition: all 0.4s ease;
    background: inherit; }

  .cp_fullscreenmenu .hamburger > span:after {
    top: 10px; }

  .dropdown {
    display: inline-block;
    width: 100%; }

  #tg, #tg2 {
    display: none; } }
/* Scss mobile contents */


/* Custom margin, padding, font-size, color width */
.table01 .input-group-text,
.table02 .input-group-text { /* YKS */
	font-size: 14px;
	line-height: 1em;
}

table.nonstatic-td td, /* YKS */
table th.p2px,
table td.p2px {
	padding: 2px;
}

table th.p4px,
table td.p4px {
	padding: 4px 2px;
}

table th.p8px, /* YKS */
table td.p8px,
table td.th td {
	padding: 8px 6px;
}

table.static-th th,
table.static-th tr.th td,
table.static-table th,
table.static-table td {
	padding: 8px 6px;
}

table.static-table td.p4px {
	padding: 4px;
}


table.master-edit-table {
	width: 100%;
}

table.master-edit-table > tbody > tr > th {
	padding: 8px 6px;
}

.minw110x {
	min-width:110px;
}

.pl3x {
	padding-left: 3px;
}

.pl8x {
	padding-left: 8px;
}

.pr7x {
	padding-right: 7px;
} 

.size-sm {
	font-size: 85%;
}

span.required {
	color: #dc3545;
	font-weight: bold;
}

.hit_count {
	font-size: 14px;
}

.errors,
.lookup-warning {
	font-size: 14px;
	background-color: #fcd088;
	margin-bottom: 8px;
}

.placeholder {
	margin-left: 12px;
	color: #dc3545;
}

.w100p {
	width: 100%;
}

img.img240 {
	width: 240px;
	height: auto;
}

img.img100 {
	width: 100px;
	height: auto;
}

#TblCandidates tr.parent > td {
	background-color: #fff0f0;
}

/* ▼YKS */
.material-list {
	padding: 15px 10px;
	border: none;
}

.material-list table {
	width: 100%;
	margin-bottom: 5px;
/* border: 1px solid #8B8B8B; */
}

.material-list tr.th > td {
	padding: 8px 6px;
}

.material-list th {
	text-align: center;
	border-bottom: solid 1px #aaa;
}
.material-list td {
	text-align: left;
	border-top: solid 1px #ccc;
}

.material-list td input {
	margin: 3px 8px;
	padding: 3px 8px;
}

.material-list tr.current > td, /* YKS */
.material-list td.current {
	background-color: #cef;
}

.material-list td .warning {
	color: #f00;
}

.fakedate {
	width: 100px;
}

.startup-overlay {
  z-index: 1999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /*for old Safari*/
  height: 100vh;
  background-color: rgba(0,0,0,.5);
}

.startup-overlay.lighter {
  text-align: center;
  background-color: rgba(0,0,0,.1);
}

.startup-overlay .waiting-circle {
  margin-top: 33vw;
}

.mid-menu input.disabled {
  pointer-events: auto;
  color: grey;
}
.mid-menu input.disabled:active {
  pointer-events: none;
}

.mid-menu input.disabled:hover {
  cursor: default; }

.mid-menu input.disabled:active {
  pointer-events: none; }

.mid-menu input.disabled:focus {
  box-shadow: none; }

h1 nav ul li a.disabled {
  pointer-events: none;
  color: grey; }

div.pagenation-counter {
  display: inline-block; }

div.pagenation-counter.light-gray {
  color: #aaaaaa; }

div.pagenation-counter .counter-wrapper {
  display: inline-block;
  transform: translate(0, 2px); }

div.pagenation-counter .counter-wrapper .counter {
  display: inline-block;
  padding: 3px;
  color: #666666;
  background-color: #e9ecef !important; }

div.pagenation-counter .counter-wrapper .separator {
  display: inline-block;
  color: #666666;
  background-color: #ffffff !important; }

.mnw16p {
	min-width: 16%; }
/* ▲YKS */

/*
#sub-material-block table#TblResult tr.deleted {
	height: 25px;
}
*/
#sub-material-block table#TblResult tr.deleted > td {
	background-color: #e3e3e3;
	color: #888;
	font-weight: normal;
}

#sub-material-block table#TblResult tr.deleted > td.del > button.delsub {
	visibility: hidden;
}

.cell-table > table > tbody > tr.deleted > td {
	background-color: #e3e3e3;
	color: #888;
	font-weight: normal;
}

.ro > input, /* YKS */
input.ro {
	border: 1px dotted #888; /* #c5c5c5; */
}

/* ▼YKS */
.form-check-input[type="radio"] {
	transform: translate(0, -3px);
}
.form-check {
	transform: translate(0, 2px);
}
.pre-input-label {
	padding-top: 4px;
	padding-right: 5px;
}
.post-select-label {
	padding-top: 4px;
}
.fs-10x {
	font-size: 10px;
}
.fs-12x {
	font-size: 12px;
}
.fs-14x {
	font-size: 14px;
}
span.bg-clear {
	background: transparent;
}
.label-sm .input-group-text {
	font-size: 12px;
	padding: 0 5px;
}

.alert-dismissible .btn-close {
	padding: 1rem;
}

.maxw200x {
	max-width: 200px;
	min-width: 120px;
}

img.staff-stamp {
	max-width: 40px;
	height: auto;
}

.bg-success-subtle {
	background-color: #d1e7dd !important;
}

.modal-header .waiting-circle {
	width: 38px;
	height: 38px;
	margin-right: 50px;
}

.dashuboard, .std-table {
	width: 100%;
	overflow-x: auto;
	clear: both;
}
/* EOF */
/* widemode */
.wide-size{position: relative;min-height: 63vh;}
.wide-size .ws-label{font-size: 12px;padding: 2px;line-height: 100%;border-radius: 3px;margin-bottom: 2px;background: rgba(13,79,22,1.00);color: white;transition: 0.5s;position: absolute;top:-10px;z-index: 980;right: 0%; }
.wide-size .ws-label:hover{background: rgba(255,79,0,1.00);transition: 0.5s; }
.wide-size input + .wide-size-inner{position: relative;width: 100%;}
.wide-size input:checked + .wide-size-inner{position:fixed;left:0;height: 63vh;top: 37vh;width: 100% ;background: white;margin-left: auto;margin-right: auto}
.wide-size input:checked + .wide-size-inner .mitsumori{width: 98%;margin-left: auto;margin-right: auto;}
.wide-size input:checked + .wide-size-inner .ws-label{right:1%;}
/* widemode */