﻿body {
  margin: 0;
  padding: 0;
  background-color: #e9e9e9;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial;
}

body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

  /*フェード効果*/
  body[fadein=on] {
    animation: fadein 1s ease 0s 1 normal;
    -webkit-animation: fadein 1s ease 0s 1 normal;
  }

.startup-title {
  animation: fadein 4s ease 0s 1 normal;
  -webkit-animation: fadein 4s ease 0s 1 normal;
}

/* Set padding to keep content from hitting the edges */
.body-content {
  position: relative;
  padding: 0;
  height: 768px;
  width: 1024px;
  max-height: 768px;
  max-width: 1024px;
  background-image: url('../img/Common/Background/Cmn_Background.png');
}

  .body-content * {
    position: absolute;
    margin: 0;
    padding: 0;
    width: auto;
  }

  .body-content tbody,
  .body-content thead,
  .body-content th,
  .body-content tr,
  .body-content td {
    position: static;
  }

.body-content-lock {
  top: 0;
  left: 0;
  height: 768px;
  width: 1024px;
  max-height: 768px;
  max-width: 1024px;
  background-color: #666;
  opacity: 0.5;
}

  .body-content-lock span {
    top: 42px;
    left: 0;
    height: 726px;
    width: 1024px;
    font-size: 1.3em;
    color: #fff;
    text-align: center;
    -webkit-animation: blink 0.3s ease-in-out infinite alternate;
    -moz-animation: blink 0.3s ease-in-out infinite alternate;
    animation: blink 0.3s ease-in-out infinite alternate;
  }

#print_area {
  text-align:center;
}

@media print {
    #print_area{
        margin:32px;
    }
}

img {
  border: none;
}

/*.modal,
.modal-dialog,
.modal-content,
.modal-header,
.modal-body,
.modal-footer {
  position: static;
}*/

/*.body-content .modal {
  margin: 0;
  padding: 0;
  position: static;
}

.body-content .modal * {
  margin: 0;
  padding: 0;
  position: relative;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
  white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
  max-width: 800px;
}

/* Set padding to display errors that occur during databinding */
.padding-error {
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .nofloat {
    float: none;
    padding: 10px 15px;
  }
}

/*点滅*/
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*フェードイン*/
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
