@charset "UTF-8";
/* ========================================
  採用情報
======================================== */
@layer page {
  .recruit-nav {
    justify-content: space-between;
    max-width: 960px;
    margin-inline: auto;
  }
  @media screen and (max-width: 991px) {
    .recruit-nav {
      justify-content: center;
    }
  }
  .recruit-nav li a {
    display: block;
  }
  @media (any-hover: hover) {
    .recruit-nav li a {
      transition: 0.5s;
      transition-property: transform;
    }
    .recruit-nav li a:hover {
      transform: scale(1.1);
    }
  }
  .icon-circle {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    aspect-ratio: 1;
    margin-inline: auto;
    border: 3px solid #29a1d8;
    border-radius: 50%;
  }
  .recruit-table {
    width: 100%;
  }
  .recruit-table + .recruit-table {
    margin-top: 65px;
  }
  @media screen and (max-width: 767px) {
    .recruit-table + .recruit-table {
      margin-top: 10.6666666667vw;
    }
  }
  .recruit-table thead tr th {
    height: 36px;
    font-weight: 400;
    text-align: center;
    background-color: rgba(219, 235, 229, 0.5);
  }
  .recruit-table thead tr th:first-child {
    width: 52%;
  }
  .recruit-table thead tr th:nth-child(n+2) {
    width: 24%;
  }
  .recruit-table tbody tr {
    border-bottom: 1px solid var(--main);
  }
  .recruit-table tbody tr th,
  .recruit-table tbody tr td {
    height: 54px;
    font-weight: 400;
    vertical-align: middle;
    text-align: center;
  }
  .recruit-table tbody tr td a span {
    position: relative;
  }
  .recruit-table tbody tr td a span::before {
    position: absolute;
    bottom: -10px;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #29a1d8;
    opacity: 0;
  }
  @media (any-hover: hover) {
    .recruit-table tbody tr td a span::before {
      transition: 0.5s;
      transition-property: opacity;
    }
    .recruit-table tbody tr td a:hover span::before {
      opacity: 1;
    }
  }
  .recruit-table .icon-circle {
    display: block;
  }
}