@charset "utf-8";
h4 {
  color: #F29001;
  font-size: 18px;
  border-left: #F29001 3px solid;
  border-bottom: #F29001 1px solid;
  padding: 0px 5px 0px 10px;
}
.orange {
  color: #F29001;
}
table.table-orange {
  width: 100%;
  margin: 5px 0;
  valign: middle;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
}
table.table-orange th, td {
  border-bottom: 1px solid #555;
  border-right: 1px solid #555;
  padding: 3px;
  vertical-align: top;
}
table.table-orange th {
  background-color: #FCE9CE;
  font-weight: normal;
}

/* 001 */
.button001 a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  max-width: 450px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
  margin: 20px 0;
}
.button001 a:hover {
  background: #D6E3B9;
  color: #313131;
}
.button001 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
  border-color: #313131;
}