@charset "UTF-8";
/**************************************/
.br-499 {
  display: none;
}
@media (max-width: 499px) {
  .br-499 {
    display: block;
  }
}

/* -------------------------
 * タブ
 * ------------------------- */
.recruit-main .arrow-bl {
  width: 70px;
  height: 34px;
  border-radius: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: var(--color_orange);
  display: block;
}
@media (max-width: 834px) {
  .recruit-main .arrow-bl {
    width: 44px;
    height: 23px;
  }
}
.recruit-main .arrow-bl .arrow01,
.recruit-main .arrow-bl .arrow02 {
  position: absolute;
  color: #fff;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  font-size: 1.2rem;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  left: 50%;
}
@media (max-width: 834px) {
  .recruit-main .arrow-bl .arrow01,
  .recruit-main .arrow-bl .arrow02 {
    font-size: 0.8rem;
  }
}
.recruit-main .arrow-bl .arrow01 {
  top: 50%;
}
.recruit-main .arrow-bl .arrow02 {
  top: -100%;
}
.recruit-main .tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 50px;
  background-color: #f5f5f5;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 834px) {
  .recruit-main .tab-buttons {
    gap: 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.recruit-main .tab-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: #fff;
  color: var(--color_bk);
  padding: 17px 20px 17px 39px;
  cursor: pointer;
  font-size: 1.5rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 32rem;
}
@media (max-width: 834px) {
  .recruit-main .tab-button {
    width: 48%;
    padding: 10px 10px 10px 20px;
    font-size: 1.3rem;
  }
}
@media (max-width: 499px) {
  .recruit-main .tab-button {
    line-height: 1.3;
  }
}
.recruit-main .tab-button:hover .arrow01 {
  top: 200%;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.recruit-main .tab-button:hover .arrow02 {
  top: 50%;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.recruit-main .tab-button.active {
  background-color: var(--color_orange);
  color: #fff;
}
.recruit-main .tab-button.active .arrow-bl {
  color: #fff;
  background-color: #fff;
}
.recruit-main .tab-button.active .arrow-bl .arrow01 {
  color: var(--color_orange);
}
.recruit-main .tab-button.active .arrow-bl .arrow02 {
  color: var(--color_orange);
}
.recruit-main .tab-content {
  display: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.recruit-main .tab-content.active {
  display: block;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-animation: tabFadeIn 0.3s ease-in-out;
          animation: tabFadeIn 0.3s ease-in-out;
}

@-webkit-keyframes tabFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 内容 */
.tab-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 100rem;
  margin: 12rem auto 0;
}
@media (max-width: 834px) {
  .tab-content__list {
    margin-top: 3rem;
  }
}
.tab-content__list dt,
.tab-content__list dd {
  padding-block: 5rem;
}
.tab-content__list dt:last-of-type,
.tab-content__list dd:last-of-type {
  border-bottom: none;
}
.tab-content__list dt {
  width: 30%;
  margin-right: 2px;
  border-bottom: 1px solid #eee;
  font-size: 21px;
  font-weight: 600;
}
@media (max-width: 834px) {
  .tab-content__list dt {
    font-size: 1.5rem;
  }
}
@media (max-width: 639px) {
  .tab-content__list dt {
    width: 100%;
    border-bottom: none;
    padding: 1.6rem 0 0 0;
  }
}
.tab-content__list dd {
  font-size: 18px;
  font-weight: 300;
  width: 69%;
  border-bottom: 1px solid #eee;
  padding-left: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .tab-content__list dd {
    font-size: 1.4rem;
  }
}
@media (max-width: 639px) {
  .tab-content__list dd {
    min-width: 140px;
    padding: 1rem 0 1.6rem 0;
    width: 100%;
  }
}
.tab-content__list dd.multi-rows {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.tab-content__mark-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
@media (max-width: 639px) {
  .tab-content__mark-list li {
    font-size: 1.3rem;
  }
}
.tab-content__mark-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  aspect-ratio: 1;
  background-color: var(--color_orange);
  border-radius: 50%;
}

/* -------------------------
 * CTA
 * ------------------------- */
.recruit-cta {
  background: url(../img/recruit/cta_bg.webp) no-repeat center center/cover;
  border-radius: 30px;
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .recruit-cta {
    background: url(../img/recruit/cta_bg.webp) no-repeat left top/cover;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem;
  }
}
@media (max-width: 499px) {
  .recruit-cta {
    padding: 2rem;
  }
}
.recruit-cta.inner-s {
  margin-top: 18rem;
}
@media (max-width: 834px) {
  .recruit-cta.inner-s {
    margin-top: 3rem;
  }
}

.recruit-cta__main-txt {
  font-size: 3.2rem;
  color: #fff;
}
@media (max-width: 834px) {
  .recruit-cta__main-txt {
    font-size: 1.8rem;
  }
}

.recruit-cta__btn {
  padding: 20px 50px;
  border-radius: 50px;
  background-color: #fff;
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}
@media (max-width: 834px) {
  .recruit-cta__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 499px) {
  .recruit-cta__btn {
    padding: 1.6rem 3%;
    width: 100%;
  }
}
.recruit-cta__btn .tel-number {
  font-family: Inter;
  color: #ffa86b;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 499px) {
  .recruit-cta__btn .tel-number {
    font-size: 2rem;
  }
}
.recruit-cta__btn .txt {
  font-size: 1.2rem;
  color: #3c3c3c;
  font-weight: 600;
}
@media (max-width: 499px) {
  .recruit-cta__btn .txt {
    font-size: 1rem;
  }
}/*# sourceMappingURL=recruit.css.map */