
/* -----------------------------------------------------------------
   form
   ----------------------------------------------------------------- */
  ::placeholder {
     color: #bbb;
     font-style: italic;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  #EditForm td{
    position:relative;
  }

  #EditForm tr {
      border-top: 1px solid #c4c6d5;
      border-bottom: 1px solid #c4c6d5;
  }

  #EditForm td:nth-child(1) {
    width: 29.999999%;
  }

  #EditForm td:nth-child(2) {
    width: 59.999999%;
  }
  #EditForm .check td:nth-child(2) {
    margin-left: 10%;
    color:#333;
  }

  #EditForm td {
    line-height: 1.5;
    padding: 20px 0 20px 20px;
    vertical-align: top;
  }

  #EditForm input,#EditForm select,#EditForm textarea {
    padding: 1vw 1vw;
    border: 1px solid #333;
    color: #555;
    background-color: #eeefff;
    background-image: none;
    -webkit-border-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0;
    -moz-background-clip: padding;
    border-radius: 0;
    font-size:1.2rem;
  }
  #EditForm textarea {
      overflow-y: scroll;
  }

  #EditForm input {
      //height: 30px;
  }

  #EditForm select {
      //height: 40px;
  }

  #EditForm .help-inline {
      display: inline-block;
      color: #a3a3a3;
      margin: 10px auto;
      font-size:0.9rem;
  }


  #EditForm input[type=checkbox],
  #EditForm input[type=radio] {
      display: inline-block;
      margin-right: 6px;
  }
  #EditForm input[type=checkbox] + label,
  #EditForm input[type=radio] + label {
      position: relative;
      display: inline-block;
      margin-right: 2rem;
      cursor: pointer;
  }

  #EditForm input[type=checkbox],
  #EditForm input[type=radio] {
      display: none;
      margin: 0;
  }
  #EditForm input[type=checkbox] + label,
  #EditForm input[type=radio] + label {
      padding: 0 0 0 24px;
  }
  #EditForm input[type=checkbox] + label::before,
  #EditForm input[type=radio] + label::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      display: block;
      width: 18px;
      height: 18px;
      margin-top: -9px;
      background: #FFF;
  }
  #EditForm input[type=radio] + label::before {
    border-radius: 9px;
  }

  #EditForm input[type=checkbox] + label::before,
  #EditForm input[type=radio] + label::before {
      border: 2px solid #ccc;
  }

  #EditForm input[type=checkbox]:checked + label::after,
  #EditForm input[type=radio]:checked + label::after {
      content: "";
      position: absolute;
      top: 50%;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      display: block;
  }
  #EditForm input[type=checkbox]:checked + label::after,
  #EditForm input[type=radio]:checked + label::after {
      left: 3px;
      width: 16px;
      height: 8px;
      margin-top: -8px;
      border-left: 3px solid #E71063;
      border-bottom: 3px solid #E71063;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }

.file_icon {
    height:40px;
    padding:10px 0px 10px 20px;
}

#lockscreen{
  display:none;
  position: fixed; /* 必須、ローディング画面をスクロールを不可にする */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:rgba(255,255,255,0.8);
  z-index: 9998;
}

#lockscreen p {
  font-size:2rem;
  position: absolute;
  top: 50%;
  left: 45%;
  margin: auto;
  color: #000;
  z-index: 9999;
}


/* -----------------------------------------------------------------
   カレンダー
   ----------------------------------------------------------------- */

.ui-datepicker {
width: 12vw;
line-height: 160%;
}
.ui-datepicker td span,
.ui-datepicker td a {
   padding: .1rem;
   //font-size: .9rem;
}
.ui-datepicker td span,
.ui-datepicker td a {
   padding: .1rem;
   //font-size:.9rem;
}
.ui-datepicker th {
    padding: .3rem;
}

.ui-datepicker-trigger{
    margin:3px;
}

.ui-datepicker-title {
    white-space: nowrap;
    //font-size:.6em;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 39%;
    //font-size:.9rem;
}


/* -----------------------------------------------------------------
   common系
   ----------------------------------------------------------------- */

form .err{
    background-color: #FFE3E3 !important
}

p{
  letter-spacing: 0.02rem;
}

.impro::before {
  content:"★";
  position:absolute;
  font-size:1em;
  color:red;
  left:0;
  top:0;
  z-index:999;
}

.small{
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.center{
  text-align: center !important;
  align-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.left{
  text-align: left !important;
  align-content: left !important;
  margin-left: 0 !important;
}

.text-right{
  text-align: right !important;
}

.text-left{
  text-align: left !important;
}

.flex{
  display: flex;
}

.bold{
  font-weight:bold;
}


/* -----------------------------------------------------------------
   input長
   ----------------------------------------------------------------- */
.col-0{
  width: 2%;
}
.col-d{
  width: 50px;
}
.col-1{
  width: 80px;
}
.col-2{
  width: 160px;
}
.col-3{
  width: 240px;
}
.col-4{
  width: 320px;
}
.col-5{
  width: 400px;
}
.col-6{
  width: 480px;
  max-width:100%;
}
.col-7{
  width: 560px;
  max-width:100%;
}

.mt-1{
  margin-top:1rem !important;
}
.my-2{
  margin-top:2rem !important;
  margin-bottom:2rem !important;
}
.mb-1{
  margin-bottom:1rem !important;
}
.ml-1{
  margin-left:1rem !important;
}
.py-1{
  padding-top:1rem !important;
  padding-bottom:1rem !important;
}


@media (max-width: 768px){
  #EditForm table {
      width:100%;
  }
  #EditForm td:nth-child(1) {
      padding: 10px 0 10px 10px;
      font-weight: bold;
  }
  #EditForm td:nth-child(2),#EditForm .check td:nth-child(2) {
      padding-top: 10px;
      margin-left: 0;
  }
  #EditForm td {
      display: block;
      padding-right: 0;
      padding-left: 0;
      width: 100% !important;
  }
  #EditForm td textarea,#EditForm td input[type="text"]:not(.not),#EditForm td input[type="email"] {
      width: 100%;
  }
  #EditForm .help-inline {
      margin-left: 0;
      margin-top: 10px;
  }
  .impro::before {
    left:-4px;
    top:-14px;
  }
}