@charset "utf-8";
html{
scroll-behavior: smooth;
}


.recruit__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .recruit__btns {
    justify-content: start;
  }
}

.recruit__btn {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 47px 8px 47px !important;
}
@media screen and (min-width: 600px) {
  .recruit__btn {
    width: 200px;
    padding: 8px 17px 8px 17px !important;
  }
}
@media screen and (min-width: 1000px) {
  .recruit__btn {
    width: 280px;
    padding: 8px 67px 8px 67px !important;
  }
}
.recruit__btn::after {
  content: "";
  background: url('../images/arrow-down.svg') center / contain repeat;
  width: 11px;
  height: 7px;
}

.recruit__item + .recruit__item {
  margin-top: 100px;
}

.c-table__wrap {
  display: flex;
  position: relative;
  padding: 26px 0 26px 0;
  flex-wrap: nowrap;
  
    align-items: center;
}
.c-table__wrap::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 1px;
  background: #6F5330;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-table__wrap::before {
    width: 213px;
  }
}

.c-table__wrap::after {
  content: "";
  position: absolute;
  width: calc(100% - 95px);
  height: 1px;
  background: #D8D8D8;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-table__wrap::after {
    width: calc(100% - 213px);
  }
}
.c-table__wrap:last-of-type {
  padding: 0;
}

.c-table__head {
    flex-shrink: 0;
    width: 95px;
    text-align: center;
}
@media (min-width: 768px) {
    .c-table__head {
        width: 213px;
    }
}

.c-table__body {
    flex-grow: 1;
    padding: 0 0 0 10px;
}
@media (min-width: 768px) {
    .c-table__body {
        padding: 0 0 0 19px;
    }
}

.schedule__wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 67px;
  position: relative;
}
.schedule__line {
  position: absolute;
  background: #C6BFB2;
  width: 2px;
  transform-origin: top left;
  z-index: -1;
}
.schedule__item {
  display: flex;
  align-items: start;
  gap: 20px;
}
@media (min-width: 768px) {
    .schedule__item{
       gap: 40px;
    }
}



