.header-logo {
  width: 200px;
}

body {
  background-color: #f9e7c8;
}

/* スピナーサイズ */
.cushion {
  width: 10rem;
  height: 10rem;
}

.common-title {
  text-align: center;
  background: #ff6900;
  color: white;
}

.content-area {
  font-size: 15px;
  color: #ff6900;
}

.content-complete-area {
  color: #ff0000;
}

.content-error-area {
  margin: 0 auto;
  padding: 10px;
  width: 90%;
  color: #000;
  background-color: #fff;
  border: solid 3px #c0c0c0;
  border-radius: 10px;
  font-size: 15px;
  & h2{
    font-size:15px;
  }
}

.common-btn {
  background-color: #ff6900;
  color: #fff;
  border-radius: 10px;
  border: none;
  width: 200px;
  padding: 10px;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  &:hover {
    &:not([disabled]) {
      color: #fff;
      opacity: 0.6;
    }
  }
}

.common-btn:disabled {
  background: #c0c0c0;
  color: #2e2d2d;
  opacity: 0.6;
}

.cancel-btn {
  background: #c0c0c0;
  color: #2e2d2d;
  &:hover {
    &:not([disabled]) {
      color: #2e2d2d;
    }
  }
}