@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* 共通変数 */
/* Scss Document */
/* 共通ミックスイン */
/* css */
/*----------------------------------------------------
採用情報ページ
----------------------------------------------------*/
#recruit {
  padding: 150px 0 0;
}

.tab-container {
  position: relative;
  margin: 0 0 50px;
}
.tab-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #eeeeee;
  border-radius: 48px;
  padding: 6px;
  position: relative;
}
.tab-container ul .slide-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 4px);
  height: calc(100% - 12px);
  background: -webkit-linear-gradient(315deg, #4a4a4a 0%, #2c2c2c 100%);
  background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
  border-radius: 48px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.tab-container ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px 18px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  border-radius: 8px;
  margin: 0 2px;
  background: transparent;
}
.tab-container ul li.selected {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.tab-container ul li:not(.selected):hover {
  color: #aaaaaa;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.tab-container .tab-content {
  display: none;
  padding: 24px;
  min-height: 150px;
  background: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 16px;
}
.tab-container .tab-content.selected {
  display: block;
  -webkit-animation: slideContentIn 0.3s ease-out;
          animation: slideContentIn 0.3s ease-out;
}
@-webkit-keyframes slideContentIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideContentIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.tab-container .tab-content table {
  width: 100%;
}
.tab-container .tab-content table tr {
  border-bottom: 1px solid #e0e0e0;
}
.tab-container .tab-content table tr th {
  border-right: 1px solid #e0e0e0;
  padding: 15px;
}
.tab-container .tab-content table tr td {
  padding: 15px;
}

.entry-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.entry-button a {
  line-height: 1;
  padding: 20px 30px;
  border: solid 2px #333;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  background: #333;
}

@media only screen and (min-width: 768px) {
  .entry-button a:hover {
    color: #333;
    background: #fff;
  }
}
/*----------------------------------------------------
レスポンシブ用css
----------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}/*# sourceMappingURL=page.css.map */