.indicator {
    display        : none;
    background     : url("../../img/grasp/indicator.gif") no-repeat center;
    height         : 100%;
    width          : 100%;
    text-align     : center;
    vertical-align : middle;
    color          : #284F7A;
    font-weight    : bold;
    padding-top    : 80px;
    z-index        : 9999;
}

/* エラーメッセージ */
.error-message {
    color: #b94a48;
}

/* アラート (bootstrap.css) */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable {
  padding-right: 35px;
}
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

#alert-area {
    margin-top: 15px;
}
#content #alert-area {
    margin-top: 0px;
}
#alert-area .alert {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
#alert-area .alert:last-child {
    margin-bottom: 15px;
}
#alert-area .close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

#alert-area .close:hover,
#alert-area .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
#alert-area button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* バリデーションエラー */
.has-error input:not([disabled]),
.has-error select,
.has-error textarea,
.has-error span.select2-selection {
  background-color: #f6eaea !important;
  color: #a94442 !important;
  border-color: rgba(169, 68, 66, 0.27) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error label[for] {
    color: #a94442;
}

/* placeholder */
::placeholder
{ color: #b5b5b5; }
/*WebKit,Edge*/
::-webkit-input-placeholder
{ color: #b5b5b5; }
/*IE10-11*/
:-ms-input-placeholder
{ color: #b5b5b5; }
