@charset "UTF-8";
/* ==========================================================================//
//
// 採用情報
//
// ========================================================================== */
.page_body {
  padding: 60px 0;
}
@media all and (min-width: 751px) {
  .page_body {
    padding: 80px 0 120px;
  }
}

.tab_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .tab_btn_list {
    margin-bottom: 40px;
  }
}

.tab_btn {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  background-color: #fff;
  border: 1px solid #444444;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.5em;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .tab_btn {
    font-size: 17px;
    border-width: 2px;
    padding: 16px 0;
  }
}
.tab_btn::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #444444;
  aspect-ratio: 14/15;
  width: 12px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .tab_btn::before {
    width: 14px;
  }
}
.tab_btn.is-active {
  background-color: #444444;
  color: #fff;
  font-weight: 900;
}
.tab_btn.is-active::before {
  opacity: 1;
}

.tab_content {
  display: none;
  opacity: 0;
}
.tab_content.is-active {
  display: block;
  -webkit-animation: fadeUpAnime 0.6s forwards;
          animation: fadeUpAnime 0.6s forwards;
}
.tab_content .list {
  border: 1px solid #222222;
}
@media all and (min-width: 751px) {
  .tab_content .list {
    border-width: 2px;
  }
}
.tab_content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab_content .item:not(:last-child) {
  border-bottom: 1px solid #222222;
}
.tab_content .item .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 84px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  background-color: #a3ced6;
  border-right: 1px solid #222222;
  padding: 26px 10px;
}
@media all and (min-width: 751px) {
  .tab_content .item .heading {
    width: max(140px, 22%);
    font-size: 15px;
    padding: 30px 10px;
  }
}
.tab_content .item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.84;
  padding: 26px 20px;
}
@media all and (min-width: 751px) {
  .tab_content .item .content {
    font-size: 15px;
    line-height: 2;
    padding: 30px 6%;
  }
}
@media (hover: hover) {
  .tab_content .item .content p a {
    background-image: -webkit-gradient(linear, left top, right top, from(#222222), to(#222222));
    background-image: linear-gradient(90deg, #222222, #222222);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
  .tab_content .item .content p a:hover {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}