.tab-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  border-bottom: 2px solid #004db5;
}

.tab-item {
  flex: 1;
  max-width: 250px;
  text-align: center;
  padding: 15px 10px;
  cursor: pointer;
  background: #f0f0f0;
  color: #666;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-bottom: none;
}
.tab-item:hover {
  background: #e0e0e0;
}
.tab-item.is-active {
  background: #004db5;
  color: #fff;
  border-color: #004db5;
}
@media (max-width: 767px) {
  .tab-item {
    margin: 0;
  }
  .tab-item:nth-child(2) {
    margin: 0 5px;
  }
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#recruit table td a {
  display: flex;
  align-items: center;
  padding-top: 10px;
  font-size: 1.4rem;
}
#recruit table td a img {
  padding-right: 5px;
  width: 40px;
}
@media (max-width: 767px) {
  #recruit table th,
  #recruit table td {
    display: block;
  }
  #recruit table td {
    border-top: none;
    border-bottom: none;
  }
  #recruit table tr:last-child td {
    border-bottom: 1px solid #1e4f8e;
    ;
  }
}

#recruit .btn {
  margin-top: 40px;
  text-align: center;
}
#recruit .btn a {
  padding: 20px 40px;
  background: linear-gradient(45deg, rgba(7, 162, 233, 1) 0%, rgba(7, 159, 232, 0.6) 100%);
  color: #fff;
}


/*==== エントリー ====*/
#application_type,
#job_type {
  padding: 8.25px;
  border: 1px solid #ccc;
}
@media (max-width: 680px) {
  #application_type,
  #job_type {
    margin-top: 15px;
    width: 100%;
  }
}