/*
基本オブジェクト スタイル

*/
@charset "utf-8";

.normal-button {
  padding: 0.6em 1em;
  border: none;
  display: inline-block;
  background-color: #5A7AB3;
  box-shadow: 0 7px #4063A4;
  font-size: 0.8em;
  line-height: 1;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.normal-button {
  border-radius: .5em;
  box-shadow: 0 7px #4063A4;
  top: 0;
  transition: .1s box-shadow,.2s top,.4s background;
}
.normal-button:hover {
  color: #2e4d91;
  background-color: #d5e2f5;
  box-shadow: 0 7px #94a2ba;
  top: 0;
}
.normal-button:active {
  color: #2e4d91;
  background-color: #d5e2f5;
  box-shadow: 0 0 #94a2ba;
  top: 7px;
}


.white-button {
  padding: 0.6em 1em;
  border: none;
  display: inline-block;
  background-color: white;
  box-shadow: 0 6px gray;
  font-size: 0.8em;
  line-height: 1;
  color: black;
  position: relative;
  cursor: pointer;
}

.white-button {
  border-radius: .5em;
  border: solid 1px gray;
  box-shadow: 0 6px gray;
  top: 0;
  transition: .1s box-shadow,.2s top,.4s background;
}
.white-button:hover {
  color: #2e4d91;
  background-color: #d5e2f5;
  box-shadow: 0 6px #94a2ba;
  top: 0;
}
.white-button:active {
  color: #2e4d91;
  background-color: #d5e2f5;
  box-shadow: 0 0 #94a2ba;
  top: 6px;
}


.disabled-button {
  padding: 0.6em 1em;
  border: none;
  display: inline-block;
  background-color: gray;
  box-shadow: 0 6px #636666;
  border-radius: .5em;
  font-size: 0.8em;
  line-height: 1;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.disabled-button {
  border-radius: .5em;
  border: solid 1px gray;
  box-shadow: 0 6px #636666;
  top: 0;
  transition: .1s box-shadow,.2s top,.4s background;
}
.disabled-button:hover {
  color: black;
  background-color: #c0c0c2;
  box-shadow: 0 6px #858585;
  top: 0;
}
.disabled-button:active {
  color: black;
  background-color: #c0c0c2;
  box-shadow: 0 0 #858585;
  top: 6px;
}
