:root {
  --font-title: "Nunito Sans", sans-serif;
  --font-pri: "Montserrat", sans-serif;
  --pi-4: 0.4rem;
  --pi-8: 0.8rem;
  --pi-10: 1rem;
  --pi-12: 1.2rem;
  --pi-14: 1.4rem;
  --pi-16: 1.6rem;
  --pi-18: 1.8rem;
  --pi-20: 2rem;
  --pi-24: 2.4rem;
  --pi-32: 3.2rem;
}
@media screen and (max-width: 1200px) {
  :root {
    --pi-12: 0.8rem;
    --pi-14: 0.8rem;
    --pi-16: 0.8rem;
    --pi-18: 0.8rem;
    --pi-20: 1rem;
    --pi-24: 1.2rem;
    --pi-32: 1.6rem;
  }
}
:root {
  --header-height: 9.6rem;
  --header-height-fixed: 8rem;
  --z-i-header: 100;
  --radius-circle: 50%;
  --radius-max: 999rem;
  --radius-xl: 2.4rem;
  --radius-l: 1.6rem;
  --radius: 1.2rem;
  --radius-m: 0.8rem;
  --radius-s: 0.4rem;
  --box-shadow-1: 0 0.4rem 2.4rem 0 rgba(0, 0, 0, 0.1);
  --box-shadow-2: 0 1rem 3rem 0 rgba(0, 0, 0, 0.05);
  --filter-white: brightness(0) invert(1);
  --filter-black: brightness(0) invert(0);
  --filter-pri: brightness(0) saturate(100%) invert(27%) sepia(7%) saturate(5832%) hue-rotate(339deg) brightness(92%)
    contrast(85%);
  --filter-sec: brightness(0) saturate(100%) invert(77%) sepia(36%) saturate(5995%) hue-rotate(9deg) brightness(110%)
    contrast(96%);
  --filter-third: brightness(0) saturate(100%) invert(43%) sepia(81%) saturate(875%) hue-rotate(22deg) brightness(101%)
    contrast(101%);
  --container-full: 4.8rem;
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
}
@media screen and (max-width: 1200px) {
  :root {
    --container-full: 1.6rem;
  }
}

.swiper-navigation {
  z-index: 5;
  gap: 0.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  display: flex;
  align-items: center;
}
.swiper-navigation > * {
  cursor: pointer;
  transition: 0.4s ease-in-out;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #784123;
  border-radius: var(--radius-circle);
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .swiper-navigation > *:hover, .swiper-navigation > *:focus-visible {
    background-color: #784123;
  }
  .swiper-navigation > *:hover img, .swiper-navigation > *:focus-visible img {
    filter: var(--filter-white);
  }
}
.swiper-navigation > * img {
  transition: 0.4s ease-in-out;
  filter: var(--filter-pri);
}
.swiper-navigation .prev img {
  transform: rotate(-180deg);
}

.swiper-pagination {
  max-width: 28rem;
  overflow: hidden;
  position: static !important;
  border-radius: var(--radius-max);
  background: #d9cdbb !important;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    max-width: 20rem;
  }
}
.swiper-pagination-progressbar-fill {
  background: #784123 !important;
}

.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-fraction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: absolute;
  right: 2.4rem;
  bottom: 4rem;
  z-index: 10;
}
.swiper-fraction .swiper-pagination {
  gap: 0.8rem;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  flex-direction: column;
  background-color: transparent !important;
}
.swiper-fraction .swiper-pagination-bullet {
  transition: 0.4s ease-in-out;
  margin: 0 auto !important;
  background-color: white !important;
}
.swiper-fraction .swiper-pagination-bullet-active {
  background-color: white !important;
}
.swiper-fraction .swiper-line {
  height: 8rem;
  width: 0.2rem;
  background: white;
  border-radius: var(--radius);
}
.swiper-fraction .swiper-fraction_number {
  --f-sz: clamp(1.7rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: 800;
  color: white;
  font-family: var(--font-title);
}
@media screen and (max-width: 1280px) {
  .swiper-fraction {
    left: 50%;
    right: auto;
    gap: 1.2rem;
    bottom: 2.4rem;
    flex-direction: row;
    align-items: center;
    transform: translateX(-50%);
  }
  .swiper-fraction .swiper-pagination {
    gap: 0.8rem;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
  }
  .swiper-fraction .swiper-pagination-bullet {
    margin: auto 0 !important;
  }
  .swiper-fraction .swiper-line {
    width: 10rem;
    height: 0.2rem;
  }
}

.recruit {
  box-shadow: var(--box-shadow-1);
}
.recruit.is-disable .recruit-position_item:last-child .text-14 {
  color: #c33025;
}
.recruit.is-disable .recruit-position .btn {
  color: #999999;
  pointer-events: none;
  border-color: #d9d9d9;
  background-color: #d9d9d9;
}
.recruit-title {
  border-bottom: 0.1rem solid #d9d9d9;
}
.recruit-position_list {
  row-gap: var(--pi-16);
  margin: 0 calc(-1 * var(--pi-16));
}
.recruit-position_item {
  padding: 0 var(--pi-16);
}
.recruit-position_item:not(:last-child) {
  border-right: 0.1rem solid #d9d9d9;
}
.recruit-position_item:last-child .text-14 {
  color: #115b43;
}
.recruit-position .btn {
  font-size: 1.4rem;
  padding: 1.2rem 1.6rem;
}

ul.page-numbers {
  gap: 0.6rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
ul.page-numbers li {
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 10rem;
}
ul.page-numbers li:has(.current) {
  background-color: #784123;
}
ul.page-numbers li:has(.current) a,
ul.page-numbers li:has(.current) span {
  color: white;
}
@media screen and (min-width: 768px) {
  ul.page-numbers li:has(img) {
    margin-right: 0.6rem;
  }
}
ul.page-numbers li:has(img) img {
  width: 3.2rem;
  height: 3.2rem;
  filter: var(--filter-black);
}
@media screen and (max-width: 767px) {
  ul.page-numbers li:has(img) img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (min-width: 1201px) {
  ul.page-numbers li:not(:has(.disable)):hover {
    background-color: #784123;
  }
  ul.page-numbers li:not(:has(.disable)):hover a {
    color: white;
  }
  ul.page-numbers li:not(:has(.disable)):hover img {
    filter: brightness(0) invert(1);
  }
}
ul.page-numbers li .disable {
  pointer-events: none;
}
ul.page-numbers li .prev img {
  transform: rotate(90deg);
}
ul.page-numbers li .next img {
  transform: rotate(-90deg);
}
ul.page-numbers li a,
ul.page-numbers li span {
  width: 100%;
  height: 100%;
  font-weight: 500;
  line-height: 150%;
  transition: 0.4s ease-in-out;
  color: #656565;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  ul.page-numbers li a,
  ul.page-numbers li span {
    font-size: 1.4rem;
  }
}

.rec {
  padding-bottom: 10rem;
}
@media screen and (max-width: 991px) {
  .rec {
    padding-bottom: 6rem;
  }
}
.rec-heading {
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(2 * var(--pi-16));
  margin: 0 calc(-1 * var(--pi-16));
}
.rec-heading_item {
  width: 16.6666666667%;
  padding: 0 var(--pi-16);
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .rec-heading_item:hover .rec-heading_box, .rec-heading_item:focus-visible .rec-heading_box {
    border-color: #784123;
    background-color: rgba(120, 65, 35, 0.1);
  }
  .rec-heading_item:hover .rec-heading_img, .rec-heading_item:focus-visible .rec-heading_img {
    background-color: white;
  }
}
@media screen and (max-width: 1200px) {
  .rec-heading_item {
    width: 25%;
  }
}
@media screen and (max-width: 576px) {
  .rec-heading_item {
    width: 50%;
  }
}
.rec-heading_item.is-active .rec-heading_box {
  border-color: #784123;
  background-color: rgba(120, 65, 35, 0.1);
}
.rec-heading_item.is-active .rec-heading_img {
  background-color: white;
}
.rec-heading_box {
  transition: 0.4s ease-in-out;
  border: 0.1rem solid #d9cdbb;
}
.rec-heading_content .text-20 {
  --f-sz: clamp(1.4rem, calc(1.3279rem + 0.2459vw), 1.8rem);
  font-size: var(--f-sz);
}
.rec-heading_content .text-20 br {
  display: none;
}
.rec-heading_img {
  width: 10rem;
  height: 10rem;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}
@media screen and (max-width: 1200px) {
  .rec-heading_img {
    width: 8rem;
    height: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .rec-heading_img {
    width: 6.4rem;
    height: 6.4rem;
  }
}
@media screen and (max-width: 576px) {
  .rec-heading_img {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.rec-heading_img img {
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 5.6rem;
  height: 5.6rem;
}
@media screen and (max-width: 1200px) {
  .rec-heading_img img {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .rec-heading_img img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.rec-inner .no-job {
  gap: 1.2rem;
  display: flex;
  text-align: center;
  flex-direction: column;
}
.rec-inner .no-job .title {
  --f-sz: clamp(1.7rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: 700;
  color: #784123;
  text-transform: uppercase;
}
.rec-inner .no-job .description {
  margin: 0 auto;
  line-height: 150%;
  max-width: 100rem;
}

.env {
  padding: 10rem 0rem 10rem;
}
@media screen and (max-width: 991px) {
  .env {
    padding: 6rem 0rem;
  }
}
@media screen and (min-width: 1201px) {
  .env-swiper .swiper-pagination {
    left: 0;
    bottom: 0;
    top: unset;
    max-width: unset;
    position: absolute !important;
    width: calc(50% - 1.6rem) !important;
  }
}
@media screen and (max-width: 1200px) {
  .env-swiper .swiper-pagination {
    margin: 0 auto;
    margin-top: 4rem;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .env-heading_img:hover img, .env-heading_img:focus-visible img {
    transform: scale(1.05);
  }
}
.env-heading_img .img {
  padding-top: 100%;
}
.env-img .img {
  padding-top: 95.4391891892%;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .env-img .img:hover img, .env-img .img:focus-visible img {
    transform: scale(1.05);
  }
}
/*# sourceMappingURL=recruit.css.map */
