@charset "UTF-8";

.recruit table{
  width: 800px;
  margin: 0 auto;
  display: none;
}
.recruit table th,
.recruit table td{
  border-bottom: 1px solid #D7A060;
  padding: 25px 10px;
}
.recruit table th{
  vertical-align: top;
  width: 170px;
  font-weight: bold;
}
.recruit .btn{
  width: 800px;
  height: 85px;
  line-height: 85px;
  margin: 0 auto 30px;
  text-align: center;
  cursor: pointer;
  border: 3px solid #000;
  font-weight: bold;
  font-size: 1.125rem;
  background: #fff;
  position: relative;
}

.recruit .btn.active{
  background: #D7A060;
  border: 3px solid #D7A060;
}

.recruit .btn span{
  display: inline-block;
}

.closed .vertical {
  transition: all 0.2s ease-in-out;
  transform: rotate(-90deg);
}
.closed .horizontal {
  transition: all 0.2s ease-in-out;
  transform: rotate(-90deg);
  opacity: 1;
}

.active {
  opacity: 1;
}
.active .vertical {
  transition: all 0.2s ease-in-out;
  transform: rotate(90deg);
}
.active .horizontal {
  transition: all 0.2s ease-in-out;
  transform: rotate(90deg);
  opacity: 0;
}

.toggle-plus {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
}

.toggle-plus .bg {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #000;
  top: 0;
  left: 0;
}

.toggle-plus .bg .horizontal {
  position: absolute;
  background-color: #fff;
  width: 12px;
  height: 2px;
  left: 50%;
  margin-left: -6px;
  top: 50%;
  margin-top: -1px;
}

.toggle-plus .bg .vertical {
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 12px;
  left: 50%;
  margin-left: -1px;
  top: 50%;
  margin-top: -6px;
}
